From cfb8a3160e0092990bafd05cb97006720400448a Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 24 Jul 2024 20:09:20 +0100 Subject: [PATCH 01/30] Priority notifications (#4798) * new settings screen * bring back the spinner * add experimental language * fix typo, change leading * integrate priority notifications API * update package * use refetch instead of invalidateQueries * fix read-after-write issue by polling for update * add spinner for initial load * rm onmutate, it's overcomplicated * set error state eagerly * Change language in description Co-authored-by: Hailey * prettier * add `Toggle.Platform` * extract out mutation hook + error state * rm useless cache mutation * disambiguate isError and isPending * rm unused isError --------- Co-authored-by: Samuel Newman <10959775+mozzius@users.noreply.github.com> Co-authored-by: Hailey --- bskyweb/cmd/bskyweb/server.go | 1 + package.json | 2 +- src/Navigation.tsx | 6 + src/components/Lists.tsx | 2 +- src/components/forms/Toggle.tsx | 3 + src/components/icons/Gear.tsx | 5 - src/lib/async/until.ts | 10 +- src/lib/routes/types.ts | 15 +-- src/routes.ts | 1 + src/screens/Messages/Conversation/index.tsx | 1 + src/screens/Messages/List/index.tsx | 2 +- src/screens/Messages/Settings.tsx | 2 +- src/state/queries/notifications/feed.ts | 37 ++++--- src/state/queries/notifications/settings.ts | 67 +++++++++++ src/state/queries/notifications/types.ts | 1 + src/state/queries/notifications/util.ts | 8 +- src/view/com/notifications/Feed.tsx | 7 +- src/view/screens/Notifications.tsx | 117 +++++++++++++------- src/view/screens/NotificationsSettings.tsx | 94 ++++++++++++++++ yarn.lock | 8 +- 20 files changed, 305 insertions(+), 84 deletions(-) delete mode 100644 src/components/icons/Gear.tsx create mode 100644 src/state/queries/notifications/settings.ts create mode 100644 src/view/screens/NotificationsSettings.tsx diff --git a/bskyweb/cmd/bskyweb/server.go b/bskyweb/cmd/bskyweb/server.go index d7e41a4ca8..61a524a70b 100644 --- a/bskyweb/cmd/bskyweb/server.go +++ b/bskyweb/cmd/bskyweb/server.go @@ -197,6 +197,7 @@ func serve(cctx *cli.Context) error { e.GET("/search", server.WebGeneric) e.GET("/feeds", server.WebGeneric) e.GET("/notifications", server.WebGeneric) + e.GET("/notifications/settings", server.WebGeneric) e.GET("/lists", server.WebGeneric) e.GET("/moderation", server.WebGeneric) e.GET("/moderation/modlists", server.WebGeneric) diff --git a/package.json b/package.json index b56dd9e39b..51177943bb 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ "open-analyzer": "EXPO_PUBLIC_OPEN_ANALYZER=1 yarn build-web" }, "dependencies": { - "@atproto/api": "^0.12.23", + "@atproto/api": "0.12.25", "@bam.tech/react-native-image-resizer": "^3.0.4", "@braintree/sanitize-url": "^6.0.2", "@discord/bottom-sheet": "bluesky-social/react-native-bottom-sheet", diff --git a/src/Navigation.tsx b/src/Navigation.tsx index 9e9b49443a..8646577c8b 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -76,6 +76,7 @@ import {LogScreen} from './view/screens/Log' import {ModerationModlistsScreen} from './view/screens/ModerationModlists' import {NotFoundScreen} from './view/screens/NotFound' import {NotificationsScreen} from './view/screens/Notifications' +import {NotificationsSettingsScreen} from './view/screens/NotificationsSettings' import {PostLikedByScreen} from './view/screens/PostLikedBy' import {PostRepostedByScreen} from './view/screens/PostRepostedBy' import {PostThreadScreen} from './view/screens/PostThread' @@ -324,6 +325,11 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) { getComponent={() => MessagesSettingsScreen} options={{title: title(msg`Chat settings`), requireAuth: true}} /> + NotificationsSettingsScreen} + options={{title: title(msg`Notification settings`), requireAuth: true}} + /> FeedsScreen} diff --git a/src/components/Lists.tsx b/src/components/Lists.tsx index 3368d076fb..e706e101f5 100644 --- a/src/components/Lists.tsx +++ b/src/components/Lists.tsx @@ -189,7 +189,7 @@ let ListMaybePlaceholder = ({ return ( ) } + +export const Platform = isNative ? Switch : Checkbox diff --git a/src/components/icons/Gear.tsx b/src/components/icons/Gear.tsx deleted file mode 100644 index 980b7413bd..0000000000 --- a/src/components/icons/Gear.tsx +++ /dev/null @@ -1,5 +0,0 @@ -import {createSinglePathSVG} from './TEMPLATE' - -export const SettingsGear2_Stroke2_Corner0_Rounded = createSinglePathSVG({ - path: 'M11.1 2a1 1 0 0 0-.832.445L8.851 4.57 6.6 4.05a1 1 0 0 0-.932.268l-1.35 1.35a1 1 0 0 0-.267.932l.52 2.251-2.126 1.417A1 1 0 0 0 2 11.1v1.8a1 1 0 0 0 .445.832l2.125 1.417-.52 2.251a1 1 0 0 0 .268.932l1.35 1.35a1 1 0 0 0 .932.267l2.251-.52 1.417 2.126A1 1 0 0 0 11.1 22h1.8a1 1 0 0 0 .832-.445l1.417-2.125 2.251.52a1 1 0 0 0 .932-.268l1.35-1.35a1 1 0 0 0 .267-.932l-.52-2.251 2.126-1.417A1 1 0 0 0 22 12.9v-1.8a1 1 0 0 0-.445-.832L19.43 8.851l.52-2.251a1 1 0 0 0-.268-.932l-1.35-1.35a1 1 0 0 0-.932-.267l-2.251.52-1.417-2.126A1 1 0 0 0 12.9 2h-1.8Zm-.968 4.255L11.635 4h.73l1.503 2.255a1 1 0 0 0 1.057.42l2.385-.551.566.566-.55 2.385a1 1 0 0 0 .42 1.057L20 11.635v.73l-2.255 1.503a1 1 0 0 0-.42 1.057l.551 2.385-.566.566-2.385-.55a1 1 0 0 0-1.057.42L12.365 20h-.73l-1.503-2.255a1 1 0 0 0-1.057-.42l-2.385.551-.566-.566.55-2.385a1 1 0 0 0-.42-1.057L4 12.365v-.73l2.255-1.503a1 1 0 0 0 .42-1.057L6.123 6.69l.566-.566 2.385.55a1 1 0 0 0 1.057-.42ZM8 12a4 4 0 1 1 8 0 4 4 0 0 1-8 0Zm4-2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Z', -}) diff --git a/src/lib/async/until.ts b/src/lib/async/until.ts index db53c92189..1b7a576334 100644 --- a/src/lib/async/until.ts +++ b/src/lib/async/until.ts @@ -1,10 +1,10 @@ import {timeout} from './timeout' -export async function until( +export async function until( retries: number, delay: number, - cond: (v: any, err: any) => boolean, - fn: () => Promise, + cond: (v: T, err: any) => boolean, + fn: () => Promise, ): Promise { while (retries > 0) { try { @@ -13,7 +13,9 @@ export async function until( return true } } catch (e: any) { - if (cond(undefined, e)) { + // TODO: change the type signature of cond to accept undefined + // however this breaks every existing usage of until -sfn + if (cond(undefined as unknown as T, e)) { return true } } diff --git a/src/lib/routes/types.ts b/src/lib/routes/types.ts index bda93fb40d..fbb66c9e9a 100644 --- a/src/lib/routes/types.ts +++ b/src/lib/routes/types.ts @@ -42,14 +42,13 @@ export type CommonNavigatorParams = { Hashtag: {tag: string; author?: string} MessagesConversation: {conversation: string; embed?: string} MessagesSettings: undefined + NotificationsSettings: undefined Feeds: undefined Start: {name: string; rkey: string} StarterPack: {name: string; rkey: string; new?: boolean} StarterPackShort: {code: string} StarterPackWizard: undefined - StarterPackEdit: { - rkey?: string - } + StarterPackEdit: {rkey?: string} } export type BottomTabNavigatorParams = CommonNavigatorParams & { @@ -69,7 +68,7 @@ export type SearchTabNavigatorParams = CommonNavigatorParams & { } export type NotificationsTabNavigatorParams = CommonNavigatorParams & { - Notifications: undefined + Notifications: {show?: 'all'} } export type MyProfileTabNavigatorParams = CommonNavigatorParams & { @@ -84,7 +83,7 @@ export type FlatNavigatorParams = CommonNavigatorParams & { Home: undefined Search: {q?: string} Feeds: undefined - Notifications: undefined + Notifications: {show?: 'all'} Hashtag: {tag: string; author?: string} Messages: {pushToConversation?: string; animation?: 'push' | 'pop'} } @@ -96,7 +95,7 @@ export type AllNavigatorParams = CommonNavigatorParams & { Search: {q?: string} Feeds: undefined NotificationsTab: undefined - Notifications: undefined + Notifications: {show?: 'all'} MyProfileTab: undefined Hashtag: {tag: string; author?: string} MessagesTab: undefined @@ -105,9 +104,7 @@ export type AllNavigatorParams = CommonNavigatorParams & { StarterPack: {name: string; rkey: string; new?: boolean} StarterPackShort: {code: string} StarterPackWizard: undefined - StarterPackEdit: { - rkey?: string - } + StarterPackEdit: {rkey?: string} } // NOTE diff --git a/src/routes.ts b/src/routes.ts index a76d8c4ce9..ddf4fb39fa 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -5,6 +5,7 @@ export const router = new Router({ Search: '/search', Feeds: '/feeds', Notifications: '/notifications', + NotificationsSettings: '/notifications/settings', Settings: '/settings', LanguageSettings: '/settings/language', Lists: '/lists', diff --git a/src/screens/Messages/Conversation/index.tsx b/src/screens/Messages/Conversation/index.tsx index a99ef8d4d9..d14ed160ae 100644 --- a/src/screens/Messages/Conversation/index.tsx +++ b/src/screens/Messages/Conversation/index.tsx @@ -106,6 +106,7 @@ function Inner() { title={_(msg`Something went wrong`)} message={_(msg`We couldn't load this conversation`)} onRetry={() => convoState.error.retry()} + sideBorders={false} /> ) diff --git a/src/screens/Messages/List/index.tsx b/src/screens/Messages/List/index.tsx index 0b1fe2a958..2fd9990c7b 100644 --- a/src/screens/Messages/List/index.tsx +++ b/src/screens/Messages/List/index.tsx @@ -309,7 +309,7 @@ function DesktopHeader({ a.gap_lg, a.px_lg, a.pr_md, - a.py_md, + a.py_sm, a.border_b, t.atoms.border_contrast_low, ]}> diff --git a/src/screens/Messages/Settings.tsx b/src/screens/Messages/Settings.tsx index 3d7e601301..df469d13f5 100644 --- a/src/screens/Messages/Settings.tsx +++ b/src/screens/Messages/Settings.tsx @@ -107,7 +107,7 @@ export function MessagesSettingsScreen({}: Props) { a.rounded_md, t.atoms.bg_contrast_25, ]}> - + You can continue ongoing conversations regardless of which setting you choose. diff --git a/src/state/queries/notifications/feed.ts b/src/state/queries/notifications/feed.ts index 17ee90929c..3cafcb7168 100644 --- a/src/state/queries/notifications/feed.ts +++ b/src/state/queries/notifications/feed.ts @@ -46,11 +46,14 @@ const PAGE_SIZE = 30 type RQPageParam = string | undefined const RQKEY_ROOT = 'notification-feed' -export function RQKEY() { - return [RQKEY_ROOT] +export function RQKEY(priority?: false) { + return [RQKEY_ROOT, priority] } -export function useNotificationFeedQuery(opts?: {enabled?: boolean}) { +export function useNotificationFeedQuery(opts?: { + enabled?: boolean + overridePriorityNotifications?: boolean +}) { const agent = useAgent() const queryClient = useQueryClient() const moderationOpts = useModerationOpts() @@ -59,6 +62,10 @@ export function useNotificationFeedQuery(opts?: {enabled?: boolean}) { const lastPageCountRef = useRef(0) const gate = useGate() + // false: force showing all notifications + // undefined: let the server decide + const priority = opts?.overridePriorityNotifications ? false : undefined + const query = useInfiniteQuery< FeedPage, Error, @@ -67,7 +74,7 @@ export function useNotificationFeedQuery(opts?: {enabled?: boolean}) { RQPageParam >({ staleTime: STALE.INFINITY, - queryKey: RQKEY(), + queryKey: RQKEY(priority), async queryFn({pageParam}: {pageParam: RQPageParam}) { let page if (!pageParam) { @@ -75,17 +82,17 @@ export function useNotificationFeedQuery(opts?: {enabled?: boolean}) { page = unreads.getCachedUnreadPage() } if (!page) { - page = ( - await fetchPage({ - agent, - limit: PAGE_SIZE, - cursor: pageParam, - queryClient, - moderationOpts, - fetchAdditionalData: true, - shouldUngroupFollowBacks: () => gate('ungroup_follow_backs'), - }) - ).page + const {page: fetchedPage} = await fetchPage({ + agent, + limit: PAGE_SIZE, + cursor: pageParam, + queryClient, + moderationOpts, + fetchAdditionalData: true, + shouldUngroupFollowBacks: () => gate('ungroup_follow_backs'), + priority, + }) + page = fetchedPage } // if the first page has an unread, mark all read diff --git a/src/state/queries/notifications/settings.ts b/src/state/queries/notifications/settings.ts new file mode 100644 index 0000000000..78ecbd9f7d --- /dev/null +++ b/src/state/queries/notifications/settings.ts @@ -0,0 +1,67 @@ +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' +import {useMutation, useQueryClient} from '@tanstack/react-query' + +import {until} from '#/lib/async/until' +import {logger} from '#/logger' +import {RQKEY as RQKEY_NOTIFS} from '#/state/queries/notifications/feed' +import {useAgent} from '#/state/session' +import * as Toast from '#/view/com/util/Toast' + +export function useNotificationsSettingsMutation() { + const {_} = useLingui() + const agent = useAgent() + const queryClient = useQueryClient() + + return useMutation({ + mutationFn: async (keys: string[]) => { + const enabled = keys[0] === 'enabled' + + await agent.api.app.bsky.notification.putPreferences({ + priority: enabled, + }) + + await until( + 5, // 5 tries + 1e3, // 1s delay between tries + res => res.data.priority === enabled, + () => agent.api.app.bsky.notification.listNotifications({limit: 1}), + ) + + eagerlySetCachedPriority(queryClient, enabled) + }, + onError: err => { + logger.error('Failed to save notification preferences', { + safeMessage: err, + }) + Toast.show( + _(msg`Failed to save notification preferences, please try again`), + 'xmark', + ) + }, + onSuccess: () => { + Toast.show(_(msg`Preference saved`)) + }, + onSettled: () => { + queryClient.invalidateQueries({queryKey: RQKEY_NOTIFS()}) + }, + }) +} + +function eagerlySetCachedPriority( + queryClient: ReturnType, + enabled: boolean, +) { + queryClient.setQueryData(RQKEY_NOTIFS(), (old: any) => { + if (!old) return old + return { + ...old, + pages: old.pages.map((page: any) => { + return { + ...page, + priority: enabled, + } + }), + } + }) +} diff --git a/src/state/queries/notifications/types.ts b/src/state/queries/notifications/types.ts index d40a07b12f..c96374eb8e 100644 --- a/src/state/queries/notifications/types.ts +++ b/src/state/queries/notifications/types.ts @@ -22,6 +22,7 @@ export interface FeedPage { cursor: string | undefined seenAt: Date items: FeedNotification[] + priority: boolean } export interface CachedFeedPage { diff --git a/src/state/queries/notifications/util.ts b/src/state/queries/notifications/util.ts index 2f2c242d82..7651e414a4 100644 --- a/src/state/queries/notifications/util.ts +++ b/src/state/queries/notifications/util.ts @@ -39,10 +39,15 @@ export async function fetchPage({ moderationOpts: ModerationOpts | undefined fetchAdditionalData: boolean shouldUngroupFollowBacks?: () => boolean -}): Promise<{page: FeedPage; indexedAt: string | undefined}> { + priority?: boolean +}): Promise<{ + page: FeedPage + indexedAt: string | undefined +}> { const res = await agent.listNotifications({ limit, cursor, + // priority, }) const indexedAt = res.data.notifications[0]?.indexedAt @@ -88,6 +93,7 @@ export async function fetchPage({ cursor: res.data.cursor, seenAt, items: notifsGrouped, + priority: res.data.priority ?? false, }, indexedAt, } diff --git a/src/view/com/notifications/Feed.tsx b/src/view/com/notifications/Feed.tsx index e2f12e84f1..3e7fdfc713 100644 --- a/src/view/com/notifications/Feed.tsx +++ b/src/view/com/notifications/Feed.tsx @@ -35,11 +35,13 @@ export function Feed({ onPressTryAgain, onScrolledDownChange, ListHeaderComponent, + overridePriorityNotifications, }: { scrollElRef?: ListRef onPressTryAgain?: () => void onScrolledDownChange: (isScrolledDown: boolean) => void ListHeaderComponent?: () => JSX.Element + overridePriorityNotifications?: boolean }) { const initialNumToRender = useInitialNumToRender() @@ -59,7 +61,10 @@ export function Feed({ hasNextPage, isFetchingNextPage, fetchNextPage, - } = useNotificationFeedQuery({enabled: !!moderationOpts}) + } = useNotificationFeedQuery({ + enabled: !!moderationOpts, + overridePriorityNotifications, + }) const isEmpty = !isFetching && !data?.pages[0]?.items.length const items = React.useMemo(() => { diff --git a/src/view/screens/Notifications.tsx b/src/view/screens/Notifications.tsx index f1ae7945a7..073e91c45e 100644 --- a/src/view/screens/Notifications.tsx +++ b/src/view/screens/Notifications.tsx @@ -1,11 +1,19 @@ -import React from 'react' +import React, {useCallback} from 'react' import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useFocusEffect, useIsFocused} from '@react-navigation/native' import {useQueryClient} from '@tanstack/react-query' +import {useAnalytics} from '#/lib/analytics/analytics' import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback' +import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' +import {ComposeIcon2} from '#/lib/icons' +import { + NativeStackScreenProps, + NotificationsTabNavigatorParams, +} from '#/lib/routes/types' +import {s} from '#/lib/styles' import {logger} from '#/logger' import {isNative} from '#/platform/detection' import {emitSoftReset, listenSoftReset} from '#/state/events' @@ -17,37 +25,32 @@ import { import {truncateAndInvalidate} from '#/state/queries/util' import {useSetMinimalShellMode} from '#/state/shell' import {useComposerControls} from '#/state/shell/composer' -import {useAnalytics} from 'lib/analytics/analytics' -import {usePalette} from 'lib/hooks/usePalette' -import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' -import {ComposeIcon2} from 'lib/icons' -import { - NativeStackScreenProps, - NotificationsTabNavigatorParams, -} from 'lib/routes/types' -import {colors, s} from 'lib/styles' -import {TextLink} from 'view/com/util/Link' +import {Feed} from '#/view/com/notifications/Feed' +import {FAB} from '#/view/com/util/fab/FAB' +import {MainScrollProvider} from '#/view/com/util/MainScrollProvider' +import {ViewHeader} from '#/view/com/util/ViewHeader' import {ListMethods} from 'view/com/util/List' import {LoadLatestBtn} from 'view/com/util/load-latest/LoadLatestBtn' import {CenteredView} from 'view/com/util/Views' +import {atoms as a, useTheme} from '#/alf' +import {Button} from '#/components/Button' +import {SettingsGear2_Stroke2_Corner0_Rounded as SettingsIcon} from '#/components/icons/SettingsGear2' +import {Link} from '#/components/Link' import {Loader} from '#/components/Loader' -import {Feed} from '../com/notifications/Feed' -import {FAB} from '../com/util/fab/FAB' -import {MainScrollProvider} from '../com/util/MainScrollProvider' -import {ViewHeader} from '../com/util/ViewHeader' +import {Text} from '#/components/Typography' type Props = NativeStackScreenProps< NotificationsTabNavigatorParams, 'Notifications' > -export function NotificationsScreen({}: Props) { +export function NotificationsScreen({route: {params}}: Props) { const {_} = useLingui() const setMinimalShellMode = useSetMinimalShellMode() const [isScrolledDown, setIsScrolledDown] = React.useState(false) const [isLoadingLatest, setIsLoadingLatest] = React.useState(false) const scrollElRef = React.useRef(null) const {screen} = useAnalytics() - const pal = usePalette('default') + const t = useTheme() const {isDesktop} = useWebMediaQueries() const queryClient = useQueryClient() const unreadNotifs = useUnreadNotifications() @@ -109,56 +112,87 @@ export function NotificationsScreen({}: Props) { return listenSoftReset(onPressLoadLatest) }, [onPressLoadLatest, isScreenFocused]) + const renderButton = useCallback(() => { + return ( + + + + ) + }, [_, t]) + const ListHeaderComponent = React.useCallback(() => { if (isDesktop) { return ( - - Notifications{' '} + + + {isLoadingLatest ? : <>} + {renderButton()} + ) } return <> - }, [isDesktop, pal, hasNew, isLoadingLatest]) + }, [isDesktop, t, hasNew, renderButton, _, isLoadingLatest]) const renderHeaderSpinner = React.useCallback(() => { return ( - + {isLoadingLatest ? : <>} + {renderButton()} ) - }, [isLoadingLatest]) + }, [renderButton, isLoadingLatest]) return ( {(isScrolledDown || hasNew) && ( diff --git a/src/view/screens/NotificationsSettings.tsx b/src/view/screens/NotificationsSettings.tsx new file mode 100644 index 0000000000..2716a07f97 --- /dev/null +++ b/src/view/screens/NotificationsSettings.tsx @@ -0,0 +1,94 @@ +import React from 'react' +import {View} from 'react-native' +import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {AllNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types' +import {useNotificationFeedQuery} from '#/state/queries/notifications/feed' +import {useNotificationsSettingsMutation} from '#/state/queries/notifications/settings' +import {ViewHeader} from '#/view/com/util/ViewHeader' +import {CenteredView} from '#/view/com/util/Views' +import {atoms as a, useTheme} from '#/alf' +import {Error} from '#/components/Error' +import * as Toggle from '#/components/forms/Toggle' +import {Loader} from '#/components/Loader' +import {Text} from '#/components/Typography' + +type Props = NativeStackScreenProps +export function NotificationsSettingsScreen({}: Props) { + const {_} = useLingui() + const t = useTheme() + + const {data, isError: isQueryError, refetch} = useNotificationFeedQuery() + const serverPriority = data?.pages.at(0)?.priority + + const { + mutate: onChangePriority, + isPending: isMutationPending, + variables, + } = useNotificationsSettingsMutation() + + const priority = isMutationPending + ? variables[0] === 'enabled' + : serverPriority + + return ( + + + {isQueryError ? ( + + ) : ( + + + {' '} + Notification filters + + + + + + Enable priority notifications + + {!data ? : } + + + + + + + Experimental: When this preference is enabled, you'll only + receive reply and quote notifications from users you follow. + We'll continue to add more controls here over time. + + + + + )} + + ) +} diff --git a/yarn.lock b/yarn.lock index a83d41dba6..6450d33b79 100644 --- a/yarn.lock +++ b/yarn.lock @@ -34,10 +34,10 @@ jsonpointer "^5.0.0" leven "^3.1.0" -"@atproto/api@^0.12.23": - version "0.12.23" - resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.12.23.tgz#b3409817d0b981a64f30d16e8257f0fe261338af" - integrity sha512-fgQ30u+q9smX5g41eep7fISSkSAhRkX0inc81PZ82QwcHbFkC8ePaha/KP0CoTaPWKi7EsC89Z/8BEBCJo0oBA== +"@atproto/api@0.12.25": + version "0.12.25" + resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.12.25.tgz#9eeb51484106a5e07f89f124e505674a3574f93b" + integrity sha512-IV3vGPnDw9bmyP/JOd8YKbm8fOpRAgJpEUVnIZNVb/Vo8v+WOroOjrJxtzdHOcXTL9IEcTTyXSCc7yE7kwhN2A== dependencies: "@atproto/common-web" "^0.3.0" "@atproto/lexicon" "^0.4.0" From 8fe5ddfa49df30c744aecdd58eac430c08037abd Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 24 Jul 2024 20:40:06 +0100 Subject: [PATCH 02/30] Modernise thread/following feed settings screen (#4797) * fix web * show back button on tablet for certain settings screens * move headers to inside of scrollview --------- Co-authored-by: Samuel Newman <10959775+mozzius@users.noreply.github.com> --- src/view/screens/AccessibilitySettings.tsx | 4 +- .../screens/PreferencesExternalEmbeds.tsx | 33 +++--- src/view/screens/PreferencesFollowingFeed.tsx | 93 ++++++--------- src/view/screens/PreferencesThreads.tsx | 108 +++++++----------- 4 files changed, 90 insertions(+), 148 deletions(-) diff --git a/src/view/screens/AccessibilitySettings.tsx b/src/view/screens/AccessibilitySettings.tsx index 9ac9793367..abe1550762 100644 --- a/src/view/screens/AccessibilitySettings.tsx +++ b/src/view/screens/AccessibilitySettings.tsx @@ -36,7 +36,7 @@ export function AccessibilitySettingsScreen({}: Props) { const pal = usePalette('default') const setMinimalShellMode = useSetMinimalShellMode() const {screen} = useAnalytics() - const {isMobile} = useWebMediaQueries() + const {isMobile, isTabletOrMobile} = useWebMediaQueries() const {_} = useLingui() const requireAltTextEnabled = useRequireAltTextEnabled() @@ -58,7 +58,7 @@ export function AccessibilitySettingsScreen({}: Props) { return ( { @@ -41,26 +41,23 @@ export function PreferencesExternalEmbeds({}: Props) { return ( - - - - External Media Preferences - - - Customize media from external sites. - - - + contentContainerStyle={[pal.viewLight, {paddingBottom: 75}]}> + + + + External Media Preferences + + + Customize media from external sites. + + + + diff --git a/src/view/screens/PreferencesFollowingFeed.tsx b/src/view/screens/PreferencesFollowingFeed.tsx index b427a0f2b1..879c925fbf 100644 --- a/src/view/screens/PreferencesFollowingFeed.tsx +++ b/src/view/screens/PreferencesFollowingFeed.tsx @@ -1,24 +1,24 @@ import React, {useState} from 'react' -import {ScrollView, StyleSheet, TouchableOpacity, View} from 'react-native' +import {StyleSheet, View} from 'react-native' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {msg, Plural, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {Slider} from '@miblanchard/react-native-slider' import debounce from 'lodash.debounce' +import {usePalette} from '#/lib/hooks/usePalette' +import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' +import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types' +import {colors, s} from '#/lib/styles' +import {isWeb} from '#/platform/detection' import { usePreferencesQuery, useSetFeedViewPreferencesMutation, } from '#/state/queries/preferences' -import {usePalette} from 'lib/hooks/usePalette' -import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' -import {CommonNavigatorParams, NativeStackScreenProps} from 'lib/routes/types' -import {colors, s} from 'lib/styles' -import {isWeb} from 'platform/detection' -import {ToggleButton} from 'view/com/util/forms/ToggleButton' -import {ViewHeader} from 'view/com/util/ViewHeader' -import {CenteredView} from 'view/com/util/Views' -import {Text} from '../com/util/text/Text' +import {ToggleButton} from '#/view/com/util/forms/ToggleButton' +import {SimpleViewHeader} from '#/view/com/util/SimpleViewHeader' +import {Text} from '#/view/com/util/text/Text' +import {ScrollView} from '#/view/com/util/Views' function RepliesThresholdInput({ enabled, @@ -79,10 +79,10 @@ type Props = NativeStackScreenProps< CommonNavigatorParams, 'PreferencesFollowingFeed' > -export function PreferencesFollowingFeed({navigation}: Props) { +export function PreferencesFollowingFeed({}: Props) { const pal = usePalette('default') const {_} = useLingui() - const {isTabletOrDesktop} = useWebMediaQueries() + const {isTabletOrMobile} = useWebMediaQueries() const {data: preferences} = usePreferencesQuery() const {mutate: setFeedViewPref, variables} = useSetFeedViewPreferencesMutation() @@ -92,26 +92,25 @@ export function PreferencesFollowingFeed({navigation}: Props) { ) return ( - - - - - Fine-tune the content you see on your Following feed. - - - - + + + + + + Following Feed Preferences + + + + Fine-tune the content you see on your Following feed. + + + + @@ -253,7 +252,7 @@ export function PreferencesFollowingFeed({navigation}: Props) { - + {' '} Show Posts from My Feeds @@ -288,42 +287,17 @@ export function PreferencesFollowingFeed({navigation}: Props) { - - - { - navigation.canGoBack() - ? navigation.goBack() - : navigation.navigate('Settings') - }} - style={[styles.btn, isTabletOrDesktop && styles.btnDesktop]} - accessibilityRole="button" - accessibilityLabel={_(msg`Confirm`)} - accessibilityHint=""> - - Done - - - - + ) } const styles = StyleSheet.create({ container: { flex: 1, - paddingBottom: 90, }, desktopContainer: { borderLeftWidth: 1, borderRightWidth: 1, - paddingBottom: 40, }, titleSection: { paddingBottom: 30, @@ -338,6 +312,7 @@ const styles = StyleSheet.create({ }, cardsContainer: { paddingHorizontal: 20, + paddingVertical: 16, }, card: { padding: 16, diff --git a/src/view/screens/PreferencesThreads.tsx b/src/view/screens/PreferencesThreads.tsx index 321c672936..3b09f0abb5 100644 --- a/src/view/screens/PreferencesThreads.tsx +++ b/src/view/screens/PreferencesThreads.tsx @@ -1,33 +1,29 @@ import React from 'react' -import { - ActivityIndicator, - ScrollView, - StyleSheet, - TouchableOpacity, - View, -} from 'react-native' +import {ActivityIndicator, StyleSheet, View} from 'react-native' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' -import {Text} from '../com/util/text/Text' -import {s, colors} from 'lib/styles' -import {usePalette} from 'lib/hooks/usePalette' -import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' -import {ToggleButton} from 'view/com/util/forms/ToggleButton' -import {RadioGroup} from 'view/com/util/forms/RadioGroup' -import {CommonNavigatorParams, NativeStackScreenProps} from 'lib/routes/types' -import {ViewHeader} from 'view/com/util/ViewHeader' -import {CenteredView} from 'view/com/util/Views' -import {Trans, msg} from '@lingui/macro' +import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' + +import {usePalette} from '#/lib/hooks/usePalette' +import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' +import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types' +import {colors, s} from '#/lib/styles' import { usePreferencesQuery, useSetThreadViewPreferencesMutation, } from '#/state/queries/preferences' +import {RadioGroup} from '#/view/com/util/forms/RadioGroup' +import {ToggleButton} from '#/view/com/util/forms/ToggleButton' +import {SimpleViewHeader} from '#/view/com/util/SimpleViewHeader' +import {Text} from '#/view/com/util/text/Text' +import {ScrollView} from '#/view/com/util/Views' +import {atoms as a} from '#/alf' type Props = NativeStackScreenProps -export function PreferencesThreads({navigation}: Props) { +export function PreferencesThreads({}: Props) { const pal = usePalette('default') const {_} = useLingui() - const {isTabletOrDesktop} = useWebMediaQueries() + const {isTabletOrMobile} = useWebMediaQueries() const {data: preferences} = usePreferencesQuery() const {mutate: setThreadViewPrefs, variables} = useSetThreadViewPreferencesMutation() @@ -42,27 +38,25 @@ export function PreferencesThreads({navigation}: Props) { ) return ( - - - - - Fine-tune the discussion threads. - - + + + + + + Thread Preferences + + + Fine-tune the discussion threads. + + + - {preferences ? ( - + {preferences ? ( @@ -136,46 +130,21 @@ export function PreferencesThreads({navigation}: Props) { /> - - ) : ( - - )} - - - { - navigation.canGoBack() - ? navigation.goBack() - : navigation.navigate('Settings') - }} - style={[styles.btn, isTabletOrDesktop && styles.btnDesktop]} - accessibilityRole="button" - accessibilityLabel={_(msg`Confirm`)} - accessibilityHint=""> - - Done - - - - + ) : ( + + )} + + ) } const styles = StyleSheet.create({ container: { flex: 1, - paddingBottom: 90, }, desktopContainer: { borderLeftWidth: 1, borderRightWidth: 1, - paddingBottom: 40, }, titleSection: { paddingBottom: 30, @@ -190,6 +159,7 @@ const styles = StyleSheet.create({ }, cardsContainer: { paddingHorizontal: 20, + paddingVertical: 16, }, card: { padding: 16, From efde018b13483a8e2ed15e9d57e97b6d21b7c1c6 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 24 Jul 2024 21:44:41 +0100 Subject: [PATCH 03/30] special invalidation logic (#4820) Co-authored-by: Samuel Newman <10959775+mozzius@users.noreply.github.com> --- src/state/queries/notifications/settings.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/state/queries/notifications/settings.ts b/src/state/queries/notifications/settings.ts index 78ecbd9f7d..bfc449d17b 100644 --- a/src/state/queries/notifications/settings.ts +++ b/src/state/queries/notifications/settings.ts @@ -5,6 +5,7 @@ import {useMutation, useQueryClient} from '@tanstack/react-query' import {until} from '#/lib/async/until' import {logger} from '#/logger' import {RQKEY as RQKEY_NOTIFS} from '#/state/queries/notifications/feed' +import {invalidateCachedUnreadPage} from '#/state/queries/notifications/unread' import {useAgent} from '#/state/session' import * as Toast from '#/view/com/util/Toast' @@ -43,6 +44,7 @@ export function useNotificationsSettingsMutation() { Toast.show(_(msg`Preference saved`)) }, onSettled: () => { + invalidateCachedUnreadPage() queryClient.invalidateQueries({queryKey: RQKEY_NOTIFS()}) }, }) From bfb7f6efeff5117c80b8ad5ba4227623a4ce6e80 Mon Sep 17 00:00:00 2001 From: Hailey Date: Wed, 24 Jul 2024 14:23:37 -0700 Subject: [PATCH 04/30] make toast shorter (#4821) --- src/view/com/util/Toast.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view/com/util/Toast.tsx b/src/view/com/util/Toast.tsx index d510eed87f..f7c6bc2c91 100644 --- a/src/view/com/util/Toast.tsx +++ b/src/view/com/util/Toast.tsx @@ -12,7 +12,7 @@ import {atoms as a, useTheme} from '#/alf' import {Text} from '#/components/Typography' import {IS_TEST} from '#/env' -const TIMEOUT = 3.7e3 +const TIMEOUT = 2e3 export function show( message: string, From 11f24159428f517e26c716f3afffb85fdde93178 Mon Sep 17 00:00:00 2001 From: Hailey Date: Wed, 24 Jul 2024 14:39:01 -0700 Subject: [PATCH 05/30] make some settings screens scrollable for accessibility (#4819) * make settings scrollable for accessibility * nit --- src/screens/Messages/Settings.tsx | 6 +++--- src/view/screens/NotificationsSettings.tsx | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/screens/Messages/Settings.tsx b/src/screens/Messages/Settings.tsx index df469d13f5..b1c52582f0 100644 --- a/src/screens/Messages/Settings.tsx +++ b/src/screens/Messages/Settings.tsx @@ -11,7 +11,7 @@ import {useProfileQuery} from '#/state/queries/profile' import {useSession} from '#/state/session' import * as Toast from '#/view/com/util/Toast' import {ViewHeader} from '#/view/com/util/ViewHeader' -import {CenteredView} from '#/view/com/util/Views' +import {ScrollView} from '#/view/com/util/Views' import {atoms as a, useTheme} from '#/alf' import {Divider} from '#/components/Divider' import * as Toggle from '#/components/forms/Toggle' @@ -55,7 +55,7 @@ export function MessagesSettingsScreen({}: Props) { ) return ( - + @@ -149,6 +149,6 @@ export function MessagesSettingsScreen({}: Props) { )} - + ) } diff --git a/src/view/screens/NotificationsSettings.tsx b/src/view/screens/NotificationsSettings.tsx index 2716a07f97..8955119a6b 100644 --- a/src/view/screens/NotificationsSettings.tsx +++ b/src/view/screens/NotificationsSettings.tsx @@ -8,7 +8,7 @@ import {AllNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types' import {useNotificationFeedQuery} from '#/state/queries/notifications/feed' import {useNotificationsSettingsMutation} from '#/state/queries/notifications/settings' import {ViewHeader} from '#/view/com/util/ViewHeader' -import {CenteredView} from '#/view/com/util/Views' +import {ScrollView} from '#/view/com/util/Views' import {atoms as a, useTheme} from '#/alf' import {Error} from '#/components/Error' import * as Toggle from '#/components/forms/Toggle' @@ -34,7 +34,7 @@ export function NotificationsSettingsScreen({}: Props) { : serverPriority return ( - + )} - + ) } From 86ac3d687c891086e31321244f02a47668e07739 Mon Sep 17 00:00:00 2001 From: surfdude29 <149612116+surfdude29@users.noreply.github.com> Date: Wed, 24 Jul 2024 22:39:38 +0100 Subject: [PATCH 06/30] Update French localization (#4781) * Update French localization * Apply suggestion from code review Co-authored-by: Stanislas Signoud --------- Co-authored-by: Stanislas Signoud --- src/locale/locales/fr/messages.po | 51 +++++++++++++++++++++++++------ 1 file changed, 41 insertions(+), 10 deletions(-) diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index 6b32dbe719..1c232407ec 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: \n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-07-04 14:15+0100\n" +"PO-Revision-Date: 2024-07-12 14:40+0100\n" "Last-Translator: surfdude29\n" "Language-Team: Stanislas Signoud (@signez.fr), surfdude29\n" "Plural-Forms: \n" @@ -567,10 +567,6 @@ msgstr "Affichage" msgid "Apply default recommended feeds" msgstr "Utiliser les fils d’actu recommandés par défaut" -#: src/screens/StarterPack/StarterPackScreen.tsx:610 -msgid "Are you sure you want delete this starter pack?" -msgstr "Êtes-vous sûr de vouloir supprimer ce kit de démarrage ?" - #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "Êtes-vous sûr de vouloir supprimer le mot de passe de l’application « {name} » ?" @@ -579,6 +575,10 @@ msgstr "Êtes-vous sûr de vouloir supprimer le mot de passe de l’application msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Êtes-vous sûr de vouloir supprimer ce message ? Ce message sera supprimé pour vous, mais pas pour l’autre personne." +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Are you sure you want to delete this starter pack?" +msgstr "Êtes-vous sûr de vouloir supprimer ce kit de démarrage ?" + #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Êtes-vous sûr de vouloir partir de cette conversation ? Vos messages seront supprimés pour vous, mais pas pour l’autre personne." @@ -1363,6 +1363,10 @@ msgstr "Copier le code QR" msgid "Copyright Policy" msgstr "Politique sur les droits d’auteur" +#: src/view/com/composer/videos/state.ts:31 +msgid "Could not compress video" +msgstr "Impossible de compresser la vidéo" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "Impossible de partir de la discussion" @@ -2798,10 +2802,6 @@ msgstr "Entrez le mot de passe pour la suppression du compte" msgid "Input the code which has been emailed to you" msgstr "Entrez le code qui vous a été envoyé par e-mail" -#: src/screens/Login/LoginForm.tsx:221 -#~ msgid "Input the password tied to {identifier}" -#~ msgstr "Entrez le mot de passe associé à {identifier}" - #: src/screens/Login/LoginForm.tsx:215 msgid "Input the username or email address you used at signup" msgstr "Entrez le pseudo ou l’adresse e-mail que vous avez utilisé lors de l’inscription" @@ -4008,6 +4008,10 @@ msgstr "Ouvre les préférences relatives aux fils de discussion" msgid "Opens this profile" msgstr "Ouvre ce profil" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:54 +msgid "Opens video picker" +msgstr "Ouvre le sélecteur de vidéos" + #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "Option {0} sur {numItems}" @@ -4553,6 +4557,10 @@ msgstr "Supprime la miniature par défaut de {0}" msgid "Removes quoted post" msgstr "Supprime le post cité" +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the image preview" +msgstr "Supprime l’aperçu de l’image" + #: src/view/com/posts/FeedShutdownMsg.tsx:126 #: src/view/com/posts/FeedShutdownMsg.tsx:130 msgid "Replace with Discover" @@ -4590,6 +4598,12 @@ msgctxt "description" msgid "Reply to a blocked post" msgstr "Réponse à un post bloqué" +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:454 +msgctxt "description" +msgid "Reply to you" +msgstr "Réponse à vous" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -4695,6 +4709,11 @@ msgstr "Republié par {0}" msgid "Reposted by <0><1/>" msgstr "Republié par <0><1/>" +#: src/view/com/posts/FeedItem.tsx:261 +#: src/view/com/posts/FeedItem.tsx:280 +msgid "Reposted by you" +msgstr "Republié par vous" + #: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "a republié votre post" @@ -5030,6 +5049,10 @@ msgstr "Sélectionnez le(s) service(s) de modération destinataires du signaleme msgid "Select the service that hosts your data." msgstr "Sélectionnez le service qui héberge vos données." +#: src/view/com/composer/videos/SelectVideoBtn.tsx:53 +msgid "Select video" +msgstr "Sélectionner une vidéo" + #: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "Sélectionnez les langues que vous souhaitez voir figurer dans les fils d’actu que vous suivez. Si aucune langue n’est sélectionnée, toutes les langues seront affichées." @@ -5267,6 +5290,10 @@ msgstr "Partagez ce kit de démarrage et aidez les gens à rejoindre votre commu msgid "Share your favorite feed!" msgstr "Partagez votre fil d’actu favori !" +#: src/Navigation.tsx:241 +msgid "Shared Preferences Tester" +msgstr "Testeur de préférences partagées" + #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" msgstr "Partage le site web lié" @@ -6484,6 +6511,10 @@ msgstr "Version {appVersion} {bundleInfo}" msgid "Video Games" msgstr "Jeux vidéo" +#: src/view/com/composer/videos/state.ts:27 +msgid "Videos cannot be larger than 100MB" +msgstr "Les vidéos ne peuvent pas dépasser 100 Mo" + #: src/screens/Profile/Header/Shell.tsx:113 msgid "View {0}'s avatar" msgstr "Voir l’avatar de {0}" @@ -6873,7 +6904,7 @@ msgstr "Vous n’avez pas encore de conversations. Démarrez en une !" #: src/view/com/feeds/ProfileFeedgens.tsx:137 msgid "You have no feeds." -msgstr "Vous n’avez aucun fil." +msgstr "Vous n’avez aucun fil d’actu." #: src/view/com/lists/MyLists.tsx:90 #: src/view/com/lists/ProfileLists.tsx:144 From 7a0aa661a7f4e596892042b85e452dfa378b4133 Mon Sep 17 00:00:00 2001 From: Kuwa Lee Date: Thu, 25 Jul 2024 05:40:32 +0800 Subject: [PATCH 07/30] Update Chinese Localization (#4774) * TW: Update * TW: Clean * TW: Update * CN: Update translates * Both: Remove superseded strings * Both: Remove superseded strings#2 * TW: Update and clean * TW: Update * CN: Update translates * TW: Improve * Update messages.po * CN: Update translates --------- Co-authored-by: Frudrax Cheng Co-authored-by: cirx <133132480+cirx1e@users.noreply.github.com> --- src/locale/locales/zh-CN/messages.po | 1041 +++++++++++++------------- src/locale/locales/zh-TW/messages.po | 895 +++++++++++----------- 2 files changed, 997 insertions(+), 939 deletions(-) diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po index d763c003ef..c006cffb96 100644 --- a/src/locale/locales/zh-CN/messages.po +++ b/src/locale/locales/zh-CN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: zh_CN\n" "Project-Id-Version: zh-CN for bluesky-social-app\n" "Report-Msgid-Bugs-To: Frudrax Cheng \n" -"PO-Revision-Date: 2024-07-04 14:49+0800\n" +"PO-Revision-Date: 2024-07-15 09:11+0800\n" "Last-Translator: Frudrax Cheng \n" "Language-Team: Frudrax Cheng (auroursa), Simon Chan (RitsukiP), U2FsdGVkX1, Mikan Harada (mitian233), IceCodeNew\n" "Plural-Forms: \n" @@ -21,7 +21,7 @@ msgstr "(包含嵌入内容)" msgid "(no email)" msgstr "(没有邮件)" -#: src/view/com/notifications/FeedItem.tsx:294 +#: src/view/com/notifications/FeedItem.tsx:297 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {其他 {formattedCount} 人} other {其他 {formattedCount} 人}}" @@ -76,7 +76,7 @@ msgstr "{0, plural, one {转发} other {转发}}" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {取消喜欢 (# 个喜欢)} other {取消喜欢 (# 个喜欢)}}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "在本周加入了 {0} 人" @@ -84,7 +84,7 @@ msgstr "在本周加入了 {0} 人" msgid "{0} people have used this starter pack!" msgstr "{0} 人已使用过此入门包!" -#: src/view/com/util/UserAvatar.tsx:419 +#: src/view/com/util/UserAvatar.tsx:431 msgid "{0}'s avatar" msgstr "{0}的头像" @@ -132,7 +132,7 @@ msgstr "{estimatedTimeHrs, plural, one {时} other {时}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {分} other {分}}" -#: src/components/ProfileHoverCard/index.web.tsx:504 +#: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} 个正在关注" @@ -143,11 +143,11 @@ msgstr "无法给 {handle} 发送私信" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:588 +#: src/view/screens/ProfileFeed.tsx:590 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {# 位用户喜欢} other {# 位用户喜欢}}" -#: src/view/shell/Drawer.tsx:462 +#: src/view/shell/Drawer.tsx:452 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} 个未读" @@ -163,7 +163,7 @@ msgstr "{profileName} 在 {0} 前使用入门包加入了 Bluesky" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "{value, plural, =0 {显示所有回复} one {显示至少含有 # 个喜欢数的回复} other {显示至少含有 # 个喜欢数的回复}}" -#: src/components/WhoCanReply.tsx:295 +#: src/components/WhoCanReply.tsx:296 msgid "<0/> members" msgstr "<0/> 个成员" @@ -177,11 +177,11 @@ msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}、<1>{1}及{2, plural, one {其他 # } other {其他 # }}个资讯源包含在你的入门包中" -#: src/view/shell/Drawer.tsx:101 +#: src/view/shell/Drawer.tsx:100 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {关注者} other {关注者}}" -#: src/view/shell/Drawer.tsx:112 +#: src/view/shell/Drawer.tsx:111 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {正在关注} other {正在关注}}" @@ -223,22 +223,22 @@ msgid "Access profile and other navigation links" msgstr "访问个人资料及其他导航链接" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:519 +#: src/view/screens/Settings/index.tsx:520 msgid "Accessibility" msgstr "无障碍" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Accessibility settings" msgstr "无障碍设置" -#: src/Navigation.tsx:301 +#: src/Navigation.tsx:308 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "无障碍设置" #: src/screens/Login/LoginForm.tsx:190 -#: src/view/screens/Settings/index.tsx:346 -#: src/view/screens/Settings/index.tsx:753 +#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:754 msgid "Account" msgstr "账户" @@ -285,7 +285,7 @@ msgid "Account unmuted" msgstr "已取消隐藏账户" #: src/components/dialogs/MutedWords.tsx:164 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 msgid "Add" @@ -309,8 +309,8 @@ msgstr "将用户添加至列表" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:423 -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:433 msgid "Add account" msgstr "添加账户" @@ -366,7 +366,7 @@ msgstr "添加至列表" msgid "Add to my feeds" msgstr "添加至自定义资讯源" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "已添加至列表" @@ -393,7 +393,7 @@ msgid "Adult content is disabled." msgstr "成人内容显示已被禁用。" #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:687 +#: src/view/screens/Settings/index.tsx:688 msgid "Advanced" msgstr "详细设置" @@ -409,8 +409,8 @@ msgstr "已关注所有账户!" msgid "All the feeds you've saved, right in one place." msgstr "你保存的所有资讯源都集中在一处。" -#: src/view/com/modals/AddAppPasswords.tsx:187 -#: src/view/com/modals/AddAppPasswords.tsx:194 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "允许读取你的私信" @@ -430,7 +430,7 @@ msgstr "已以@{0}身份登录" #: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "ALT" msgstr "ALT" @@ -440,7 +440,7 @@ msgstr "ALT" msgid "Alt text" msgstr "替代文本" -#: src/view/com/util/post-embeds/GifEmbed.tsx:180 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Alt Text" msgstr "替代文本" @@ -465,8 +465,8 @@ msgstr "发生错误" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "创建入门包时发生错误,重试?" -#: src/components/StarterPack/QrCodeDialog.tsx:70 -#: src/components/StarterPack/ShareDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the QR code!" msgstr "保存二维码时发生错误!" @@ -478,10 +478,18 @@ msgstr "关注所有人时发生错误" msgid "An issue not included in these options" msgstr "不在这些选项中的问题" +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "开启新私信时出现问题" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +msgid "An issue occurred while trying to open the chat" +msgstr "开启私信时出现问题" + #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:309 -#: src/components/ProfileCard.tsx:329 +#: src/components/ProfileCard.tsx:311 +#: src/components/ProfileCard.tsx:331 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -493,8 +501,8 @@ msgstr "出现问题,请重试。" msgid "an unknown error occurred" msgstr "出现未知错误" -#: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:291 +#: src/components/WhoCanReply.tsx:317 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "和" @@ -503,7 +511,7 @@ msgstr "和" msgid "Animals" msgstr "动物" -#: src/view/com/util/post-embeds/GifEmbed.tsx:146 +#: src/view/com/util/post-embeds/GifEmbed.tsx:155 msgid "Animated GIF" msgstr "GIF 动画" @@ -527,26 +535,26 @@ msgstr "应用专用密码只能包含字母、数字、空格、破折号及下 msgid "App Password names must be at least 4 characters long." msgstr "应用专用密码必须至少为 4 个字符。" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "App password settings" msgstr "应用专用密码设置" -#: src/Navigation.tsx:269 +#: src/Navigation.tsx:276 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:707 +#: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" msgstr "应用专用密码" -#: src/components/moderation/LabelsOnMeDialog.tsx:151 -#: src/components/moderation/LabelsOnMeDialog.tsx:154 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "申诉" -#: src/components/moderation/LabelsOnMeDialog.tsx:236 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Appeal \"{0}\" label" msgstr "申诉 \"{0}\" 标记" -#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/components/moderation/LabelsOnMeDialog.tsx:248 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "申诉已提交" @@ -558,7 +566,7 @@ msgstr "申诉已提交" msgid "Appeal this decision" msgstr "对此结果提出申诉" -#: src/view/screens/Settings/index.tsx:440 +#: src/view/screens/Settings/index.tsx:441 msgid "Appearance" msgstr "外观" @@ -567,10 +575,6 @@ msgstr "外观" msgid "Apply default recommended feeds" msgstr "使用默认推荐的资讯源" -#: src/screens/StarterPack/StarterPackScreen.tsx:610 -msgid "Are you sure you want delete this starter pack?" -msgstr "你确定要删除此入门包吗?" - #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "你确定要删除这条应用专用密码 \"{name}\" 吗?" @@ -579,6 +583,10 @@ msgstr "你确定要删除这条应用专用密码 \"{name}\" 吗?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "你确定要删除这条私信吗?此操作仅会在你的对话中删除私信,而不会在其他人的对话中删除。" +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Are you sure you want to delete this starter pack?" +msgstr "你确定要删除此入门包吗?" + #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "你确定要离开这个对话吗?此操作仅会在你的私信列表中删除对话,而不会在其他人的私信列表中删除。" @@ -591,7 +599,7 @@ msgstr "你确定要从你的资讯源中删除 {0} 吗?" msgid "Are you sure you want to remove this from your feeds?" msgstr "你确定要从自定义资讯源列表中删除此资讯源吗?" -#: src/view/com/composer/Composer.tsx:649 +#: src/view/com/composer/Composer.tsx:680 msgid "Are you sure you'd like to discard this draft?" msgstr "你确定要丢弃这段草稿吗?" @@ -617,8 +625,8 @@ msgid "At least 3 characters" msgstr "至少 3 个字符" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:281 -#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/components/moderation/LabelsOnMeDialog.tsx:302 +#: src/components/moderation/LabelsOnMeDialog.tsx:303 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -631,13 +639,12 @@ msgstr "至少 3 个字符" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "返回" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Basics" msgstr "基础信息" @@ -645,7 +652,7 @@ msgstr "基础信息" msgid "Birthday" msgstr "生日" -#: src/view/screens/Settings/index.tsx:378 +#: src/view/screens/Settings/index.tsx:379 msgid "Birthday:" msgstr "生日:" @@ -689,7 +696,7 @@ msgstr "已屏蔽" msgid "Blocked accounts" msgstr "已屏蔽账户" -#: src/Navigation.tsx:145 +#: src/Navigation.tsx:147 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "已屏蔽账户" @@ -756,21 +763,21 @@ msgstr "模糊化图片并从资讯源中过滤" msgid "Books" msgstr "书籍" -#: src/components/FeedInterstitials.tsx:281 +#: src/components/FeedInterstitials.tsx:285 msgid "Browse more accounts on the Explore page" msgstr "在探索页面浏览更多账户" -#: src/components/FeedInterstitials.tsx:411 +#: src/components/FeedInterstitials.tsx:415 msgid "Browse more feeds on the Explore page" msgstr "在探索页面浏览更多资讯源" -#: src/components/FeedInterstitials.tsx:266 -#: src/components/FeedInterstitials.tsx:396 +#: src/components/FeedInterstitials.tsx:270 +#: src/components/FeedInterstitials.tsx:400 msgid "Browse more suggestions" msgstr "浏览更多建议" -#: src/components/FeedInterstitials.tsx:289 -#: src/components/FeedInterstitials.tsx:420 +#: src/components/FeedInterstitials.tsx:293 +#: src/components/FeedInterstitials.tsx:424 msgid "Browse more suggestions on the Explore page" msgstr "在探索页面浏览更多建议" @@ -807,7 +814,7 @@ msgstr "来自你" msgid "Camera" msgstr "相机" -#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "只能包含字母、数字、空格、破折号及下划线。 长度必须至少 4 个字符,但不超过 32 个字符。" @@ -816,8 +823,8 @@ msgstr "只能包含字母、数字、空格、破折号及下划线。 长度 #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:451 -#: src/view/com/composer/Composer.tsx:457 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -835,7 +842,7 @@ msgstr "只能包含字母、数字、空格、破折号及下划线。 长度 #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:139 #: src/view/screens/Search/Search.tsx:704 -#: src/view/shell/desktop/Search.tsx:218 +#: src/view/shell/desktop/Search.tsx:219 msgid "Cancel" msgstr "取消" @@ -871,8 +878,8 @@ msgstr "取消引用帖文" msgid "Cancel reactivation and log out" msgstr "取消重新激活账户并登出" -#: src/view/com/modals/ListAddRemoveUsers.tsx:87 -#: src/view/shell/desktop/Search.tsx:214 +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "取消搜索" @@ -884,17 +891,17 @@ msgstr "取消打开链接的网站" msgid "Change" msgstr "更改" -#: src/view/screens/Settings/index.tsx:372 +#: src/view/screens/Settings/index.tsx:373 msgctxt "action" msgid "Change" msgstr "更改" -#: src/view/screens/Settings/index.tsx:719 +#: src/view/screens/Settings/index.tsx:720 msgid "Change handle" msgstr "更改用户识别符" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:730 +#: src/view/screens/Settings/index.tsx:731 msgid "Change Handle" msgstr "更改用户识别符" @@ -902,12 +909,12 @@ msgstr "更改用户识别符" msgid "Change my email" msgstr "更改我的邮箱地址" -#: src/view/screens/Settings/index.tsx:764 +#: src/view/screens/Settings/index.tsx:765 msgid "Change password" msgstr "更改密码" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:775 +#: src/view/screens/Settings/index.tsx:776 msgid "Change Password" msgstr "更改密码" @@ -919,7 +926,7 @@ msgstr "更改帖文的发布语言至 {0}" msgid "Change Your Email" msgstr "更改你的邮箱地址" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:320 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -931,14 +938,14 @@ msgstr "已隐藏对话" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:325 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" msgstr "私信设置" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:648 +#: src/view/screens/Settings/index.tsx:649 msgid "Chat Settings" msgstr "私信设置" @@ -1000,19 +1007,19 @@ msgstr "选择谁可以回复" msgid "Choose your password" msgstr "选择你的密码" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clear all legacy storage data" msgstr "清除所有旧存储数据" -#: src/view/screens/Settings/index.tsx:914 +#: src/view/screens/Settings/index.tsx:915 msgid "Clear all legacy storage data (restart after this)" msgstr "清除所有旧存储数据(并重启)" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clear all storage data" msgstr "清除所有数据" -#: src/view/screens/Settings/index.tsx:926 +#: src/view/screens/Settings/index.tsx:927 msgid "Clear all storage data (restart after this)" msgstr "清除所有数据(并重启)" @@ -1021,11 +1028,11 @@ msgstr "清除所有数据(并重启)" msgid "Clear search query" msgstr "清除搜索历史记录" -#: src/view/screens/Settings/index.tsx:912 +#: src/view/screens/Settings/index.tsx:913 msgid "Clears all legacy storage data" msgstr "清除所有旧版存储数据" -#: src/view/screens/Settings/index.tsx:924 +#: src/view/screens/Settings/index.tsx:925 msgid "Clears all storage data" msgstr "清除所有数据" @@ -1045,7 +1052,7 @@ msgstr "点击这里以获取更多详情。" msgid "Click here to open tag menu for {tag}" msgstr "点击这里打开 {tag} 的标签菜单" -#: src/components/dms/MessageItem.tsx:237 +#: src/components/dms/MessageItem.tsx:231 msgid "Click to retry failed message" msgstr "点击以重试发送失败的私信" @@ -1066,7 +1073,7 @@ msgstr "哒哒🐴哒哒🐴" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/util/post-embeds/GifEmbed.tsx:195 msgid "Close" msgstr "关闭" @@ -1121,7 +1128,7 @@ msgstr "关闭底部导航栏" msgid "Closes password update alert" msgstr "关闭密码更新警告" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:472 msgid "Closes post composer and discards post draft" msgstr "关闭帖文编辑页并丢弃草稿" @@ -1129,11 +1136,11 @@ msgstr "关闭帖文编辑页并丢弃草稿" msgid "Closes viewer for header image" msgstr "关闭标题图片查看器" -#: src/view/com/notifications/FeedItem.tsx:237 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Collapse list of users" msgstr "折叠用户列表" -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:440 msgid "Collapses list of users for a given notification" msgstr "折叠给定通知的用户列表" @@ -1147,7 +1154,7 @@ msgstr "喜剧" msgid "Comics" msgstr "漫画" -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:266 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "社群准则" @@ -1160,7 +1167,7 @@ msgstr "完成引导并开始使用你的账户" msgid "Complete the challenge" msgstr "完成验证" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:582 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "撰写帖文的长度最多为 {MAX_GRAPHEME_LENGTH} 个字符" @@ -1287,12 +1294,12 @@ msgstr "对话已删除" msgid "Cooking" msgstr "烹饪" -#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "已复制" -#: src/view/screens/Settings/index.tsx:264 +#: src/view/screens/Settings/index.tsx:265 msgid "Copied build version to clipboard" msgstr "已复制构建版本号至剪贴板" @@ -1300,7 +1307,7 @@ msgstr "已复制构建版本号至剪贴板" #: src/view/com/modals/AddAppPasswords.tsx:80 #: src/view/com/modals/ChangeHandle.tsx:320 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:189 +#: src/view/com/util/forms/PostDropdownBtn.tsx:192 #: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "已复制至剪贴板" @@ -1309,12 +1316,12 @@ msgstr "已复制至剪贴板" msgid "Copied!" msgstr "已复制!" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" msgstr "已复制应用专用密码" -#: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/view/com/modals/AddAppPasswords.tsx:213 +#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "复制" @@ -1327,11 +1334,11 @@ msgstr "复制{0}" msgid "Copy code" msgstr "复制代码" -#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" msgstr "复制链接" -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" msgstr "复制链接" @@ -1339,8 +1346,8 @@ msgstr "复制链接" msgid "Copy link to list" msgstr "复制列表链接" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 msgid "Copy link to post" msgstr "复制帖文链接" @@ -1349,20 +1356,24 @@ msgstr "复制帖文链接" msgid "Copy message text" msgstr "复制私信文字" -#: src/view/com/util/forms/PostDropdownBtn.tsx:285 -#: src/view/com/util/forms/PostDropdownBtn.tsx:287 +#: src/view/com/util/forms/PostDropdownBtn.tsx:288 +#: src/view/com/util/forms/PostDropdownBtn.tsx:290 msgid "Copy post text" msgstr "复制帖文文字" -#: src/components/StarterPack/QrCodeDialog.tsx:168 +#: src/components/StarterPack/QrCodeDialog.tsx:171 msgid "Copy QR code" msgstr "复制二维码" -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:271 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "版权许可" +#: src/view/com/composer/videos/state.ts:31 +msgid "Could not compress video" +msgstr "无法压缩视频" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "无法离开对话" @@ -1388,17 +1399,17 @@ msgstr "创建" msgid "Create a new account" msgstr "创建新的账户" -#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:425 msgid "Create a new Bluesky account" msgstr "创建新的 Bluesky 账户" -#: src/components/StarterPack/QrCodeDialog.tsx:151 +#: src/components/StarterPack/QrCodeDialog.tsx:154 msgid "Create a QR code for a starter pack" msgstr "为入门包创建二维码" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:345 msgid "Create a starter pack" msgstr "创建入门包" @@ -1423,7 +1434,7 @@ msgstr "创建一个头像" msgid "Create another" msgstr "创建另外一个" -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" msgstr "创建应用专用密码" @@ -1455,7 +1466,7 @@ msgid "Custom domain" msgstr "自定义域名" #: src/view/screens/Feeds.tsx:760 -#: src/view/screens/Search/Explore.tsx:390 +#: src/view/screens/Search/Explore.tsx:392 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "由社群构建的自定义资讯源能为你带来新的体验,并帮助你找到你喜欢的内容。" @@ -1463,8 +1474,8 @@ msgstr "由社群构建的自定义资讯源能为你带来新的体验,并帮 msgid "Customize media from external sites." msgstr "自定义外部站点的媒体。" -#: src/view/screens/Settings/index.tsx:459 -#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:460 +#: src/view/screens/Settings/index.tsx:486 msgid "Dark" msgstr "暗色" @@ -1472,7 +1483,7 @@ msgstr "暗色" msgid "Dark mode" msgstr "深色模式" -#: src/view/screens/Settings/index.tsx:472 +#: src/view/screens/Settings/index.tsx:473 msgid "Dark Theme" msgstr "深色模式" @@ -1481,15 +1492,15 @@ msgid "Date of birth" msgstr "生日" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:807 +#: src/view/screens/Settings/index.tsx:808 msgid "Deactivate account" msgstr "停用账户" -#: src/view/screens/Settings/index.tsx:819 +#: src/view/screens/Settings/index.tsx:820 msgid "Deactivate my account" msgstr "停用我的账户" -#: src/view/screens/Settings/index.tsx:874 +#: src/view/screens/Settings/index.tsx:875 msgid "Debug Moderation" msgstr "调试内容审核" @@ -1501,13 +1512,13 @@ msgstr "调试面板" #: src/screens/StarterPack/StarterPackScreen.tsx:562 #: src/screens/StarterPack/StarterPackScreen.tsx:641 #: src/screens/StarterPack/StarterPackScreen.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "删除" -#: src/view/screens/Settings/index.tsx:829 +#: src/view/screens/Settings/index.tsx:830 msgid "Delete account" msgstr "删除账户" @@ -1523,8 +1534,8 @@ msgstr "删除应用专用密码" msgid "Delete app password?" msgstr "删除应用专用密码?" -#: src/view/screens/Settings/index.tsx:891 -#: src/view/screens/Settings/index.tsx:894 +#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:895 msgid "Delete chat declaration record" msgstr "删除聊天记录" @@ -1548,12 +1559,12 @@ msgstr "为我删除私信" msgid "Delete my account" msgstr "删除我的账户" -#: src/view/screens/Settings/index.tsx:841 +#: src/view/screens/Settings/index.tsx:842 msgid "Delete My Account…" msgstr "删除我的账户…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:414 -#: src/view/com/util/forms/PostDropdownBtn.tsx:416 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 +#: src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "删除帖文" @@ -1570,7 +1581,7 @@ msgstr "删除入门包?" msgid "Delete this list?" msgstr "删除这个列表?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:428 +#: src/view/com/util/forms/PostDropdownBtn.tsx:431 msgid "Delete this post?" msgstr "删除这条帖文?" @@ -1582,7 +1593,7 @@ msgstr "已删除" msgid "Deleted post." msgstr "已删除的帖文。" -#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:893 msgid "Deletes the chat declaration record" msgstr "删除聊天记录" @@ -1597,11 +1608,11 @@ msgstr "描述" msgid "Descriptive alt text" msgstr "描述替代文本" -#: src/view/com/composer/Composer.tsx:283 +#: src/view/com/composer/Composer.tsx:295 msgid "Did you want to say anything?" msgstr "有什么想说的吗?" -#: src/view/screens/Settings/index.tsx:478 +#: src/view/screens/Settings/index.tsx:479 msgid "Dim" msgstr "暗淡" @@ -1630,11 +1641,11 @@ msgstr "关闭触感反馈" msgid "Disabled" msgstr "关闭" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:682 msgid "Discard" msgstr "丢弃" -#: src/view/com/composer/Composer.tsx:648 +#: src/view/com/composer/Composer.tsx:679 msgid "Discard draft?" msgstr "丢弃草稿?" @@ -1652,7 +1663,7 @@ msgstr "\"Discover\" 会根据你的浏览喜好向你推荐帖文。" msgid "Discover new custom feeds" msgstr "探索新的自定义资讯源" -#: src/view/screens/Search/Explore.tsx:388 +#: src/view/screens/Search/Explore.tsx:390 msgid "Discover new feeds" msgstr "探索新的资讯源" @@ -1705,18 +1716,18 @@ msgstr "域名已认证!" #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:142 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 #: src/view/screens/PreferencesFollowingFeed.tsx:310 msgid "Done" msgstr "完成" #: src/view/com/modals/EditImage.tsx:334 -#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 @@ -1729,7 +1740,7 @@ msgstr "完成" msgid "Done{extraText}" msgstr "完成{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319 msgid "Download Bluesky" msgstr "下载 Bluesky" @@ -1795,7 +1806,7 @@ msgctxt "action" msgid "Edit" msgstr "编辑" -#: src/view/com/util/UserAvatar.tsx:325 +#: src/view/com/util/UserAvatar.tsx:337 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "编辑头像" @@ -1817,7 +1828,7 @@ msgstr "编辑列表详情" msgid "Edit Moderation List" msgstr "编辑内容审核列表" -#: src/Navigation.tsx:274 +#: src/Navigation.tsx:281 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -1832,12 +1843,12 @@ msgstr "编辑个人资料" msgid "Edit People" msgstr "编辑用户" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "编辑个人资料" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "编辑个人资料" @@ -1850,7 +1861,7 @@ msgstr "编辑入门包" msgid "Edit User List" msgstr "编辑用户列表" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Edit who can reply" msgstr "编辑谁可以回复" @@ -1862,7 +1873,7 @@ msgstr "编辑你的显示名称" msgid "Edit your profile description" msgstr "编辑你的账户描述" -#: src/Navigation.tsx:343 +#: src/Navigation.tsx:350 msgid "Edit your starter pack" msgstr "编辑你的入门包" @@ -1901,7 +1912,7 @@ msgstr "电子邮箱已更新" msgid "Email verified" msgstr "电子邮箱已验证" -#: src/view/screens/Settings/index.tsx:350 +#: src/view/screens/Settings/index.tsx:351 msgid "Email:" msgstr "电子邮箱:" @@ -1910,8 +1921,8 @@ msgid "Embed HTML code" msgstr "嵌入 HTML 代码" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:324 -#: src/view/com/util/forms/PostDropdownBtn.tsx:326 +#: src/view/com/util/forms/PostDropdownBtn.tsx:327 +#: src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "嵌入帖文" @@ -1958,7 +1969,7 @@ msgstr "已到末尾" msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." msgstr "入门指南已结束,已没有进一步的选项。若仍需获取更多选项请返回上一步,或点按跳过。" -#: src/view/com/modals/AddAppPasswords.tsx:160 +#: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "为这个应用专用密码命名" @@ -2026,7 +2037,7 @@ msgid "Everybody" msgstr "所有人" #: src/components/WhoCanReply.tsx:69 -#: src/components/WhoCanReply.tsx:240 +#: src/components/WhoCanReply.tsx:241 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "所有人都可以回复" @@ -2062,8 +2073,8 @@ msgstr "退出图片裁剪流程" msgid "Exits image view" msgstr "退出图片查看器" -#: src/view/com/modals/ListAddRemoveUsers.tsx:88 -#: src/view/shell/desktop/Search.tsx:215 +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +#: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "退出搜索查询输入" @@ -2071,7 +2082,7 @@ msgstr "退出搜索查询输入" msgid "Expand alt text" msgstr "展开替代文本" -#: src/view/com/notifications/FeedItem.tsx:238 +#: src/view/com/notifications/FeedItem.tsx:239 msgid "Expand list of users" msgstr "展开用户列表" @@ -2088,12 +2099,12 @@ msgstr "明确或潜在引起不适的媒体内容。" msgid "Explicit sexual images." msgstr "明确的性暗示图片。" -#: src/view/screens/Settings/index.tsx:787 +#: src/view/screens/Settings/index.tsx:788 msgid "Export my data" msgstr "导出账户数据" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:798 +#: src/view/screens/Settings/index.tsx:799 msgid "Export My Data" msgstr "导出账户数据" @@ -2107,13 +2118,13 @@ 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:293 +#: src/Navigation.tsx:300 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:680 +#: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" msgstr "外部媒体首选项" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "External media settings" msgstr "外部媒体设置" @@ -2143,8 +2154,8 @@ msgstr "无法删除帖文,请重试" msgid "Failed to delete starter pack" msgstr "无法删除入门包" -#: src/view/screens/Search/Explore.tsx:426 -#: src/view/screens/Search/Explore.tsx:454 +#: src/view/screens/Search/Explore.tsx:428 +#: src/view/screens/Search/Explore.tsx:456 msgid "Failed to load feeds preferences" msgstr "无法加载资讯源首选项" @@ -2157,29 +2168,29 @@ msgstr "无法加载 GIF" msgid "Failed to load past messages" msgstr "无法加载旧的私信" -#: src/view/screens/Search/Explore.tsx:419 -#: src/view/screens/Search/Explore.tsx:447 +#: src/view/screens/Search/Explore.tsx:421 +#: src/view/screens/Search/Explore.tsx:449 msgid "Failed to load suggested feeds" msgstr "无法加载建议的资讯源" -#: src/view/screens/Search/Explore.tsx:377 +#: src/view/screens/Search/Explore.tsx:379 msgid "Failed to load suggested follows" msgstr "无法加载建议关注" -#: src/view/com/lightbox/Lightbox.tsx:86 +#: src/view/com/lightbox/Lightbox.tsx:90 msgid "Failed to save image: {0}" msgstr "无法保存这张图片:{0}" -#: src/components/dms/MessageItem.tsx:230 +#: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "无法发送私信" -#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: src/components/moderation/LabelsOnMeDialog.tsx:244 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "无法提交申诉,请再试一次。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:181 msgid "Failed to toggle thread mute, please try again" msgstr "无法隐藏讨论串,请再试一次" @@ -2192,7 +2203,7 @@ msgstr "无法更新资讯源" msgid "Failed to update settings" msgstr "无法更新设置" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:216 msgid "Feed" msgstr "资讯源" @@ -2206,19 +2217,19 @@ msgid "Feed toggle" msgstr "切换资讯源" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:345 +#: src/view/shell/Drawer.tsx:332 msgid "Feedback" msgstr "反馈" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:330 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 #: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:493 -#: src/view/shell/Drawer.tsx:494 +#: src/view/shell/Drawer.tsx:483 +#: src/view/shell/Drawer.tsx:484 msgid "Feeds" msgstr "资讯源" @@ -2294,7 +2305,7 @@ msgid "Flip vertically" msgstr "垂直翻转" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:341 +#: src/components/ProfileCard.tsx:343 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2335,27 +2346,23 @@ msgstr "关注所有人" msgid "Follow Back" msgstr "回关" -#: src/view/screens/Search/Explore.tsx:333 +#: src/view/screens/Search/Explore.tsx:335 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "关注更多账户以了解你的兴趣,并逐步建立你的社交网络。" -#: src/view/com/profile/ProfileCard.tsx:190 -msgid "Followed by {0}" -msgstr "由 {0} 所关注" - -#: src/components/KnownFollowers.tsx:223 +#: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "由 <0>{0} 所关注" -#: src/components/KnownFollowers.tsx:209 +#: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "由 <0>{0} 以及 {1, plural, one {其他#人} other {其他#人}} 所关注" -#: src/components/KnownFollowers.tsx:196 +#: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" msgstr "由 <0>{0} 以及 <1>{1} 所关注" -#: src/components/KnownFollowers.tsx:178 +#: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "由 <0>{0}、<1>{1} 以及 {2, plural, one {其他#人} other {其他#人}} 所关注" @@ -2367,11 +2374,11 @@ msgstr "已关注的用户" msgid "Followed users only" msgstr "仅限已关注的用户" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:198 msgid "followed you" msgstr "关注了你" -#: src/view/com/notifications/FeedItem.tsx:195 +#: src/view/com/notifications/FeedItem.tsx:196 msgid "followed you back" msgstr "回关" @@ -2380,7 +2387,7 @@ msgstr "回关" msgid "Followers" msgstr "关注者" -#: src/Navigation.tsx:182 +#: src/Navigation.tsx:184 msgid "Followers of @{0} that you know" msgstr "由你所认识的 @{0} 所关注" @@ -2390,7 +2397,7 @@ msgid "Followers you know" msgstr "由你所认识的关注者" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:335 +#: src/components/ProfileCard.tsx:337 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2402,7 +2409,7 @@ msgstr "由你所认识的关注者" msgid "Following" msgstr "正在关注" -#: src/components/ProfileCard.tsx:301 +#: src/components/ProfileCard.tsx:303 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "已关注 {0}" @@ -2411,13 +2418,13 @@ msgstr "已关注 {0}" msgid "Following {name}" msgstr "已关注 {name}" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Following feed preferences" msgstr "\"正在关注\"资讯源首选项" -#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "\"正在关注\"资讯源首选项" @@ -2442,7 +2449,7 @@ msgstr "食物" msgid "For security reasons, we'll need to send a confirmation code to your email address." msgstr "出于安全原因,我们需要向你的电子邮箱发送验证码。" -#: src/view/com/modals/AddAppPasswords.tsx:232 +#: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "出于安全原因,你将无法再次查看此内容。如果你丢失了该密码,则需要生成一个新的密码。" @@ -2467,7 +2474,7 @@ msgstr "频繁发布不受欢迎的内容" msgid "From @{sanitizedAuthor}" msgstr "来自 @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:236 +#: src/view/com/posts/FeedItem.tsx:242 msgctxt "from-feed" msgid "From <0/>" msgstr "来自 <0/>" @@ -2480,6 +2487,10 @@ msgstr "相册" msgid "Generate a starter pack" msgstr "创建一个入门包" +#: src/view/shell/Drawer.tsx:336 +msgid "Get help" +msgstr "获取帮助" + #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" msgstr "开始吧" @@ -2526,13 +2537,9 @@ msgstr "返回" msgid "Go Back" msgstr "返回" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -msgid "Go back to previous screen" -msgstr "返回上一页" - #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/components/ReportDialog/SubmitView.tsx:121 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 @@ -2592,7 +2599,7 @@ msgstr "触感" msgid "Harassment, trolling, or intolerance" msgstr "骚扰、恶作剧或其他无法容忍的行为" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:315 msgid "Hashtag" msgstr "标签" @@ -2605,7 +2612,7 @@ msgid "Having trouble?" msgstr "任何疑问?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:355 +#: src/view/shell/Drawer.tsx:345 msgid "Help" msgstr "帮助" @@ -2613,7 +2620,7 @@ msgstr "帮助" msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "通过上传图片或创建头像来帮助人们了解你不是机器人。" -#: src/view/com/modals/AddAppPasswords.tsx:203 +#: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "这里是你的应用专用密码。" @@ -2624,17 +2631,17 @@ msgstr "这里是你的应用专用密码。" #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:445 msgid "Hide" msgstr "隐藏" -#: src/view/com/notifications/FeedItem.tsx:444 +#: src/view/com/notifications/FeedItem.tsx:447 msgctxt "action" msgid "Hide" msgstr "隐藏" -#: src/view/com/util/forms/PostDropdownBtn.tsx:387 -#: src/view/com/util/forms/PostDropdownBtn.tsx:389 +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 msgid "Hide post" msgstr "隐藏帖文" @@ -2643,11 +2650,11 @@ msgstr "隐藏帖文" msgid "Hide the content" msgstr "隐藏内容" -#: src/view/com/util/forms/PostDropdownBtn.tsx:439 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide this post?" msgstr "隐藏这条帖文?" -#: src/view/com/notifications/FeedItem.tsx:435 +#: src/view/com/notifications/FeedItem.tsx:438 msgid "Hide user list" msgstr "隐藏用户列表" @@ -2679,12 +2686,12 @@ msgstr "看起来在加载数据时遇到了问题,请查看下方获取更多 msgid "Hmmmm, we couldn't load that moderation service." msgstr "无法加载此内容审核提供服务。" -#: src/Navigation.tsx:519 -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:526 +#: src/Navigation.tsx:546 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:425 -#: src/view/shell/Drawer.tsx:426 +#: src/view/shell/Drawer.tsx:415 +#: src/view/shell/Drawer.tsx:416 msgid "Home" msgstr "主页" @@ -2738,7 +2745,7 @@ msgstr "如果你根据你所在国家的法律定义还不是成年人,则你 msgid "If you delete this list, you won't be able to recover it." msgstr "该列表删除后将无法恢复。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 msgid "If you remove this post, you won't be able to recover it." msgstr "该列表删除后将无法恢复。" @@ -2762,7 +2769,7 @@ msgstr "图片" msgid "Image alt text" msgstr "图片替代文本" -#: src/components/StarterPack/ShareDialog.tsx:75 +#: src/components/StarterPack/ShareDialog.tsx:76 msgid "Image saved to your camera roll!" msgstr "图片已保存到你的照片图库!" @@ -2782,7 +2789,7 @@ msgstr "输入发送到你电子邮箱的验证码以重置密码" msgid "Input confirmation code for account deletion" msgstr "输入删除用户的验证码" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" msgstr "输入应用专用密码名称" @@ -2851,7 +2858,7 @@ msgstr "邀请码:{0} 个可用" msgid "Invite codes: 1 available" msgstr "邀请码:1 个可用" -#: src/components/StarterPack/ShareDialog.tsx:96 +#: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" msgstr "邀请朋友使用此入门包!" @@ -2871,8 +2878,8 @@ msgstr "现在就只有你了!通过上面的搜索将更多人添加到你的 msgid "Jobs" msgstr "工作" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:432 #: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" @@ -2903,11 +2910,11 @@ msgstr "标记" 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:79 +#: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "你账户上的标记" -#: src/components/moderation/LabelsOnMeDialog.tsx:81 +#: src/components/moderation/LabelsOnMeDialog.tsx:82 msgid "Labels on your content" msgstr "你内容上的标记" @@ -2915,16 +2922,16 @@ msgstr "你内容上的标记" msgid "Language selection" msgstr "选择语言" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Language settings" msgstr "语言设置" -#: src/Navigation.tsx:155 +#: src/Navigation.tsx:157 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "语言设置" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Languages" msgstr "语言" @@ -2984,7 +2991,7 @@ msgstr "离开 Bluesky" msgid "left to go." msgstr "个人排在你前面。" -#: src/view/screens/Settings/index.tsx:309 +#: src/view/screens/Settings/index.tsx:310 msgid "Legacy storage cleared, you need to restart the app now." msgstr "旧存储数据已清除,你需要立即重新启动应用。" @@ -3002,7 +3009,7 @@ msgstr "让我们来重置你的密码!" msgid "Let's go!" msgstr "让我们开始!" -#: src/view/screens/Settings/index.tsx:453 +#: src/view/screens/Settings/index.tsx:454 msgid "Light" msgstr "亮色" @@ -3016,13 +3023,13 @@ msgid "Like 10 posts to train the Discover feed" msgstr "喜欢 10 条帖文,以训练 \"Discover\" 算法推送" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Like this feed" msgstr "喜欢这个资讯源" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:219 -#: src/Navigation.tsx:224 +#: src/Navigation.tsx:221 +#: src/Navigation.tsx:226 msgid "Liked by" msgstr "喜欢" @@ -3032,11 +3039,11 @@ msgstr "喜欢" msgid "Liked By" msgstr "喜欢" -#: src/view/com/notifications/FeedItem.tsx:201 +#: src/view/com/notifications/FeedItem.tsx:202 msgid "liked your custom feed" msgstr "喜欢了你的自定义资讯源" -#: src/view/com/notifications/FeedItem.tsx:185 +#: src/view/com/notifications/FeedItem.tsx:186 msgid "liked your post" msgstr "喜欢了你的帖文" @@ -3048,7 +3055,7 @@ msgstr "喜欢" msgid "Likes on this post" msgstr "这条帖文的喜欢数" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:190 msgid "List" msgstr "列表" @@ -3085,12 +3092,12 @@ msgstr "解除对列表的屏蔽" msgid "List unmuted" msgstr "解除对列表的隐藏" -#: src/Navigation.tsx:125 +#: src/Navigation.tsx:127 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 -#: src/view/shell/Drawer.tsx:509 -#: src/view/shell/Drawer.tsx:510 +#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:500 msgid "Lists" msgstr "列表" @@ -3098,15 +3105,15 @@ msgstr "列表" msgid "Lists blocking this user:" msgstr "屏蔽该用户的列表:" -#: src/view/screens/Search/Explore.tsx:130 +#: src/view/screens/Search/Explore.tsx:131 msgid "Load more" msgstr "加载更多" -#: src/view/screens/Search/Explore.tsx:218 +#: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" msgstr "加载更多建议的资讯源" -#: src/view/screens/Search/Explore.tsx:216 +#: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" msgstr "加载更多建议关注" @@ -3116,7 +3123,7 @@ msgstr "加载新的通知" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:494 +#: src/view/screens/ProfileFeed.tsx:495 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "加载新的帖文" @@ -3125,7 +3132,7 @@ msgstr "加载新的帖文" msgid "Loading..." msgstr "加载中..." -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:246 msgid "Log" msgstr "日志" @@ -3191,7 +3198,7 @@ msgstr "标记为已读" msgid "Media" msgstr "媒体" -#: src/components/WhoCanReply.tsx:275 +#: src/components/WhoCanReply.tsx:276 msgid "mentioned users" msgstr "提到的用户" @@ -3213,7 +3220,7 @@ msgstr "私信 {0}" msgid "Message deleted" msgstr "私信已删除" -#: src/view/com/posts/FeedErrorMessage.tsx:200 +#: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "来自服务器的信息:{0}" @@ -3230,7 +3237,7 @@ msgstr "私信过长" msgid "Message settings" msgstr "私信设置" -#: src/Navigation.tsx:534 +#: src/Navigation.tsx:541 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3241,9 +3248,9 @@ msgstr "私信" msgid "Misleading Account" msgstr "误导性账户" -#: src/Navigation.tsx:130 +#: src/Navigation.tsx:132 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:562 +#: src/view/screens/Settings/index.tsx:563 msgid "Moderation" msgstr "内容审核" @@ -3279,16 +3286,16 @@ msgstr "内容审核列表已更新" msgid "Moderation lists" msgstr "内容审核列表" -#: src/Navigation.tsx:135 +#: src/Navigation.tsx:137 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "内容审核列表" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Moderation settings" msgstr "内容审核设置" -#: src/Navigation.tsx:234 +#: src/Navigation.tsx:236 msgid "Moderation states" msgstr "内容审核状态" @@ -3375,13 +3382,13 @@ msgstr "在帖文文本和标签中隐藏该词" msgid "Mute this word in tags only" msgstr "仅在标签中隐藏该词" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:371 msgid "Mute thread" msgstr "隐藏讨论串" -#: src/view/com/util/forms/PostDropdownBtn.tsx:378 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 +#: src/view/com/util/forms/PostDropdownBtn.tsx:381 +#: src/view/com/util/forms/PostDropdownBtn.tsx:383 msgid "Mute words & tags" msgstr "隐藏词和标签" @@ -3393,7 +3400,7 @@ msgstr "已隐藏" msgid "Muted accounts" msgstr "已隐藏账户" -#: src/Navigation.tsx:140 +#: src/Navigation.tsx:142 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "已隐藏账户" @@ -3427,15 +3434,15 @@ msgstr "自定义资讯源" msgid "My Profile" msgstr "我的个人资料" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "My saved feeds" msgstr "我保存的资讯源" -#: src/view/screens/Settings/index.tsx:623 +#: src/view/screens/Settings/index.tsx:624 msgid "My Saved Feeds" msgstr "我保存的资讯源" -#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/AddAppPasswords.tsx:174 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "名称" @@ -3470,7 +3477,7 @@ msgstr "转到入门包" msgid "Navigates to the next screen" msgstr "转到下一页" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:78 msgid "Navigates to your profile" msgstr "转到个人资料" @@ -3495,7 +3502,7 @@ msgstr "新建" msgid "New" msgstr "新建" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" @@ -3525,7 +3532,7 @@ msgstr "新帖文" #: src/view/screens/Feeds.tsx:581 #: src/view/screens/Notifications.tsx:193 #: src/view/screens/Profile.tsx:478 -#: src/view/screens/ProfileFeed.tsx:428 +#: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:278 @@ -3584,7 +3591,7 @@ msgstr "下一张图片" msgid "No" msgstr "停用" -#: src/view/screens/ProfileFeed.tsx:562 +#: src/view/screens/ProfileFeed.tsx:564 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "没有描述" @@ -3602,7 +3609,7 @@ msgstr "未找到精选 GIF,Tensor 可能存在问题。" msgid "No feeds found. Try searching for something else." msgstr "未找到资讯源,尝试搜索点别的。" -#: src/components/ProfileCard.tsx:321 +#: src/components/ProfileCard.tsx:323 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "不再关注 {0}" @@ -3651,7 +3658,7 @@ msgstr "未找到结果" msgid "No results found for \"{query}\"" msgstr "未找到\"{query}\"的结果" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 @@ -3689,7 +3696,7 @@ msgstr "未找到用户,尝试搜索点别的。" msgid "Non-sexual Nudity" msgstr "非性暗示裸露" -#: src/Navigation.tsx:120 +#: src/Navigation.tsx:122 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "未找到" @@ -3700,7 +3707,7 @@ msgid "Not right now" msgstr "暂时不需要" #: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/forms/PostDropdownBtn.tsx:459 #: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "分享注意事项" @@ -3721,13 +3728,13 @@ msgstr "通知提示音" msgid "Notification Sounds" msgstr "通知提示音" -#: src/Navigation.tsx:529 +#: src/Navigation.tsx:536 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 -#: src/view/shell/Drawer.tsx:457 -#: src/view/shell/Drawer.tsx:458 +#: src/view/shell/Drawer.tsx:447 +#: src/view/shell/Drawer.tsx:448 msgid "Notifications" msgstr "通知" @@ -3735,7 +3742,7 @@ msgstr "通知" msgid "now" msgstr "现在" -#: src/components/dms/MessageItem.tsx:175 +#: src/components/dms/MessageItem.tsx:169 msgid "Now" msgstr "现在" @@ -3761,7 +3768,7 @@ msgstr "糟糕!" msgid "Oh no! Something went wrong." msgstr "糟糕!发生了一些错误。" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 msgid "OK" msgstr "好的" @@ -3781,7 +3788,7 @@ msgstr "于" msgid "on {str}" msgstr "于 {str}" -#: src/view/screens/Settings/index.tsx:257 +#: src/view/screens/Settings/index.tsx:258 msgid "Onboarding reset" msgstr "重新开始引导流程" @@ -3789,7 +3796,7 @@ msgstr "重新开始引导流程" msgid "Onboarding tour step {0}: {1}" msgstr "入门指南步骤:{0}/{1}" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:534 msgid "One or more images is missing alt text." msgstr "至少有一张图片缺失了替代文本。" @@ -3797,7 +3804,7 @@ msgstr "至少有一张图片缺失了替代文本。" msgid "Only .jpg and .png files are supported" msgstr "目前只支持上传 .jpg 或 .png 格式的图片文件" -#: src/components/WhoCanReply.tsx:244 +#: src/components/WhoCanReply.tsx:245 msgid "Only {0} can reply" msgstr "只有 {0} 可以回复" @@ -3834,16 +3841,16 @@ msgstr "开启头像创建工具" msgid "Open conversation options" msgstr "开启对话选项" -#: src/view/com/composer/Composer.tsx:632 -#: src/view/com/composer/Composer.tsx:633 +#: src/view/com/composer/Composer.tsx:663 +#: src/view/com/composer/Composer.tsx:664 msgid "Open emoji picker" msgstr "开启表情符号选择器" -#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileFeed.tsx:297 msgid "Open feed options menu" msgstr "开启资讯源选项菜单" -#: src/view/screens/Settings/index.tsx:737 +#: src/view/screens/Settings/index.tsx:738 msgid "Open links with in-app browser" msgstr "在内置浏览器中打开链接" @@ -3859,7 +3866,7 @@ msgstr "开启隐藏词汇和标签设置" msgid "Open navigation" msgstr "打开导航" -#: src/view/com/util/forms/PostDropdownBtn.tsx:247 +#: src/view/com/util/forms/PostDropdownBtn.tsx:250 msgid "Open post options menu" msgstr "开启帖文选项菜单" @@ -3867,12 +3874,12 @@ msgstr "开启帖文选项菜单" msgid "Open starter pack menu" msgstr "开启入门包菜单" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Open storybook page" msgstr "开启 Storybook 界面" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Open system log" msgstr "开启系统日志" @@ -3884,7 +3891,7 @@ msgstr "开启 {numItems} 个选项" msgid "Opens a dialog to choose who can reply to this thread" msgstr "打开对话框以选择谁可以回复此讨论串" -#: src/view/screens/Settings/index.tsx:511 +#: src/view/screens/Settings/index.tsx:512 msgid "Opens accessibility settings" msgstr "开启无障碍设置" @@ -3896,7 +3903,7 @@ msgstr "开启调试记录的额外详细信息" msgid "Opens camera on device" msgstr "开启设备相机" -#: src/view/screens/Settings/index.tsx:640 +#: src/view/screens/Settings/index.tsx:641 msgid "Opens chat settings" msgstr "开启私信设置" @@ -3904,7 +3911,7 @@ msgstr "开启私信设置" msgid "Opens composer" msgstr "开启编辑器" -#: src/view/screens/Settings/index.tsx:532 +#: src/view/screens/Settings/index.tsx:533 msgid "Opens configurable language settings" msgstr "开启可配置的语言设置" @@ -3912,7 +3919,7 @@ msgstr "开启可配置的语言设置" msgid "Opens device photo gallery" msgstr "开启设备相册" -#: src/view/screens/Settings/index.tsx:672 +#: src/view/screens/Settings/index.tsx:673 msgid "Opens external embeds settings" msgstr "开启外部嵌入设置" @@ -3934,27 +3941,27 @@ msgstr "开启 GIF 选择对话框" msgid "Opens list of invite codes" msgstr "开启邀请码列表" -#: src/view/screens/Settings/index.tsx:809 +#: src/view/screens/Settings/index.tsx:810 msgid "Opens modal for account deactivation confirmation" msgstr "开启账户停用确认界面" -#: src/view/screens/Settings/index.tsx:831 +#: src/view/screens/Settings/index.tsx:832 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "需要邮件验证以继续进行账户删除操作" -#: src/view/screens/Settings/index.tsx:766 +#: src/view/screens/Settings/index.tsx:767 msgid "Opens modal for changing your Bluesky password" msgstr "开启密码修改界面" -#: src/view/screens/Settings/index.tsx:721 +#: src/view/screens/Settings/index.tsx:722 msgid "Opens modal for choosing a new Bluesky handle" msgstr "开启创建新的用户识别符界面" -#: src/view/screens/Settings/index.tsx:789 +#: src/view/screens/Settings/index.tsx:790 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "开启你的 Bluesky 用户资料(存储库)下载页面" -#: src/view/screens/Settings/index.tsx:1009 +#: src/view/screens/Settings/index.tsx:1010 msgid "Opens modal for email verification" msgstr "开启电子邮箱确认界面" @@ -3962,7 +3969,7 @@ msgstr "开启电子邮箱确认界面" msgid "Opens modal for using custom domain" msgstr "开启使用自定义域名的模式" -#: src/view/screens/Settings/index.tsx:557 +#: src/view/screens/Settings/index.tsx:558 msgid "Opens moderation settings" msgstr "开启内容审核设置" @@ -3970,15 +3977,15 @@ msgstr "开启内容审核设置" msgid "Opens password reset form" msgstr "开启密码重置申请" -#: src/view/screens/Settings/index.tsx:618 +#: src/view/screens/Settings/index.tsx:619 msgid "Opens screen with all saved feeds" msgstr "开启包含所有已保存资讯源的界面" -#: src/view/screens/Settings/index.tsx:699 +#: src/view/screens/Settings/index.tsx:700 msgid "Opens the app password settings" msgstr "开启应用专用密码设置界面" -#: src/view/screens/Settings/index.tsx:575 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens the Following feed preferences" msgstr "开启\"正在关注\"资讯源首选项" @@ -3986,30 +3993,34 @@ msgstr "开启\"正在关注\"资讯源首选项" msgid "Opens the linked website" msgstr "开启链接的网页" -#: src/view/screens/Settings/index.tsx:862 -#: src/view/screens/Settings/index.tsx:872 +#: src/view/screens/Settings/index.tsx:863 +#: src/view/screens/Settings/index.tsx:873 msgid "Opens the storybook page" msgstr "开启 Storybook 界面" -#: src/view/screens/Settings/index.tsx:850 +#: src/view/screens/Settings/index.tsx:851 msgid "Opens the system log page" msgstr "开启系统日志界面" -#: src/view/screens/Settings/index.tsx:596 +#: src/view/screens/Settings/index.tsx:597 msgid "Opens the threads preferences" msgstr "开启讨论串首选项" -#: src/view/com/notifications/FeedItem.tsx:524 -#: src/view/com/util/UserAvatar.tsx:422 +#: src/view/com/notifications/FeedItem.tsx:527 +#: src/view/com/util/UserAvatar.tsx:434 msgid "Opens this profile" msgstr "开启此个人资料" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:54 +msgid "Opens video picker" +msgstr "开启视频选择器" + #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "第 {0} 个选项,共 {numItems} 个" #: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:162 +#: src/components/ReportDialog/SubmitView.tsx:179 msgid "Optionally provide additional information below:" msgstr "可选在下方提供额外信息:" @@ -4069,7 +4080,7 @@ msgstr "密码已更新" msgid "Password updated!" msgstr "密码已更新!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Pause" msgstr "暂停" @@ -4078,19 +4089,19 @@ msgstr "暂停" msgid "People" msgstr "用户" -#: src/Navigation.tsx:175 +#: src/Navigation.tsx:177 msgid "People followed by @{0}" msgstr "@{0} 关注的用户" -#: src/Navigation.tsx:168 +#: src/Navigation.tsx:170 msgid "People following @{0}" msgstr "关注 @{0} 的用户" -#: src/view/com/lightbox/Lightbox.tsx:69 +#: src/view/com/lightbox/Lightbox.tsx:70 msgid "Permission to access camera roll is required." msgstr "需要照片图库的访问权限。" -#: src/view/com/lightbox/Lightbox.tsx:75 +#: src/view/com/lightbox/Lightbox.tsx:78 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "照片图库的访问权限已被拒绝,请在系统设置中启用。" @@ -4111,12 +4122,12 @@ msgstr "摄影" msgid "Pictures meant for adults." msgstr "适合成年人的图像。" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "固定到主页" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 msgid "Pin to Home" msgstr "固定到主页" @@ -4128,7 +4139,7 @@ msgstr "固定资讯源列表" msgid "Pinned to your feeds" msgstr "固定到你的资讯源" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Play" msgstr "播放" @@ -4136,7 +4147,7 @@ msgstr "播放" msgid "Play {0}" msgstr "播放 {0}" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 msgid "Play or pause the GIF" msgstr "播放或暂停 GIF" @@ -4170,7 +4181,7 @@ msgstr "更改前请先确认你的电子邮箱。这是新增电子邮箱更新 msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "请输入应用专用密码的名称,不允许使用空格。" -#: src/view/com/modals/AddAppPasswords.tsx:150 +#: src/view/com/modals/AddAppPasswords.tsx:151 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "请输入这个应用专用密码的唯一名称,或使用我们提供的随机生成名称。" @@ -4191,7 +4202,7 @@ msgstr "请输入你的邀请码。" msgid "Please enter your password as well:" msgstr "请输入你的密码:" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:277 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "请解释为什么你认为这个标记是由 {0} 错误应用的" @@ -4208,7 +4219,7 @@ msgstr "请以 @{0} 身份登录" msgid "Please Verify Your Email" msgstr "请验证你的电子邮箱" -#: src/view/com/composer/Composer.tsx:287 +#: src/view/com/composer/Composer.tsx:299 msgid "Please wait for your link card to finish loading" msgstr "请等待你的链接卡片加载完毕" @@ -4221,8 +4232,8 @@ msgstr "政治" msgid "Porn" msgstr "色情内容" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:509 +#: src/view/com/composer/Composer.tsx:516 msgctxt "action" msgid "Post" msgstr "发布" @@ -4236,9 +4247,9 @@ msgstr "帖文" msgid "Post by {0}" msgstr "{0} 的帖文" -#: src/Navigation.tsx:194 -#: src/Navigation.tsx:201 -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 +#: src/Navigation.tsx:210 msgid "Post by @{0}" msgstr "@{0} 的帖文" @@ -4309,7 +4320,7 @@ msgstr "点击以变更托管提供商" msgid "Press to retry" msgstr "点按重试" -#: src/components/KnownFollowers.tsx:116 +#: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "点按以查看同样关注此账号的共同关注者" @@ -4325,16 +4336,16 @@ msgstr "首选语言" msgid "Prioritize Your Follows" msgstr "优先显示关注者" -#: src/view/screens/Settings/index.tsx:655 +#: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "隐私" -#: src/Navigation.tsx:249 +#: src/Navigation.tsx:256 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:958 -#: src/view/shell/Drawer.tsx:285 +#: src/view/screens/Settings/index.tsx:959 +#: src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "隐私政策" @@ -4353,9 +4364,9 @@ msgstr "个人资料" #: src/view/shell/bottom-bar/BottomBar.tsx:275 #: src/view/shell/desktop/LeftNav.tsx:393 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:542 -#: src/view/shell/Drawer.tsx:543 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:532 +#: src/view/shell/Drawer.tsx:533 msgid "Profile" msgstr "个人资料" @@ -4363,7 +4374,7 @@ msgstr "个人资料" msgid "Profile updated" msgstr "个人资料已更新" -#: src/view/screens/Settings/index.tsx:1022 +#: src/view/screens/Settings/index.tsx:1023 msgid "Protect your account by verifying your email." msgstr "通过验证电子邮箱来保护你的账户。" @@ -4379,23 +4390,23 @@ msgstr "公开且可共享的批量隐藏或屏蔽列表。" msgid "Public, shareable lists which can drive feeds." msgstr "公开且可共享的列表,可作为资讯源使用。" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish post" msgstr "发布帖文" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish reply" msgstr "发布回复" -#: src/components/StarterPack/QrCodeDialog.tsx:125 +#: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "二维码已复制到你的剪切板!" -#: src/components/StarterPack/QrCodeDialog.tsx:103 +#: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" msgstr "二维码已下载!" -#: src/components/StarterPack/QrCodeDialog.tsx:104 +#: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "二维码已保存至你的照片图库!" @@ -4440,13 +4451,13 @@ msgstr "重新加载对话" #: src/components/dialogs/MutedWords.tsx:286 #: src/components/FeedCard.tsx:309 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:212 +#: src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "移除" @@ -4458,7 +4469,7 @@ msgstr "从你的入门包中删除 {displayName}" msgid "Remove account" msgstr "删除账户" -#: src/view/com/util/UserAvatar.tsx:384 +#: src/view/com/util/UserAvatar.tsx:396 msgid "Remove Avatar" msgstr "删除头像" @@ -4470,20 +4481,20 @@ msgstr "删除横幅图片" msgid "Remove embed" msgstr "删除嵌入" -#: src/view/com/posts/FeedErrorMessage.tsx:168 -#: src/view/com/posts/FeedShutdownMsg.tsx:113 -#: src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:115 +#: src/view/com/posts/FeedShutdownMsg.tsx:119 msgid "Remove feed" msgstr "删除资讯源" -#: src/view/com/posts/FeedErrorMessage.tsx:209 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" msgstr "删除资讯源?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "从自定义资讯源中删除" @@ -4497,7 +4508,7 @@ msgstr "从自定义资讯源中删除?" msgid "Remove image" msgstr "删除图片" -#: src/view/com/composer/ExternalEmbed.tsx:87 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 msgid "Remove image preview" msgstr "删除图片预览" @@ -4522,11 +4533,11 @@ msgstr "删除引用" msgid "Remove repost" msgstr "删除转发" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "从保存的资讯源列表中删除这个资讯源" -#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "从列表中删除" @@ -4541,16 +4552,16 @@ msgstr "已从自定义资讯源中删除" msgid "Removed from your feeds" msgstr "从你的自定义资讯源中删除" -#: src/view/com/composer/ExternalEmbed.tsx:88 -msgid "Removes default thumbnail from {0}" -msgstr "从 {0} 中删除默认缩略图" - #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" msgstr "删除引用的帖文" -#: src/view/com/posts/FeedShutdownMsg.tsx:126 -#: src/view/com/posts/FeedShutdownMsg.tsx:130 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the image preview" +msgstr "删除图片预览" + +#: src/view/com/posts/FeedShutdownMsg.tsx:128 +#: src/view/com/posts/FeedShutdownMsg.tsx:132 msgid "Replace with Discover" msgstr "替换为 \"Discover\"" @@ -4562,11 +4573,11 @@ msgstr "回复" msgid "Replies disabled" msgstr "回复已被禁用" -#: src/components/WhoCanReply.tsx:242 +#: src/components/WhoCanReply.tsx:243 msgid "Replies to this thread are disabled" msgstr "该讨论串的回复已被禁用" -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:507 msgctxt "action" msgid "Reply" msgstr "回复" @@ -4575,17 +4586,23 @@ msgstr "回复" msgid "Reply Filters" msgstr "回复过滤器" -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:439 +#: src/view/com/post/Post.tsx:197 +#: src/view/com/posts/FeedItem.tsx:458 msgctxt "description" msgid "Reply to <0><1/>" msgstr "回复 <0><1/>" -#: src/view/com/posts/FeedItem.tsx:437 +#: src/view/com/posts/FeedItem.tsx:456 msgctxt "description" msgid "Reply to a blocked post" msgstr "回复被屏蔽的帖文" +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:454 +msgctxt "description" +msgid "Reply to you" +msgstr "对你回复" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -4607,8 +4624,8 @@ msgstr "举报对话" msgid "Report dialog" msgstr "举报页面" -#: src/view/screens/ProfileFeed.tsx:349 -#: src/view/screens/ProfileFeed.tsx:351 +#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:352 msgid "Report feed" msgstr "举报资讯源" @@ -4620,8 +4637,8 @@ msgstr "举报列表" msgid "Report message" msgstr "举报私信" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:407 +#: src/view/com/util/forms/PostDropdownBtn.tsx:409 msgid "Report post" msgstr "举报帖文" @@ -4683,15 +4700,20 @@ msgstr "转发或引用帖文" msgid "Reposted By" msgstr "转发" -#: src/view/com/posts/FeedItem.tsx:254 +#: src/view/com/posts/FeedItem.tsx:263 msgid "Reposted by {0}" msgstr "由 {0} 转发" -#: src/view/com/posts/FeedItem.tsx:269 +#: src/view/com/posts/FeedItem.tsx:282 msgid "Reposted by <0><1/>" msgstr "由 <0><1/> 转发" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/posts/FeedItem.tsx:261 +#: src/view/com/posts/FeedItem.tsx:280 +msgid "Reposted by you" +msgstr "由你转发" + +#: src/view/com/notifications/FeedItem.tsx:188 msgid "reposted your post" msgstr "转发你的帖文" @@ -4734,8 +4756,8 @@ msgstr "确认码" msgid "Reset Code" msgstr "确认码" -#: src/view/screens/Settings/index.tsx:901 -#: src/view/screens/Settings/index.tsx:904 +#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:905 msgid "Reset onboarding state" msgstr "重置引导流程状态" @@ -4743,16 +4765,16 @@ msgstr "重置引导流程状态" msgid "Reset password" msgstr "重置密码" -#: src/view/screens/Settings/index.tsx:881 -#: src/view/screens/Settings/index.tsx:884 +#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:885 msgid "Reset preferences state" msgstr "重置首选项状态" -#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:903 msgid "Resets the onboarding state" msgstr "重置引导流程状态" -#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:883 msgid "Resets the preferences state" msgstr "重置首选项状态" @@ -4765,7 +4787,7 @@ msgstr "重试登录" msgid "Retries the last action, which errored out" msgstr "重试上次出错的操作" -#: src/components/dms/MessageItem.tsx:241 +#: src/components/dms/MessageItem.tsx:235 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 @@ -4797,7 +4819,7 @@ msgstr "回到上一页" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/dialogs/ThreadgateEditor.tsx:88 -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:187 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -4806,7 +4828,7 @@ msgstr "回到上一页" msgid "Save" msgstr "保存" -#: src/view/com/lightbox/Lightbox.tsx:135 +#: src/view/com/lightbox/Lightbox.tsx:139 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -4828,8 +4850,8 @@ msgstr "保存更改" msgid "Save handle change" msgstr "保存用户识别符更改" -#: src/components/StarterPack/ShareDialog.tsx:150 -#: src/components/StarterPack/ShareDialog.tsx:157 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "保存图片" @@ -4837,12 +4859,12 @@ msgstr "保存图片" msgid "Save image crop" msgstr "保存图片裁切" -#: src/components/StarterPack/QrCodeDialog.tsx:178 +#: src/components/StarterPack/QrCodeDialog.tsx:181 msgid "Save QR code" msgstr "保存二维码" -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 +#: src/view/screens/ProfileFeed.tsx:334 +#: src/view/screens/ProfileFeed.tsx:340 msgid "Save to my feeds" msgstr "保存到自定义资讯源" @@ -4850,7 +4872,7 @@ msgstr "保存到自定义资讯源" msgid "Saved Feeds" msgstr "已保存资讯源" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:88 msgid "Saved to your camera roll" msgstr "保存到你的照片图库" @@ -4873,8 +4895,8 @@ msgstr "保存图片裁剪设置" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:383 -#: src/view/com/notifications/FeedItem.tsx:408 +#: src/view/com/notifications/FeedItem.tsx:386 +#: src/view/com/notifications/FeedItem.tsx:411 msgid "Say hello!" msgstr "说嗨!" @@ -4888,9 +4910,9 @@ msgid "Scroll to top" msgstr "滚动到顶部" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:524 +#: src/Navigation.tsx:531 #: src/view/com/auth/LoggedOut.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 @@ -4898,14 +4920,14 @@ msgstr "滚动到顶部" #: src/view/screens/Search/Search.tsx:813 #: src/view/shell/bottom-bar/BottomBar.tsx:182 #: src/view/shell/desktop/LeftNav.tsx:354 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:394 -#: src/view/shell/Drawer.tsx:395 +#: src/view/shell/desktop/Search.tsx:195 +#: src/view/shell/desktop/Search.tsx:204 +#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:385 msgid "Search" msgstr "搜索" -#: src/view/shell/desktop/Search.tsx:235 +#: src/view/shell/desktop/Search.tsx:236 msgid "Search for \"{query}\"" msgstr "搜索 \"{query}\"" @@ -4927,7 +4949,7 @@ msgstr "搜索来添加你想推荐给别人的资讯源。" #: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/auth/LoggedOut.tsx:107 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "搜索用户" @@ -5018,7 +5040,7 @@ msgstr "选择 {numItems} 项中的第 {i} 项" msgid "Select the {emojiName} emoji as your avatar" msgstr "选择 {emojiName} 表情符号作为你的头像" -#: src/components/ReportDialog/SubmitView.tsx:135 +#: src/components/ReportDialog/SubmitView.tsx:152 msgid "Select the moderation service(s) to report to" msgstr "请选择你要向哪个内容审核服务提供方提交举报" @@ -5026,6 +5048,10 @@ msgstr "请选择你要向哪个内容审核服务提供方提交举报" msgid "Select the service that hosts your data." msgstr "选择托管你数据的服务器。" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:53 +msgid "Select video" +msgstr "选择视频" + #: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "选择你希望订阅资讯源中所包含的语言。如果未选择任何语言,将默认显示所有语言。" @@ -5064,8 +5090,7 @@ msgctxt "action" msgid "Send Email" msgstr "发送电子邮件" -#: src/view/shell/Drawer.tsx:329 -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:325 msgid "Send feedback" msgstr "提交反馈" @@ -5074,14 +5099,14 @@ msgstr "提交反馈" msgid "Send message" msgstr "发送私信" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 msgid "Send post to..." msgstr "发送私信给..." #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:215 -#: src/components/ReportDialog/SubmitView.tsx:219 +#: src/components/ReportDialog/SubmitView.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:236 msgid "Send report" msgstr "提交举报" @@ -5094,8 +5119,8 @@ msgstr "给 {0} 提交举报" msgid "Send verification email" msgstr "发送验证电子邮件" -#: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 +#: src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" msgstr "通过私信发送" @@ -5143,23 +5168,23 @@ msgstr "设置你的账户" msgid "Sets Bluesky username" msgstr "设置 Bluesky 用户名" -#: src/view/screens/Settings/index.tsx:462 +#: src/view/screens/Settings/index.tsx:463 msgid "Sets color theme to dark" msgstr "设置主题为深色模式" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Sets color theme to light" msgstr "设置主题为亮色模式" -#: src/view/screens/Settings/index.tsx:449 +#: src/view/screens/Settings/index.tsx:450 msgid "Sets color theme to system setting" msgstr "设置主题跟随系统设置" -#: src/view/screens/Settings/index.tsx:488 +#: src/view/screens/Settings/index.tsx:489 msgid "Sets dark theme to the dark theme" msgstr "设置深色模式至深黑" -#: src/view/screens/Settings/index.tsx:481 +#: src/view/screens/Settings/index.tsx:482 msgid "Sets dark theme to the dim theme" msgstr "设置深色模式至暗淡" @@ -5179,11 +5204,11 @@ msgstr "将图片纵横比设置为高" msgid "Sets image aspect ratio to wide" msgstr "将图片纵横比设置为宽" -#: src/Navigation.tsx:150 -#: src/view/screens/Settings/index.tsx:333 +#: src/Navigation.tsx:152 +#: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:559 -#: src/view/shell/Drawer.tsx:560 +#: src/view/shell/Drawer.tsx:549 +#: src/view/shell/Drawer.tsx:550 msgid "Settings" msgstr "设置" @@ -5195,19 +5220,19 @@ msgstr "性行为或性暗示裸露。" msgid "Sexually Suggestive" msgstr "性暗示" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:177 #: src/screens/StarterPack/StarterPackScreen.tsx:400 #: src/screens/StarterPack/StarterPackScreen.tsx:571 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 #: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "分享" -#: src/view/com/lightbox/Lightbox.tsx:144 +#: src/view/com/lightbox/Lightbox.tsx:148 msgctxt "action" msgid "Share" msgstr "分享" @@ -5221,18 +5246,18 @@ msgid "Share a fun fact!" msgstr "分享一个有趣的事实!" #: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:464 #: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "仍然分享" -#: src/view/screens/ProfileFeed.tsx:359 -#: src/view/screens/ProfileFeed.tsx:361 +#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:362 msgid "Share feed" msgstr "分享资讯源" -#: src/components/StarterPack/ShareDialog.tsx:123 -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 #: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "分享链接" @@ -5242,12 +5267,12 @@ msgstr "分享链接" msgid "Share Link" msgstr "分享链接" -#: src/components/StarterPack/ShareDialog.tsx:87 +#: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" msgstr "分享链接对话框" -#: src/components/StarterPack/ShareDialog.tsx:134 -#: src/components/StarterPack/ShareDialog.tsx:145 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "分享二维码" @@ -5255,7 +5280,7 @@ msgstr "分享二维码" msgid "Share this starter pack" msgstr "分享这个入门包" -#: src/components/StarterPack/ShareDialog.tsx:99 +#: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "分享这个入门包以帮助其他人加入你在 Bluesky 上的社交网络。" @@ -5263,6 +5288,10 @@ msgstr "分享这个入门包以帮助其他人加入你在 Bluesky 上的社交 msgid "Share your favorite feed!" msgstr "分享你最喜欢的资讯源!" +#: src/Navigation.tsx:241 +msgid "Shared Preferences Tester" +msgstr "共享首选项测试器" + #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" msgstr "分享链接的网站" @@ -5270,11 +5299,11 @@ msgstr "分享链接的网站" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:382 +#: src/view/screens/Settings/index.tsx:383 msgid "Show" msgstr "显示" -#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +#: src/view/com/util/post-embeds/GifEmbed.tsx:175 msgid "Show alt text" msgstr "显示替代文本" @@ -5300,19 +5329,19 @@ msgstr "显示类似于 {0} 的关注者" msgid "Show hidden replies" msgstr "显示已隐藏的回复" -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#: src/view/com/util/forms/PostDropdownBtn.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:349 +#: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" msgstr "更少显示类似这样的" #: src/view/com/post-thread/PostThreadItem.tsx:530 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:396 +#: src/view/com/post/Post.tsx:235 +#: src/view/com/posts/FeedItem.tsx:410 msgid "Show More" msgstr "显示更多" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 -#: src/view/com/util/forms/PostDropdownBtn.tsx:340 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:343 msgid "Show more like this" msgstr "更多显示类似这样的" @@ -5394,8 +5423,8 @@ msgstr "登录或创建你的账户以加入对话!" msgid "Sign into Bluesky or create a new account" msgstr "登录 Bluesky 或创建新账户" -#: src/view/screens/Settings/index.tsx:129 -#: src/view/screens/Settings/index.tsx:133 +#: src/view/screens/Settings/index.tsx:130 +#: src/view/screens/Settings/index.tsx:134 msgid "Sign out" msgstr "登出" @@ -5420,7 +5449,7 @@ msgstr "注册或登录以加入对话" msgid "Sign-in Required" msgstr "需要登录" -#: src/view/screens/Settings/index.tsx:392 +#: src/view/screens/Settings/index.tsx:393 msgid "Signed in as" msgstr "登录身份" @@ -5429,12 +5458,12 @@ msgstr "登录身份" msgid "Signed in as @{0}" msgstr "以 @{0} 身份登录" -#: src/view/com/notifications/FeedItem.tsx:208 +#: src/view/com/notifications/FeedItem.tsx:209 msgid "signed up with your starter pack" msgstr "使用你的入门包注册" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 msgid "Signup without a starter pack" msgstr "注册但不使用入门包" @@ -5452,7 +5481,7 @@ msgstr "跳过这段流程" msgid "Software Dev" msgstr "程序开发" -#: src/components/FeedInterstitials.tsx:378 +#: src/components/FeedInterstitials.tsx:382 msgid "Some other feeds you might like" msgstr "其他你可能喜欢的资讯源" @@ -5476,8 +5505,8 @@ msgstr "出了点问题,请重试" msgid "Something went wrong, please try again." msgstr "出了点问题,请重试。" -#: src/App.native.tsx:98 -#: src/App.web.tsx:80 +#: src/App.native.tsx:99 +#: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "很抱歉,你的登录会话已过期,请重新登录。" @@ -5489,7 +5518,7 @@ msgstr "回复排序" msgid "Sort replies to the same post by:" msgstr "对同一帖文的回复进行排序:" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" msgstr "来源:<0>{0}" @@ -5511,7 +5540,7 @@ msgstr "运动" msgid "Square" msgstr "方块" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:63 msgid "Start a new chat" msgstr "开始一个新私信" @@ -5528,8 +5557,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "开始入门指南吧,若需获取更多选项请点击下一步,或点按跳过。" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:328 -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:335 +#: src/Navigation.tsx:340 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "入门包" @@ -5550,7 +5579,7 @@ msgstr "入门包" msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "入门包能让你更轻松地与朋友分享你最中意的资讯源和关注用户。" -#: src/view/screens/Settings/index.tsx:964 +#: src/view/screens/Settings/index.tsx:965 msgid "Status Page" msgstr "状态页" @@ -5558,17 +5587,17 @@ msgstr "状态页" msgid "Step {0} of {1}" msgstr "步骤 {1} 共 {0} 步" -#: src/view/screens/Settings/index.tsx:305 +#: src/view/screens/Settings/index.tsx:306 msgid "Storage cleared, you need to restart the app now." msgstr "已清除存储,请立即重启应用。" -#: src/Navigation.tsx:229 -#: src/view/screens/Settings/index.tsx:864 +#: src/Navigation.tsx:231 +#: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:290 -#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/components/moderation/LabelsOnMeDialog.tsx:311 +#: src/components/moderation/LabelsOnMeDialog.tsx:312 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5586,7 +5615,7 @@ msgstr "订阅 @{0} 以使用这些标记:" msgid "Subscribe to Labeler" msgstr "订阅标记者" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 msgid "Subscribe to this labeler" msgstr "订阅这个标记者" @@ -5594,11 +5623,11 @@ msgstr "订阅这个标记者" msgid "Subscribe to this list" msgstr "订阅这个列表" -#: src/view/screens/Search/Explore.tsx:331 +#: src/view/screens/Search/Explore.tsx:333 msgid "Suggested accounts" msgstr "建议的账号" -#: src/components/FeedInterstitials.tsx:246 +#: src/components/FeedInterstitials.tsx:250 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "为你推荐" @@ -5607,7 +5636,7 @@ msgstr "为你推荐" msgid "Suggestive" msgstr "建议" -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:251 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5622,19 +5651,19 @@ msgstr "切换账户" msgid "Switch between feeds to control your experience." msgstr "在资讯源之间切换以刷新你的浏览体验。" -#: src/view/screens/Settings/index.tsx:160 +#: src/view/screens/Settings/index.tsx:161 msgid "Switch to {0}" msgstr "切换到 {0}" -#: src/view/screens/Settings/index.tsx:161 +#: src/view/screens/Settings/index.tsx:162 msgid "Switches the account you are logged in to" msgstr "切换你登录的账户" -#: src/view/screens/Settings/index.tsx:446 +#: src/view/screens/Settings/index.tsx:447 msgid "System" msgstr "系统" -#: src/view/screens/Settings/index.tsx:852 +#: src/view/screens/Settings/index.tsx:853 msgid "System log" msgstr "系统日志" @@ -5683,11 +5712,11 @@ msgstr "告诉我们更多" msgid "Terms" msgstr "条款" -#: src/Navigation.tsx:254 +#: src/Navigation.tsx:261 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:952 +#: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:279 +#: src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "服务条款" @@ -5702,13 +5731,13 @@ msgstr "用词违反了社群准则" msgid "text" msgstr "文本" -#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/components/moderation/LabelsOnMeDialog.tsx:275 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "文本输入框" #: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:93 msgid "Thank you. Your report has been sent." msgstr "谢谢,你的举报已提交。" @@ -5747,19 +5776,19 @@ msgstr "版权许可已迁移至 <0/>" msgid "The Discover feed now knows what you like" msgstr "现在 \"Discover\" 资讯源已了解你的喜好" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "使用 App 的体验更好。立即下载 Bluesky,我们将从你上次中断的地方继续。" -#: src/view/com/posts/FeedShutdownMsg.tsx:66 +#: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." msgstr "资讯源已替换为 \"Discover\"。" -#: src/components/moderation/LabelsOnMeDialog.tsx:65 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your account." msgstr "以下标记已应用到你的账户。" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:67 msgid "The following labels were applied to your content." msgstr "以下标记已应用到你的内容。" @@ -5792,8 +5821,8 @@ msgstr "服务条款已迁移至" msgid "There is no time limit for account deactivation, come back any time." msgstr "停用账户没有时间限制,你可以随时决定回来。" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 -#: src/view/screens/ProfileFeed.tsx:544 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 +#: src/view/screens/ProfileFeed.tsx:545 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "连接至服务器时出现问题,请检查你的互联网连接并重试。" @@ -5802,7 +5831,7 @@ msgid "There was an an issue removing this feed. Please check your internet conn msgstr "删除资讯源时出现问题,请检查你的互联网连接并重试。" #: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "更新资讯源时出现问题,请检查你的互联网连接并重试。" @@ -5812,7 +5841,7 @@ msgstr "更新资讯源时出现问题,请检查你的互联网连接并重试 msgid "There was an issue connecting to Tenor." msgstr "连接 Tenor 时出现问题。" -#: src/view/screens/ProfileFeed.tsx:234 +#: src/view/screens/ProfileFeed.tsx:235 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -5844,7 +5873,7 @@ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "刷新列表时出现问题,点击重试。" #: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:82 +#: src/components/ReportDialog/SubmitView.tsx:98 msgid "There was an issue sending your report. Please check your internet connection." msgstr "提交举报时出现问题,请检查你的网络连接。" @@ -5896,7 +5925,7 @@ msgstr "这个账户要求登录后才能查看其个人资料。" 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/moderation/LabelsOnMeDialog.tsx:239 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 msgid "This appeal will be sent to <0>{0}." msgstr "这条申诉将发送至 <0>{0}。" @@ -5946,12 +5975,12 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "这个资讯源是空的!你或许需要先关注更多的用户,或检查你的语言设置。" #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:473 +#: src/view/screens/ProfileFeed.tsx:474 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "这里是空的。" -#: src/view/com/posts/FeedShutdownMsg.tsx:97 +#: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "这个资讯源已离线,我们将改为显示来自 <0>Discover 资讯源的内容。" @@ -5971,7 +6000,7 @@ msgstr "这个标签是由 <0>{0} 标记的。" msgid "This label was applied by the author." msgstr "这个标签是由该作者标记的。" -#: src/components/moderation/LabelsOnMeDialog.tsx:166 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." msgstr "这个标签是由你标记的。" @@ -5999,12 +6028,12 @@ msgstr "该名称已被使用" msgid "This post has been deleted." msgstr "这条帖文已被删除。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 #: src/view/com/util/post-ctrls/PostCtrls.tsx:324 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "这条帖文只对已登录用户可见,未登录的用户将无法看到。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:440 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "This post will be hidden from feeds." msgstr "这条帖文将从资讯源中隐藏。" @@ -6057,12 +6086,12 @@ msgstr "这个账户目前没有关注任何人。" msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "这将从你的隐藏词汇中删除 {0}。你随时可以重新添加。" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Thread preferences" msgstr "讨论串首选项" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "讨论串首选项" @@ -6074,7 +6103,7 @@ msgstr "讨论串首选项已更新" msgid "Threaded Mode" msgstr "讨论串模式" -#: src/Navigation.tsx:287 +#: src/Navigation.tsx:294 msgid "Threads Preferences" msgstr "讨论串首选项" @@ -6115,8 +6144,8 @@ msgstr "转换" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:676 #: src/view/com/post-thread/PostThreadItem.tsx:678 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 -#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "翻译" @@ -6129,7 +6158,7 @@ msgstr "重试" msgid "TV" msgstr "电视节目" -#: src/view/screens/Settings/index.tsx:746 +#: src/view/screens/Settings/index.tsx:747 msgid "Two-factor authentication" msgstr "两步验证" @@ -6217,7 +6246,7 @@ msgstr "取消关注 {0}" msgid "Unfollow Account" msgstr "取消关注账户" -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Unlike this feed" msgstr "取消喜欢这个资讯源" @@ -6243,17 +6272,17 @@ msgstr "取消隐藏所有 {displayTag} 帖文" msgid "Unmute conversation" msgstr "取消静音对话" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:367 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Unmute thread" msgstr "取消隐藏讨论串" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "取消固定" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 msgid "Unpin from home" msgstr "从主页取消固定" @@ -6269,7 +6298,7 @@ msgstr "从你的资讯源中取消固定" msgid "Unsubscribe" msgstr "取消订阅" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Unsubscribe from this labeler" msgstr "取消订阅这个标记者" @@ -6298,20 +6327,20 @@ msgstr "上传图片" msgid "Upload a text file to:" msgstr "将文本文件上传至:" -#: src/view/com/util/UserAvatar.tsx:352 -#: src/view/com/util/UserAvatar.tsx:355 +#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "从相机上传" -#: src/view/com/util/UserAvatar.tsx:369 +#: src/view/com/util/UserAvatar.tsx:381 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "从文件上传" -#: src/view/com/util/UserAvatar.tsx:363 -#: src/view/com/util/UserAvatar.tsx:367 +#: src/view/com/util/UserAvatar.tsx:375 +#: src/view/com/util/UserAvatar.tsx:379 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -6351,7 +6380,7 @@ msgstr "使用推荐" msgid "Use the DNS panel" msgstr "使用 DNS 面板" -#: src/view/com/modals/AddAppPasswords.tsx:205 +#: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." msgstr "使用这个和你的用户识别符一起登录其他应用。" @@ -6419,7 +6448,7 @@ msgstr "用户名或电子邮箱" msgid "Users" msgstr "用户" -#: src/components/WhoCanReply.tsx:279 +#: src/components/WhoCanReply.tsx:280 msgid "users followed by <0/>" msgstr "关注 <0/> 的用户" @@ -6446,15 +6475,15 @@ msgstr "值:" msgid "Verify DNS Record" msgstr "验证 DNS 记录" -#: src/view/screens/Settings/index.tsx:983 +#: src/view/screens/Settings/index.tsx:984 msgid "Verify email" msgstr "验证邮箱" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Verify my email" msgstr "验证我的邮箱" -#: src/view/screens/Settings/index.tsx:1017 +#: src/view/screens/Settings/index.tsx:1018 msgid "Verify My Email" msgstr "验证我的邮箱" @@ -6471,7 +6500,7 @@ msgstr "验证文本文件" msgid "Verify Your Email" msgstr "验证你的邮箱" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Version {appVersion} {bundleInfo}" msgstr "版本 {appVersion} {bundleInfo}" @@ -6480,11 +6509,15 @@ msgstr "版本 {appVersion} {bundleInfo}" msgid "Video Games" msgstr "电子游戏" +#: src/view/com/composer/videos/state.ts:27 +msgid "Videos cannot be larger than 100MB" +msgstr "视频不能大于 100MB" + #: src/screens/Profile/Header/Shell.tsx:113 msgid "View {0}'s avatar" msgstr "查看{0}的头像" -#: src/view/com/notifications/FeedItem.tsx:245 +#: src/view/com/notifications/FeedItem.tsx:246 msgid "View {0}'s profile" msgstr "查看{0}的个人资料" @@ -6516,7 +6549,7 @@ msgstr "查看这个标记的详情" #: src/components/ProfileHoverCard/index.web.tsx:436 #: src/components/ProfileHoverCard/index.web.tsx:463 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "查看个人资料" @@ -6528,7 +6561,7 @@ msgstr "查看头像" msgid "View the labeling service provided by @{0}" msgstr "查看 @{0} 提供的标记服务。" -#: src/view/screens/ProfileFeed.tsx:585 +#: src/view/screens/ProfileFeed.tsx:587 msgid "View users who like this feed" msgstr "查看这个资讯源被谁喜欢" @@ -6620,7 +6653,7 @@ msgstr "很抱歉,我们无法加载你的隐藏词汇列表。请重试。" msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "很抱歉,无法完成你的搜索。请稍后再试。" -#: src/view/com/composer/Composer.tsx:335 +#: src/view/com/composer/Composer.tsx:347 msgid "We're sorry! The post you are replying to has been deleted." msgstr "很抱歉!你所回复的帖文已被删除。" @@ -6629,7 +6662,7 @@ msgstr "很抱歉!你所回复的帖文已被删除。" msgid "We're sorry! We can't find the page you were looking for." msgstr "很抱歉!我们找不到你正在寻找的页面。" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "很抱歉!你目前只能订阅 20 个标记者,你已达到 20 个的限制。" @@ -6651,7 +6684,7 @@ msgstr "你想如何命名你的入门包?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:376 +#: src/view/com/composer/Composer.tsx:388 msgid "What's up?" msgstr "发生了什么新鲜事?" @@ -6668,15 +6701,15 @@ msgstr "你想在算法资讯源中看到哪些语言?" msgid "Who can message you?" msgstr "谁可以给你发送私信?" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Who can reply" msgstr "谁可以回复" -#: src/components/WhoCanReply.tsx:211 +#: src/components/WhoCanReply.tsx:212 msgid "Who can reply dialog" msgstr "谁可以回复对话框" -#: src/components/WhoCanReply.tsx:215 +#: src/components/WhoCanReply.tsx:216 msgid "Who can reply?" msgstr "谁可以回复?" @@ -6722,11 +6755,11 @@ msgstr "宽" msgid "Write a message" msgstr "编写私信" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:580 msgid "Write post" msgstr "撰写帖文" -#: src/view/com/composer/Composer.tsx:375 +#: src/view/com/composer/Composer.tsx:387 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "撰写你的回复" @@ -6759,7 +6792,7 @@ msgstr "是的,删除此入门包" msgid "Yes, reactivate my account" msgstr "是的,重新启用我的账户" -#: src/components/dms/MessageItem.tsx:188 +#: src/components/dms/MessageItem.tsx:182 msgid "Yesterday, {time}" msgstr "昨天,{time}" @@ -6900,19 +6933,19 @@ msgstr "你还没有创建任何入门包!" msgid "You haven't muted any words or tags yet" msgstr "你还没有隐藏任何词或标签" -#: src/components/moderation/LabelsOnMeDialog.tsx:86 +#: src/components/moderation/LabelsOnMeDialog.tsx:87 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "如果你认为由他人放置标签的标记信息有误,你可以提出申诉。" -#: src/components/moderation/LabelsOnMeDialog.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:92 msgid "You may appeal these labels if you feel they were placed in error." msgstr "如果你认为标签的标记信息有误,你可以提出申诉。" -#: src/screens/StarterPack/Wizard/State.tsx:92 +#: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 50 feeds" msgstr "你最多只能添加 50 个资讯源" -#: src/screens/StarterPack/Wizard/State.tsx:77 +#: src/screens/StarterPack/Wizard/State.tsx:78 msgid "You may only add up to 50 profiles" msgstr "你最多只能添加 50 个用户" @@ -6932,7 +6965,7 @@ msgstr "你必须授权照片图库权限以保存二维码" msgid "You must grant access to your photo library to save the image." msgstr "你必须授权照片图库权限以保存图片。" -#: src/components/ReportDialog/SubmitView.tsx:205 +#: src/components/ReportDialog/SubmitView.tsx:222 msgid "You must select at least one labeler for a report" msgstr "你必须选择至少一个标记者进行举报" @@ -6972,15 +7005,15 @@ msgstr "完成创建账户后,你将关注建议的用户和资讯源!" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "完成创建帐户后,你将关注建议的用户!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people and {0} others" msgstr "你将关注这些用户以及其他 {0} 位" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people right away" msgstr "你将立即关注这些人" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272 msgid "You'll stay updated with these feeds" msgstr "你将通过这些资讯源接收最新动态" @@ -7071,7 +7104,7 @@ msgstr "你的隐藏词汇" msgid "Your password has been changed successfully!" msgstr "你的密码已成功更改!" -#: src/view/com/composer/Composer.tsx:366 +#: src/view/com/composer/Composer.tsx:378 msgid "Your post has been published" msgstr "你的帖文已发布" @@ -7079,7 +7112,7 @@ msgstr "你的帖文已发布" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "你的帖文、喜欢和屏蔽是公开可见的,而隐藏不可见。" -#: src/view/screens/Settings/index.tsx:148 +#: src/view/screens/Settings/index.tsx:149 msgid "Your profile" msgstr "你的个人资料" @@ -7087,7 +7120,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 "其他 Bluesky 用户将无法再看到你的个人资料、帖文、列表与其他相关信息,你可以随时登录以重新激活你的账户。" -#: src/view/com/composer/Composer.tsx:365 +#: src/view/com/composer/Composer.tsx:377 msgid "Your reply has been published" msgstr "你的回复已发布" diff --git a/src/locale/locales/zh-TW/messages.po b/src/locale/locales/zh-TW/messages.po index 24bf2b348d..0222ad6bfe 100644 --- a/src/locale/locales/zh-TW/messages.po +++ b/src/locale/locales/zh-TW/messages.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: zh-TW for bluesky-social-app\n" "POT-Creation-Date: \n" "Report-Msgid-Bugs-To: Kuwa Lee , Frudrax Cheng \n" -"PO-Revision-Date: 2024-07-05 03:19+0800\n" +"PO-Revision-Date: 2024-07-20 08:37+0800\n" "Last-Translator: \n" "Language-Team: Frudrax Cheng , Kuwa Lee , noeFly, snowleo208, Kisaragi Hiu, Yi-Jyun Pan, toto6038, cirx1e\n" "Language: zh_TW\n" @@ -21,7 +21,7 @@ msgstr "(含有嵌入內容)" msgid "(no email)" msgstr "(沒有電子郵件)" -#: src/view/com/notifications/FeedItem.tsx:294 +#: src/view/com/notifications/FeedItem.tsx:297 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {其他 {formattedCount} 個人} other {其他 {formattedCount} 個人}}" @@ -58,7 +58,7 @@ msgstr "{0, plural, one {喜歡} other {喜歡}}" #: src/components/FeedCard.tsx:206 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" -msgstr "{0, plural,one {# 個用戶已喜歡} other {# 個用戶已喜歡}}" +msgstr "{0, plural,one {# 個用戶表示喜歡} other {# 個用戶表示喜歡}}" #: src/screens/Profile/Header/Metrics.tsx:59 msgid "{0, plural, one {post} other {posts}}" @@ -76,7 +76,7 @@ msgstr "{0, plural, one {轉貼} other {轉貼}}" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {撤回喜歡(# 個喜歡)} other {撤回喜歡(# 個喜歡)}}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "本週加入了 {0} 人" @@ -98,7 +98,7 @@ msgstr "「{0}」的入門包" #: src/components/LabelingServiceCard/index.tsx:71 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" -msgstr "{count, plural, one {# 個用戶已喜歡} other {# 個用戶已喜歡}}" +msgstr "{count, plural, one {# 個用戶表示喜歡} other {# 個用戶表示喜歡}}" #: src/lib/hooks/useTimeAgo.ts:69 msgid "{diff, plural, one {day} other {days}}" @@ -132,7 +132,7 @@ msgstr "{estimatedTimeHrs, plural, one {時} other {時}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {分} other {分}}" -#: src/components/ProfileHoverCard/index.web.tsx:504 +#: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} 個跟隨中" @@ -141,13 +141,13 @@ msgstr "{following} 個跟隨中" msgid "{handle} can't be messaged" msgstr "無法傳送訊息給 {handle}" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298 #: src/view/screens/ProfileFeed.tsx:588 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" -msgstr "{likeCount, plural, one {# 個用戶已喜歡} other {# 個用戶已喜歡}}" +msgstr "{likeCount, plural, one {# 個用戶表示喜歡} other {# 個用戶表示喜歡}}" -#: src/view/shell/Drawer.tsx:462 +#: src/view/shell/Drawer.tsx:452 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} 個未讀通知" @@ -177,11 +177,11 @@ msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}、<1>{1}和{2, plural, one {其他 # } other {其他 # }}個動態源已在您的入門包中" -#: src/view/shell/Drawer.tsx:101 +#: src/view/shell/Drawer.tsx:100 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {個跟隨者} other {個跟隨者}}" -#: src/view/shell/Drawer.tsx:112 +#: src/view/shell/Drawer.tsx:111 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {個跟隨中} other {個跟隨中}}" @@ -223,22 +223,22 @@ msgid "Access profile and other navigation links" msgstr "存取個人檔案和其他導覽連結" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:519 +#: src/view/screens/Settings/index.tsx:520 msgid "Accessibility" msgstr "無障礙" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Accessibility settings" msgstr "無障礙設定" -#: src/Navigation.tsx:301 +#: src/Navigation.tsx:308 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "無障礙設定" #: src/screens/Login/LoginForm.tsx:190 -#: src/view/screens/Settings/index.tsx:346 -#: src/view/screens/Settings/index.tsx:753 +#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:754 msgid "Account" msgstr "帳號" @@ -309,8 +309,8 @@ msgstr "將用戶新增至此列表" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:423 -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:433 msgid "Add account" msgstr "新增帳號" @@ -393,7 +393,7 @@ msgid "Adult content is disabled." msgstr "成人內容已停用。" #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:687 +#: src/view/screens/Settings/index.tsx:688 msgid "Advanced" msgstr "進階設定" @@ -422,7 +422,7 @@ msgstr "允許這些人向您發起對話:" #: src/screens/Login/ForgotPasswordForm.tsx:178 #: src/view/com/modals/ChangePassword.tsx:171 msgid "Already have a code?" -msgstr "已經有重置碼了?" +msgstr "已經有重設碼了?" #: src/screens/Login/ChooseAccountForm.tsx:49 msgid "Already signed in as @{0}" @@ -430,9 +430,9 @@ msgstr "已以 @{0} 身份登入" #: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "ALT" -msgstr "ALT" +msgstr "替代文字" #: src/view/com/composer/GifAltText.tsx:144 #: src/view/com/modals/EditImage.tsx:316 @@ -440,13 +440,13 @@ msgstr "ALT" msgid "Alt text" msgstr "替代文字" -#: src/view/com/util/post-embeds/GifEmbed.tsx:180 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Alt Text" msgstr "替代文字" #: src/view/com/composer/photos/Gallery.tsx:224 msgid "Alt text describes images for blind and low-vision users, and helps give context to everyone." -msgstr "替代文字為盲人和視障人士描述圖片及提供情境。" +msgstr "替代文字可為盲人和視障人士描述圖片,並有助於為每個人提供背景資訊。" #: src/view/com/modals/VerifyEmail.tsx:132 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 @@ -480,8 +480,8 @@ msgstr "問題不在上述選項" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:309 -#: src/components/ProfileCard.tsx:329 +#: src/components/ProfileCard.tsx:311 +#: src/components/ProfileCard.tsx:331 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -494,7 +494,7 @@ msgid "an unknown error occurred" msgstr "出現未知錯誤" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:291 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "和" @@ -503,7 +503,7 @@ msgstr "和" msgid "Animals" msgstr "動物" -#: src/view/com/util/post-embeds/GifEmbed.tsx:146 +#: src/view/com/util/post-embeds/GifEmbed.tsx:155 msgid "Animated GIF" msgstr "GIF 動畫" @@ -525,28 +525,28 @@ msgstr "應用程式專用密碼只能包含字母、數字、空格、破折號 #: src/view/com/modals/AddAppPasswords.tsx:103 msgid "App Password names must be at least 4 characters long." -msgstr "應用程式專用密碼名稱必須至少為 4 個字元。" +msgstr "應用程式專用密碼名稱必須至少有 4 個字元。" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "App password settings" msgstr "應用程式專用密碼設定" -#: src/Navigation.tsx:269 +#: src/Navigation.tsx:276 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:707 +#: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" msgstr "應用程式專用密碼" -#: src/components/moderation/LabelsOnMeDialog.tsx:151 -#: src/components/moderation/LabelsOnMeDialog.tsx:154 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "申訴" -#: src/components/moderation/LabelsOnMeDialog.tsx:236 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Appeal \"{0}\" label" msgstr "申訴「{0}」標記" -#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/components/moderation/LabelsOnMeDialog.tsx:248 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "已提交申訴" @@ -558,7 +558,7 @@ msgstr "已提交申訴" msgid "Appeal this decision" msgstr "對此決定提出上訴" -#: src/view/screens/Settings/index.tsx:440 +#: src/view/screens/Settings/index.tsx:441 msgid "Appearance" msgstr "外觀" @@ -567,10 +567,6 @@ msgstr "外觀" msgid "Apply default recommended feeds" msgstr "使用預設推薦的動態源" -#: src/screens/StarterPack/StarterPackScreen.tsx:610 -msgid "Are you sure you want delete this starter pack?" -msgstr "您確定要刪除這個入門包?" - #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "您確定要刪除這個應用程式專用密碼「{name}」嗎?" @@ -579,6 +575,10 @@ msgstr "您確定要刪除這個應用程式專用密碼「{name}」嗎?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "您確定要刪除這則訊息嗎?該訊息將為您刪除,但不會為其他參與者刪除。" +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Are you sure you want to delete this starter pack?" +msgstr "您確定要刪除這個入門包嗎?" + #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "您確定要離開此對話嗎?您的訊息將為您刪除,但不會為其他參與者刪除。" @@ -591,7 +591,7 @@ msgstr "您確定要從您的動態中移除 {0} 嗎?" msgid "Are you sure you want to remove this from your feeds?" msgstr "您確定要將此從您的動態源中移除嗎?" -#: src/view/com/composer/Composer.tsx:649 +#: src/view/com/composer/Composer.tsx:680 msgid "Are you sure you'd like to discard this draft?" msgstr "您確定要捨棄此草稿嗎?" @@ -601,7 +601,7 @@ msgstr "您確定嗎?" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:60 msgid "Are you writing in <0>{0}?" -msgstr "您正在使用 <0>{0} 書寫嗎?" +msgstr "您正在使用 <0>{0} 撰寫嗎?" #: src/screens/Onboarding/index.tsx:23 #: src/screens/Onboarding/state.ts:80 @@ -617,8 +617,8 @@ msgid "At least 3 characters" msgstr "至少 3 個字元" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:281 -#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/components/moderation/LabelsOnMeDialog.tsx:302 +#: src/components/moderation/LabelsOnMeDialog.tsx:303 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -631,13 +631,12 @@ msgstr "至少 3 個字元" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "返回" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Basics" msgstr "基本設定" @@ -645,7 +644,7 @@ msgstr "基本設定" msgid "Birthday" msgstr "生日" -#: src/view/screens/Settings/index.tsx:378 +#: src/view/screens/Settings/index.tsx:379 msgid "Birthday:" msgstr "生日:" @@ -689,7 +688,7 @@ msgstr "已被封鎖" msgid "Blocked accounts" msgstr "已封鎖帳號" -#: src/Navigation.tsx:145 +#: src/Navigation.tsx:147 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "已封鎖帳號" @@ -741,7 +740,7 @@ msgstr "Bluesky 將從您的個人社群網路中選擇一組推薦的帳號。" #: src/screens/Moderation/index.tsx:557 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 的官方程式將不會向未登入的使用者顯示您的個人檔案和貼文。但其他應用程式可能不會遵循這個要求,這不會使您的帳號變成非公開的。" +msgstr "Bluesky 的官方程式將不會向未登入的使用者顯示您的個人檔案和貼文。但其他應用程式可能不會遵循這個要求,這不會使您的帳號轉為非公開狀態。" #: src/lib/moderation/useLabelBehaviorDescription.ts:53 msgid "Blur images" @@ -756,21 +755,21 @@ msgstr "模糊圖片並從動態中過濾" msgid "Books" msgstr "書籍" -#: src/components/FeedInterstitials.tsx:281 +#: src/components/FeedInterstitials.tsx:285 msgid "Browse more accounts on the Explore page" msgstr "在探索頁面瀏覽更多帳號" -#: src/components/FeedInterstitials.tsx:411 +#: src/components/FeedInterstitials.tsx:415 msgid "Browse more feeds on the Explore page" msgstr "在探索頁面瀏覽更多動態源" -#: src/components/FeedInterstitials.tsx:266 -#: src/components/FeedInterstitials.tsx:396 +#: src/components/FeedInterstitials.tsx:270 +#: src/components/FeedInterstitials.tsx:400 msgid "Browse more suggestions" msgstr "瀏覽更多建議" -#: src/components/FeedInterstitials.tsx:289 -#: src/components/FeedInterstitials.tsx:420 +#: src/components/FeedInterstitials.tsx:293 +#: src/components/FeedInterstitials.tsx:424 msgid "Browse more suggestions on the Explore page" msgstr "在探索頁面瀏覽更多建議" @@ -809,15 +808,15 @@ msgstr "相機" #: src/view/com/modals/AddAppPasswords.tsx:179 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." -msgstr "只能包含字母、數字、空格、破折號及底線。長度必須至少 4 個字元,但不超過 32 個字元。" +msgstr "只能包含字母、數字、空格、破折號及底線。長度必須至少有 4 個字元,但不超過 32 個字元。" #: src/components/Menu/index.tsx:215 #: src/components/Prompt.tsx:119 #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:451 -#: src/view/com/composer/Composer.tsx:457 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -835,7 +834,7 @@ msgstr "只能包含字母、數字、空格、破折號及底線。長度必須 #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:139 #: src/view/screens/Search/Search.tsx:704 -#: src/view/shell/desktop/Search.tsx:218 +#: src/view/shell/desktop/Search.tsx:219 msgid "Cancel" msgstr "取消" @@ -872,7 +871,7 @@ msgid "Cancel reactivation and log out" msgstr "取消重新啟用並登出" #: src/view/com/modals/ListAddRemoveUsers.tsx:87 -#: src/view/shell/desktop/Search.tsx:214 +#: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "取消搜尋" @@ -884,17 +883,17 @@ msgstr "取消開啟網站連結" msgid "Change" msgstr "變更" -#: src/view/screens/Settings/index.tsx:372 +#: src/view/screens/Settings/index.tsx:373 msgctxt "action" msgid "Change" msgstr "變更" -#: src/view/screens/Settings/index.tsx:719 +#: src/view/screens/Settings/index.tsx:720 msgid "Change handle" msgstr "變更帳號代碼" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:730 +#: src/view/screens/Settings/index.tsx:731 msgid "Change Handle" msgstr "變更帳號代碼" @@ -902,12 +901,12 @@ msgstr "變更帳號代碼" msgid "Change my email" msgstr "變更我的電子郵件地址" -#: src/view/screens/Settings/index.tsx:764 +#: src/view/screens/Settings/index.tsx:765 msgid "Change password" msgstr "變更密碼" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:775 +#: src/view/screens/Settings/index.tsx:776 msgid "Change Password" msgstr "變更密碼" @@ -919,7 +918,7 @@ msgstr "變更貼文的發佈語言為 {0}" msgid "Change Your Email" msgstr "變更您的電子郵件地址" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:320 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -931,14 +930,14 @@ msgstr "對話已靜音" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:325 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" msgstr "對話設定" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:648 +#: src/view/screens/Settings/index.tsx:649 msgid "Chat Settings" msgstr "對話設定" @@ -961,7 +960,7 @@ msgstr "在下方輸入寄送至您電子郵件地址的驗證碼:" #: src/screens/Onboarding/StepInterests/index.tsx:190 msgid "Choose 3 or more:" -msgstr "選擇至少三個:" +msgstr "選擇至少 3 個:" #: src/screens/Onboarding/StepInterests/index.tsx:325 msgid "Choose at least {0} more" @@ -1000,19 +999,19 @@ msgstr "選擇哪些人可以回覆" msgid "Choose your password" msgstr "選擇您的密碼" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clear all legacy storage data" msgstr "清除所有遺留資料" -#: src/view/screens/Settings/index.tsx:914 +#: src/view/screens/Settings/index.tsx:915 msgid "Clear all legacy storage data (restart after this)" msgstr "清除所有遺留資料(並重啟)" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clear all storage data" msgstr "清除所有資料" -#: src/view/screens/Settings/index.tsx:926 +#: src/view/screens/Settings/index.tsx:927 msgid "Clear all storage data (restart after this)" msgstr "清除所有資料(並重啟)" @@ -1021,11 +1020,11 @@ msgstr "清除所有資料(並重啟)" msgid "Clear search query" msgstr "清除搜尋記錄" -#: src/view/screens/Settings/index.tsx:912 +#: src/view/screens/Settings/index.tsx:913 msgid "Clears all legacy storage data" msgstr "清除所有遺留資料" -#: src/view/screens/Settings/index.tsx:924 +#: src/view/screens/Settings/index.tsx:925 msgid "Clears all storage data" msgstr "清除所有資料" @@ -1045,7 +1044,7 @@ msgstr "點擊這裡以瞭解更多資訊。" msgid "Click here to open tag menu for {tag}" msgstr "點擊這裡以開啟 {tag} 的標籤選單" -#: src/components/dms/MessageItem.tsx:237 +#: src/components/dms/MessageItem.tsx:231 msgid "Click to retry failed message" msgstr "點擊以重試傳送訊息" @@ -1066,7 +1065,7 @@ msgstr "達達的馬蹄🐴是美麗的錯誤🐴" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/util/post-embeds/GifEmbed.tsx:195 msgid "Close" msgstr "關閉" @@ -1121,7 +1120,7 @@ msgstr "關閉底部導覽列" msgid "Closes password update alert" msgstr "關閉密碼更新警告" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:472 msgid "Closes post composer and discards post draft" msgstr "關閉貼文編輯頁並捨棄草稿" @@ -1129,11 +1128,11 @@ msgstr "關閉貼文編輯頁並捨棄草稿" msgid "Closes viewer for header image" msgstr "關閉標題圖片檢視器" -#: src/view/com/notifications/FeedItem.tsx:237 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Collapse list of users" msgstr "折疊用戶清單" -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:440 msgid "Collapses list of users for a given notification" msgstr "折疊指定通知的用戶清單" @@ -1147,7 +1146,7 @@ msgstr "喜劇" msgid "Comics" msgstr "漫畫" -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:266 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "社群守則" @@ -1160,7 +1159,7 @@ msgstr "完成初始設定並開始使用您的帳號" msgid "Complete the challenge" msgstr "完成驗證" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:582 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "撰寫貼文的長度最多為 {MAX_GRAPHEME_LENGTH} 個字元" @@ -1243,7 +1242,7 @@ msgstr "內容語言" #: src/components/moderation/ModerationDetailsDialog.tsx:75 #: src/lib/moderation/useModerationCauseDescription.ts:77 msgid "Content Not Available" -msgstr "內容不可用" +msgstr "無法查看此內容" #: src/components/moderation/ModerationDetailsDialog.tsx:46 #: src/components/moderation/ScreenHider.tsx:99 @@ -1292,7 +1291,7 @@ msgstr "烹飪" msgid "Copied" msgstr "已複製" -#: src/view/screens/Settings/index.tsx:264 +#: src/view/screens/Settings/index.tsx:265 msgid "Copied build version to clipboard" msgstr "已複製建構版本號至剪貼簿" @@ -1358,11 +1357,15 @@ msgstr "複製貼文文字" msgid "Copy QR code" msgstr "複製 QR Code" -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:271 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "著作權政策" +#: src/view/com/composer/videos/state.ts:31 +msgid "Could not compress video" +msgstr "無法壓縮影片" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "無法離開對話" @@ -1388,7 +1391,7 @@ msgstr "建立" msgid "Create a new account" msgstr "建立新帳號" -#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:425 msgid "Create a new Bluesky account" msgstr "建立新的 Bluesky 帳號" @@ -1398,7 +1401,7 @@ msgstr "為入門包建立 QR Code" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:345 msgid "Create a starter pack" msgstr "選擇一個入門包" @@ -1455,7 +1458,7 @@ msgid "Custom domain" msgstr "自訂網域" #: src/view/screens/Feeds.tsx:760 -#: src/view/screens/Search/Explore.tsx:390 +#: src/view/screens/Search/Explore.tsx:392 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "由社群打造的自訂動態源帶來全新體驗,幫助您找到所愛的內容。" @@ -1463,8 +1466,8 @@ msgstr "由社群打造的自訂動態源帶來全新體驗,幫助您找到所 msgid "Customize media from external sites." msgstr "自訂外部網站的媒體。" -#: src/view/screens/Settings/index.tsx:459 -#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:460 +#: src/view/screens/Settings/index.tsx:486 msgid "Dark" msgstr "深色" @@ -1472,7 +1475,7 @@ msgstr "深色" msgid "Dark mode" msgstr "深色模式" -#: src/view/screens/Settings/index.tsx:472 +#: src/view/screens/Settings/index.tsx:473 msgid "Dark Theme" msgstr "深色主題" @@ -1481,15 +1484,15 @@ msgid "Date of birth" msgstr "出生日期" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:807 +#: src/view/screens/Settings/index.tsx:808 msgid "Deactivate account" msgstr "停用帳號" -#: src/view/screens/Settings/index.tsx:819 +#: src/view/screens/Settings/index.tsx:820 msgid "Deactivate my account" msgstr "停用我的帳號" -#: src/view/screens/Settings/index.tsx:874 +#: src/view/screens/Settings/index.tsx:875 msgid "Debug Moderation" msgstr "內容管理偵錯" @@ -1507,7 +1510,7 @@ msgstr "偵錯面板" msgid "Delete" msgstr "刪除" -#: src/view/screens/Settings/index.tsx:829 +#: src/view/screens/Settings/index.tsx:830 msgid "Delete account" msgstr "刪除帳號" @@ -1523,8 +1526,8 @@ msgstr "刪除應用程式專用密碼" msgid "Delete app password?" msgstr "刪除應用程式專用密碼?" -#: src/view/screens/Settings/index.tsx:891 -#: src/view/screens/Settings/index.tsx:894 +#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:895 msgid "Delete chat declaration record" msgstr "刪除對話聲明紀錄" @@ -1548,7 +1551,7 @@ msgstr "為我刪除訊息" msgid "Delete my account" msgstr "刪除我的帳號" -#: src/view/screens/Settings/index.tsx:841 +#: src/view/screens/Settings/index.tsx:842 msgid "Delete My Account…" msgstr "刪除我的帳號…" @@ -1582,7 +1585,7 @@ msgstr "已刪除" msgid "Deleted post." msgstr "已刪除的貼文。" -#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:893 msgid "Deletes the chat declaration record" msgstr "刪除對話聲明紀錄" @@ -1597,11 +1600,11 @@ msgstr "描述" msgid "Descriptive alt text" msgstr "生動的替代文字" -#: src/view/com/composer/Composer.tsx:283 +#: src/view/com/composer/Composer.tsx:295 msgid "Did you want to say anything?" msgstr "有什麼想說的嗎?" -#: src/view/screens/Settings/index.tsx:478 +#: src/view/screens/Settings/index.tsx:479 msgid "Dim" msgstr "昏暗" @@ -1630,11 +1633,11 @@ msgstr "關閉觸覺回饋" msgid "Disabled" msgstr "停用" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:682 msgid "Discard" msgstr "捨棄" -#: src/view/com/composer/Composer.tsx:648 +#: src/view/com/composer/Composer.tsx:679 msgid "Discard draft?" msgstr "捨棄草稿?" @@ -1645,14 +1648,14 @@ msgstr "阻撓應用程式向未登入用戶顯示我的帳號" #: src/tours/HomeTour.tsx:70 msgid "Discover learns which posts you like as you browse." -msgstr "「Discover」動態源會在您瀏覽時了解您喜歡哪些貼文。" +msgstr "「Discover」動態源會在您瀏覽時瞭解您喜歡哪些貼文。" #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" msgstr "探索新的自訂動態源" -#: src/view/screens/Search/Explore.tsx:388 +#: src/view/screens/Search/Explore.tsx:390 msgid "Discover new feeds" msgstr "探索新的動態源" @@ -1666,7 +1669,7 @@ msgstr "跳過入門指南" #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" -msgstr "顯示更大的 alt 文本標識" +msgstr "顯示較大的替代文字標誌" #: src/view/com/modals/EditProfile.tsx:193 msgid "Display name" @@ -1729,7 +1732,7 @@ msgstr "完成" msgid "Done{extraText}" msgstr "完成{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319 msgid "Download Bluesky" msgstr "下載 Bluesky" @@ -1817,7 +1820,7 @@ msgstr "編輯列表詳情" msgid "Edit Moderation List" msgstr "編輯內容管理列表" -#: src/Navigation.tsx:274 +#: src/Navigation.tsx:281 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -1832,12 +1835,12 @@ msgstr "編輯我的個人檔案" msgid "Edit People" msgstr "編輯人物" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "編輯個人檔案" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "編輯個人檔案" @@ -1862,7 +1865,7 @@ msgstr "編輯您的顯示名稱" msgid "Edit your profile description" msgstr "編輯您的帳號描述" -#: src/Navigation.tsx:343 +#: src/Navigation.tsx:350 msgid "Edit your starter pack" msgstr "編輯您的入門包" @@ -1901,7 +1904,7 @@ msgstr "電子郵件已更新" msgid "Email verified" msgstr "電子郵件已驗證" -#: src/view/screens/Settings/index.tsx:350 +#: src/view/screens/Settings/index.tsx:351 msgid "Email:" msgstr "電子郵件:" @@ -2063,7 +2066,7 @@ msgid "Exits image view" msgstr "離開圖片檢視器" #: src/view/com/modals/ListAddRemoveUsers.tsx:88 -#: src/view/shell/desktop/Search.tsx:215 +#: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "退出輸入搜索查詢" @@ -2071,7 +2074,7 @@ msgstr "退出輸入搜索查詢" msgid "Expand alt text" msgstr "展開替代文字" -#: src/view/com/notifications/FeedItem.tsx:238 +#: src/view/com/notifications/FeedItem.tsx:239 msgid "Expand list of users" msgstr "展開用戶清單" @@ -2088,12 +2091,12 @@ msgstr "露骨或可能令人不安的媒體內容。" msgid "Explicit sexual images." msgstr "露骨的色情圖片。" -#: src/view/screens/Settings/index.tsx:787 +#: src/view/screens/Settings/index.tsx:788 msgid "Export my data" msgstr "匯出我的資料" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:798 +#: src/view/screens/Settings/index.tsx:799 msgid "Export My Data" msgstr "匯出我的資料" @@ -2107,20 +2110,20 @@ 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:293 +#: src/Navigation.tsx:300 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:680 +#: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" msgstr "外部媒體偏好" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "External media settings" msgstr "外部媒體設定" #: src/view/com/modals/AddAppPasswords.tsx:119 #: src/view/com/modals/AddAppPasswords.tsx:123 msgid "Failed to create app password." -msgstr "建立應用程式專用密碼失敗。" +msgstr "無法建立應用程式專用密碼。" #: src/screens/StarterPack/Wizard/index.tsx:230 #: src/screens/StarterPack/Wizard/index.tsx:238 @@ -2137,14 +2140,14 @@ msgstr "無法刪除訊息" #: src/view/com/util/forms/PostDropdownBtn.tsx:152 msgid "Failed to delete post, please try again" -msgstr "無法刪除貼文,請重試" +msgstr "無法刪除貼文,請再試一次" #: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" msgstr "無法刪除入門包" -#: src/view/screens/Search/Explore.tsx:426 -#: src/view/screens/Search/Explore.tsx:454 +#: src/view/screens/Search/Explore.tsx:428 +#: src/view/screens/Search/Explore.tsx:456 msgid "Failed to load feeds preferences" msgstr "無法載入動態源偏好" @@ -2157,12 +2160,12 @@ msgstr "無法載入 GIF" msgid "Failed to load past messages" msgstr "無法載入過去的訊息" -#: src/view/screens/Search/Explore.tsx:419 -#: src/view/screens/Search/Explore.tsx:447 +#: src/view/screens/Search/Explore.tsx:421 +#: src/view/screens/Search/Explore.tsx:449 msgid "Failed to load suggested feeds" msgstr "無法載入建議的動態源" -#: src/view/screens/Search/Explore.tsx:377 +#: src/view/screens/Search/Explore.tsx:379 msgid "Failed to load suggested follows" msgstr "無法載入建議的跟隨者" @@ -2170,18 +2173,18 @@ msgstr "無法載入建議的跟隨者" msgid "Failed to save image: {0}" msgstr "無法儲存圖片:{0}" -#: src/components/dms/MessageItem.tsx:230 +#: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "無法傳送" -#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: src/components/moderation/LabelsOnMeDialog.tsx:244 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." -msgstr "無法提交申訴,請重試。" +msgstr "無法提交申訴,請再試一次。" #: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Failed to toggle thread mute, please try again" -msgstr "無法將討論串設為靜音,請重試" +msgstr "無法將討論串設為靜音,請再試一次" #: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" @@ -2192,7 +2195,7 @@ msgstr "無法更新動態" msgid "Failed to update settings" msgstr "無法更新設定" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:216 msgid "Feed" msgstr "動態" @@ -2206,19 +2209,19 @@ msgid "Feed toggle" msgstr "切換動態源" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:345 +#: src/view/shell/Drawer.tsx:332 msgid "Feedback" msgstr "意見回饋" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:330 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 #: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:493 -#: src/view/shell/Drawer.tsx:494 +#: src/view/shell/Drawer.tsx:483 +#: src/view/shell/Drawer.tsx:484 msgid "Feeds" msgstr "動態源" @@ -2254,7 +2257,7 @@ msgstr "尋找一些帳號來跟隨" #: src/tours/HomeTour.tsx:88 msgid "Find more feeds and accounts to follow in the Explore page." -msgstr "在探索頁面中尋找更多想要追蹤的動態源和帳號。" +msgstr "在探索頁面中尋找更多想要跟隨的動態源和帳號。" #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" @@ -2262,7 +2265,7 @@ msgstr "在 Bluesky 上尋找貼文和用戶" #: src/view/screens/PreferencesFollowingFeed.tsx:110 msgid "Fine-tune the content you see on your Following feed." -msgstr "對「Following」動態源中的內容進行微調,以下選項只對「Following」動態源起作用。" +msgstr "調整您在「Following」動態源中所看到的內容。" #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." @@ -2294,7 +2297,7 @@ msgid "Flip vertically" msgstr "垂直翻轉" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:341 +#: src/components/ProfileCard.tsx:343 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2333,54 +2336,50 @@ msgstr "全部跟隨" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 msgid "Follow Back" -msgstr "回追蹤" +msgstr "回跟" -#: src/view/screens/Search/Explore.tsx:333 +#: src/view/screens/Search/Explore.tsx:335 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "跟隨更多帳號以瞭解您的興趣,並建立您的社群網路。" -#: src/view/com/profile/ProfileCard.tsx:190 -msgid "Followed by {0}" -msgstr "由 {0} 跟隨" - -#: src/components/KnownFollowers.tsx:223 +#: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" -msgstr "已被你跟隨的 <0>{0} 跟隨" +msgstr "已被您跟隨的 <0>{0} 跟隨" -#: src/components/KnownFollowers.tsx:209 +#: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" -msgstr "已被你跟隨的 <0>{0} 和{1, plural, one {其他 # 人跟隨} other {其他 # 人跟}}" +msgstr "已被您跟隨的 <0>{0} 和{1, plural, one {其他 # 人跟隨} other {其他 # 人跟}}" -#: src/components/KnownFollowers.tsx:196 +#: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" -msgstr "已被你跟隨的 <0>{0} 和 <1>{1} 跟隨" +msgstr "已被您跟隨的 <0>{0} 和 <1>{1} 跟隨" -#: src/components/KnownFollowers.tsx:178 +#: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" -msgstr "已被你跟隨的 <0>{0}, <1>{1} 和{2, plural, one {其他 # 人跟隨} other {其他 # 人跟隨}}" +msgstr "已被您跟隨的 <0>{0}, <1>{1} 和{2, plural, one {其他 # 人跟隨} other {其他 # 人跟隨}}" #: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" -msgstr "已跟隨的用戶" +msgstr "您跟隨的用戶" #: src/view/screens/PreferencesFollowingFeed.tsx:153 msgid "Followed users only" msgstr "僅限已跟隨的用戶" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:198 msgid "followed you" msgstr "已跟隨您" -#: src/view/com/notifications/FeedItem.tsx:195 +#: src/view/com/notifications/FeedItem.tsx:196 msgid "followed you back" -msgstr "回跟" +msgstr "已回跟您" #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "跟隨者" -#: src/Navigation.tsx:182 +#: src/Navigation.tsx:184 msgid "Followers of @{0} that you know" msgstr "您所認識的這些人也跟隨了 @{0}" @@ -2390,7 +2389,7 @@ msgid "Followers you know" msgstr "您也認識的跟隨者" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:335 +#: src/components/ProfileCard.tsx:337 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2402,7 +2401,7 @@ msgstr "您也認識的跟隨者" msgid "Following" msgstr "跟隨中" -#: src/components/ProfileCard.tsx:301 +#: src/components/ProfileCard.tsx:303 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "已跟隨 {0}" @@ -2411,13 +2410,13 @@ msgstr "已跟隨 {0}" msgid "Following {name}" msgstr "已跟隨 {name}" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Following feed preferences" msgstr "「Following」動態源偏好" -#: src/Navigation.tsx:280 +#: src/Navigation.tsx:287 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:583 +#: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "「Following」動態源偏好" @@ -2457,7 +2456,7 @@ msgstr "忘記密碼?" #: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" -msgstr "忘記?" +msgstr "忘記了?" #: src/lib/moderation/useReportOptions.ts:54 msgid "Frequently Posts Unwanted Content" @@ -2467,7 +2466,7 @@ msgstr "頻繁發佈不當內容" msgid "From @{sanitizedAuthor}" msgstr "來自 @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:236 +#: src/view/com/posts/FeedItem.tsx:242 msgctxt "from-feed" msgid "From <0/>" msgstr "來自 <0/>" @@ -2480,6 +2479,10 @@ msgstr "相簿" msgid "Generate a starter pack" msgstr "建立入門包" +#: src/view/shell/Drawer.tsx:336 +msgid "Get help" +msgstr "取得幫助" + #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" msgstr "開始" @@ -2526,13 +2529,9 @@ msgstr "返回" msgid "Go Back" msgstr "返回" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -msgid "Go back to previous screen" -msgstr "返回上一頁" - #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/components/ReportDialog/SubmitView.tsx:121 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 @@ -2574,7 +2573,7 @@ msgstr "前往用戶的個人檔案" #: src/lib/moderation/useGlobalLabelStrings.ts:46 msgid "Graphic Media" -msgstr "不適宜的圖像媒體" +msgstr "敏感媒體" #: src/state/shell/progress-guide.tsx:166 msgid "Half way there!" @@ -2592,7 +2591,7 @@ msgstr "觸覺" msgid "Harassment, trolling, or intolerance" msgstr "騷擾、惡作劇或其他無法容忍的行為" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:315 msgid "Hashtag" msgstr "標籤" @@ -2605,7 +2604,7 @@ msgid "Having trouble?" msgstr "遇到問題?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:355 +#: src/view/shell/Drawer.tsx:345 msgid "Help" msgstr "幫助" @@ -2628,7 +2627,7 @@ msgstr "這是您的應用程式專用密碼。" msgid "Hide" msgstr "隱藏" -#: src/view/com/notifications/FeedItem.tsx:444 +#: src/view/com/notifications/FeedItem.tsx:447 msgctxt "action" msgid "Hide" msgstr "隱藏" @@ -2647,7 +2646,7 @@ msgstr "隱藏內容" msgid "Hide this post?" msgstr "隱藏這則貼文?" -#: src/view/com/notifications/FeedItem.tsx:435 +#: src/view/com/notifications/FeedItem.tsx:438 msgid "Hide user list" msgstr "隱藏用戶列表" @@ -2679,12 +2678,12 @@ msgstr "抱歉,看起來我們在載入這些資料時遇到了問題,請參 msgid "Hmmmm, we couldn't load that moderation service." msgstr "抱歉,我們無法載入該內容管理服務。" -#: src/Navigation.tsx:519 -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:526 +#: src/Navigation.tsx:546 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:425 -#: src/view/shell/Drawer.tsx:426 +#: src/view/shell/Drawer.tsx:415 +#: src/view/shell/Drawer.tsx:416 msgid "Home" msgstr "首頁" @@ -2865,14 +2864,14 @@ msgstr "邀請,但僅限個人" #: src/screens/StarterPack/Wizard/index.tsx:452 msgid "It's just you right now! Add more people to your starter pack by searching above." -msgstr "現在只有你一個人!使用上面的搜尋功能,將更多人加入到您的入門包中。" +msgstr "現在只有您一個人!使用上面的搜尋功能,將更多人加入到您的入門包中。" #: src/view/com/auth/SplashScreen.web.tsx:157 msgid "Jobs" msgstr "工作" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:432 #: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" @@ -2903,11 +2902,11 @@ msgstr "標記" 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:79 +#: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "您帳號上的標記" -#: src/components/moderation/LabelsOnMeDialog.tsx:81 +#: src/components/moderation/LabelsOnMeDialog.tsx:82 msgid "Labels on your content" msgstr "您內容上的標記" @@ -2915,16 +2914,16 @@ msgstr "您內容上的標記" msgid "Language selection" msgstr "語言選擇" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Language settings" msgstr "語言設定" -#: src/Navigation.tsx:155 +#: src/Navigation.tsx:157 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "語言設定" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Languages" msgstr "語言" @@ -2984,7 +2983,7 @@ msgstr "離開 Bluesky" msgid "left to go." msgstr "個人在排在您前面。" -#: src/view/screens/Settings/index.tsx:309 +#: src/view/screens/Settings/index.tsx:310 msgid "Legacy storage cleared, you need to restart the app now." msgstr "遺留資料已清除,您需要立即重新啟動應用程式。" @@ -3002,7 +3001,7 @@ msgstr "讓我們來重設您的密碼吧!" msgid "Let's go!" msgstr "讓我們開始吧!" -#: src/view/screens/Settings/index.tsx:453 +#: src/view/screens/Settings/index.tsx:454 msgid "Light" msgstr "亮色" @@ -3015,30 +3014,30 @@ msgstr "喜歡 10 個貼文" msgid "Like 10 posts to train the Discover feed" msgstr "喜歡 10 個貼文以訓練「Discover」動態源" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:266 #: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" -msgstr "對這個動態源按喜歡" +msgstr "對這個動態源表示喜歡" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:219 -#: src/Navigation.tsx:224 +#: src/Navigation.tsx:221 +#: src/Navigation.tsx:226 msgid "Liked by" -msgstr "按喜歡的用戶" +msgstr "表示喜歡的用戶" #: src/screens/Profile/ProfileLabelerLikedBy.tsx:29 #: src/view/screens/PostLikedBy.tsx:27 #: src/view/screens/ProfileFeedLikedBy.tsx:27 msgid "Liked By" -msgstr "按喜歡的用戶" +msgstr "表示喜歡的用戶" -#: src/view/com/notifications/FeedItem.tsx:201 +#: src/view/com/notifications/FeedItem.tsx:202 msgid "liked your custom feed" msgstr "對您的自訂動態源表示喜歡" -#: src/view/com/notifications/FeedItem.tsx:185 +#: src/view/com/notifications/FeedItem.tsx:186 msgid "liked your post" -msgstr "已喜歡您的貼文" +msgstr "表示喜歡您的貼文" #: src/view/screens/Profile.tsx:212 msgid "Likes" @@ -3048,7 +3047,7 @@ msgstr "喜歡" msgid "Likes on this post" msgstr "這條貼文的喜歡數" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:190 msgid "List" msgstr "列表" @@ -3085,12 +3084,12 @@ msgstr "已解除封鎖的列表" msgid "List unmuted" msgstr "已解除靜音的列表" -#: src/Navigation.tsx:125 +#: src/Navigation.tsx:127 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 -#: src/view/shell/Drawer.tsx:509 -#: src/view/shell/Drawer.tsx:510 +#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:500 msgid "Lists" msgstr "列表" @@ -3098,15 +3097,15 @@ msgstr "列表" msgid "Lists blocking this user:" msgstr "封鎖此用戶的列表:" -#: src/view/screens/Search/Explore.tsx:130 +#: src/view/screens/Search/Explore.tsx:131 msgid "Load more" msgstr "載入更多" -#: src/view/screens/Search/Explore.tsx:218 +#: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" msgstr "載入更多推薦動態" -#: src/view/screens/Search/Explore.tsx:216 +#: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" msgstr "載入更多推薦跟隨者" @@ -3125,7 +3124,7 @@ msgstr "載入新的貼文" msgid "Loading..." msgstr "載入中…" -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:246 msgid "Log" msgstr "日誌" @@ -3230,7 +3229,7 @@ msgstr "訊息太長了" msgid "Message settings" msgstr "訊息設定" -#: src/Navigation.tsx:534 +#: src/Navigation.tsx:541 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3241,9 +3240,9 @@ msgstr "訊息" msgid "Misleading Account" msgstr "誤導性帳號" -#: src/Navigation.tsx:130 +#: src/Navigation.tsx:132 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:562 +#: src/view/screens/Settings/index.tsx:563 msgid "Moderation" msgstr "內容管理" @@ -3279,16 +3278,16 @@ msgstr "內容管理列表已更新" msgid "Moderation lists" msgstr "內容管理列表" -#: src/Navigation.tsx:135 +#: src/Navigation.tsx:137 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "內容管理列表" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Moderation settings" msgstr "內容管理設定" -#: src/Navigation.tsx:234 +#: src/Navigation.tsx:236 msgid "Moderation states" msgstr "內容管理狀態" @@ -3393,14 +3392,14 @@ msgstr "已靜音" msgid "Muted accounts" msgstr "已靜音帳號" -#: src/Navigation.tsx:140 +#: src/Navigation.tsx:142 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "已靜音帳號" #: src/view/screens/ModerationMutedAccounts.tsx:117 msgid "Muted accounts have their posts removed from your feed and from your notifications. Mutes are completely private." -msgstr "已靜音的帳號將不會在您的通知或動態中顯示,靜音資訊是完全非公開的。" +msgstr "已靜音的帳號將不會在您的通知或動態中顯示,靜音資訊完全只有您可以查看。" #: src/lib/moderation/useModerationCauseDescription.ts:87 msgid "Muted by \"{0}\"" @@ -3412,7 +3411,7 @@ msgstr "靜音文字和標籤" #: src/view/screens/ProfileList.tsx:675 msgid "Muting is private. Muted accounts can interact with you, but you will not see their posts or receive notifications from them." -msgstr "封鎖是私人的。被封鎖的帳號可以與您互動,但您將無法看到他們的貼文或收到來自他們的通知。" +msgstr "靜音資訊只有您可以查看。被靜音的帳號仍可以與您互動,但您將無法看到他們的貼文或收到來自他們的通知。" #: src/components/dialogs/BirthDateSettings.tsx:35 #: src/components/dialogs/BirthDateSettings.tsx:38 @@ -3427,13 +3426,13 @@ msgstr "我的動態源" msgid "My Profile" msgstr "我的個人檔案" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "My saved feeds" -msgstr "我儲存的動態源" +msgstr "儲存的動態源" -#: src/view/screens/Settings/index.tsx:623 +#: src/view/screens/Settings/index.tsx:624 msgid "My Saved Feeds" -msgstr "我儲存的動態源" +msgstr "儲存的動態源" #: src/view/com/modals/AddAppPasswords.tsx:173 #: src/view/com/modals/CreateOrEditList.tsx:279 @@ -3470,7 +3469,7 @@ msgstr "切換到入門包" msgid "Navigates to the next screen" msgstr "切換到下一畫面" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:78 msgid "Navigates to your profile" msgstr "切換到您的個人檔案" @@ -3600,16 +3599,16 @@ msgstr "未找到精選 GIF,Tenor 可能發生問題。" #: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." -msgstr "沒有找到動態。嘗試其他搜尋。" +msgstr "沒有找到任何動態。請嘗試以其他關鍵字搜尋。" -#: src/components/ProfileCard.tsx:321 +#: src/components/ProfileCard.tsx:323 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "不再跟隨 {0}" #: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" -msgstr "不超過 253 個字符" +msgstr "不超過 253 個字元" #: src/screens/Messages/List/ChatListItem.tsx:106 msgid "No messages yet" @@ -3649,19 +3648,19 @@ msgstr "未找到結果" #: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" -msgstr "未找到「{query}」的結果" +msgstr "未找到符合「{query}」的結果" #: src/view/com/modals/ListAddRemoveUsers.tsx:127 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 msgid "No results found for {query}" -msgstr "未找到 {query} 的結果" +msgstr "未找到符合 {query} 的結果" #: src/components/dialogs/GifSelect.ios.tsx:200 #: src/components/dialogs/GifSelect.tsx:216 msgid "No search results found for \"{search}\"." -msgstr "未找到「{search}」的搜尋結果。" +msgstr "未找到符合「{search}」的搜尋結果。" #: src/components/dialogs/EmbedConsent.tsx:105 #: src/components/dialogs/EmbedConsent.tsx:112 @@ -3679,17 +3678,17 @@ msgstr "沒有人可以回覆" #: src/components/LikedByList.tsx:79 #: src/components/LikesDialog.tsx:99 msgid "Nobody has liked this yet. Maybe you should be the first!" -msgstr "還沒有人按喜歡,也許您應該成為第一個!" +msgstr "還沒有人對此表示喜歡,也許您可以成為第一個!" #: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." -msgstr "沒有找到任何人。嘗試其他搜尋。" +msgstr "沒有找到任何人。請嘗試以其他關鍵字搜尋。" #: src/lib/moderation/useGlobalLabelStrings.ts:42 msgid "Non-sexual Nudity" -msgstr "非色情內容裸體" +msgstr "非色情裸露" -#: src/Navigation.tsx:120 +#: src/Navigation.tsx:122 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "未找到" @@ -3721,13 +3720,13 @@ msgstr "通知音效" msgid "Notification Sounds" msgstr "通知音效" -#: src/Navigation.tsx:529 +#: src/Navigation.tsx:536 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 -#: src/view/shell/Drawer.tsx:457 -#: src/view/shell/Drawer.tsx:458 +#: src/view/shell/Drawer.tsx:447 +#: src/view/shell/Drawer.tsx:448 msgid "Notifications" msgstr "通知" @@ -3735,7 +3734,7 @@ msgstr "通知" msgid "now" msgstr "現在" -#: src/components/dms/MessageItem.tsx:175 +#: src/components/dms/MessageItem.tsx:169 msgid "Now" msgstr "現在" @@ -3761,7 +3760,7 @@ msgstr "糟糕!" msgid "Oh no! Something went wrong." msgstr "糟糕!發生了一些錯誤。" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:338 msgid "OK" msgstr "好的" @@ -3781,7 +3780,7 @@ msgstr "在" msgid "on {str}" msgstr "在 {str}" -#: src/view/screens/Settings/index.tsx:257 +#: src/view/screens/Settings/index.tsx:258 msgid "Onboarding reset" msgstr "重新開始引導流程" @@ -3789,7 +3788,7 @@ msgstr "重新開始引導流程" msgid "Onboarding tour step {0}: {1}" msgstr "入門指南步驟 {0}:{1}" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:534 msgid "One or more images is missing alt text." msgstr "至少有一張圖片缺失了替代文字。" @@ -3819,7 +3818,7 @@ msgstr "糟糕!" #: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" -msgstr "開啟" +msgstr "開放" #: src/view/com/posts/AviFollowButton.tsx:89 msgid "Open {name} profile shortcut menu" @@ -3834,8 +3833,8 @@ msgstr "開啟頭像建立工具" msgid "Open conversation options" msgstr "開啟對話選項" -#: src/view/com/composer/Composer.tsx:632 -#: src/view/com/composer/Composer.tsx:633 +#: src/view/com/composer/Composer.tsx:663 +#: src/view/com/composer/Composer.tsx:664 msgid "Open emoji picker" msgstr "開啟表情符號選擇器" @@ -3843,7 +3842,7 @@ msgstr "開啟表情符號選擇器" msgid "Open feed options menu" msgstr "開啟動態選項選單" -#: src/view/screens/Settings/index.tsx:737 +#: src/view/screens/Settings/index.tsx:738 msgid "Open links with in-app browser" msgstr "在內建瀏覽器中開啟連結" @@ -3867,12 +3866,12 @@ msgstr "開啟貼文選項選單" msgid "Open starter pack menu" msgstr "開啟入門包選單" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Open storybook page" msgstr "開啟故事書頁面" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Open system log" msgstr "開啟系統日誌" @@ -3884,7 +3883,7 @@ msgstr "開啟 {numItems} 個選項" msgid "Opens a dialog to choose who can reply to this thread" msgstr "開啟對話窗來選擇哪些人可以回覆此討論串" -#: src/view/screens/Settings/index.tsx:511 +#: src/view/screens/Settings/index.tsx:512 msgid "Opens accessibility settings" msgstr "開啟無障礙設定" @@ -3896,7 +3895,7 @@ msgstr "開啟除錯項目的額外詳細資訊" msgid "Opens camera on device" msgstr "開啟裝置相機" -#: src/view/screens/Settings/index.tsx:640 +#: src/view/screens/Settings/index.tsx:641 msgid "Opens chat settings" msgstr "開啟對話設定" @@ -3904,7 +3903,7 @@ msgstr "開啟對話設定" msgid "Opens composer" msgstr "開啟編輯器" -#: src/view/screens/Settings/index.tsx:532 +#: src/view/screens/Settings/index.tsx:533 msgid "Opens configurable language settings" msgstr "開啟可以更改的語言設定" @@ -3912,7 +3911,7 @@ msgstr "開啟可以更改的語言設定" msgid "Opens device photo gallery" msgstr "開啟裝置相簿" -#: src/view/screens/Settings/index.tsx:672 +#: src/view/screens/Settings/index.tsx:673 msgid "Opens external embeds settings" msgstr "開啟外部連結嵌入設定" @@ -3934,27 +3933,27 @@ msgstr "開啟 GIF 選擇對話框" msgid "Opens list of invite codes" msgstr "開啟邀請碼列表" -#: src/view/screens/Settings/index.tsx:809 +#: src/view/screens/Settings/index.tsx:810 msgid "Opens modal for account deactivation confirmation" msgstr "開啟帳號刪除的確認彈窗" -#: src/view/screens/Settings/index.tsx:831 +#: src/view/screens/Settings/index.tsx:832 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "開啟帳號刪除的確認彈窗。需要電子郵件驗證碼" -#: src/view/screens/Settings/index.tsx:766 +#: src/view/screens/Settings/index.tsx:767 msgid "Opens modal for changing your Bluesky password" msgstr "開啟修改 Bluesky 密碼的彈窗" -#: src/view/screens/Settings/index.tsx:721 +#: src/view/screens/Settings/index.tsx:722 msgid "Opens modal for choosing a new Bluesky handle" msgstr "開啟建立新 Bluesky 帳號代碼的彈窗" -#: src/view/screens/Settings/index.tsx:789 +#: src/view/screens/Settings/index.tsx:790 msgid "Opens modal for downloading your Bluesky account data (repository)" -msgstr "開啟下載 Bluesky 帳號數據(存儲庫)的彈窗" +msgstr "開啟下載 Bluesky 帳號數據(儲存庫)的彈窗" -#: src/view/screens/Settings/index.tsx:1009 +#: src/view/screens/Settings/index.tsx:1010 msgid "Opens modal for email verification" msgstr "開啟驗證電子郵件的彈窗" @@ -3962,7 +3961,7 @@ msgstr "開啟驗證電子郵件的彈窗" msgid "Opens modal for using custom domain" msgstr "開啟使用自訂網域的彈窗" -#: src/view/screens/Settings/index.tsx:557 +#: src/view/screens/Settings/index.tsx:558 msgid "Opens moderation settings" msgstr "開啟內容管理設定" @@ -3970,15 +3969,15 @@ msgstr "開啟內容管理設定" msgid "Opens password reset form" msgstr "開啟密碼重設表單" -#: src/view/screens/Settings/index.tsx:618 +#: src/view/screens/Settings/index.tsx:619 msgid "Opens screen with all saved feeds" msgstr "開啟包含所有已儲存的動態源之畫面" -#: src/view/screens/Settings/index.tsx:699 +#: src/view/screens/Settings/index.tsx:700 msgid "Opens the app password settings" msgstr "開啟應用程式專用密碼設定畫面" -#: src/view/screens/Settings/index.tsx:575 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens the Following feed preferences" msgstr "開啟「Following」動態源偏好" @@ -3986,30 +3985,34 @@ msgstr "開啟「Following」動態源偏好" msgid "Opens the linked website" msgstr "開啟網站連結" -#: src/view/screens/Settings/index.tsx:862 -#: src/view/screens/Settings/index.tsx:872 +#: src/view/screens/Settings/index.tsx:863 +#: src/view/screens/Settings/index.tsx:873 msgid "Opens the storybook page" msgstr "開啟故事書頁面" -#: src/view/screens/Settings/index.tsx:850 +#: src/view/screens/Settings/index.tsx:851 msgid "Opens the system log page" msgstr "開啟系統日誌頁面" -#: src/view/screens/Settings/index.tsx:596 +#: src/view/screens/Settings/index.tsx:597 msgid "Opens the threads preferences" msgstr "開啟討論串偏好" -#: src/view/com/notifications/FeedItem.tsx:524 +#: src/view/com/notifications/FeedItem.tsx:527 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "開啟這個個人檔案" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:54 +msgid "Opens video picker" +msgstr "開啟影片選擇器" + #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "{0} 選項,共 {numItems} 個" #: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:162 +#: src/components/ReportDialog/SubmitView.tsx:179 msgid "Optionally provide additional information below:" msgstr "在以下提供額外訊息(可選):" @@ -4069,7 +4072,7 @@ msgstr "密碼已更新" msgid "Password updated!" msgstr "密碼已更新!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Pause" msgstr "暫停" @@ -4078,11 +4081,11 @@ msgstr "暫停" msgid "People" msgstr "用戶" -#: src/Navigation.tsx:175 +#: src/Navigation.tsx:177 msgid "People followed by @{0}" msgstr "被 @{0} 跟隨的人" -#: src/Navigation.tsx:168 +#: src/Navigation.tsx:170 msgid "People following @{0}" msgstr "跟隨 @{0} 的人" @@ -4109,7 +4112,7 @@ msgstr "攝影" #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." -msgstr "適合成年人的圖像。" +msgstr "不適合未成年人的圖片。" #: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 @@ -4128,7 +4131,7 @@ msgstr "釘選的動態源列表" msgid "Pinned to your feeds" msgstr "從您的動態中取消釘選" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Play" msgstr "播放" @@ -4136,7 +4139,7 @@ msgstr "播放" msgid "Play {0}" msgstr "播放 {0}" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 msgid "Play or pause the GIF" msgstr "播放或暫停 GIF" @@ -4191,7 +4194,7 @@ msgstr "請輸入您的邀請碼。" msgid "Please enter your password as well:" msgstr "請輸入您的密碼:" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:277 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "請解釋您認為 {0} 不該套用此標記的原因" @@ -4208,7 +4211,7 @@ msgstr "請以 @{0} 的身分登入" msgid "Please Verify Your Email" msgstr "請驗證您的電子郵件地址" -#: src/view/com/composer/Composer.tsx:287 +#: src/view/com/composer/Composer.tsx:299 msgid "Please wait for your link card to finish loading" msgstr "請等待您的連結預覽載入完畢" @@ -4219,10 +4222,10 @@ msgstr "政治" #: src/view/com/modals/SelfLabel.tsx:112 msgid "Porn" -msgstr "色情內容" +msgstr "色情" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:509 +#: src/view/com/composer/Composer.tsx:516 msgctxt "action" msgid "Post" msgstr "發佈" @@ -4236,9 +4239,9 @@ msgstr "貼文" msgid "Post by {0}" msgstr "{0} 的貼文" -#: src/Navigation.tsx:194 -#: src/Navigation.tsx:201 -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:196 +#: src/Navigation.tsx:203 +#: src/Navigation.tsx:210 msgid "Post by @{0}" msgstr "@{0} 的貼文" @@ -4309,7 +4312,7 @@ msgstr "按下以更改託管服務供應商" msgid "Press to retry" msgstr "按下以重試" -#: src/components/KnownFollowers.tsx:116 +#: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "按下以查看哪些您認識的人跟隨了此帳號" @@ -4325,16 +4328,16 @@ msgstr "主要語言" msgid "Prioritize Your Follows" msgstr "優先顯示跟隨者" -#: src/view/screens/Settings/index.tsx:655 +#: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "隱私" -#: src/Navigation.tsx:249 +#: src/Navigation.tsx:256 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:958 -#: src/view/shell/Drawer.tsx:285 +#: src/view/screens/Settings/index.tsx:959 +#: src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "隱私政策" @@ -4353,9 +4356,9 @@ msgstr "個人檔案" #: src/view/shell/bottom-bar/BottomBar.tsx:275 #: src/view/shell/desktop/LeftNav.tsx:393 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:542 -#: src/view/shell/Drawer.tsx:543 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:532 +#: src/view/shell/Drawer.tsx:533 msgid "Profile" msgstr "個人檔案" @@ -4363,27 +4366,27 @@ msgstr "個人檔案" msgid "Profile updated" msgstr "個人檔案已更新" -#: src/view/screens/Settings/index.tsx:1022 +#: src/view/screens/Settings/index.tsx:1023 msgid "Protect your account by verifying your email." msgstr "通過驗證電子郵件地址來保護您的帳號。" #: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" -msgstr "公開內容" +msgstr "公開" #: src/view/screens/ModerationModlists.tsx:61 msgid "Public, shareable lists of users to mute or block in bulk." -msgstr "公開且可共享的批量靜音或封鎖列表。" +msgstr "公開且可共享的用戶列表,可供批量靜音或封鎖。" #: src/view/screens/Lists.tsx:66 msgid "Public, shareable lists which can drive feeds." msgstr "公開且可共享的列表,可作為動態源使用。" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish post" msgstr "發佈貼文" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish reply" msgstr "發佈回覆" @@ -4440,8 +4443,8 @@ msgstr "重新載入對話" #: src/components/dialogs/MutedWords.tsx:286 #: src/components/FeedCard.tsx:309 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -4456,7 +4459,7 @@ msgstr "從您的入門包刪除 {displayName}" #: src/view/com/util/AccountDropdownBtn.tsx:22 msgid "Remove account" -msgstr "刪除帳號" +msgstr "移除帳號" #: src/view/com/util/UserAvatar.tsx:384 msgid "Remove Avatar" @@ -4497,7 +4500,7 @@ msgstr "從我的動態源中刪除?" msgid "Remove image" msgstr "刪除圖片" -#: src/view/com/composer/ExternalEmbed.tsx:87 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 msgid "Remove image preview" msgstr "刪除圖片預覽" @@ -4541,14 +4544,14 @@ msgstr "已從我的動態源中刪除" msgid "Removed from your feeds" msgstr "從您的動態中刪除" -#: src/view/com/composer/ExternalEmbed.tsx:88 -msgid "Removes default thumbnail from {0}" -msgstr "從 {0} 中刪除預設縮圖" - #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" msgstr "刪除已轉貼貼文" +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the image preview" +msgstr "移除圖片預覽" + #: src/view/com/posts/FeedShutdownMsg.tsx:126 #: src/view/com/posts/FeedShutdownMsg.tsx:130 msgid "Replace with Discover" @@ -4566,7 +4569,7 @@ msgstr "回覆已被停用" msgid "Replies to this thread are disabled" msgstr "此討論串的回覆已停用" -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:507 msgctxt "action" msgid "Reply" msgstr "回覆" @@ -4575,17 +4578,23 @@ msgstr "回覆" msgid "Reply Filters" msgstr "回覆過濾器" -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:439 +#: src/view/com/post/Post.tsx:197 +#: src/view/com/posts/FeedItem.tsx:458 msgctxt "description" msgid "Reply to <0><1/>" msgstr "對 <0><1/> 回覆" -#: src/view/com/posts/FeedItem.tsx:437 +#: src/view/com/posts/FeedItem.tsx:456 msgctxt "description" msgid "Reply to a blocked post" msgstr "對已被封鎖的貼文回覆" +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:454 +msgctxt "description" +msgid "Reply to you" +msgstr "對您回覆" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -4683,15 +4692,20 @@ msgstr "轉貼或引用貼文" msgid "Reposted By" msgstr "轉貼" -#: src/view/com/posts/FeedItem.tsx:254 +#: src/view/com/posts/FeedItem.tsx:263 msgid "Reposted by {0}" msgstr "由 {0} 轉貼" -#: src/view/com/posts/FeedItem.tsx:269 +#: src/view/com/posts/FeedItem.tsx:282 msgid "Reposted by <0><1/>" msgstr "由 <0><1/> 轉貼" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/posts/FeedItem.tsx:261 +#: src/view/com/posts/FeedItem.tsx:280 +msgid "Reposted by you" +msgstr "由您轉貼" + +#: src/view/com/notifications/FeedItem.tsx:188 msgid "reposted your post" msgstr "轉貼您的貼文" @@ -4734,8 +4748,8 @@ msgstr "重設碼" msgid "Reset Code" msgstr "重設碼" -#: src/view/screens/Settings/index.tsx:901 -#: src/view/screens/Settings/index.tsx:904 +#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:905 msgid "Reset onboarding state" msgstr "重設初始設定進行狀態" @@ -4743,16 +4757,16 @@ msgstr "重設初始設定進行狀態" msgid "Reset password" msgstr "重設密碼" -#: src/view/screens/Settings/index.tsx:881 -#: src/view/screens/Settings/index.tsx:884 +#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:885 msgid "Reset preferences state" msgstr "重設偏好狀態" -#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:903 msgid "Resets the onboarding state" msgstr "重設初始設定狀態" -#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:883 msgid "Resets the preferences state" msgstr "重設偏好狀態" @@ -4765,7 +4779,7 @@ msgstr "重試登入" msgid "Retries the last action, which errored out" msgstr "重試上次出錯的操作" -#: src/components/dms/MessageItem.tsx:241 +#: src/components/dms/MessageItem.tsx:235 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 @@ -4873,8 +4887,8 @@ msgstr "儲存圖片裁剪設定" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:383 -#: src/view/com/notifications/FeedItem.tsx:408 +#: src/view/com/notifications/FeedItem.tsx:386 +#: src/view/com/notifications/FeedItem.tsx:411 msgid "Say hello!" msgstr "說句「你好!👋」" @@ -4888,7 +4902,7 @@ msgid "Scroll to top" msgstr "滾動到頂部" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:524 +#: src/Navigation.tsx:531 #: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 @@ -4898,14 +4912,14 @@ msgstr "滾動到頂部" #: src/view/screens/Search/Search.tsx:813 #: src/view/shell/bottom-bar/BottomBar.tsx:182 #: src/view/shell/desktop/LeftNav.tsx:354 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:394 -#: src/view/shell/Drawer.tsx:395 +#: src/view/shell/desktop/Search.tsx:195 +#: src/view/shell/desktop/Search.tsx:204 +#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:385 msgid "Search" msgstr "搜尋" -#: src/view/shell/desktop/Search.tsx:235 +#: src/view/shell/desktop/Search.tsx:236 msgid "Search for \"{query}\"" msgstr "搜尋「{query}」" @@ -5018,17 +5032,21 @@ msgstr "選擇 {numItems} 個項目中的第 {i} 項" msgid "Select the {emojiName} emoji as your avatar" msgstr "選擇 {emojiName} 表情符號作為您的頭像" -#: src/components/ReportDialog/SubmitView.tsx:135 +#: src/components/ReportDialog/SubmitView.tsx:152 msgid "Select the moderation service(s) to report to" -msgstr "選擇要檢舉的內容管理服務提供者" +msgstr "選擇要向哪些內容管理服務提供者提出檢舉" #: src/view/com/auth/server-input/index.tsx:82 msgid "Select the service that hosts your data." msgstr "選擇用來託管您的資料的服務商。" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:53 +msgid "Select video" +msgstr "選擇影片" + #: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." -msgstr "選擇您希望訂閱動態源中所包含的語言。未選擇任何語言時會預設顯示所有語言。" +msgstr "選擇您希望訂閱的動態源中所包含的語言。未選擇任何語言時會預設顯示所有語言。" #: src/view/screens/LanguageSettings.tsx:99 msgid "Select your app language for the default text to display in the app." @@ -5064,8 +5082,7 @@ msgctxt "action" msgid "Send Email" msgstr "發送電子郵件" -#: src/view/shell/Drawer.tsx:329 -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:325 msgid "Send feedback" msgstr "提交意見" @@ -5080,8 +5097,8 @@ msgstr "傳送貼文給…" #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:215 -#: src/components/ReportDialog/SubmitView.tsx:219 +#: src/components/ReportDialog/SubmitView.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:236 msgid "Send report" msgstr "提交檢舉" @@ -5143,23 +5160,23 @@ msgstr "設定您的帳號" msgid "Sets Bluesky username" msgstr "設定 Bluesky 帳號代碼" -#: src/view/screens/Settings/index.tsx:462 +#: src/view/screens/Settings/index.tsx:463 msgid "Sets color theme to dark" msgstr "將色彩主題設定為深色" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Sets color theme to light" msgstr "將色彩主題設定為亮色" -#: src/view/screens/Settings/index.tsx:449 +#: src/view/screens/Settings/index.tsx:450 msgid "Sets color theme to system setting" msgstr "將色彩主題設定為跟隨系統" -#: src/view/screens/Settings/index.tsx:488 +#: src/view/screens/Settings/index.tsx:489 msgid "Sets dark theme to the dark theme" msgstr "將深色主題設定為深色" -#: src/view/screens/Settings/index.tsx:481 +#: src/view/screens/Settings/index.tsx:482 msgid "Sets dark theme to the dim theme" msgstr "將深色主題設定為昏暗" @@ -5179,17 +5196,17 @@ msgstr "將圖片比例設定為高" msgid "Sets image aspect ratio to wide" msgstr "將圖片比例設定為寬" -#: src/Navigation.tsx:150 -#: src/view/screens/Settings/index.tsx:333 +#: src/Navigation.tsx:152 +#: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:559 -#: src/view/shell/Drawer.tsx:560 +#: src/view/shell/Drawer.tsx:549 +#: src/view/shell/Drawer.tsx:550 msgid "Settings" msgstr "設定" #: src/view/com/modals/SelfLabel.tsx:126 msgid "Sexual activity or erotic nudity." -msgstr "性行為或性暗示裸露。" +msgstr "性行為或色情裸露。" #: src/lib/moderation/useGlobalLabelStrings.ts:38 msgid "Sexually Suggestive" @@ -5257,11 +5274,15 @@ msgstr "分享這個入門包" #: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." -msgstr "分享這個入門包,以幫助別人加入你在 Bluesky 的社群。" +msgstr "分享這個入門包,以幫助別人加入您在 Bluesky 的社群。" #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" -msgstr "分享你喜愛的動態!" +msgstr "分享您喜愛的動態!" + +#: src/Navigation.tsx:241 +msgid "Shared Preferences Tester" +msgstr "共享偏好測試器" #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" @@ -5270,11 +5291,11 @@ msgstr "分享網站的連結" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:382 +#: src/view/screens/Settings/index.tsx:383 msgid "Show" msgstr "顯示" -#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +#: src/view/com/util/post-embeds/GifEmbed.tsx:175 msgid "Show alt text" msgstr "顯示替代文字" @@ -5306,8 +5327,8 @@ msgid "Show less like this" msgstr "減少顯示此類內容" #: src/view/com/post-thread/PostThreadItem.tsx:530 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:396 +#: src/view/com/post/Post.tsx:235 +#: src/view/com/posts/FeedItem.tsx:410 msgid "Show More" msgstr "顯示更多" @@ -5394,8 +5415,8 @@ msgstr "登入或建立您的帳號即可加入對話!" msgid "Sign into Bluesky or create a new account" msgstr "登入 Bluesky 或建立新帳號" -#: src/view/screens/Settings/index.tsx:129 -#: src/view/screens/Settings/index.tsx:133 +#: src/view/screens/Settings/index.tsx:130 +#: src/view/screens/Settings/index.tsx:134 msgid "Sign out" msgstr "登出" @@ -5420,7 +5441,7 @@ msgstr "註冊或登入即可參與對話" msgid "Sign-in Required" msgstr "需要登入" -#: src/view/screens/Settings/index.tsx:392 +#: src/view/screens/Settings/index.tsx:393 msgid "Signed in as" msgstr "登入身分" @@ -5429,12 +5450,12 @@ msgstr "登入身分" msgid "Signed in as @{0}" msgstr "以 @{0} 身分登入" -#: src/view/com/notifications/FeedItem.tsx:208 +#: src/view/com/notifications/FeedItem.tsx:209 msgid "signed up with your starter pack" msgstr "用您的入門包註冊" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 msgid "Signup without a starter pack" msgstr "不使用入門包註冊" @@ -5452,9 +5473,9 @@ msgstr "跳過此流程" msgid "Software Dev" msgstr "軟體開發" -#: src/components/FeedInterstitials.tsx:378 +#: src/components/FeedInterstitials.tsx:382 msgid "Some other feeds you might like" -msgstr "其他你可能喜歡的動態源" +msgstr "其他您可能喜歡的動態源" #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 @@ -5468,13 +5489,13 @@ msgstr "發生了一些問題" #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 msgid "Something went wrong, please try again" -msgstr "發生了一些問題,請重試" +msgstr "發生了一些問題,請再試一次" #: src/components/ReportDialog/index.tsx:59 #: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." -msgstr "發生了一些問題,請重試。" +msgstr "發生了一些問題,請再試一次。" #: src/App.native.tsx:98 #: src/App.web.tsx:80 @@ -5489,7 +5510,7 @@ msgstr "排序回覆" msgid "Sort replies to the same post by:" msgstr "對同一貼文的回覆進行排序:" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" msgstr "來源:<0>{0}" @@ -5528,8 +5549,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "開始入門指南吧!若需取得更多選項請點選下一步,或點選跳過。" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:328 -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:335 +#: src/Navigation.tsx:340 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "入門包" @@ -5550,7 +5571,7 @@ msgstr "入門包" msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "入門包讓您輕鬆地分享您喜愛的動態源與人物給您的朋友。" -#: src/view/screens/Settings/index.tsx:964 +#: src/view/screens/Settings/index.tsx:965 msgid "Status Page" msgstr "服務運作狀態頁面" @@ -5558,17 +5579,17 @@ msgstr "服務運作狀態頁面" msgid "Step {0} of {1}" msgstr "第 {0} 步(共 {1} 步)" -#: src/view/screens/Settings/index.tsx:305 +#: src/view/screens/Settings/index.tsx:306 msgid "Storage cleared, you need to restart the app now." msgstr "已清除儲存資料,您需要立即重啟應用程式。" -#: src/Navigation.tsx:229 -#: src/view/screens/Settings/index.tsx:864 +#: src/Navigation.tsx:231 +#: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "故事書" -#: src/components/moderation/LabelsOnMeDialog.tsx:290 -#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/components/moderation/LabelsOnMeDialog.tsx:311 +#: src/components/moderation/LabelsOnMeDialog.tsx:312 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5582,11 +5603,11 @@ msgstr "訂閱" msgid "Subscribe to @{0} to use these labels:" msgstr "訂閱 @{0} 以使用這些標記:" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:229 msgid "Subscribe to Labeler" msgstr "訂閱標記者" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Subscribe to this labeler" msgstr "訂閱這個標記者" @@ -5594,11 +5615,11 @@ msgstr "訂閱這個標記者" msgid "Subscribe to this list" msgstr "訂閱這個列表" -#: src/view/screens/Search/Explore.tsx:331 +#: src/view/screens/Search/Explore.tsx:333 msgid "Suggested accounts" msgstr "推薦的帳號" -#: src/components/FeedInterstitials.tsx:246 +#: src/components/FeedInterstitials.tsx:250 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "為您推薦" @@ -5607,7 +5628,7 @@ msgstr "為您推薦" msgid "Suggestive" msgstr "性暗示" -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:251 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5622,19 +5643,19 @@ msgstr "切換帳號" msgid "Switch between feeds to control your experience." msgstr "在動態源之間切換以掌控您的體驗。" -#: src/view/screens/Settings/index.tsx:160 +#: src/view/screens/Settings/index.tsx:161 msgid "Switch to {0}" msgstr "切換到 {0}" -#: src/view/screens/Settings/index.tsx:161 +#: src/view/screens/Settings/index.tsx:162 msgid "Switches the account you are logged in to" msgstr "切換您登入的帳號" -#: src/view/screens/Settings/index.tsx:446 +#: src/view/screens/Settings/index.tsx:447 msgid "System" msgstr "系統" -#: src/view/screens/Settings/index.tsx:852 +#: src/view/screens/Settings/index.tsx:853 msgid "System log" msgstr "系統日誌" @@ -5664,7 +5685,7 @@ msgstr "任務完成 - 10 個喜歡!" #: src/components/ProgressGuide/List.tsx:49 msgid "Teach our algorithm what you like" -msgstr "讓我們的演算法知道你喜歡什麼" +msgstr "讓我們的演算法知道您喜歡什麼" #: src/screens/Onboarding/index.tsx:36 #: src/screens/Onboarding/state.ts:99 @@ -5683,11 +5704,11 @@ msgstr "告訴我們更多" msgid "Terms" msgstr "條款" -#: src/Navigation.tsx:254 +#: src/Navigation.tsx:261 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:952 +#: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:279 +#: src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "服務條款" @@ -5702,13 +5723,13 @@ msgstr "所使用的文字違反了社群標準" msgid "text" msgstr "文字" -#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/components/moderation/LabelsOnMeDialog.tsx:275 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "文字輸入框" #: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:93 msgid "Thank you. Your report has been sent." msgstr "謝謝,您的檢舉已提交。" @@ -5747,19 +5768,19 @@ msgstr "版權政策已移動到 <0/>" msgid "The Discover feed now knows what you like" msgstr "「Discover」動態源現在知道您喜歡什麼" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." -msgstr "使用應用程式的體驗會更好。現在就下載 Bluesky,我們將從你離開的地方繼續。" +msgstr "使用應用程式的體驗會更好。現在就下載 Bluesky,我們將從您離開的地方繼續。" #: src/view/com/posts/FeedShutdownMsg.tsx:66 msgid "The feed has been replaced with Discover." msgstr "此動態源已由「Discover」取代。" -#: src/components/moderation/LabelsOnMeDialog.tsx:65 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your account." msgstr "以下標記已套用到您的帳號。" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:67 msgid "The following labels were applied to your content." msgstr "以下標記已套用到您的內容。" @@ -5792,7 +5813,7 @@ msgstr "服務條款已遷移到" msgid "There is no time limit for account deactivation, come back any time." msgstr "帳號停用沒有時間限制,隨時都可以重新啟用。" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 #: src/view/screens/ProfileFeed.tsx:544 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "連線至伺服器時出現問題,請檢查您的網路連線並重試。" @@ -5844,7 +5865,7 @@ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "取得列表時發生問題,點擊這裡重試。" #: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:82 +#: src/components/ReportDialog/SubmitView.tsx:98 msgid "There was an issue sending your report. Please check your internet connection." msgstr "提交您的檢舉時出現問題,請檢查您的網路連線。" @@ -5894,9 +5915,9 @@ msgstr "此帳號要求使用者登入後才能查看其個人檔案。" #: src/components/dms/BlockedByListDialog.tsx:34 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 "此帳號已被一個或多個內容管理清單封鎖。若要解除封鎖,請直接瀏覽這些清單並刪除此使用者。" +msgstr "此帳號已被一個或多個內容管理清單封鎖。若要解除封鎖,請檢查這些清單並刪除此使用者。" -#: src/components/moderation/LabelsOnMeDialog.tsx:239 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 msgid "This appeal will be sent to <0>{0}." msgstr "此申訴將被提交至 <0>{0}。" @@ -5923,7 +5944,7 @@ msgstr "此內容由 {0} 託管。是否要啟用外部媒體?" #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:79 msgid "This content is not available because one of the users involved has blocked the other." -msgstr "由於其中一個用戶封鎖了另一個用戶,無法查看此內容。" +msgstr "由於有用戶被另一個用戶封鎖,導致無法查看此內容。" #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." @@ -5931,7 +5952,7 @@ msgstr "沒有 Bluesky 帳號,無法查看此內容。" #: src/screens/Messages/List/ChatListItem.tsx:213 msgid "This conversation is with a deleted or a deactivated account. Press for options." -msgstr "此對話是與已刪除或停用的帳號進行的。點擊以查看選項。" +msgstr "這是一段與已刪除或已停用帳號的對話。按此以查看選項。" #: src/view/screens/Settings/ExportCarDialog.tsx:93 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." @@ -5971,7 +5992,7 @@ msgstr "此標記由 <0>{0} 新增。" msgid "This label was applied by the author." msgstr "此標記由發布者新增。" -#: src/components/moderation/LabelsOnMeDialog.tsx:166 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." msgstr "此標記由您新增。" @@ -6047,7 +6068,7 @@ msgstr "此用戶包含在您已靜音的 <0>{0} 列表中。" #: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." -msgstr "該用戶是新來帳號,請按此了解更多有關他們何時加入的資訊。" +msgstr "這是新來的用戶,請按此瞭解更多有關他們何時加入的資訊。" #: src/view/com/profile/ProfileFollows.tsx:87 msgid "This user isn't following anyone." @@ -6057,12 +6078,12 @@ msgstr "此用戶未跟隨任何人。" msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "這將從您的靜音文字中刪除 {0},您隨時可以新增回來。" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Thread preferences" msgstr "討論串偏好" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "討論串偏好" @@ -6074,7 +6095,7 @@ msgstr "討論串設定已更新" msgid "Threaded Mode" msgstr "樹狀顯示模式" -#: src/Navigation.tsx:287 +#: src/Navigation.tsx:294 msgid "Threads Preferences" msgstr "討論串偏好" @@ -6129,7 +6150,7 @@ msgstr "重試" msgid "TV" msgstr "電視節目" -#: src/view/screens/Settings/index.tsx:746 +#: src/view/screens/Settings/index.tsx:747 msgid "Two-factor authentication" msgstr "雙重驗證" @@ -6265,11 +6286,11 @@ msgstr "取消釘選內容管理列表" msgid "Unpinned from your feeds" msgstr "已從您的動態源取消釘選" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 msgid "Unsubscribe" msgstr "取消訂閱" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:195 msgid "Unsubscribe from this labeler" msgstr "取消訂閱這個標記者" @@ -6362,11 +6383,11 @@ msgstr "使用者:" #: src/components/moderation/ModerationDetailsDialog.tsx:64 #: src/lib/moderation/useModerationCauseDescription.ts:58 msgid "User Blocked" -msgstr "用戶被封鎖" +msgstr "用戶已被封鎖" #: src/lib/moderation/useModerationCauseDescription.ts:50 msgid "User Blocked by \"{0}\"" -msgstr "用戶被「{0}」封鎖" +msgstr "用戶已被「{0}」封鎖" #: src/components/dms/BlockedByListDialog.tsx:27 msgid "User blocked by list" @@ -6374,7 +6395,7 @@ msgstr "用戶已被列表封鎖" #: src/components/moderation/ModerationDetailsDialog.tsx:53 msgid "User Blocked by List" -msgstr "用戶被列表封鎖" +msgstr "用戶已被列表封鎖" #: src/lib/moderation/useModerationCauseDescription.ts:68 msgid "User Blocking You" @@ -6446,15 +6467,15 @@ msgstr "值:" msgid "Verify DNS Record" msgstr "驗證 DNS 紀錄" -#: src/view/screens/Settings/index.tsx:983 +#: src/view/screens/Settings/index.tsx:984 msgid "Verify email" msgstr "驗證電子郵件" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Verify my email" msgstr "驗證我的電子郵件" -#: src/view/screens/Settings/index.tsx:1017 +#: src/view/screens/Settings/index.tsx:1018 msgid "Verify My Email" msgstr "驗證我的電子郵件" @@ -6471,7 +6492,7 @@ msgstr "驗證文字檔案" msgid "Verify Your Email" msgstr "驗證您的電子郵件" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Version {appVersion} {bundleInfo}" msgstr "版本 {appVersion} {bundleInfo}" @@ -6480,11 +6501,15 @@ msgstr "版本 {appVersion} {bundleInfo}" msgid "Video Games" msgstr "電子遊戲" +#: src/view/com/composer/videos/state.ts:27 +msgid "Videos cannot be larger than 100MB" +msgstr "影片不能超過 100MB" + #: src/screens/Profile/Header/Shell.tsx:113 msgid "View {0}'s avatar" msgstr "查看 {0} 的頭像" -#: src/view/com/notifications/FeedItem.tsx:245 +#: src/view/com/notifications/FeedItem.tsx:246 msgid "View {0}'s profile" msgstr "查看 {0} 的個人檔案" @@ -6578,7 +6603,7 @@ msgstr "您已看完了您跟隨的貼文。這是來自 <0/> 的最新貼文。 #: src/components/dialogs/MutedWords.tsx:203 msgid "We recommend avoiding common words that appear in many posts, since it can result in no posts being shown." -msgstr "我們建議避免新增在許多貼文中常用的文字,因為這可能令您看不到任何貼文。" +msgstr "我們建議避免新增在許多貼文中常用的文字,因為這可能會使您看不到任何貼文。" #: src/components/dialogs/BirthDateSettings.tsx:52 msgid "We were unable to load your birth date preferences. Please try again." @@ -6602,7 +6627,7 @@ msgstr "我們將使用這些資訊來協助訂製您的體驗。" #: src/components/dms/dialogs/SearchablePeopleList.tsx:90 msgid "We're having network issues, try again" -msgstr "我們遇到網路問題,請重試" +msgstr "我們遇到網路問題,請再試一次" #: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" @@ -6620,7 +6645,7 @@ msgstr "很抱歉,我們目前無法載入您的靜音文字。請稍後再試 msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "很抱歉,無法完成您的搜尋請求。請稍後再試。" -#: src/view/com/composer/Composer.tsx:335 +#: src/view/com/composer/Composer.tsx:347 msgid "We're sorry! The post you are replying to has been deleted." msgstr "很抱歉!您回覆的貼文已被刪除。" @@ -6629,7 +6654,7 @@ msgstr "很抱歉!您回覆的貼文已被刪除。" msgid "We're sorry! We can't find the page you were looking for." msgstr "很抱歉!我們找不到您正在尋找的頁面。" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:332 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "抱歉!您只能訂閱二十個標記者,您已達到二十個的限制。" @@ -6643,7 +6668,7 @@ msgstr "歡迎,朋友!" #: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" -msgstr "您感興趣的是什麼?" +msgstr "您對什麼感興趣?" #: src/screens/StarterPack/Wizard/StepDetails.tsx:42 msgid "What do you want to call your starter pack?" @@ -6651,7 +6676,7 @@ msgstr "您想將您的入門包命名為什麼?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:376 +#: src/view/com/composer/Composer.tsx:388 msgid "What's up?" msgstr "發生了什麼新鮮事?" @@ -6722,11 +6747,11 @@ msgstr "寬" msgid "Write a message" msgstr "撰寫訊息" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:580 msgid "Write post" msgstr "撰寫貼文" -#: src/view/com/composer/Composer.tsx:375 +#: src/view/com/composer/Composer.tsx:387 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "撰寫您的回覆" @@ -6759,7 +6784,7 @@ msgstr "是,刪除這個入門包" msgid "Yes, reactivate my account" msgstr "確定並停用我的帳號" -#: src/components/dms/MessageItem.tsx:188 +#: src/components/dms/MessageItem.tsx:182 msgid "Yesterday, {time}" msgstr "昨天,{time}" @@ -6773,7 +6798,7 @@ msgstr "您" #: src/screens/SignupQueued.tsx:136 msgid "You are in line." -msgstr "你正處於隊列之中。" +msgstr "您正處於隊列之中。" #: src/view/com/profile/ProfileFollows.tsx:86 msgid "You are not following anyone." @@ -6882,7 +6907,7 @@ msgstr "您還沒有封鎖任何帳號。要封鎖帳號,請前往其個人檔 #: src/view/screens/AppPasswords.tsx:91 msgid "You have not created any app passwords yet. You can create one by pressing the button below." -msgstr "您還沒有建立任何應用程式專用密碼,如您想建立一個,按下面的按鈕。" +msgstr "您還沒有建立任何應用程式專用密碼,您可以按下面的按鈕來建立一個。" #: src/view/screens/ModerationMutedAccounts.tsx:133 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." @@ -6900,11 +6925,11 @@ msgstr "您還沒有建立任何入門包!" msgid "You haven't muted any words or tags yet" msgstr "您還沒有隱藏任何文字或標籤" -#: src/components/moderation/LabelsOnMeDialog.tsx:86 +#: src/components/moderation/LabelsOnMeDialog.tsx:87 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "如果您認為這些標記有誤,且標記並非由您新增,您可以提出申訴。" -#: src/components/moderation/LabelsOnMeDialog.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:92 msgid "You may appeal these labels if you feel they were placed in error." msgstr "如果您覺得這些標記有誤,您可以提出申訴。" @@ -6932,7 +6957,7 @@ msgstr "您必須授予對圖片庫的存取權限才能儲存 QR Code" msgid "You must grant access to your photo library to save the image." msgstr "您必須授予對圖片庫的存取權限才能儲存圖片。" -#: src/components/ReportDialog/SubmitView.tsx:205 +#: src/components/ReportDialog/SubmitView.tsx:222 msgid "You must select at least one labeler for a report" msgstr "您必須選擇至少一個標記者來提交檢舉" @@ -6946,11 +6971,11 @@ msgstr "您將不再收到這條討論串的通知" #: src/view/com/util/forms/PostDropdownBtn.tsx:170 msgid "You will now receive notifications for this thread" -msgstr "您將收到這條討論串的通知" +msgstr "您將繼續收到這條討論串的通知" #: src/screens/Login/SetNewPasswordForm.tsx:104 msgid "You will receive an email with a \"reset code.\" Enter that code here, then enter your new password." -msgstr "您將收到一封包含重設碼的電子郵件。請在此輸入該「重設碼」,然後輸入您的新密碼。" +msgstr "您將收到一封包含「重設碼」的電子郵件。請在此輸入該代碼,然後輸入您的新密碼。" #: src/screens/Messages/List/ChatListItem.tsx:114 msgid "You: {0}" @@ -6966,23 +6991,23 @@ msgstr "您:{short}" #: src/screens/Signup/index.tsx:102 msgid "You'll follow the suggested users and feeds once you finish creating your account!" -msgstr "當您完成帳號創建後,您將會跟隨建議的用戶和動態源!" +msgstr "當您成功建立帳號後,您將會跟隨建議的用戶和動態源!" #: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "當您完成帳號創建後,您將會跟隨建議的用戶!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people and {0} others" msgstr "您將會跟隨這些人物和其他 {0} 人" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people right away" msgstr "您將會立即跟隨這些人物" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272 msgid "You'll stay updated with these feeds" -msgstr "你將透過這些動態源接收最新動態" +msgstr "您將透過這些動態源接收最新動態" #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:94 @@ -7018,7 +7043,7 @@ msgstr "您的帳號已刪除" #: src/view/screens/Settings/ExportCarDialog.tsx:65 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」檔案。該檔案包含了所有公開的資料紀錄,但不包括嵌入媒體,例如圖片或您的私人資料,目前這些資料必須另外擷取。" +msgstr "您可以將您的帳號儲存庫下載為一個「CAR」檔案。該檔案包含了所有公開的資料紀錄,但不包括嵌入媒體,例如圖片或您的私人資料,目前這些資料必須另外擷取。" #: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" @@ -7045,11 +7070,11 @@ msgstr "您的電子郵件地址已更新但尚未驗證。作為下一步,請 #: src/view/com/modals/VerifyEmail.tsx:122 msgid "Your email has not yet been verified. This is an important security step which we recommend." -msgstr "您的電子郵件地址尚未驗證。這是一個我們建議的重要安全步驟。" +msgstr "您的電子郵件地址尚未驗證。這是一個重要的安全措施,我們建議您完成驗證。" #: src/state/shell/progress-guide.tsx:161 msgid "Your first like!" -msgstr "你的第一個喜歡!" +msgstr "您的第一個喜歡!" #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." @@ -7071,15 +7096,15 @@ msgstr "您的靜音文字" msgid "Your password has been changed successfully!" msgstr "您的密碼已成功更改!" -#: src/view/com/composer/Composer.tsx:366 +#: src/view/com/composer/Composer.tsx:378 msgid "Your post has been published" msgstr "您的貼文已發佈" #: src/screens/Onboarding/StepFinished.tsx:251 msgid "Your posts, likes, and blocks are public. Mutes are private." -msgstr "您的貼文、按喜歡和封鎖是公開可見的,而靜音是私人的。" +msgstr "您的貼文、喜歡和封鎖是公開的,而靜音資訊則只有您可以查看。" -#: src/view/screens/Settings/index.tsx:148 +#: src/view/screens/Settings/index.tsx:149 msgid "Your profile" msgstr "您的個人檔案" @@ -7087,7 +7112,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 "其他 Bluesky 用戶將無法再看到您的個人檔案、貼文、動態和列表。您可以隨時登入以重新啟用您的帳號。" -#: src/view/com/composer/Composer.tsx:365 +#: src/view/com/composer/Composer.tsx:377 msgid "Your reply has been published" msgstr "您的回覆已發佈" From 8588a2ad51ee52bdd3a2099a300fc60e4534d2c9 Mon Sep 17 00:00:00 2001 From: Takayuki KUSANO <65759+tkusano@users.noreply.github.com> Date: Thu, 25 Jul 2024 06:41:05 +0900 Subject: [PATCH 08/30] Updated Japanese Translation (#4748) * Updated translation * Update translation * Update translation --- src/locale/locales/ja/messages.po | 69 +++++++++++++++++++++++-------- 1 file changed, 52 insertions(+), 17 deletions(-) diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po index 98b3148382..35c161c162 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: \n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-07-04 13:07+0900\n" +"PO-Revision-Date: 2024-07-24 09:47+0900\n" "Last-Translator: tkusano\n" "Language-Team: Hima-Zinn, tkusano, dolciss, oboenikui, noritada, middlingphys, hibiki, reindex-ot, haoyayoi, vyv03354\n" "Plural-Forms: \n" @@ -478,6 +478,14 @@ msgstr "すべてフォローしようとしたらエラーが発生しました msgid "An issue not included in these options" msgstr "ほかの選択肢にはあてはまらない問題" +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "チャットの開始時に問題が発生しました" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +msgid "An issue occurred while trying to open the chat" +msgstr "チャットを開始しようとした時に問題が発生しました" + #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 #: src/components/ProfileCard.tsx:309 @@ -567,10 +575,6 @@ msgstr "背景" msgid "Apply default recommended feeds" msgstr "デフォルトのおすすめフィードを追加" -#: src/screens/StarterPack/StarterPackScreen.tsx:610 -msgid "Are you sure you want delete this starter pack?" -msgstr "このスターターパックを本当に削除したいですか?" - #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" msgstr "アプリパスワード「{name}」を本当に削除しますか?" @@ -579,6 +583,10 @@ msgstr "アプリパスワード「{name}」を本当に削除しますか?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "このメッセージを本当に削除しますか?このメッセージはあなたからは削除したように見えますが、他の参加者からは削除されません。" +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Are you sure you want to delete this starter pack?" +msgstr "本当にこのスターターパックを削除したいですか?" + #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "この会話から退出しますか?あなたのメッセージはあなたからは削除したように見えますが、他の参加者からは削除されません。" @@ -1363,6 +1371,10 @@ msgstr "QRコードをコピー" msgid "Copyright Policy" msgstr "著作権ポリシー" +#: src/view/com/composer/videos/state.ts:31 +msgid "Could not compress video" +msgstr "ビデオを圧縮できませんでした" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "チャットからの退出に失敗しました" @@ -2339,10 +2351,6 @@ msgstr "フォローバック" msgid "Follow more accounts to get connected to your interests and build your network." msgstr "もっとたくさんのアカウントをフォローして、興味あることにつながり、ネットワークを広げましょう。" -#: src/view/com/profile/ProfileCard.tsx:190 -msgid "Followed by {0}" -msgstr "{0}がフォロー中" - #: src/components/KnownFollowers.tsx:223 msgid "Followed by <0>{0}" msgstr "<0>{0}がフォロー中" @@ -2480,6 +2488,10 @@ msgstr "ギャラリー" msgid "Generate a starter pack" msgstr "スターターパックを生成" +#: src/view/shell/Drawer.tsx:336 +msgid "Get help" +msgstr "ヘルプを表示" + #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" msgstr "始める" @@ -2526,10 +2538,6 @@ msgstr "戻る" msgid "Go Back" msgstr "戻る" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -msgid "Go back to previous screen" -msgstr "前の画面に戻る" - #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 #: src/components/ReportDialog/SubmitView.tsx:104 @@ -4004,6 +4012,10 @@ msgstr "スレッドの設定を開く" msgid "Opens this profile" msgstr "プロフィールを開く" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:54 +msgid "Opens video picker" +msgstr "ビデオの選択画面を開く" + #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "{numItems}個中{0}目のオプション" @@ -4541,14 +4553,14 @@ msgstr "マイフィードから削除しました" msgid "Removed from your feeds" msgstr "あなたのフィードから削除しました" -#: src/view/com/composer/ExternalEmbed.tsx:88 -msgid "Removes default thumbnail from {0}" -msgstr "{0}からデフォルトのサムネイルを削除" - #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" msgstr "引用を削除する" +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the image preview" +msgstr "画像のプレビューを削除する" + #: src/view/com/posts/FeedShutdownMsg.tsx:126 #: src/view/com/posts/FeedShutdownMsg.tsx:130 msgid "Replace with Discover" @@ -4586,6 +4598,12 @@ msgctxt "description" msgid "Reply to a blocked post" msgstr "ブロックした投稿への返信" +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:454 +msgctxt "description" +msgid "Reply to you" +msgstr "あなたへの返信" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -4691,6 +4709,11 @@ msgstr "{0}にリポストされた" msgid "Reposted by <0><1/>" msgstr "<0><1/>がリポスト" +#: src/view/com/posts/FeedItem.tsx:261 +#: src/view/com/posts/FeedItem.tsx:280 +msgid "Reposted by you" +msgstr "あなたのリポスト" + #: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "があなたの投稿をリポストしました" @@ -5026,6 +5049,10 @@ msgstr "報告先のモデレーションサービスを選んでください" msgid "Select the service that hosts your data." msgstr "データをホストするサービスを選択します。" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:53 +msgid "Select video" +msgstr "ビデオを選択" + #: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "登録されたフィードに含める言語を選択します。選択されていない場合は、すべての言語が表示されます。" @@ -5263,6 +5290,10 @@ msgstr "このスターターパックを共有して、他のユーザーがBlu msgid "Share your favorite feed!" msgstr "お気に入りのフィードをシェアして!" +#: src/Navigation.tsx:241 +msgid "Shared Preferences Tester" +msgstr "Shared Preferencesのテスター" + #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" msgstr "リンクしたウェブサイトを共有" @@ -6480,6 +6511,10 @@ msgstr "バージョン {appVersion} {bundleInfo}" msgid "Video Games" msgstr "ビデオゲーム" +#: src/view/com/composer/videos/state.ts:27 +msgid "Videos cannot be larger than 100MB" +msgstr "ビデオは100MB以下にしてください" + #: src/screens/Profile/Header/Shell.tsx:113 msgid "View {0}'s avatar" msgstr "{0}のアバターを表示" From 2e7398b7c3de3fb0323aaa19557bf395e832a493 Mon Sep 17 00:00:00 2001 From: surfdude29 <149612116+surfdude29@users.noreply.github.com> Date: Wed, 24 Jul 2024 22:41:43 +0100 Subject: [PATCH 09/30] Update German localization (part 1) (#4742) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update German localization * Apply suggestions from code review Co-authored-by: cdfzo * update string after #4743 merged * Apply suggestions from code review Co-authored-by: cdfzo * Starterpaket –––> Startpaket * Improve existing translations (#17) * Improve existing translations * Update more * Update more --------- Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> * capitalise toast --------- Co-authored-by: cdfzo --- src/locale/locales/de/messages.po | 988 +++++++++--------------------- 1 file changed, 297 insertions(+), 691 deletions(-) diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po index d570eab97e..41c1d3b7a8 100644 --- a/src/locale/locales/de/messages.po +++ b/src/locale/locales/de/messages.po @@ -8,14 +8,14 @@ msgstr "" "Language: de\n" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-03-12 13:00+0000\n" -"Last-Translator: \n" -"Language-Team: Translators in PR 2319, PythooonUser, cdfzo\n" +"PO-Revision-Date: 2024-07-06 17:45+0100\n" +"Last-Translator: surfdude29\n" +"Language-Team: Translators in PR 2319, surfdude29, PythooonUser, cdfzo, imbstt\n" "Plural-Forms: \n" #: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" -msgstr "" +msgstr "(enthält eingebettete Inhalte)" #: src/view/com/modals/VerifyEmail.tsx:150 msgid "(no email)" @@ -23,145 +23,129 @@ msgstr "(keine E-Mail)" #: src/view/com/notifications/FeedItem.tsx:294 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" -msgstr "" - -#: src/components/moderation/LabelsOnMe.tsx:55 -#~ msgid "{0, plural, one {# label has been placed on this account} other {# labels has been placed on this account}}" -#~ msgstr "" +msgstr "{0, plural, one {{formattedCount} anderer} other {{formattedCount} andere}}" #: src/components/moderation/LabelsOnMe.tsx:55 msgid "{0, plural, one {# label has been placed on this account} other {# labels have been placed on this account}}" -msgstr "" - -#: src/components/moderation/LabelsOnMe.tsx:61 -#~ msgid "{0, plural, one {# label has been placed on this content} other {# labels has been placed on this content}}" -#~ msgstr "" +msgstr "{0, plural, one {# Label wurde auf dieses Konto platziert} other {# Labels wurden auf dieses Konto platziert}}" #: src/components/moderation/LabelsOnMe.tsx:61 msgid "{0, plural, one {# label has been placed on this content} other {# labels have been placed on this content}}" -msgstr "" +msgstr "{0, plural, one {# Label wurde auf diesen Inhalt gesetzt} other {# Labels wurden auf diesen Inhalt gesetzt}}" #: src/view/com/util/post-ctrls/RepostButton.tsx:66 msgid "{0, plural, one {# repost} other {# reposts}}" -msgstr "" - -#: src/components/KnownFollowers.tsx:179 -#~ msgid "{0, plural, one {and # other} other {and # others}}" -#~ msgstr "" +msgstr "{0, plural, one {# Repost} other {# Reposts}}" #: src/components/ProfileHoverCard/index.web.tsx:398 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" -msgstr "" +msgstr "{0, plural, one {Follower} other {Follower}}" #: src/components/ProfileHoverCard/index.web.tsx:402 #: src/screens/Profile/Header/Metrics.tsx:27 msgid "{0, plural, one {following} other {following}}" -msgstr "" +msgstr "{0, plural, one {Folge ich} other {Folge ich}}" #: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" -msgstr "" +msgstr "{0, plural, one {Liken (# Like)} other {Liken (# Likes)}}" #: src/view/com/post-thread/PostThreadItem.tsx:382 msgid "{0, plural, one {like} other {likes}}" -msgstr "" +msgstr "{0, plural, one {Like} other {Likes}}" #: src/components/FeedCard.tsx:206 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" -msgstr "" +msgstr "{0, plural, one {Von # Konto geliked} other {Von # Konten geliked}}" #: src/screens/Profile/Header/Metrics.tsx:59 msgid "{0, plural, one {post} other {posts}}" -msgstr "" +msgstr "{0, plural, one {Beitrag} other {Beiträge}}" #: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" -msgstr "" +msgstr "{0, plural, one {Antworten (# Antwort)} other {Antworten (# Antworten)}}" #: src/view/com/post-thread/PostThreadItem.tsx:362 msgid "{0, plural, one {repost} other {reposts}}" -msgstr "" +msgstr "{0, plural, one {Repost} other {Reposts}}" #: src/view/com/util/post-ctrls/PostCtrls.tsx:262 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" -msgstr "" +msgstr "{0, plural, one {Like aufheben (# Like)} other {Like aufheben (# Likes)}}" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" -msgstr "" +msgstr "{0} sind diese Woche beigetreten" #: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" -msgstr "" - -#: src/view/screens/ProfileList.tsx:286 -#~ msgid "{0} your feeds" -#~ msgstr "" +msgstr "{0} Personen haben dieses Startpaket bereits verwendet!" #: src/view/com/util/UserAvatar.tsx:419 msgid "{0}'s avatar" -msgstr "" +msgstr "Der Avatar von {0}" #: src/screens/StarterPack/Wizard/StepDetails.tsx:68 msgid "{0}'s favorite feeds and people - join me!" -msgstr "" +msgstr "Die Lieblings-Feeds und -Leute von {0} – mach mit!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:47 msgid "{0}'s starter pack" -msgstr "" +msgstr "Startpaket von {0}" #: src/components/LabelingServiceCard/index.tsx:71 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" -msgstr "" +msgstr "{count, plural, one {Geliked von # Konto} other {Geliked von # Konten}}" #: src/lib/hooks/useTimeAgo.ts:69 msgid "{diff, plural, one {day} other {days}}" -msgstr "" +msgstr "{diff, plural, one {Tag} other {Tage}}" #: src/lib/hooks/useTimeAgo.ts:64 msgid "{diff, plural, one {hour} other {hours}}" -msgstr "" +msgstr "{diff, plural, one {Stunde} other {Stunden}}" #: src/lib/hooks/useTimeAgo.ts:59 msgid "{diff, plural, one {minute} other {minutes}}" -msgstr "" +msgstr "{diff, plural, one {Minute} other {Minuten}}" #: src/lib/hooks/useTimeAgo.ts:75 msgid "{diff, plural, one {month} other {months}}" -msgstr "" +msgstr "{diff, plural, one {Monat} other {Monate}}" #: src/lib/hooks/useTimeAgo.ts:54 msgid "{diffSeconds, plural, one {second} other {seconds}}" -msgstr "" +msgstr "{diffSeconds, plural, one {Sekunde} other {Sekunden}}" #: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" -msgstr "" +msgstr "Startpaket von {displayName}" #: src/screens/SignupQueued.tsx:207 msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" -msgstr "" +msgstr "{estimatedTimeHrs, plural, one {Stunde} other {Stunden}}" #: src/screens/SignupQueued.tsx:213 msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" -msgstr "" +msgstr "{estimatedTimeMins, plural, one {Minute} other {Minuten}}" #: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" -msgstr "{following} folge ich" +msgstr "{following} Folge ich" #: src/components/dms/dialogs/SearchablePeopleList.tsx:405 msgid "{handle} can't be messaged" -msgstr "" +msgstr "{handle} kann keine Nachricht gesendet werden" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 #: src/view/screens/ProfileFeed.tsx:588 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" -msgstr "" +msgstr "{likeCount, plural, one {Geliked von # Konto} other {Geliked von # Konten}}" #: src/view/shell/Drawer.tsx:462 msgid "{numUnreadNotifications} unread" @@ -169,86 +153,53 @@ msgstr "{numUnreadNotifications} ungelesen" #: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" -msgstr "" +msgstr "{profileName} ist vor {0} Bluesky beigetreten" #: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" -msgstr "" +msgstr "{profileName} ist vor {0} Bluesky mit einem Startpaket beigetreten" #: src/view/screens/PreferencesFollowingFeed.tsx:67 msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" -msgstr "" +msgstr "{value, plural, =0 {Alle Antworten anzeigen} one {Antworten mit mindestens # Like anzeigen} other {Antworten mit mindestens # Likes anzeigen}}" #: src/components/WhoCanReply.tsx:295 msgid "<0/> members" msgstr "<0/> Mitglieder" -#: src/screens/StarterPack/Wizard/index.tsx:485 -#~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" -#~ msgstr "" - #: src/screens/StarterPack/Wizard/index.tsx:466 msgctxt "profiles" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" -msgstr "" +msgstr "<0>{0}, <1>{1} und {2, plural, one {# weitere Person} other {# weitere Personen}} sind in deinem Startpaket enthalten" #: src/screens/StarterPack/Wizard/index.tsx:519 msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" -msgstr "" - -#: src/screens/StarterPack/Wizard/index.tsx:497 -#~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" -#~ msgstr "" +msgstr "<0>{0}, <1>{1} und {2, plural, one {# weiterer Feed} other {# weitere Feeds}} sind in deinem Startpaket enthalten" #: src/view/shell/Drawer.tsx:101 msgid "<0>{0} {1, plural, one {follower} other {followers}}" -msgstr "" +msgstr "<0>{0} {1, plural, one {Follower} other {Follower}}" #: src/view/shell/Drawer.tsx:112 msgid "<0>{0} {1, plural, one {following} other {following}}" -msgstr "" +msgstr "<0>{0} {1, plural, one {Folge ich} other {Folge ich}}" #: src/screens/StarterPack/Wizard/index.tsx:507 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" -msgstr "" - -#: src/view/shell/Drawer.tsx:96 -#~ msgid "<0>{0} following" -#~ msgstr "" +msgstr "<0>{0} und<1> <2>{1} sind in deinem Startpaket enthalten" #: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" -msgstr "" - -#: src/components/ProfileHoverCard/index.web.tsx:437 -#~ msgid "<0>{followers} <1>{pluralizedFollowers}" -#~ msgstr "" - -#: src/components/ProfileHoverCard/index.web.tsx:449 -#: src/screens/Profile/Header/Metrics.tsx:45 -#~ msgid "<0>{following} <1>following" -#~ msgstr "<0>{following} <1>folge ich" - -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:31 -#~ msgid "<0>Choose your<1>Recommended<2>Feeds" -#~ msgstr "<0>Wähle deine<1>empfohlenen<2>Feeds" - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:38 -#~ msgid "<0>Follow some<1>Recommended<2>Users" -#~ msgstr "<0>Folge einigen<1>empfohlenen<2>Nutzern" +msgstr "<0>{0} ist in deinem Startpaket enthalten" #: src/view/com/modals/SelfLabel.tsx:135 msgid "<0>Not Applicable. This warning is only available for posts with media attached." -msgstr "" - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:21 -#~ msgid "<0>Welcome to<1>Bluesky" -#~ msgstr "<0>Willkommen bei<1>Bluesky" +msgstr "<0>Unzutreffend. Diese Warnung ist nur für Beiträge mit angehängten Medien verfügbar." #: src/screens/StarterPack/Wizard/index.tsx:457 msgid "<0>You and<1> <2>{0} are included in your starter pack" -msgstr "" +msgstr "<0>Du und<1> <2>{0} seid in deinem Startpaket enthalten" #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" @@ -256,19 +207,11 @@ msgstr "⚠Ungültiger Handle" #: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" -msgstr "" - -#: src/view/com/util/moderation/LabelInfo.tsx:45 -#~ msgid "A content warning has been applied to this {0}." -#~ msgstr "Diese Seite wurde mit einer Inhaltswarnung versehen {0}." +msgstr "2FA Bestätigung" #: src/tours/Tooltip.tsx:70 msgid "A help tooltip" -msgstr "" - -#: src/lib/hooks/useOTAUpdate.ts:16 -#~ msgid "A new version of the app is available. Please update to continue using the app." -#~ msgstr "Eine neue Version der App ist verfügbar. Bitte aktualisiere die App, um sie weiter nutzen zu können." +msgstr "Ein Hilfe-Tooltip" #: src/view/com/util/ViewHeader.tsx:93 #: src/view/screens/Search/Search.tsx:684 @@ -286,16 +229,12 @@ msgstr "Barrierefreiheit" #: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" -msgstr "" +msgstr "Einstellungen für Barrierefreiheit" #: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" -msgstr "" - -#: src/components/moderation/LabelsOnMe.tsx:42 -#~ msgid "account" -#~ msgstr "" +msgstr "Einstellungen für Barrierefreiheit" #: src/screens/Login/LoginForm.tsx:190 #: src/view/screens/Settings/index.tsx:346 @@ -309,7 +248,7 @@ msgstr "Konto blockiert" #: src/view/com/profile/ProfileMenu.tsx:158 msgid "Account followed" -msgstr "" +msgstr "Konto gefolgt" #: src/view/com/profile/ProfileMenu.tsx:118 msgid "Account muted" @@ -354,19 +293,19 @@ msgstr "Hinzufügen" #: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" -msgstr "" +msgstr "Füge {0} weitere hinzu, um fortzufahren" #: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" -msgstr "" +msgstr "Füge {displayName} zum Startpaket hinzu" #: src/view/com/modals/SelfLabel.tsx:57 msgid "Add a content warning" -msgstr "Eine Inhaltswarnung hinzufügen" +msgstr "Inhaltswarnung hinzufügen" #: src/view/screens/ProfileList.tsx:871 msgid "Add a user to this list" -msgstr "Einen Nutzer zu dieser Liste hinzufügen" +msgstr "Einen Benutzer zu dieser Liste hinzufügen" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 @@ -384,56 +323,31 @@ msgstr "Konto hinzufügen" msgid "Add alt text" msgstr "Alt-Text hinzufügen" -#: src/view/com/composer/GifAltText.tsx:175 -#~ msgid "Add ALT text" -#~ msgstr "" - #: src/view/screens/AppPasswords.tsx:106 #: src/view/screens/AppPasswords.tsx:148 #: src/view/screens/AppPasswords.tsx:161 msgid "Add App Password" msgstr "App-Passwort hinzufügen" -#: src/view/com/modals/report/InputIssueDetails.tsx:41 -#: src/view/com/modals/report/Modal.tsx:191 -#~ msgid "Add details" -#~ msgstr "Details hinzufügen" - -#: src/view/com/modals/report/Modal.tsx:194 -#~ msgid "Add details to report" -#~ msgstr "Details zum Report hinzufügen" - -#: src/view/com/composer/Composer.tsx:467 -#~ msgid "Add link card" -#~ msgstr "Link-Karte hinzufügen" - -#: src/view/com/composer/Composer.tsx:472 -#~ msgid "Add link card:" -#~ msgstr "Link-Karte hinzufügen:" - #: src/components/dialogs/MutedWords.tsx:157 msgid "Add mute word for configured settings" msgstr "Stummgeschaltetes Wort für konfigurierte Einstellungen hinzufügen" #: src/components/dialogs/MutedWords.tsx:86 msgid "Add muted words and tags" -msgstr "Füge stummgeschaltete Wörter und Tags hinzu" - -#: src/screens/StarterPack/Wizard/index.tsx:197 -#~ msgid "Add people to your starter pack that you think others will enjoy following" -#~ msgstr "" +msgstr "Stummgeschaltete Wörter und Tags hinzufügen" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" -msgstr "" +msgstr "Empfohlene Feeds hinzufügen" #: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" -msgstr "" +msgstr "Füge deinem Startpaket einige Feeds hinzu!" #: src/screens/Feeds/NoFollowingFeed.tsx:41 msgid "Add the default feed of only people you follow" -msgstr "" +msgstr "Füge den Standard-Feed nur von Personen, denen du folgst, hinzu" #: src/view/com/modals/ChangeHandle.tsx:410 msgid "Add the following DNS record to your domain:" @@ -441,7 +355,7 @@ msgstr "Füge den folgenden DNS-Eintrag zu deiner Domain hinzu:" #: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" -msgstr "" +msgstr "Füge diesen Feed zu deinen Feeds hinzu" #: src/view/com/profile/ProfileMenu.tsx:267 #: src/view/com/profile/ProfileMenu.tsx:270 @@ -452,10 +366,6 @@ msgstr "Zu Listen hinzufügen" msgid "Add to my feeds" msgstr "Zu meinen Feeds hinzufügen" -#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:139 -#~ msgid "Added" -#~ msgstr "Hinzugefügt" - #: src/view/com/modals/ListAddRemoveUsers.tsx:191 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" @@ -474,17 +384,13 @@ msgstr "Passe die Anzahl der Likes an, die eine Antwort haben muss, um in deinem msgid "Adult Content" msgstr "Inhalt für Erwachsene" -#: src/view/com/modals/ContentFilteringSettings.tsx:141 -#~ msgid "Adult content can only be enabled via the Web at <0/>." -#~ msgstr "Inhalte für Erwachsene können nur über das Web unter <0/> aktiviert werden." - #: src/screens/Moderation/index.tsx:356 msgid "Adult content can only be enabled via the Web at <0>bsky.app." -msgstr "" +msgstr "Inhalte für Erwachsene können nur über das Web unter <0>bsky.app aktiviert werden." #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." -msgstr "" +msgstr "Inhalte für Erwachsene sind deaktiviert." #: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:687 @@ -493,11 +399,11 @@ msgstr "Erweitert" #: src/state/shell/progress-guide.tsx:176 msgid "Algorithm training complete!" -msgstr "" +msgstr "Das Trainieren des Algorithmus ist abgeschlossen!" #: src/screens/StarterPack/StarterPackScreen.tsx:360 msgid "All accounts have been followed!" -msgstr "" +msgstr "Allen Konten wurden gefolgt!" #: src/view/screens/Feeds.tsx:734 msgid "All the feeds you've saved, right in one place." @@ -506,17 +412,12 @@ msgstr "All deine gespeicherten Feeds an einem Ort." #: src/view/com/modals/AddAppPasswords.tsx:187 #: src/view/com/modals/AddAppPasswords.tsx:194 msgid "Allow access to your direct messages" -msgstr "" - -#: src/screens/Messages/Settings.tsx:61 -#: src/screens/Messages/Settings.tsx:64 -#~ msgid "Allow messages from" -#~ msgstr "" +msgstr "Erlaube den Zugriff auf deine Direktnachrichten" #: src/screens/Messages/Settings.tsx:62 #: src/screens/Messages/Settings.tsx:65 msgid "Allow new messages from" -msgstr "" +msgstr "Erlaube neue Nachrichten von" #: src/screens/Login/ForgotPasswordForm.tsx:178 #: src/view/com/modals/ChangePassword.tsx:171 @@ -541,11 +442,11 @@ msgstr "Alt-Text" #: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" -msgstr "" +msgstr "Alt-Text" #: src/view/com/composer/photos/Gallery.tsx:224 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 Nutzer und hilft, den Kontext für alle zu vermitteln." +msgstr "Alt-Text beschreibt Bilder für blinde und sehbehinderte Benutzer und hilft, den Kontext für alle zu vermitteln." #: src/view/com/modals/VerifyEmail.tsx:132 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:96 @@ -554,32 +455,24 @@ msgstr "Eine E-Mail wurde an {0} gesendet. Sie enthält einen Bestätigungscode, #: src/view/com/modals/ChangeEmail.tsx:114 msgid "An email has been sent to your previous address, {0}. It includes a confirmation code which you can enter below." -msgstr "Eine E-Mail wurde an deine vorherige Adresse {0} gesendet. Sie enthält einen Bestätigungscode, den du unten eingeben kannst." +msgstr "Eine E-Mail wurde an deine vorherige Adresse, {0}, gesendet. Sie enthält einen Bestätigungscode, den du unten eingeben kannst." #: src/components/dialogs/GifSelect.tsx:252 msgid "An error occured" -msgstr "" +msgstr "Ein Fehler ist aufgetreten" #: src/components/StarterPack/ProfileStarterPacks.tsx:315 msgid "An error occurred while generating your starter pack. Want to try again?" -msgstr "" - -#: src/components/StarterPack/ShareDialog.tsx:79 -#~ msgid "An error occurred while saving the image." -#~ msgstr "" +msgstr "Beim Generieren deines Startpakets ist ein Fehler aufgetreten. Möchtest du es erneut versuchen?" #: src/components/StarterPack/QrCodeDialog.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" -msgstr "" - -#: src/components/dms/MessageMenu.tsx:134 -#~ msgid "An error occurred while trying to delete the message. Please try again." -#~ msgstr "" +msgstr "Beim Speichern des QR-Codes ist ein Fehler aufgetreten!" #: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" -msgstr "" +msgstr "Beim Versuch, allen zu folgen, ist ein Fehler aufgetreten." #: src/lib/moderation/useReportOptions.ts:28 msgid "An issue not included in these options" @@ -594,11 +487,11 @@ msgstr "Ein Problem, das hier nicht aufgelistet ist" #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:198 msgid "An issue occurred, please try again." -msgstr "Es ist ein Problem aufgetreten, bitte versuche es erneut." +msgstr "Ein Problem ist aufgetreten, bitte versuche es erneut." #: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" -msgstr "" +msgstr "Ein unbekannter Fehler ist aufgetreten" #: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:291 @@ -612,7 +505,7 @@ msgstr "Tiere" #: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" -msgstr "" +msgstr "Animiertes GIF" #: src/lib/moderation/useReportOptions.ts:33 msgid "Anti-Social Behavior" @@ -647,29 +540,16 @@ msgstr "App-Passwörter" #: src/components/moderation/LabelsOnMeDialog.tsx:151 #: src/components/moderation/LabelsOnMeDialog.tsx:154 msgid "Appeal" -msgstr "" +msgstr "Anfechten" #: src/components/moderation/LabelsOnMeDialog.tsx:236 msgid "Appeal \"{0}\" label" -msgstr "Kennzeichnung \"{0}\" anfechten" - -#: src/view/com/util/forms/PostDropdownBtn.tsx:337 -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#~ msgid "Appeal content warning" -#~ msgstr "Inhaltswarnungseinspruch" - -#: src/view/com/modals/AppealLabel.tsx:65 -#~ msgid "Appeal Content Warning" -#~ msgstr "Inhaltswarnungseinspruch" +msgstr "Kennzeichnung „{0}” anfechten" #: src/components/moderation/LabelsOnMeDialog.tsx:227 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" -msgstr "" - -#: src/components/moderation/LabelsOnMeDialog.tsx:193 -#~ msgid "Appeal submitted." -#~ msgstr "Anfechtung abgeschickt." +msgstr "Anfechtung gesendet" #: src/screens/Messages/Conversation/ChatDisabled.tsx:51 #: src/screens/Messages/Conversation/ChatDisabled.tsx:53 @@ -678,10 +558,6 @@ msgstr "" msgid "Appeal this decision" msgstr "Einspruch gegen diese Entscheidung" -#: src/view/com/util/moderation/LabelInfo.tsx:56 -#~ msgid "Appeal this decision." -#~ msgstr "Einspruch gegen diese Entscheidung." - #: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "Erscheinungsbild" @@ -689,31 +565,23 @@ msgstr "Erscheinungsbild" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 #: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" -msgstr "" - -#: src/screens/StarterPack/StarterPackScreen.tsx:610 -msgid "Are you sure you want delete this starter pack?" -msgstr "" +msgstr "Standardmäßig empfohlene Feeds anwenden" #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" -msgstr "Bist du sicher, dass du das App-Passwort \"{name}\" löschen möchtest?" - -#: src/components/dms/MessageMenu.tsx:123 -#~ msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for other participants." -#~ msgstr "" +msgstr "Bist du sicher, dass du das App-Passwort „{name}” löschen möchtest?" #: src/components/dms/MessageMenu.tsx:149 msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." -msgstr "" +msgstr "Möchtest du diese Nachricht wirklich löschen? Die Nachricht wird für dich gelöscht, nicht jedoch für den anderen Teilnehmer." -#: src/components/dms/ConvoMenu.tsx:189 -#~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." -#~ msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Are you sure you want to delete this starter pack?" +msgstr "Möchtest du dieses Startpaket wirklich löschen?" #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." -msgstr "" +msgstr "Möchtest du diese Konversation wirklich verlassen? Deine Nachrichten werden für dich gelöscht, nicht jedoch für den anderen Teilnehmer." #: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" @@ -721,7 +589,7 @@ msgstr "Bist du sicher, dass du {0} von deinen Feeds entfernen möchtest?" #: src/components/FeedCard.tsx:306 msgid "Are you sure you want to remove this from your feeds?" -msgstr "" +msgstr "Bist du sicher, dass du dies von deinen Feeds entfernen möchtest?" #: src/view/com/composer/Composer.tsx:649 msgid "Are you sure you'd like to discard this draft?" @@ -731,10 +599,6 @@ msgstr "Bist du sicher, dass du diesen Entwurf verwerfen möchtest?" msgid "Are you sure?" msgstr "Bist du sicher?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:322 -#~ msgid "Are you sure? This cannot be undone." -#~ msgstr "Bist du sicher? Dies kann nicht rückgängig gemacht werden." - #: src/view/com/composer/select-language/SuggestedLanguage.tsx:60 msgid "Are you writing in <0>{0}?" msgstr "Schreibst du auf <0>{0}?" @@ -773,15 +637,6 @@ msgstr "Mindestens 3 Zeichen" msgid "Back" msgstr "Zurück" -#: src/view/com/post-thread/PostThread.tsx:480 -#~ msgctxt "action" -#~ msgid "Back" -#~ msgstr "Zurück" - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:144 -#~ msgid "Based on your interest in {interestsText}" -#~ msgstr "Ausgehend von deinem Interesse an {interestsText}" - #: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "Grundlagen" @@ -802,7 +657,7 @@ msgstr "Blockieren" #: src/components/dms/ConvoMenu.tsx:188 #: src/components/dms/ConvoMenu.tsx:192 msgid "Block account" -msgstr "" +msgstr "Konto blockieren" #: src/view/com/profile/ProfileMenu.tsx:304 #: src/view/com/profile/ProfileMenu.tsx:311 @@ -825,10 +680,6 @@ msgstr "Blockliste" msgid "Block these accounts?" msgstr "Diese Konten blockieren?" -#: src/view/screens/ProfileList.tsx:320 -#~ msgid "Block this List" -#~ msgstr "Diese Liste blockieren" - #: src/view/com/lists/ListCard.tsx:112 #: src/view/com/util/post-embeds/QuoteEmbed.tsx:75 msgid "Blocked" @@ -882,30 +733,15 @@ msgstr "Bluesky ist ein offenes Netzwerk, in dem du deinen Hosting-Anbieter wäh #: src/components/ProgressGuide/List.tsx:55 msgid "Bluesky is better with friends!" -msgstr "" - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:80 -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:82 -#~ msgid "Bluesky is flexible." -#~ msgstr "Bluesky ist flexibel." - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:69 -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:71 -#~ msgid "Bluesky is open." -#~ msgstr "Bluesky ist offen." - -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:56 -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:58 -#~ msgid "Bluesky is public." -#~ msgstr "Bluesky ist öffentlich." +msgstr "Mit Freunden ist Bluesky besser!" #: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." -msgstr "" +msgstr "Bluesky wählt eine Reihe von empfohlenen Konten von Personen in deinem Netzwerk aus." #: src/screens/Moderation/index.tsx:557 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 Beiträge nicht für abgemeldete Nutzer an. Andere Apps kommen dieser Aufforderung möglicherweise nicht nach." +msgstr "Bluesky zeigt dein Profil und deine Beiträge nicht für abgemeldete Benutzer an. Andere Apps kommen dieser Aufforderung möglicherweise nicht nach." #: src/lib/moderation/useLabelBehaviorDescription.ts:53 msgid "Blur images" @@ -922,30 +758,26 @@ msgstr "Bücher" #: src/components/FeedInterstitials.tsx:281 msgid "Browse more accounts on the Explore page" -msgstr "" +msgstr "Stöbere auf der Seite „Explore” nach weiteren Konten" #: src/components/FeedInterstitials.tsx:411 msgid "Browse more feeds on the Explore page" -msgstr "" +msgstr "Stöbere auf der Seite „Explore” in weiteren Feeds" #: src/components/FeedInterstitials.tsx:266 #: src/components/FeedInterstitials.tsx:396 msgid "Browse more suggestions" -msgstr "" +msgstr "Weitere Vorschläge anzeigen" #: src/components/FeedInterstitials.tsx:289 #: src/components/FeedInterstitials.tsx:420 msgid "Browse more suggestions on the Explore page" -msgstr "" +msgstr "Stöbere auf der Seite „Explore” nach weiteren Vorschlägen" #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" -msgstr "" - -#: src/view/screens/Settings/index.tsx:893 -#~ msgid "Build version {0} {1}" -#~ msgstr "Build-Version {0} {1}" +msgstr "Andere Feeds durchsuchen" #: src/view/com/auth/SplashScreen.web.tsx:151 msgid "Business" @@ -955,18 +787,10 @@ msgstr "Business" msgid "by —" msgstr "von —" -#: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:100 -#~ msgid "by {0}" -#~ msgstr "von {0}" - #: src/components/LabelingServiceCard/index.tsx:56 msgid "By {0}" msgstr "Von {0}" -#: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:112 -#~ msgid "by @{0}" -#~ msgstr "" - #: src/view/com/profile/ProfileSubpageHeader.tsx:166 msgid "by <0/>" msgstr "von <0/>" @@ -1025,11 +849,11 @@ msgstr "Abbrechen" #: src/view/com/modals/DeleteAccount.tsx:170 #: src/view/com/modals/DeleteAccount.tsx:292 msgid "Cancel account deletion" -msgstr "Konto-Löschung abbrechen" +msgstr "Kontolöschung abbrechen" #: src/view/com/modals/ChangeHandle.tsx:144 msgid "Cancel change handle" -msgstr "Handle ändern abbrechen" +msgstr "Handle-Änderung abbrechen" #: src/view/com/modals/crop-image/CropImage.web.tsx:159 msgid "Cancel image crop" @@ -1045,7 +869,7 @@ msgstr "Beitrag zitieren abbrechen" #: src/screens/Deactivated.tsx:155 msgid "Cancel reactivation and log out" -msgstr "" +msgstr "Reaktivierung abbrechen und abmelden" #: src/view/com/modals/ListAddRemoveUsers.tsx:87 #: src/view/shell/desktop/Search.tsx:214 @@ -1054,11 +878,11 @@ msgstr "Suche abbrechen" #: src/view/com/modals/LinkWarning.tsx:106 msgid "Cancels opening the linked website" -msgstr "" +msgstr "Bricht das Öffnen der verlinkten Website ab" #: src/view/com/modals/VerifyEmail.tsx:160 msgid "Change" -msgstr "" +msgstr "Ändern" #: src/view/screens/Settings/index.tsx:372 msgctxt "action" @@ -1085,15 +909,11 @@ msgstr "Passwort ändern" #: src/view/com/modals/ChangePassword.tsx:142 #: src/view/screens/Settings/index.tsx:775 msgid "Change Password" -msgstr "Passwort Ändern" +msgstr "Passwort ändern" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:73 msgid "Change post language to {0}" -msgstr "Beitragssprache in {0} ändern" - -#: src/view/screens/Settings/index.tsx:733 -#~ msgid "Change your Bluesky password" -#~ msgstr "Ändere dein Bluesky-Passwort" +msgstr "Beitragssprache auf {0} ändern" #: src/view/com/modals/ChangeEmail.tsx:104 msgid "Change Your Email" @@ -1103,11 +923,11 @@ msgstr "Deine E-Mail ändern" #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" -msgstr "" +msgstr "Chat" #: src/components/dms/ConvoMenu.tsx:82 msgid "Chat muted" -msgstr "" +msgstr "Chat stummgeschaltet" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 @@ -1115,69 +935,49 @@ msgstr "" #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" -msgstr "" +msgstr "Chat-Einstellungen" #: src/screens/Messages/Settings.tsx:59 #: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" -msgstr "" +msgstr "Chat-Einstellungen" #: src/components/dms/ConvoMenu.tsx:84 msgid "Chat unmuted" -msgstr "" - -#: src/screens/Messages/Conversation/index.tsx:26 -#~ msgid "Chat with {chatId}" -#~ msgstr "" +msgstr "Chatstummschaltung aufgehoben" #: src/screens/SignupQueued.tsx:78 #: src/screens/SignupQueued.tsx:82 msgid "Check my status" msgstr "Meinen Status prüfen" -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:122 -#~ msgid "Check out some recommended feeds. Tap + to add them to your list of pinned feeds." -#~ msgstr "Schau dir einige empfohlene Feeds an. Tippe auf +, um sie zu deiner Liste der angehefteten Feeds hinzuzufügen." - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:186 -#~ msgid "Check out some recommended users. Follow them to see similar users." -#~ msgstr "Schau dir einige empfohlene Nutzer an. Folge ihnen, um ähnliche Nutzer zu sehen." - #: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." -msgstr "" +msgstr "Schau in deinem E-Mail-Postfach nach einem Anmeldecode und gib ihn hier ein." #: src/view/com/modals/DeleteAccount.tsx:231 msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "Überprüfe deinen Posteingang auf eine E-Mail mit dem Bestätigungscode, den du unten eingeben musst:" -#: src/view/com/modals/Threadgate.tsx:75 -#~ msgid "Choose \"Everybody\" or \"Nobody\"" -#~ msgstr "Wähle \"Alle\" oder \"Niemand\"" - #: src/screens/Onboarding/StepInterests/index.tsx:190 msgid "Choose 3 or more:" -msgstr "" - -#: src/view/screens/Settings/index.tsx:697 -#~ msgid "Choose a new Bluesky username or create" -#~ msgstr "Wähle oder erstelle einen neuen Bluesky-Benutzernamen" +msgstr "Wähle 3 oder mehr aus:" #: src/screens/Onboarding/StepInterests/index.tsx:325 msgid "Choose at least {0} more" -msgstr "" +msgstr "Wähle mindestens {0} weitere aus" #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" -msgstr "" +msgstr "Feeds wählen" #: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" -msgstr "" +msgstr "Wähle für mich" #: src/screens/StarterPack/Wizard/index.tsx:187 msgid "Choose People" -msgstr "" +msgstr "Menschen auswählen" #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" @@ -1187,23 +987,14 @@ msgstr "Service wählen" msgid "Choose the algorithms that power your custom feeds." msgstr "Wähle die Algorithmen aus, welche deine benutzerdefinierten Feeds generieren." -#: src/view/com/auth/onboarding/WelcomeDesktop.tsx:83 -#: src/view/com/auth/onboarding/WelcomeMobile.tsx:85 -#~ msgid "Choose the algorithms that power your experience with custom feeds." -#~ msgstr "Wähle die Algorithmen aus, welche dein Erlebnis mit benutzerdefinierten Feeds unterstützen." - #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:107 msgid "Choose this color as your avatar" -msgstr "" +msgstr "Wähle diese Farbe als Avatar" #: src/components/dialogs/ThreadgateEditor.tsx:91 #: src/components/dialogs/ThreadgateEditor.tsx:95 msgid "Choose who can reply" -msgstr "" - -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104 -#~ msgid "Choose your main feeds" -#~ msgstr "Wähle deine Haupt-Feeds" +msgstr "Wähle aus, wer antworten darf" #: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" @@ -1232,11 +1023,11 @@ msgstr "Suchanfrage löschen" #: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" -msgstr "" +msgstr "Löscht alle veralteten Speicherdaten" #: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" -msgstr "" +msgstr "Löscht alle Speicherdaten" #: src/view/screens/Support.tsx:40 msgid "click here" @@ -1244,27 +1035,19 @@ msgstr "hier klicken" #: src/view/com/modals/DeleteAccount.tsx:208 msgid "Click here for more information on deactivating your account" -msgstr "" +msgstr "Klicke hier, um weitere Informationen zur Deaktivierung deines Kontos zu erhalten" #: src/view/com/modals/DeleteAccount.tsx:216 msgid "Click here for more information." -msgstr "" - -#: src/screens/Feeds/NoFollowingFeed.tsx:46 -#~ msgid "Click here to add one." -#~ msgstr "" +msgstr "Klicke hier für weitere Informationen." #: src/components/TagMenu/index.web.tsx:138 msgid "Click here to open tag menu for {tag}" msgstr "Klicke hier, um das Tag-Menü für {tag} zu öffnen" -#: src/components/RichText.tsx:198 -#~ msgid "Click here to open tag menu for #{tag}" -#~ msgstr "Klicke hier, um das Tag-Menü für #{tag} zu öffnen" - #: src/components/dms/MessageItem.tsx:237 msgid "Click to retry failed message" -msgstr "" +msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden" #: src/screens/Onboarding/index.tsx:32 msgid "Climate" @@ -1272,7 +1055,7 @@ msgstr "Klima" #: src/components/dms/ChatEmptyPill.tsx:39 msgid "Clip 🐴 clop 🐴" -msgstr "" +msgstr "Klipp 🐴 klapp 🐴" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 @@ -1303,11 +1086,11 @@ msgstr "Untere Schublade schließen" #: src/components/dialogs/GifSelect.ios.tsx:244 #: src/components/dialogs/GifSelect.tsx:262 msgid "Close dialog" -msgstr "" +msgstr "Dialog schließen" #: src/components/dialogs/GifSelect.tsx:161 msgid "Close GIF dialog" -msgstr "" +msgstr "GIF-Dialog schließen" #: src/view/com/lightbox/ImageViewing/components/ImageDefaultHeader.tsx:36 msgid "Close image" @@ -1319,7 +1102,7 @@ msgstr "Bildbetrachter schließen" #: src/components/dms/MessagesNUX.tsx:162 msgid "Close modal" -msgstr "" +msgstr "Modalfenster schließen" #: src/view/shell/index.web.tsx:61 msgid "Close navigation footer" @@ -1348,7 +1131,7 @@ msgstr "Schließt den Betrachter für das Banner" #: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" -msgstr "" +msgstr "Liste der Benutzer einklappen" #: src/view/com/notifications/FeedItem.tsx:437 msgid "Collapses list of users for a given notification" @@ -1375,7 +1158,7 @@ msgstr "Schließe das Onboarding ab und nutze dein Konto" #: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" -msgstr "Beende die Herausforderung" +msgstr "Schließe die Herausforderung ab" #: src/view/com/composer/Composer.tsx:570 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" @@ -1385,10 +1168,6 @@ msgstr "Verfasse Beiträge mit einer Länge von bis zu {MAX_GRAPHEME_LENGTH} Zei msgid "Compose reply" msgstr "Antwort verfassen" -#: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81 -#~ msgid "Configure content filtering setting for category: {0}" -#~ msgstr "Inhaltsfilterungseinstellung der Kategorie {0} konfigurieren" - #: src/components/moderation/LabelPreference.tsx:81 msgid "Configure content filtering setting for category: {name}" msgstr "Konfiguriere die Inhaltsfilterung für die Kategorie: {name}" @@ -1409,12 +1188,6 @@ msgstr "Konfiguriert in <0>Moderationseinstellungen" msgid "Confirm" msgstr "Bestätigen" -#: src/view/com/modals/Confirm.tsx:75 -#: src/view/com/modals/Confirm.tsx:78 -#~ msgctxt "action" -#~ msgid "Confirm" -#~ msgstr "Bestätigen" - #: src/view/com/modals/ChangeEmail.tsx:188 #: src/view/com/modals/ChangeEmail.tsx:190 msgid "Confirm Change" @@ -1428,10 +1201,6 @@ msgstr "Bestätige die Spracheinstellungen für den Inhalt" msgid "Confirm delete account" msgstr "Bestätige das Löschen des Kontos" -#: src/view/com/modals/ContentFilteringSettings.tsx:156 -#~ msgid "Confirm your age to enable adult content." -#~ msgstr "Bestätige dein Alter, um Inhalte für Erwachsene zu aktivieren." - #: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "Bestätige dein Alter:" @@ -1452,28 +1221,16 @@ msgstr "Bestätigungscode" #: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." -msgstr "Verbinden..." +msgstr "Verbinden…" #: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "Support kontaktieren" -#: src/components/moderation/LabelsOnMe.tsx:42 -#~ msgid "content" -#~ msgstr "" - #: src/lib/moderation/useGlobalLabelStrings.ts:18 msgid "Content Blocked" msgstr "Inhalt blockiert" -#: src/view/screens/Moderation.tsx:83 -#~ msgid "Content filtering" -#~ msgstr "Inhaltsfilterung" - -#: src/view/com/modals/ContentFilteringSettings.tsx:44 -#~ msgid "Content Filtering" -#~ msgstr "Inhaltsfilterung" - #: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "Inhaltsfilterung" @@ -1501,7 +1258,7 @@ msgstr "Inhaltswarnungen" #: src/components/Menu/index.web.tsx:83 msgid "Context menu backdrop, click to close the menu." -msgstr "Hintergrund des Kontextmenüs, klicken, um das Menü zu schließen" +msgstr "Hintergrund des Kontextmenüs; klicken, um das Menü zu schließen" #: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 @@ -1510,11 +1267,11 @@ msgstr "Fortfahren" #: src/components/AccountList.tsx:113 msgid "Continue as {0} (currently signed in)" -msgstr "Fortfahren mit {0} (aktuell angemeldet)" +msgstr "Fortfahren als {0} (noch angemeldet)" #: src/view/com/post-thread/PostThreadLoadMore.tsx:52 msgid "Continue thread..." -msgstr "" +msgstr "Thread fortsetzen…" #: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 @@ -1522,17 +1279,9 @@ msgstr "" msgid "Continue to next step" msgstr "Weiter zum nächsten Schritt" -#: src/screens/Onboarding/StepAlgoFeeds/index.tsx:158 -#~ msgid "Continue to the next step" -#~ msgstr "Weiter zum nächsten Schritt" - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:199 -#~ msgid "Continue to the next step without following any accounts" -#~ msgstr "Fahre mit dem nächsten Schritt fort, ohne Konten zu folgen" - #: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" -msgstr "" +msgstr "Konversation gelöscht" #: src/screens/Onboarding/index.tsx:41 msgid "Cooking" @@ -1558,7 +1307,7 @@ msgstr "In die Zwischenablage kopiert" #: src/components/dialogs/Embed.tsx:134 msgid "Copied!" -msgstr "" +msgstr "Kopiert!" #: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copies app password" @@ -1571,20 +1320,20 @@ msgstr "Kopieren" #: src/view/com/modals/ChangeHandle.tsx:474 msgid "Copy {0}" -msgstr "{} kopieren" +msgstr "{0} kopieren" #: src/components/dialogs/Embed.tsx:120 #: src/components/dialogs/Embed.tsx:139 msgid "Copy code" -msgstr "" +msgstr "Kopiere den Code" #: src/components/StarterPack/ShareDialog.tsx:123 msgid "Copy link" -msgstr "" +msgstr "Link kopieren" #: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" -msgstr "" +msgstr "Link kopieren" #: src/view/screens/ProfileList.tsx:428 msgid "Copy link to list" @@ -1595,14 +1344,10 @@ msgstr "Link zur Liste kopieren" msgid "Copy link to post" msgstr "Link zum Beitrag kopieren" -#: src/view/com/profile/ProfileHeader.tsx:295 -#~ msgid "Copy link to profile" -#~ msgstr "Link zum Profil kopieren" - #: src/components/dms/MessageMenu.tsx:110 #: src/components/dms/MessageMenu.tsx:112 msgid "Copy message text" -msgstr "" +msgstr "Nachrichtentext kopieren" #: src/view/com/util/forms/PostDropdownBtn.tsx:285 #: src/view/com/util/forms/PostDropdownBtn.tsx:287 @@ -1611,7 +1356,7 @@ msgstr "Beitragstext kopieren" #: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" -msgstr "" +msgstr "QR-Code kopieren" #: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 @@ -1620,7 +1365,7 @@ msgstr "Urheberrechtsbestimmungen" #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" -msgstr "" +msgstr "Du konntest den Chat nicht verlassen" #: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" @@ -1630,44 +1375,36 @@ msgstr "Feed konnte nicht geladen werden" msgid "Could not load list" msgstr "Liste konnte nicht geladen werden" -#: src/components/dms/NewChat.tsx:241 -#~ msgid "Could not load profiles. Please try again later." -#~ msgstr "" - #: src/components/dms/ConvoMenu.tsx:88 msgid "Could not mute chat" -msgstr "" - -#: src/components/dms/ConvoMenu.tsx:68 -#~ msgid "Could not unmute chat" -#~ msgstr "" +msgstr "Chat konnte nicht stummgeschaltet werden" #: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" -msgstr "" +msgstr "Erstellen" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 msgid "Create a new account" -msgstr "Ein neues Konto erstellen" +msgstr "Neues Konto erstellen" #: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" -msgstr "Erstelle ein neues Bluesky-Konto" +msgstr "Neues Bluesky-Konto erstellen" #: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" -msgstr "" +msgstr "QR-Code für ein Startpaket erstellen" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:338 msgid "Create a starter pack" -msgstr "" +msgstr "Ein Startpaket erstellen" #: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" -msgstr "" +msgstr "Ein Startpaket für mich erstellen" #: src/screens/Signup/index.tsx:88 msgid "Create Account" @@ -1676,15 +1413,15 @@ msgstr "Konto erstellen" #: src/components/dialogs/Signin.tsx:86 #: src/components/dialogs/Signin.tsx:88 msgid "Create an account" -msgstr "" +msgstr "Ein Konto erstellen" #: src/screens/Onboarding/StepProfile/index.tsx:283 msgid "Create an avatar instead" -msgstr "" +msgstr "Stattdessen einen Avatar erstellen" #: src/components/StarterPack/ProfileStarterPacks.tsx:172 msgid "Create another" -msgstr "" +msgstr "Ein weiteres erstellen" #: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" @@ -1695,10 +1432,6 @@ msgstr "App-Passwort erstellen" msgid "Create new account" msgstr "Neues Konto erstellen" -#: src/components/StarterPack/ShareDialog.tsx:158 -#~ msgid "Create QR code" -#~ msgstr "" - #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" msgstr "Meldung für {0} erstellen" @@ -1707,18 +1440,6 @@ msgstr "Meldung für {0} erstellen" msgid "Created {0}" msgstr "Erstellt {0}" -#: src/view/screens/ProfileFeed.tsx:616 -#~ msgid "Created by <0/>" -#~ msgstr "Erstellt von <0/>" - -#: src/view/screens/ProfileFeed.tsx:614 -#~ msgid "Created by you" -#~ msgstr "Erstellt von dir" - -#: src/view/com/composer/Composer.tsx:469 -#~ msgid "Creates a card with a thumbnail. The card links to {url}" -#~ msgstr "Erzeugt eine Karte mit Vorschaubild und verlinkt auf {url}" - #: src/screens/Onboarding/index.tsx:26 #: src/screens/Onboarding/state.ts:84 msgid "Culture" @@ -1753,24 +1474,24 @@ msgstr "Dunkelmodus" #: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" -msgstr "Dunkles Thema" +msgstr "Dunkelmodus" #: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" -msgstr "" +msgstr "Geburtsdatum" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 #: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" -msgstr "" +msgstr "Konto deaktivieren" #: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" -msgstr "" +msgstr "Mein Konto deaktivieren" #: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" -msgstr "" +msgstr "Debug-Moderation" #: src/view/screens/Debug.tsx:83 msgid "Debug panel" @@ -1790,13 +1511,9 @@ msgstr "Löschen" msgid "Delete account" msgstr "Konto löschen" -#: src/view/com/modals/DeleteAccount.tsx:87 -#~ msgid "Delete Account" -#~ msgstr "Konto löschen" - #: src/view/com/modals/DeleteAccount.tsx:105 msgid "Delete Account <0>\"<1>{0}<2>\"" -msgstr "" +msgstr "Konto <0>„<1>{0}<2>” löschen" #: src/view/screens/AppPasswords.tsx:244 msgid "Delete app password" @@ -1809,11 +1526,11 @@ msgstr "App-Passwort löschen?" #: src/view/screens/Settings/index.tsx:891 #: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" -msgstr "" +msgstr "Datensatz für die Chat-Erklärung löschen" #: src/components/dms/MessageMenu.tsx:124 msgid "Delete for me" -msgstr "" +msgstr "Für mich löschen" #: src/view/screens/ProfileList.tsx:471 msgid "Delete List" @@ -1821,11 +1538,11 @@ msgstr "Liste löschen" #: src/components/dms/MessageMenu.tsx:147 msgid "Delete message" -msgstr "" +msgstr "Nachricht löschen" #: src/components/dms/MessageMenu.tsx:122 msgid "Delete message for me" -msgstr "" +msgstr "Nachricht für mich löschen" #: src/view/com/modals/DeleteAccount.tsx:285 msgid "Delete my account" @@ -1833,7 +1550,7 @@ msgstr "Mein Konto löschen" #: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" -msgstr "Mein Konto Löschen…" +msgstr "Mein Konto löschen…" #: src/view/com/util/forms/PostDropdownBtn.tsx:414 #: src/view/com/util/forms/PostDropdownBtn.tsx:416 @@ -1843,11 +1560,11 @@ msgstr "Beitrag löschen" #: src/screens/StarterPack/StarterPackScreen.tsx:556 #: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" -msgstr "" +msgstr "Startpaket löschen" #: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" -msgstr "" +msgstr "Startpaket löschen?" #: src/view/screens/ProfileList.tsx:662 msgid "Delete this list?" @@ -1867,7 +1584,7 @@ msgstr "Gelöschter Beitrag." #: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" -msgstr "" +msgstr "Löscht den Datensatz für die Chat-Erklärung" #: src/view/com/modals/CreateOrEditList.tsx:289 #: src/view/com/modals/CreateOrEditList.tsx:310 @@ -1878,7 +1595,7 @@ msgstr "Beschreibung" #: src/view/com/composer/GifAltText.tsx:140 msgid "Descriptive alt text" -msgstr "" +msgstr "Beschreibender Alt-Text" #: src/view/com/composer/Composer.tsx:283 msgid "Did you want to say anything?" @@ -1886,31 +1603,23 @@ msgstr "Wolltest du etwas sagen?" #: src/view/screens/Settings/index.tsx:478 msgid "Dim" -msgstr "Dimmen" +msgstr "Gedimmt" #: src/components/dms/MessagesNUX.tsx:88 msgid "Direct messages are here!" -msgstr "" +msgstr "Direktnachrichten sind da!" #: src/view/screens/AccessibilitySettings.tsx:107 msgid "Disable autoplay for GIFs" -msgstr "" +msgstr "Automatische Wiedergabe für GIFs deaktivieren" #: src/view/screens/Settings/DisableEmail2FADialog.tsx:90 msgid "Disable Email 2FA" -msgstr "" +msgstr "Zwei-Faktor-Authentifizierung per E-Mail deaktivieren" #: src/view/screens/AccessibilitySettings.tsx:121 msgid "Disable haptic feedback" -msgstr "" - -#: src/view/screens/Settings/index.tsx:697 -#~ msgid "Disable haptics" -#~ msgstr "" - -#: src/view/screens/Settings/index.tsx:697 -#~ msgid "Disable vibrations" -#~ msgstr "" +msgstr "Haptische Rückmeldung deaktivieren" #: src/lib/moderation/useLabelBehaviorDescription.ts:32 #: src/lib/moderation/useLabelBehaviorDescription.ts:42 @@ -1925,13 +1634,9 @@ msgstr "Deaktiviert" msgid "Discard" msgstr "Verwerfen" -#: src/view/com/composer/Composer.tsx:145 -#~ msgid "Discard draft" -#~ msgstr "Entwurf verwerfen" - #: src/view/com/composer/Composer.tsx:648 msgid "Discard draft?" -msgstr "Entwurf löschen?" +msgstr "Entwurf verwerfen?" #: src/screens/Moderation/index.tsx:542 #: src/screens/Moderation/index.tsx:546 @@ -1940,7 +1645,7 @@ msgstr "Apps daran hindern, abgemeldeten Nutzern mein Konto zu zeigen" #: src/tours/HomeTour.tsx:70 msgid "Discover learns which posts you like as you browse." -msgstr "" +msgstr "„Discover” lernt beim Browsen, welche Beiträge dir gefallen." #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 @@ -1949,7 +1654,7 @@ msgstr "Entdecke neue benutzerdefinierte Feeds" #: src/view/screens/Search/Explore.tsx:388 msgid "Discover new feeds" -msgstr "" +msgstr "Entdecke neue Feeds" #: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" @@ -1957,11 +1662,11 @@ msgstr "Entdecke neue Feeds" #: src/components/ProgressGuide/List.tsx:40 msgid "Dismiss getting started guide" -msgstr "" +msgstr "Anleitung zum Einstieg schließen" #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" -msgstr "" +msgstr "Größere Alt-Text-Badges zeigen" #: src/view/com/modals/EditProfile.tsx:193 msgid "Display name" @@ -1973,7 +1678,7 @@ msgstr "Anzeigename" #: src/view/com/modals/ChangeHandle.tsx:391 msgid "DNS Panel" -msgstr "" +msgstr "DNS-Panel" #: src/lib/moderation/useGlobalLabelStrings.ts:39 msgid "Does not include nudity." @@ -1985,7 +1690,7 @@ msgstr "Beginnt oder endet nicht mit einem Bindestrich" #: src/view/com/modals/ChangeHandle.tsx:475 msgid "Domain Value" -msgstr "" +msgstr "Domain-Wert" #: src/view/com/modals/ChangeHandle.tsx:482 msgid "Domain verified!" @@ -2008,7 +1713,7 @@ msgstr "Domain verifiziert!" #: src/view/com/modals/ListAddRemoveUsers.tsx:142 #: src/view/screens/PreferencesFollowingFeed.tsx:310 msgid "Done" -msgstr "Erledigt" +msgstr "Fertig" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 @@ -2018,19 +1723,15 @@ msgstr "Erledigt" #: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" -msgstr "Erledigt" +msgstr "Fertig" #: src/view/com/modals/lang-settings/ConfirmLanguagesButton.tsx:43 msgid "Done{extraText}" -msgstr "Erledigt{extraText}" - -#: src/view/com/auth/login/ChooseAccountForm.tsx:46 -#~ msgid "Double tap to sign in" -#~ msgstr "Doppeltippen zum Anmelden" +msgstr "Fertig{extraText}" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" -msgstr "" +msgstr "Bluesky herunterladen" #: src/view/screens/Settings/index.tsx:755 #~ msgid "Download Bluesky account data (repository)" @@ -2043,47 +1744,43 @@ msgstr "CAR-Datei herunterladen" #: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" -msgstr "Ablegen zum Hinzufügen von Bildern" - -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:120 -#~ msgid "Due to Apple policies, adult content can only be enabled on the web after completing sign up." -#~ msgstr "Aufgrund der Apple-Richtlinien können Inhalte für Erwachsene erst nach Abschluss der Registrierung auf der Website aktiviert werden." +msgstr "Zum Hinzufügen Bilder ablegen" #: src/view/com/modals/ChangeHandle.tsx:252 msgid "e.g. alice" -msgstr "z.B. alice" +msgstr "z. B. alice" #: src/view/com/modals/EditProfile.tsx:186 msgid "e.g. Alice Roberts" -msgstr "z.B. Alice Roberts" +msgstr "z. B. Alice Roberts" #: src/view/com/modals/ChangeHandle.tsx:374 msgid "e.g. alice.com" -msgstr "z.B. alice.com" +msgstr "z. B. alice.com" #: src/view/com/modals/EditProfile.tsx:204 msgid "e.g. Artist, dog-lover, and avid reader." -msgstr "z.B. Künstlerin, Hundeliebhaberin und begeisterte Leserin." +msgstr "z. B. Künstlerin, Hundeliebhaberin und begeisterte Leserin." #: src/lib/moderation/useGlobalLabelStrings.ts:43 msgid "E.g. artistic nudes." -msgstr "Z.B. künstlerische Nacktheit" +msgstr "z. B. künstlerische Nacktheit" #: src/view/com/modals/CreateOrEditList.tsx:272 msgid "e.g. Great Posters" -msgstr "z.B. Großartige Poster" +msgstr "z. B. Großartige Poster" #: src/view/com/modals/CreateOrEditList.tsx:273 msgid "e.g. Spammers" -msgstr "z.B. Spammer" +msgstr "z. B. Spammer" #: src/view/com/modals/CreateOrEditList.tsx:301 msgid "e.g. The posters who never miss." -msgstr "z.B. Die Poster, die immer ins Schwarze treffen." +msgstr "z. B. Die Poster, die immer ins Schwarze treffen." #: src/view/com/modals/CreateOrEditList.tsx:302 msgid "e.g. Users that repeatedly reply with ads." -msgstr "z.B. Nutzer, die wiederholt mit Werbung antworten." +msgstr "z. B. Benutzer, die wiederholt mit Werbung antworten." #: src/view/com/modals/InviteCodes.tsx:97 msgid "Each code works once. You'll receive more invite codes periodically." @@ -2095,7 +1792,7 @@ msgstr "Jeder Code funktioniert einmal. Du erhältst regelmäßig neue Einladung #: src/view/screens/Feeds.tsx:386 #: src/view/screens/Feeds.tsx:454 msgid "Edit" -msgstr "" +msgstr "Bearbeiten" #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" @@ -2109,7 +1806,7 @@ msgstr "Avatar bearbeiten" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" -msgstr "" +msgstr "Feeds bearbeiten" #: src/view/com/composer/photos/Gallery.tsx:151 #: src/view/com/modals/EditImage.tsx:208 @@ -2137,7 +1834,7 @@ msgstr "Mein Profil bearbeiten" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" -msgstr "" +msgstr "Personen bearbeiten" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 @@ -2149,14 +1846,9 @@ msgstr "Profil bearbeiten" msgid "Edit Profile" msgstr "Profil bearbeiten" -#: src/view/com/home/HomeHeaderLayout.web.tsx:76 -#: src/view/screens/Feeds.tsx:416 -#~ msgid "Edit Saved Feeds" -#~ msgstr "Gespeicherte Feeds bearbeiten" - #: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" -msgstr "" +msgstr "Startpaket bearbeiten" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -2164,7 +1856,7 @@ msgstr "Benutzerliste bearbeiten" #: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" -msgstr "" +msgstr "Bearbeiten, wer antworten kann" #: src/view/com/modals/EditProfile.tsx:194 msgid "Edit your display name" @@ -2176,7 +1868,7 @@ msgstr "Bearbeite deine Profilbeschreibung" #: src/Navigation.tsx:343 msgid "Edit your starter pack" -msgstr "" +msgstr "Dein Startpaket bearbeiten" #: src/screens/Onboarding/index.tsx:31 #: src/screens/Onboarding/state.ts:86 @@ -2185,7 +1877,7 @@ msgstr "Bildung" #: src/components/dialogs/ThreadgateEditor.tsx:98 msgid "Either choose \"Everybody\" or \"Nobody\"" -msgstr "" +msgstr "Wähle entweder „Alle” oder „Niemand” aus" #: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 @@ -2194,7 +1886,7 @@ msgstr "E-Mail" #: src/view/screens/Settings/DisableEmail2FADialog.tsx:64 msgid "Email 2FA disabled" -msgstr "" +msgstr "2FA per E-Mail wurde deaktiviert" #: src/screens/Login/ForgotPasswordForm.tsx:99 msgid "Email address" @@ -2219,17 +1911,17 @@ msgstr "E-Mail:" #: src/components/dialogs/Embed.tsx:112 msgid "Embed HTML code" -msgstr "" +msgstr "HTML-Code einbetten" #: src/components/dialogs/Embed.tsx:97 #: src/view/com/util/forms/PostDropdownBtn.tsx:324 #: src/view/com/util/forms/PostDropdownBtn.tsx:326 msgid "Embed post" -msgstr "" +msgstr "Beitrag einbetten" #: src/components/dialogs/Embed.tsx:101 msgid "Embed this post in your website. Simply copy the following snippet and paste it into the HTML code of your website." -msgstr "" +msgstr "Bette diesen Beitrag in deine Website ein. Kopiere einfach den folgenden Code und füge ihn in den HTML-Code deiner Website ein." #: src/components/dialogs/EmbedConsent.tsx:101 msgid "Enable {0} only" @@ -2239,27 +1931,14 @@ msgstr "Nur {0} aktivieren" msgid "Enable adult content" msgstr "Inhalte für Erwachsene aktivieren" -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:94 -#~ msgid "Enable Adult Content" -#~ msgstr "Inhalte für Erwachsene aktivieren" - -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:78 -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:79 -#~ msgid "Enable adult content in your feeds" -#~ msgstr "Aktiviere Inhalte für Erwachsene in deinen Feeds" - #: src/components/dialogs/EmbedConsent.tsx:82 #: src/components/dialogs/EmbedConsent.tsx:89 msgid "Enable external media" msgstr "Externe Medien aktivieren" -#: src/view/com/modals/EmbedConsent.tsx:97 -#~ msgid "Enable External Media" -#~ msgstr "Externe Medien aktivieren" - #: src/view/screens/PreferencesExternalEmbeds.tsx:76 msgid "Enable media players for" -msgstr "Aktiviere Medienplayer für" +msgstr "Medienplayer aktivieren für" #: src/view/screens/PreferencesFollowingFeed.tsx:146 msgid "Enable this setting to only see replies between people you follow." @@ -2279,17 +1958,13 @@ msgstr "Aktiviert" msgid "End of feed" msgstr "Ende des Feeds" -#: src/components/Lists.tsx:52 -#~ msgid "End of list" -#~ msgstr "" - #: src/tours/Tooltip.tsx:159 msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." -msgstr "" +msgstr "Ende des Onboarding-Tour-Fensters. Nicht weitergehen. Gehe stattdessen zurück, um weitere Optionen zu sehen, oder drücke, um zu überspringen." #: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" -msgstr "Gebe einen Namen für dieses App-Passwort ein" +msgstr "Gib einen Namen für dieses App-Passwort ein" #: src/screens/Login/SetNewPasswordForm.tsx:139 msgid "Enter a password" @@ -2306,7 +1981,7 @@ msgstr "Bestätigungscode eingeben" #: src/view/com/modals/ChangePassword.tsx:154 msgid "Enter the code you received to change your password." -msgstr "Gib den Code ein, welchen du erhalten hast, um dein Passwort zu ändern." +msgstr "Gib den Code ein, den du erhalten hast, um dein Passwort zu ändern." #: src/view/com/modals/ChangeHandle.tsx:364 msgid "Enter the domain you want to use" @@ -2339,7 +2014,7 @@ msgstr "Gib deinen Benutzernamen und dein Passwort ein" #: src/view/screens/Settings/ExportCarDialog.tsx:46 msgid "Error occurred while saving file" -msgstr "" +msgstr "Beim Speichern der Datei ist ein Fehler aufgetreten" #: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." @@ -2358,14 +2033,14 @@ msgstr "Alle" #: src/components/WhoCanReply.tsx:240 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" -msgstr "" +msgstr "Alle können antworten" #: src/components/dms/MessagesNUX.tsx:131 #: src/components/dms/MessagesNUX.tsx:134 #: src/screens/Messages/Settings.tsx:75 #: src/screens/Messages/Settings.tsx:78 msgid "Everyone" -msgstr "" +msgstr "Alle" #: src/lib/moderation/useReportOptions.ts:68 msgid "Excessive mentions or replies" @@ -2373,7 +2048,7 @@ msgstr "Übermäßig viele Erwähnungen oder Antworten" #: src/lib/moderation/useReportOptions.ts:81 msgid "Excessive or unwanted messages" -msgstr "" +msgstr "Übermäßige oder unerwünschte Nachrichten" #: src/view/com/modals/DeleteAccount.tsx:293 msgid "Exits account deletion process" @@ -2381,7 +2056,7 @@ msgstr "Verlässt den Vorgang der Accountlöschung" #: src/view/com/modals/ChangeHandle.tsx:145 msgid "Exits handle change process" -msgstr "Verlässt den Vorgang des Handle-Wechsels" +msgstr "Verlässt den Vorgang der Handle-Änderung" #: src/view/com/modals/crop-image/CropImage.web.tsx:160 msgid "Exits image cropping process" @@ -2402,7 +2077,7 @@ msgstr "Alt-Text erweitern" #: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" -msgstr "" +msgstr "Liste der Benutzer erweitern" #: src/view/com/composer/ComposerReplyTo.tsx:82 #: src/view/com/composer/ComposerReplyTo.tsx:85 @@ -2411,20 +2086,20 @@ msgstr "Erweitere oder reduziere den gesamten Beitrag, auf den du antwortest" #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." -msgstr "" +msgstr "Explizite oder potenziell verstörende Medien." #: src/lib/moderation/useGlobalLabelStrings.ts:35 msgid "Explicit sexual images." -msgstr "" +msgstr "Explizite sexuelle Bilder." #: src/view/screens/Settings/index.tsx:787 msgid "Export my data" -msgstr "Exportiere meine Daten" +msgstr "Meine Daten exportieren" #: src/view/screens/Settings/ExportCarDialog.tsx:62 #: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" -msgstr "Exportiere meine Daten" +msgstr "Meine Daten exportieren" #: src/components/dialogs/EmbedConsent.tsx:55 #: src/components/dialogs/EmbedConsent.tsx:59 @@ -2454,7 +2129,7 @@ msgstr "Das App-Passwort konnte nicht erstellt werden." #: src/screens/StarterPack/Wizard/index.tsx:230 #: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" -msgstr "" +msgstr "Startpaket konnte nicht erstellt werden" #: src/view/com/modals/CreateOrEditList.tsx:194 msgid "Failed to create the list. Check your internet connection and try again." @@ -2462,7 +2137,7 @@ msgstr "Die Liste konnte nicht erstellt werden. Überprüfe deine Internetverbin #: src/components/dms/MessageMenu.tsx:73 msgid "Failed to delete message" -msgstr "" +msgstr "Nachricht konnte nicht gelöscht werden" #: src/view/com/util/forms/PostDropdownBtn.tsx:152 msgid "Failed to delete post, please try again" @@ -2470,39 +2145,30 @@ msgstr "Beitrag konnte nicht gelöscht werden, bitte versuche es erneut" #: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" -msgstr "" +msgstr "Startpaket konnte nicht gelöscht werden" #: src/view/screens/Search/Explore.tsx:426 #: src/view/screens/Search/Explore.tsx:454 msgid "Failed to load feeds preferences" -msgstr "" +msgstr "Fehler beim Laden der Einstellungen für Feeds" #: src/components/dialogs/GifSelect.ios.tsx:196 #: src/components/dialogs/GifSelect.tsx:212 msgid "Failed to load GIFs" -msgstr "" +msgstr "GIFs konnten nicht geladen werden" #: src/screens/Messages/Conversation/MessageListError.tsx:23 msgid "Failed to load past messages" -msgstr "" - -#: src/screens/Messages/Conversation/MessageListError.tsx:28 -#~ msgid "Failed to load past messages." -#~ msgstr "" - -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:110 -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:143 -#~ msgid "Failed to load recommended feeds" -#~ msgstr "Empfohlene Feeds konnten nicht geladen werden" +msgstr "Es konnten keine vorherigen Nachrichten geladen werden" #: src/view/screens/Search/Explore.tsx:419 #: src/view/screens/Search/Explore.tsx:447 msgid "Failed to load suggested feeds" -msgstr "" +msgstr "Die vorgeschlagenen Feeds konnten nicht geladen werden." #: src/view/screens/Search/Explore.tsx:377 msgid "Failed to load suggested follows" -msgstr "" +msgstr "Die vorgeschlagenen Konten, denen du folgen solltest, konnten nicht geladen werden" #: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" @@ -2510,29 +2176,25 @@ msgstr "Das Speichern des Bildes ist fehlgeschlagen: {0}" #: src/components/dms/MessageItem.tsx:230 msgid "Failed to send" -msgstr "" - -#: src/screens/Messages/Conversation/MessageListError.tsx:29 -#~ msgid "Failed to send message(s)." -#~ msgstr "" +msgstr "Konnte nicht gesendet werden" #: src/components/moderation/LabelsOnMeDialog.tsx:223 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." -msgstr "" +msgstr "Anfechtung nicht eingereicht. Bitte versuche es erneut." #: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Failed to toggle thread mute, please try again" -msgstr "" +msgstr "Du konntest die Stummschaltung des Threads nicht aktivieren oder deaktivieren. Bitte versuche es erneut" #: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" -msgstr "" +msgstr "Aktualisierung der Feeds fehlgeschlagen" #: src/components/dms/MessagesNUX.tsx:60 #: src/screens/Messages/Settings.tsx:35 msgid "Failed to update settings" -msgstr "" +msgstr "Einstellungen konnten nicht aktualisiert werden" #: src/Navigation.tsx:214 msgid "Feed" @@ -2543,13 +2205,9 @@ msgstr "Feed" msgid "Feed by {0}" msgstr "Feed von {0}" -#: src/view/screens/Feeds.tsx:709 -#~ msgid "Feed offline" -#~ msgstr "Feed offline" - #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" -msgstr "" +msgstr "Feed-Umschalter" #: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 @@ -2568,21 +2226,13 @@ msgstr "Feedback" msgid "Feeds" msgstr "Feeds" -#: src/view/com/auth/onboarding/RecommendedFeeds.tsx:58 -#~ msgid "Feeds are created by users to curate content. Choose some feeds that you find interesting." -#~ msgstr "Feeds werden von Nutzern erstellt, um Inhalte zu kuratieren. Wähle einige Feeds aus, die du interessant findest." - #: src/view/screens/SavedFeeds.tsx:180 msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." -msgstr "Feeds sind benutzerdefinierte Algorithmen, die Nutzer mit ein wenig Programmierkenntnisse erstellen. <0/> für mehr Informationen." - -#: src/screens/Onboarding/StepTopicalFeeds.tsx:80 -#~ msgid "Feeds can be topical as well!" -#~ msgstr "Die Feeds können auch auf einem Thema basieren!" +msgstr "Feeds sind benutzerdefinierte Algorithmen, die Benutzer mit ein wenig Programmierkenntnisse erstellen. <0/> für mehr Informationen." #: src/components/FeedCard.tsx:266 msgid "Feeds updated!" -msgstr "" +msgstr "Feeds aktualisiert!" #: src/view/com/modals/ChangeHandle.tsx:475 msgid "File Contents" @@ -2590,7 +2240,7 @@ msgstr "Dateiinhalt" #: src/view/screens/Settings/ExportCarDialog.tsx:42 msgid "File saved successfully!" -msgstr "" +msgstr "Datei erfolgreich gespeichert!" #: src/lib/moderation/useLabelBehaviorDescription.ts:66 msgid "Filter from feeds" @@ -2608,39 +2258,27 @@ msgstr "Konten zum Folgen finden" #: src/tours/HomeTour.tsx:88 msgid "Find more feeds and accounts to follow in the Explore page." -msgstr "" +msgstr "Finde weitere Feeds und Konten, denen du folgen kannst, auf der „Explore” Seite." #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" -msgstr "" - -#: src/view/screens/Search/Search.tsx:589 -#~ msgid "Find users on Bluesky" -#~ msgstr "Nutzer auf Bluesky finden" - -#: src/view/screens/Search/Search.tsx:587 -#~ msgid "Find users with the search tool on the right" -#~ msgstr "Finde Nutzer mit der Suchfunktion auf der rechten Seite" - -#: src/view/com/auth/onboarding/RecommendedFollowsItem.tsx:155 -#~ msgid "Finding similar accounts..." -#~ msgstr "Suche nach ähnlichen Konten..." +msgstr "Finde Beiträge und Nutzer auf Bluesky" #: src/view/screens/PreferencesFollowingFeed.tsx:110 msgid "Fine-tune the content you see on your Following feed." -msgstr "Passe die Inhalte auf Deinem Following-Feed an." +msgstr "Passe die Inhalte deines Following-Feeds an." #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." -msgstr "Passe die Diskussionsstränge an." +msgstr "Passe die Diskussions-Threads an." #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" -msgstr "" +msgstr "Beenden" #: src/tours/Tooltip.tsx:149 msgid "Finish tour and begin using the application" -msgstr "" +msgstr "Tour beenden und mit der Nutzung der Anwendung beginnen" #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" @@ -2681,25 +2319,21 @@ msgstr "{0} folgen" #: src/view/com/posts/AviFollowButton.tsx:71 msgid "Follow {name}" -msgstr "" +msgstr "{name} folgen" #: src/components/ProgressGuide/List.tsx:54 msgid "Follow 7 accounts" -msgstr "" +msgstr "Folge 7 Konten" #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" -msgstr "Accounts folgen" +msgstr "Konto folgen" #: src/screens/StarterPack/StarterPackScreen.tsx:405 #: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" -msgstr "" - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 -#~ msgid "Follow All" -#~ msgstr "Allen folgen" +msgstr "Allen folgen" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 msgid "Follow Back" @@ -2707,19 +2341,7 @@ msgstr "Zurückfolgen" #: src/view/screens/Search/Explore.tsx:333 msgid "Follow more accounts to get connected to your interests and build your network." -msgstr "" - -#: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 -#~ msgid "Follow selected accounts and continue to the next step" -#~ msgstr "Ausgewählten Konten folgen und mit dem nächsten Schritt fortfahren" - -#: src/view/com/auth/onboarding/RecommendedFollows.tsx:65 -#~ msgid "Follow some users to get started. We can recommend you more users based on who you find interesting." -#~ msgstr "Folge einigen Nutzern, um loszulegen. Wir können dir weitere Nutzer empfehlen, je nachdem, wen du interessant findest." - -#: src/components/KnownFollowers.tsx:169 -#~ msgid "Followed by" -#~ msgstr "" +msgstr "Folge weiteren Konten, um dich mit deinen Interessen zu verbinden und dein Netzwerk aufzubauen." #: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" @@ -2727,19 +2349,19 @@ msgstr "Gefolgt von {0}" #: src/components/KnownFollowers.tsx:223 msgid "Followed by <0>{0}" -msgstr "" +msgstr "Gefolgt von <0>{0}" #: src/components/KnownFollowers.tsx:209 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" -msgstr "" +msgstr "Gefolgt von <0>{0} und {1, plural, one {# anderer} other {# andere}}" #: src/components/KnownFollowers.tsx:196 msgid "Followed by <0>{0} and <1>{1}" -msgstr "" +msgstr "Gefolgt von <0>{0} und <1>{1}" #: src/components/KnownFollowers.tsx:178 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" -msgstr "" +msgstr "Gefolgt von <0>{0}, <1>{1} und {1, plural, one {# anderer} other {# andere}}" #: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" @@ -2755,7 +2377,7 @@ msgstr "folgte dir" #: src/view/com/notifications/FeedItem.tsx:195 msgid "followed you back" -msgstr "" +msgstr "ist dir gefolgt" #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 @@ -2764,12 +2386,12 @@ msgstr "Follower" #: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" -msgstr "" +msgstr "Follower von @{0}, die du kennst" #: src/screens/Profile/KnownFollowers.tsx:108 #: src/screens/Profile/KnownFollowers.tsx:118 msgid "Followers you know" -msgstr "" +msgstr "Follower, die du kennst" #. User is following this account, click to unfollow #: src/components/ProfileCard.tsx:335 @@ -2787,15 +2409,15 @@ msgstr "Folge ich" #: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" -msgstr "ich folge {0}" +msgstr "Ich folge {0}" #: src/view/com/posts/AviFollowButton.tsx:53 msgid "Following {name}" -msgstr "" +msgstr "Ich folge {name}" #: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" -msgstr "" +msgstr "Following-Feed-Einstellungen" #: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 @@ -2805,7 +2427,7 @@ msgstr "Following-Feed-Einstellungen" #: src/tours/HomeTour.tsx:59 msgid "Following shows the latest posts from people you follow." -msgstr "" +msgstr "„Following” zeigt die neuesten Beiträge von Personen, denen du folgst." #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" @@ -2828,14 +2450,6 @@ msgstr "Aus Sicherheitsgründen müssen wir dir einen Bestätigungscode an deine msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Aus Sicherheitsgründen kannst du dies nicht erneut ansehen. Wenn du dieses Passwort verlierst, musst du ein neues generieren." -#: src/view/com/auth/login/LoginForm.tsx:244 -#~ msgid "Forgot" -#~ msgstr "Vergessen" - -#: src/view/com/auth/login/LoginForm.tsx:241 -#~ msgid "Forgot password" -#~ msgstr "Passwort vergessen" - #: src/screens/Login/index.tsx:129 #: src/screens/Login/index.tsx:144 msgid "Forgot Password" @@ -2860,7 +2474,7 @@ msgstr "Von @{sanitizedAuthor}" #: src/view/com/posts/FeedItem.tsx:236 msgctxt "from-feed" msgid "From <0/>" -msgstr "Aus <0/>" +msgstr "Von <0/>" #: src/view/com/composer/photos/SelectPhotoBtn.tsx:39 msgid "Gallery" @@ -2904,7 +2518,7 @@ msgstr "Eklatante Verstöße gegen Gesetze oder Nutzungsbedingungen" #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" -msgstr "Gehe zurück" +msgstr "Zurückgehen" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 @@ -2914,7 +2528,7 @@ msgstr "Gehe zurück" #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" -msgstr "Gehe zurück" +msgstr "Zurückgehen" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 msgid "Go back to previous screen" @@ -2927,7 +2541,7 @@ msgstr "" #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" -msgstr "Zum vorherigen Schritt zurückkehren" +msgstr "Zum vorherigen Schritt zurückgehen" #: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" @@ -2944,7 +2558,7 @@ msgstr "" #: src/view/screens/Search/Search.tsx:827 #: src/view/shell/desktop/Search.tsx:263 #~ msgid "Go to @{queryMaybeHandle}" -#~ msgstr "Gehe zu @{queryMaybeHandle}" +#~ msgstr "Zu @{queryMaybeHandle} gehen" #: src/screens/Messages/List/ChatListItem.tsx:211 msgid "Go to conversation with {0}" @@ -2953,7 +2567,7 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:172 #: src/view/com/modals/ChangePassword.tsx:168 msgid "Go to next" -msgstr "Gehe zum nächsten" +msgstr "Zum nächsten gehen" #: src/components/dms/ConvoMenu.tsx:167 msgid "Go to profile" @@ -3457,7 +3071,7 @@ msgstr "Los geht's!" #: src/view/screens/Settings/index.tsx:453 msgid "Light" -msgstr "Licht" +msgstr "Hell" #: src/view/com/util/post-ctrls/PostCtrls.tsx:197 #~ msgid "Like" @@ -3495,7 +3109,7 @@ msgstr "Geliked von" #: src/components/LabelingServiceCard/index.tsx:72 #~ msgid "Liked by {count} {0}" -#~ msgstr "Geliked von {count} {0}" +#~ msgstr "Von {count} {0} geliked" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:287 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:301 @@ -3623,7 +3237,7 @@ msgstr "Sichtbarkeit für abgemeldete Benutzer" #: src/components/AccountList.tsx:58 msgid "Login to account that is not listed" -msgstr "Anmeldung bei einem Konto, das nicht aufgelistet ist" +msgstr "Bei einem Konto anmelden, das nicht aufgelistet ist" #: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" @@ -3981,7 +3595,7 @@ msgstr "Navigiert zum nächsten Bildschirm" #: src/view/shell/Drawer.tsx:79 msgid "Navigates to your profile" -msgstr "Navigiert zu Deinem Profil" +msgstr "Navigiert zu deinem Profil" #: src/components/ReportDialog/SelectReportOptionView.tsx:130 msgid "Need to report a copyright violation?" @@ -4092,12 +3706,12 @@ msgstr "Aktuelles" #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" -msgstr "Nächste" +msgstr "Weiter" #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:103 #~ msgctxt "action" #~ msgid "Next" -#~ msgstr "Nächste" +#~ msgstr "Weiter" #: src/view/com/lightbox/Lightbox.web.tsx:169 msgid "Next image" @@ -4233,7 +3847,7 @@ msgstr "Nicht gefunden" #: src/view/com/modals/VerifyEmail.tsx:254 #: src/view/com/modals/VerifyEmail.tsx:260 msgid "Not right now" -msgstr "Im Moment nicht" +msgstr "Nicht jetzt" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 @@ -4355,7 +3969,7 @@ msgstr "Enthält nur Buchstaben, Nummern und Bindestriche" #: src/components/Lists.tsx:88 msgid "Oops, something went wrong!" -msgstr "Ups, da ist etwas schief gelaufen!" +msgstr "Huch, da ist etwas schief gelaufen!" #: src/components/Lists.tsx:191 #: src/components/StarterPack/ProfileStarterPacks.tsx:304 @@ -4426,7 +4040,7 @@ msgstr "" #: src/view/screens/Settings/index.tsx:861 #: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" -msgstr "Geschichtenbuch öffnen" +msgstr "Storybook öffnen" #: src/view/screens/Settings/index.tsx:849 msgid "Open system log" @@ -4474,7 +4088,7 @@ msgstr "Öffnet die Gerätefotogalerie" #: src/view/com/profile/ProfileHeader.tsx:420 #~ msgid "Opens editor for profile display name, avatar, background image, and description" -#~ msgstr "Öffnet den Editor für Profilanzeige, Avatar, Hintergrundbild und Beschreibung" +#~ msgstr "Öffnet den Editor für Anzeigename, Avatar, Hintergrundbild und Beschreibung" #: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" @@ -4483,12 +4097,12 @@ msgstr "Öffnet die Einstellungen für externe eingebettete Medien" #: src/view/com/auth/SplashScreen.tsx:50 #: src/view/com/auth/SplashScreen.web.tsx:99 msgid "Opens flow to create a new Bluesky account" -msgstr "Öffnet den Vorgang, einen neuen Bluesky account anzulegen" +msgstr "Öffnet den Vorgang, ein neuen Bluesky Konto anzulegen" #: src/view/com/auth/SplashScreen.tsx:65 #: src/view/com/auth/SplashScreen.web.tsx:114 msgid "Opens flow to sign into your existing Bluesky account" -msgstr "Öffnet den Vorgang, sich mit einen bestehenden Bluesky Account anzumelden" +msgstr "Öffnet den Vorgang, sich mit einem bestehenden Bluesky Konto anzumelden" #: src/view/com/profile/ProfileHeader.tsx:575 #~ msgid "Opens followers list" @@ -4582,7 +4196,7 @@ msgstr "" #: src/view/screens/Settings/index.tsx:862 #: src/view/screens/Settings/index.tsx:872 msgid "Opens the storybook page" -msgstr "Öffnet die Geschichtenbuch" +msgstr "Öffnet die Storybook-Seite" #: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" @@ -4985,7 +4599,7 @@ msgstr "Öffentlich" #: src/view/screens/ModerationModlists.tsx:61 msgid "Public, shareable lists of users to mute or block in bulk." -msgstr "Öffentliche, gemeinsam nutzbare Listen von Nutzern, die du stummschalten oder blockieren kannst." +msgstr "Öffentliche, gemeinsam nutzbare Listen von Nutzern, die du sta­pel­wei­se stummschalten oder blockieren kannst." #: src/view/screens/Lists.tsx:66 msgid "Public, shareable lists which can drive feeds." @@ -5034,7 +4648,7 @@ msgstr "Beitrag zitieren" #: src/view/screens/PreferencesThreads.tsx:86 msgid "Random (aka \"Poster's Roulette\")" -msgstr "Zufällig (alias \"Poster's Roulette\")" +msgstr "Zufällig (\"Poster's Roulette\")" #: src/view/com/modals/EditImage.tsx:237 msgid "Ratios" @@ -5062,7 +4676,7 @@ msgstr "" #: src/view/com/auth/onboarding/RecommendedFollows.tsx:181 #~ msgid "Recommended Users" -#~ msgstr "Empfohlene Nutzer" +#~ msgstr "Empfohlene Benutzer" #: src/screens/Messages/Conversation/MessageListError.tsx:20 msgid "Reconnect" @@ -5376,15 +4990,15 @@ msgstr "Änderung anfordern" #: src/view/com/modals/ChangePassword.tsx:242 #: src/view/com/modals/ChangePassword.tsx:244 msgid "Request Code" -msgstr "Einen Code anfordern" +msgstr "Code anfordern" #: src/view/screens/AccessibilitySettings.tsx:88 msgid "Require alt text before posting" -msgstr "Alt-Text vor der Veröffentlichung erforderlich machen" +msgstr "Alt-Text vor der Beitragsveröffentlichung erforderlich machen" #: src/view/screens/Settings/Email2FAToggle.tsx:51 msgid "Require email code to log into your account" -msgstr "" +msgstr "E-Mail-Code zum Anmelden erforderlich machen" #: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" @@ -5410,7 +5024,7 @@ msgstr "Code zurücksetzen" #: src/view/screens/Settings/index.tsx:901 #: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" -msgstr "Onboarding-Status zurücksetzen" +msgstr "Onboardingstatus zurücksetzen" #: src/screens/Login/ForgotPasswordForm.tsx:86 msgid "Reset password" @@ -5427,7 +5041,7 @@ msgstr "Einstellungen zurücksetzen" #: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" -msgstr "Setzt den Onboarding-Status zurück" +msgstr "Setzt den Onboardingstatus zurück" #: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" @@ -5592,7 +5206,7 @@ msgstr "Suche" #: src/view/shell/desktop/Search.tsx:235 msgid "Search for \"{query}\"" -msgstr "Suche nach \"{query}\"" +msgstr "Nach \"{query}\" suchen" #: src/view/screens/Search/Search.tsx:869 msgid "Search for \"{searchText}\"" @@ -5763,7 +5377,7 @@ msgstr "Wähle aus den folgenden Optionen deine Interessen aus" #: src/view/screens/LanguageSettings.tsx:192 msgid "Select your preferred language for translations in your feed." -msgstr "Wähle deine bevorzugte Sprache für die Übersetzungen in deinem Feed aus." +msgstr "Wähle deine bevorzugte Sprache für Übersetzungen in deinem Feed aus." #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:117 #~ msgid "Select your primary algorithmic feeds" @@ -5866,11 +5480,11 @@ msgstr "" #: src/view/screens/Settings/index.tsx:514 #~ msgid "Set dark theme to the dark theme" -#~ msgstr "Dunkles Thema auf das dunkle Thema einstellen" +#~ msgstr "Dunkelmodus auf den dunklen Modus setzen" #: src/view/screens/Settings/index.tsx:507 #~ msgid "Set dark theme to the dim theme" -#~ msgstr "Dunkles Thema auf das gedämpfte Thema einstellen" +#~ msgstr "Dunkelmodus auf den gedimmten Modus setzen" #: src/screens/Login/SetNewPasswordForm.tsx:102 msgid "Set new password" @@ -6048,10 +5662,6 @@ msgstr "" msgid "Show" msgstr "Anzeigen" -#: src/view/screens/PreferencesFollowingFeed.tsx:68 -#~ msgid "Show all replies" -#~ msgstr "Alle Antworten anzeigen" - #: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "" @@ -6108,15 +5718,15 @@ msgstr "Beiträge aus meinen Feeds anzeigen" #: src/view/screens/PreferencesFollowingFeed.tsx:221 msgid "Show Quote Posts" -msgstr "Zitierte Beiträge anzeigen" +msgstr "Zitatbeiträge anzeigen" #: src/screens/Onboarding/StepFollowingFeed.tsx:119 #~ msgid "Show quote-posts in Following feed" -#~ msgstr "Zitierte Beiträge im Following Feed anzeigen" +#~ msgstr "Zitatbeiträge im Following-Feed anzeigen" #: src/screens/Onboarding/StepFollowingFeed.tsx:135 #~ msgid "Show quotes in Following" -#~ msgstr "Zitierte Beiträge im Following Feed anzeigen" +#~ msgstr "Zitatbeiträge im Following-Feed anzeigen" #: src/screens/Onboarding/StepFollowingFeed.tsx:95 #~ msgid "Show re-posts in Following feed" @@ -6138,10 +5748,6 @@ msgstr "Zeige Antworten von Personen, denen du folgst, vor allen anderen Antwort #~ msgid "Show replies in Following feed" #~ msgstr "Antworten in folgendem Feed anzeigen" -#: src/view/screens/PreferencesFollowingFeed.tsx:70 -#~ msgid "Show replies with at least {value} {0}" -#~ msgstr "Antworten mit mindestens {value} {0} anzeigen" - #: src/view/screens/PreferencesFollowingFeed.tsx:187 msgid "Show Reposts" msgstr "Reposts anzeigen" @@ -6157,7 +5763,7 @@ msgstr "Den Inhalt anzeigen" #: src/view/com/notifications/FeedItem.tsx:347 #~ msgid "Show users" -#~ msgstr "Nutzer anzeigen" +#~ msgstr "Benutzer anzeigen" #: src/lib/moderation/useLabelBehaviorDescription.ts:58 msgid "Show warning" @@ -6421,7 +6027,7 @@ msgstr "Der Speicher wurde gelöscht, du musst die App jetzt neu starten." #: src/Navigation.tsx:229 #: src/view/screens/Settings/index.tsx:864 msgid "Storybook" -msgstr "Geschichtenbuch" +msgstr "Storybook" #: src/components/moderation/LabelsOnMeDialog.tsx:290 #: src/components/moderation/LabelsOnMeDialog.tsx:291 @@ -6763,7 +6369,7 @@ msgstr "Es gab ein unerwartetes Problem in der Anwendung. Bitte teile uns mit, w #: src/screens/SignupQueued.tsx:112 msgid "There's been a rush of new users to Bluesky! We'll activate your account as soon as we can." -msgstr "Es gab einen Ansturm neuer Nutzer auf Bluesky! Wir werden dein Konto so schnell wie möglich aktivieren." +msgstr "Es gab einen Ansturm neuer Benutzer auf Bluesky! Wir werden dein Konto so schnell wie möglich aktivieren." #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 #~ msgid "These are popular accounts you might like:" @@ -6812,7 +6418,7 @@ msgstr "Dieser Inhalt wird von {0} gehostet. Möchtest du externe Medien aktivie #: src/components/moderation/ModerationDetailsDialog.tsx:77 #: src/lib/moderation/useModerationCauseDescription.ts:79 msgid "This content is not available because one of the users involved has blocked the other." -msgstr "Dieser Inhalt ist nicht verfügbar, weil einer der beteiligten Nutzer den anderen blockiert hat." +msgstr "Dieser Inhalt ist nicht verfügbar, weil einer der beteiligten Benutzer den anderen blockiert hat." #: src/view/com/posts/FeedErrorMessage.tsx:114 msgid "This content is not viewable without a Bluesky account." @@ -6856,7 +6462,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:41 msgid "This information is not shared with other users." -msgstr "Diese Informationen werden nicht an andere Nutzer weitergegeben." +msgstr "Diese Informationen werden nicht an andere Benutzer weitergegeben." #: src/view/com/modals/VerifyEmail.tsx:127 msgid "This is important in case you ever need to change your email or reset your password." @@ -6995,7 +6601,7 @@ msgstr "" #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" -msgstr "Gewindemodus" +msgstr "Thread-Modus" #: src/Navigation.tsx:287 msgid "Threads Preferences" @@ -7235,7 +6841,7 @@ msgstr "" #: src/screens/Login/SetNewPasswordForm.tsx:186 msgid "Updating..." -msgstr "Aktualisieren..." +msgstr "Wird aktualisiert…" #: src/screens/Onboarding/StepProfile/index.tsx:281 msgid "Upload a photo instead" @@ -7270,7 +6876,7 @@ msgstr "" #: src/view/screens/AppPasswords.tsx:200 msgid "Use app passwords to login to other Bluesky clients without giving full access to your account or password." -msgstr "Verwende App-Passwörter, um dich bei anderen Bluesky-Clients anzumelden, ohne dass du vollen Zugriff auf deinen Account oder Passwort hast." +msgstr "Verwende App-Passwörter, um dich bei anderen Bluesky-Clients anzumelden, ohne vollen Zugriff auf deinen Account oder dein Passwort zu geben." #: src/view/com/modals/ChangeHandle.tsx:513 msgid "Use bsky.social as hosting provider" @@ -7372,7 +6978,7 @@ msgstr "Benutzer" #: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" -msgstr "Nutzer gefolgt von <0/>" +msgstr "Benutzer gefolgt von <0/>" #: src/components/dms/MessagesNUX.tsx:140 #: src/components/dms/MessagesNUX.tsx:143 From a03622dd5527b8322a668e4ce5c89ff2436599de Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 24 Jul 2024 15:23:31 -0700 Subject: [PATCH 10/30] Release 1.89 prep (#4822) * Fix curate-lists tests * Run intl extract --- __e2e__/flows/curate-lists.yml | 5 +- src/locale/locales/ca/messages.po | 1182 ++++++++++++++------------ src/locale/locales/de/messages.po | 1174 +++++++++++++------------ src/locale/locales/en/messages.po | 1180 +++++++++++++------------ src/locale/locales/es/messages.po | 1180 +++++++++++++------------ src/locale/locales/fi/messages.po | 1180 +++++++++++++------------ src/locale/locales/fr/messages.po | 1139 +++++++++++++------------ src/locale/locales/ga/messages.po | 1180 +++++++++++++------------ src/locale/locales/hi/messages.po | 1182 ++++++++++++++------------ src/locale/locales/id/messages.po | 1180 +++++++++++++------------ src/locale/locales/it/messages.po | 1180 +++++++++++++------------ src/locale/locales/ja/messages.po | 1115 ++++++++++++------------ src/locale/locales/ko/messages.po | 1180 +++++++++++++------------ src/locale/locales/pt-BR/messages.po | 1180 +++++++++++++------------ src/locale/locales/tr/messages.po | 1180 +++++++++++++------------ src/locale/locales/uk/messages.po | 1180 +++++++++++++------------ src/locale/locales/zh-CN/messages.po | 233 ++--- src/locale/locales/zh-TW/messages.po | 577 +++++++------ 18 files changed, 9871 insertions(+), 8536 deletions(-) diff --git a/__e2e__/flows/curate-lists.yml b/__e2e__/flows/curate-lists.yml index e497898b27..a37bc07778 100644 --- a/__e2e__/flows/curate-lists.yml +++ b/__e2e__/flows/curate-lists.yml @@ -132,7 +132,8 @@ appId: xyz.blueskyweb.app id: "feedItem-by-bob.test" - tapOn: id: "e2eGotoFeeds" -- tapOn: "Good Ppl" +- tapOn: + id: "saved-feed-Good Ppl" - assertVisible: id: "feedItem-by-bob.test" - tapOn: @@ -168,7 +169,7 @@ appId: xyz.blueskyweb.app id: "profilePager-selector" direction: LEFT - tapOn: - id: "profilePager-selector-5" + id: "profilePager-selector-6" - tapOn: "Good Ppl" - tapOn: diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po index e09b52e4e1..39845771b9 100644 --- a/src/locale/locales/ca/messages.po +++ b/src/locale/locales/ca/messages.po @@ -24,7 +24,7 @@ msgstr "(té contingut incrustat)" msgid "(no email)" msgstr "(sense correu)" -#: src/view/com/notifications/FeedItem.tsx:294 +#: src/view/com/notifications/FeedItem.tsx:297 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" @@ -103,7 +103,7 @@ msgstr "{0, plural, one {Desmarca m'agrada (# like)} other {Desmarca m'agrada (# #~ msgid "{0} {purposeLabel} List" #~ msgstr "Llista {purposeLabel} {0}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} s'han unit aquesta setmana" @@ -115,7 +115,7 @@ msgstr "{0} persones han utilitzat aquest starter pack" #~ msgid "{0} your feeds" #~ msgstr "{0} els teus canals" -#: src/view/com/util/UserAvatar.tsx:419 +#: src/view/com/util/UserAvatar.tsx:431 msgid "{0}'s avatar" msgstr "Avatar de {0}" @@ -163,7 +163,7 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {hores}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minut} other {minuts}}" -#: src/components/ProfileHoverCard/index.web.tsx:504 +#: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} seguint" @@ -188,7 +188,7 @@ msgstr "No es poden enviar missatges a {handle}" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:588 +#: src/view/screens/ProfileFeed.tsx:590 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {Li ha agradat a # user} other {Li ha agradat a # users}}" @@ -196,7 +196,7 @@ msgstr "{likeCount, plural, one {Li ha agradat a # user} other {Li ha agradat a #~ msgid "{message}" #~ msgstr "{missatge}" -#: src/view/shell/Drawer.tsx:462 +#: src/view/shell/Drawer.tsx:452 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} no llegides" @@ -212,7 +212,7 @@ msgstr "{profileName} s'uní a Bluesky amb un starter pack, fa {0}" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "{value, plural, =0 {Mostra totes les respostes} one {Mostra les respostes amb almenys # m'agrada} other {Mostra les respostes amb almenys # m'agrades}}" -#: src/components/WhoCanReply.tsx:295 +#: src/components/WhoCanReply.tsx:296 msgid "<0/> members" msgstr "<0/> membres" @@ -234,11 +234,11 @@ msgstr "<0>{0}, <1>{1}, i {2, plural, one {# altre} other {# altres}} es #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "<0>{0}, <1>{1}, i {2} {3, plural, one {altre} other {altres}} estan inclosos al teu starter pack" -#: src/view/shell/Drawer.tsx:101 +#: src/view/shell/Drawer.tsx:100 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {seguidor} other {seguidors}}" -#: src/view/shell/Drawer.tsx:112 +#: src/view/shell/Drawer.tsx:111 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {seguint} other {seguint}}" @@ -313,15 +313,15 @@ msgid "Access profile and other navigation links" msgstr "Accedeix al perfil i altres enllaços de navegació" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:519 +#: src/view/screens/Settings/index.tsx:520 msgid "Accessibility" msgstr "Accessibilitat" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Accessibility settings" msgstr "Configuració d'accessibilitat" -#: src/Navigation.tsx:301 +#: src/Navigation.tsx:309 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "Configuració d'accessibilitat" @@ -331,8 +331,8 @@ msgstr "Configuració d'accessibilitat" #~ msgstr "compte" #: src/screens/Login/LoginForm.tsx:190 -#: src/view/screens/Settings/index.tsx:346 -#: src/view/screens/Settings/index.tsx:753 +#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:754 msgid "Account" msgstr "Compte" @@ -379,7 +379,7 @@ msgid "Account unmuted" msgstr "Compte no silenciat" #: src/components/dialogs/MutedWords.tsx:164 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 msgid "Add" @@ -403,8 +403,8 @@ msgstr "Afegeix un usuari a aquesta llista" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:423 -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:433 msgid "Add account" msgstr "Afegeix un compte" @@ -489,7 +489,7 @@ msgstr "Afegeix als meus canals" #~ msgid "Added" #~ msgstr "Afegit" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "Afegit a la llista" @@ -498,7 +498,7 @@ msgstr "Afegit a la llista" msgid "Added to my feeds" msgstr "Afegit als meus canals" -#: src/view/screens/PreferencesFollowingFeed.tsx:172 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Ajusta el nombre de m'agrades que hagi de tenir una resposta per a aparèixer al teu canal." @@ -520,7 +520,7 @@ msgid "Adult content is disabled." msgstr "El contingut per a adults està deshabilitat." #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:687 +#: src/view/screens/Settings/index.tsx:688 msgid "Advanced" msgstr "Avançat" @@ -536,8 +536,8 @@ msgstr "S'han seguit tots els comptes!" msgid "All the feeds you've saved, right in one place." msgstr "Tots els canals que has desat, en un sol lloc." -#: src/view/com/modals/AddAppPasswords.tsx:187 -#: src/view/com/modals/AddAppPasswords.tsx:194 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "Permet l'accés als teus missatges directes" @@ -562,7 +562,7 @@ msgstr "Ja estàs registrat com a @{0}" #: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "ALT" msgstr "ALT" @@ -572,7 +572,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Text alternatiu" -#: src/view/com/util/post-embeds/GifEmbed.tsx:180 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Alt Text" msgstr "Text alternatiu" @@ -601,8 +601,8 @@ msgstr "S'ha produït un error en generar el teu starter pack. Vols tornar-ho a #~ msgid "An error occurred while saving the image." #~ msgstr "S'ha produït un error en desar la imatge." -#: src/components/StarterPack/QrCodeDialog.tsx:70 -#: src/components/StarterPack/ShareDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the QR code!" msgstr "S'ha produït un error en desar el codi QR!" @@ -618,10 +618,18 @@ msgstr "S'ha produït un error en intentar seguir-ho tot" 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:36 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +msgid "An issue occurred while trying to open the chat" +msgstr "" + #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:309 -#: src/components/ProfileCard.tsx:329 +#: src/components/ProfileCard.tsx:311 +#: src/components/ProfileCard.tsx:331 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -633,8 +641,8 @@ msgstr "Hi ha hagut un problema, prova-ho de nou." msgid "an unknown error occurred" msgstr "hi ha hagut un problema desconegut" -#: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:291 +#: src/components/WhoCanReply.tsx:317 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "i" @@ -643,7 +651,7 @@ msgstr "i" msgid "Animals" msgstr "Animals" -#: src/view/com/util/post-embeds/GifEmbed.tsx:146 +#: src/view/com/util/post-embeds/GifEmbed.tsx:155 msgid "Animated GIF" msgstr "GIF animat" @@ -667,7 +675,7 @@ msgstr "La contrasenya de l'aplicació només pot estar formada per lletres, nú msgid "App Password names must be at least 4 characters long." msgstr "La contrasenya de l'aplicació ha de ser d'almenys 4 caràcters." -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "App password settings" msgstr "Configuració de la contrasenya d'aplicació" @@ -675,18 +683,18 @@ msgstr "Configuració de la contrasenya d'aplicació" #~ msgid "App passwords" #~ msgstr "Contrasenyes de l'aplicació" -#: src/Navigation.tsx:269 +#: src/Navigation.tsx:277 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:707 +#: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" msgstr "Contrasenyes de l'aplicació" -#: src/components/moderation/LabelsOnMeDialog.tsx:151 -#: src/components/moderation/LabelsOnMeDialog.tsx:154 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "Apel·la" -#: src/components/moderation/LabelsOnMeDialog.tsx:236 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Appeal \"{0}\" label" msgstr "Apel·la \"{0}\" etiqueta" @@ -702,7 +710,7 @@ msgstr "Apel·la \"{0}\" etiqueta" #~ msgid "Appeal Decision" #~ msgstr "Decisión de apelación" -#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/components/moderation/LabelsOnMeDialog.tsx:248 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Apel·lació enviada" @@ -722,7 +730,7 @@ msgstr "Apel·la aquesta decisió" #~ msgid "Appeal this decision." #~ msgstr "Apel·la aquesta decisió." -#: src/view/screens/Settings/index.tsx:440 +#: src/view/screens/Settings/index.tsx:441 msgid "Appearance" msgstr "Aparença" @@ -732,8 +740,8 @@ msgid "Apply default recommended feeds" msgstr "Aplica els canals recomanats per defecte" #: src/screens/StarterPack/StarterPackScreen.tsx:610 -msgid "Are you sure you want delete this starter pack?" -msgstr "Segur que vols suprimir aquest starter pack?" +#~ msgid "Are you sure you want delete this starter pack?" +#~ msgstr "Segur que vols suprimir aquest starter pack?" #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" @@ -747,6 +755,10 @@ msgstr "Confirmes que vols eliminar la contrasenya de l'aplicació \"{name}\"?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Estàs segur que vols esborrar aquest missatge? El missatge s'esborrarà per a tu, però no per als altres participants." +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:189 #~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." #~ msgstr "Estàs segur que vols abandonar aquesta conversa? Els missatges s'esborraran per a tu, però no per als altres participants." @@ -763,7 +775,7 @@ msgstr "Confirmes que vols eliminar {0} dels teus canals?" 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:649 +#: src/view/com/composer/Composer.tsx:680 msgid "Are you sure you'd like to discard this draft?" msgstr "Confirmes que vols descartar aquest esborrany?" @@ -793,8 +805,8 @@ msgid "At least 3 characters" msgstr "Almenys 3 caràcters" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:281 -#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/components/moderation/LabelsOnMeDialog.tsx:302 +#: src/components/moderation/LabelsOnMeDialog.tsx:303 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -807,7 +819,6 @@ msgstr "Almenys 3 caràcters" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" @@ -822,7 +833,7 @@ msgstr "Endarrere" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Segons els teus interessos en {interestsText}" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Basics" msgstr "Conceptes bàsics" @@ -830,7 +841,7 @@ msgstr "Conceptes bàsics" msgid "Birthday" msgstr "Aniversari" -#: src/view/screens/Settings/index.tsx:378 +#: src/view/screens/Settings/index.tsx:379 msgid "Birthday:" msgstr "Aniversari:" @@ -878,7 +889,7 @@ msgstr "Bloquejada" msgid "Blocked accounts" msgstr "Comptes bloquejats" -#: src/Navigation.tsx:145 +#: src/Navigation.tsx:148 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Comptes bloquejats" @@ -968,21 +979,21 @@ msgstr "Difumina les imatges i filtra-ho dels canals" msgid "Books" msgstr "Llibres" -#: src/components/FeedInterstitials.tsx:281 +#: src/components/FeedInterstitials.tsx:285 msgid "Browse more accounts on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:411 +#: src/components/FeedInterstitials.tsx:415 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:266 -#: src/components/FeedInterstitials.tsx:396 +#: src/components/FeedInterstitials.tsx:270 +#: src/components/FeedInterstitials.tsx:400 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:289 -#: src/components/FeedInterstitials.tsx:420 +#: src/components/FeedInterstitials.tsx:293 +#: src/components/FeedInterstitials.tsx:424 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -1035,7 +1046,7 @@ msgstr "per tu" msgid "Camera" msgstr "Càmera" -#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Només pot tenir lletres, números, espais, guions i guions baixos. Ha de tenir almenys 4 caràcters i no més de 32." @@ -1044,8 +1055,8 @@ msgstr "Només pot tenir lletres, números, espais, guions i guions baixos. Ha d #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:451 -#: src/view/com/composer/Composer.tsx:457 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -1063,7 +1074,7 @@ msgstr "Només pot tenir lletres, números, espais, guions i guions baixos. Ha d #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:139 #: src/view/screens/Search/Search.tsx:704 -#: src/view/shell/desktop/Search.tsx:218 +#: src/view/shell/desktop/Search.tsx:219 msgid "Cancel" msgstr "Cancel·la" @@ -1103,8 +1114,8 @@ msgstr "Cancel·la la citació de la publicació" msgid "Cancel reactivation and log out" msgstr "Cancel·la la reactivació i surt" -#: src/view/com/modals/ListAddRemoveUsers.tsx:87 -#: src/view/shell/desktop/Search.tsx:214 +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "Cancel·la la cerca" @@ -1120,17 +1131,17 @@ msgstr "Cancel·la obrir la web enllaçada" msgid "Change" msgstr "Canvia" -#: src/view/screens/Settings/index.tsx:372 +#: src/view/screens/Settings/index.tsx:373 msgctxt "action" msgid "Change" msgstr "Canvia" -#: src/view/screens/Settings/index.tsx:719 +#: src/view/screens/Settings/index.tsx:720 msgid "Change handle" msgstr "Canvia l'identificador" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:730 +#: src/view/screens/Settings/index.tsx:731 msgid "Change Handle" msgstr "Canvia l'identificador" @@ -1138,12 +1149,12 @@ msgstr "Canvia l'identificador" msgid "Change my email" msgstr "Canvia el meu correu" -#: src/view/screens/Settings/index.tsx:764 +#: src/view/screens/Settings/index.tsx:765 msgid "Change password" msgstr "Canvia la contrasenya" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:775 +#: src/view/screens/Settings/index.tsx:776 msgid "Change Password" msgstr "Canvia la contrasenya" @@ -1159,7 +1170,7 @@ msgstr "Canvia l'idioma de la publicació a {0}" msgid "Change Your Email" msgstr "Canvia el teu correu" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:321 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -1171,14 +1182,14 @@ msgstr "Xat silenciat" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:326 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" msgstr "Configuració del xat" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:648 +#: src/view/screens/Settings/index.tsx:649 msgid "Chat Settings" msgstr "Configuració del xat" @@ -1269,19 +1280,19 @@ msgstr "Tria qui pot respondre" msgid "Choose your password" msgstr "Tria la teva contrasenya" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clear all legacy storage data" msgstr "Esborra totes les dades antigues emmagatzemades" -#: src/view/screens/Settings/index.tsx:914 +#: src/view/screens/Settings/index.tsx:915 msgid "Clear all legacy storage data (restart after this)" msgstr "Esborra totes les dades antigues emmagatzemades (i després reinicia)" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clear all storage data" msgstr "Esborra totes les dades emmagatzemades" -#: src/view/screens/Settings/index.tsx:926 +#: src/view/screens/Settings/index.tsx:927 msgid "Clear all storage data (restart after this)" msgstr "Esborra totes les dades emmagatzemades (i després reinicia)" @@ -1290,11 +1301,11 @@ msgstr "Esborra totes les dades emmagatzemades (i després reinicia)" msgid "Clear search query" msgstr "Esborra la cerca" -#: src/view/screens/Settings/index.tsx:912 +#: src/view/screens/Settings/index.tsx:913 msgid "Clears all legacy storage data" msgstr "Esborra totes les dades antigues emmagatzemades" -#: src/view/screens/Settings/index.tsx:924 +#: src/view/screens/Settings/index.tsx:925 msgid "Clears all storage data" msgstr "Esborra totes les dades emmagatzemades" @@ -1322,7 +1333,7 @@ msgstr "Clica aquí per a obrir el menú d'etiquetes per {tag}" #~ msgid "Click here to open tag menu for #{tag}" #~ msgstr "Clica aquí per a obrir el menú d'etiquetes per #{tag}" -#: src/components/dms/MessageItem.tsx:237 +#: src/components/dms/MessageItem.tsx:231 msgid "Click to retry failed message" msgstr "Clica aquí per provar d'enviar el missatge de nou" @@ -1343,7 +1354,7 @@ msgstr "Clip 🐴 clop 🐴" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/util/post-embeds/GifEmbed.tsx:195 msgid "Close" msgstr "Tanca" @@ -1398,7 +1409,7 @@ msgstr "Tanca la barra de navegació inferior" msgid "Closes password update alert" msgstr "Tanca l'alerta d'actualització de contrasenya" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:472 msgid "Closes post composer and discards post draft" msgstr "Tanca l'editor de la publicació i descarta l'esborrany" @@ -1406,11 +1417,11 @@ msgstr "Tanca l'editor de la publicació i descarta l'esborrany" msgid "Closes viewer for header image" msgstr "Tanca la visualització de la imatge de la capçalera" -#: src/view/com/notifications/FeedItem.tsx:237 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Collapse list of users" msgstr "Plega la llista d'usuaris" -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:440 msgid "Collapses list of users for a given notification" msgstr "Plega la llista d'usuaris per una notificació concreta" @@ -1424,7 +1435,7 @@ msgstr "Comèdia" msgid "Comics" msgstr "Còmics" -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:267 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Directrius de la comunitat" @@ -1437,7 +1448,7 @@ msgstr "Finalitza el registre i comença a utilitzar el teu compte" msgid "Complete the challenge" msgstr "Completa la prova" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:582 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Crea publicacions de fins a {MAX_GRAPHEME_LENGTH} caràcters" @@ -1462,8 +1473,6 @@ msgstr "Configurat a <0>configuració de moderació." #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/PreferencesFollowingFeed.tsx:307 -#: src/view/screens/PreferencesThreads.tsx:159 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 msgid "Confirm" @@ -1602,12 +1611,12 @@ msgstr "Conversa esborrada" msgid "Cooking" msgstr "Cuina" -#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Copiat" -#: src/view/screens/Settings/index.tsx:264 +#: src/view/screens/Settings/index.tsx:265 msgid "Copied build version to clipboard" msgstr "Número de versió copiat en memòria" @@ -1615,7 +1624,7 @@ msgstr "Número de versió copiat en memòria" #: src/view/com/modals/AddAppPasswords.tsx:80 #: src/view/com/modals/ChangeHandle.tsx:320 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:189 +#: src/view/com/util/forms/PostDropdownBtn.tsx:192 #: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Copiat en memòria" @@ -1624,12 +1633,12 @@ msgstr "Copiat en memòria" msgid "Copied!" msgstr "Copiat" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" msgstr "Copia la contrasenya d'aplicació" -#: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/view/com/modals/AddAppPasswords.tsx:213 +#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Copia" @@ -1642,11 +1651,11 @@ msgstr "Copia {0}" msgid "Copy code" msgstr "Copia el codi" -#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" msgstr "Copia l'enllaç" -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" msgstr "Copia l'enllaç" @@ -1654,8 +1663,8 @@ msgstr "Copia l'enllaç" msgid "Copy link to list" msgstr "Copia l'enllaç a la llista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 msgid "Copy link to post" msgstr "Copia l'enllaç a la publicació" @@ -1668,20 +1677,24 @@ msgstr "Copia l'enllaç a la publicació" msgid "Copy message text" msgstr "Copia el text del missatge" -#: src/view/com/util/forms/PostDropdownBtn.tsx:285 -#: src/view/com/util/forms/PostDropdownBtn.tsx:287 +#: src/view/com/util/forms/PostDropdownBtn.tsx:288 +#: src/view/com/util/forms/PostDropdownBtn.tsx:290 msgid "Copy post text" msgstr "Copia el text de la publicació" -#: src/components/StarterPack/QrCodeDialog.tsx:168 +#: src/components/StarterPack/QrCodeDialog.tsx:171 msgid "Copy QR code" msgstr "Copia el codi QR" -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:272 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Política de drets d'autor" +#: src/view/com/composer/videos/state.ts:31 +msgid "Could not compress video" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "No s'ha pogut sortir del xat" @@ -1719,17 +1732,17 @@ msgstr "Crea" msgid "Create a new account" msgstr "Crea un nou compte" -#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:425 msgid "Create a new Bluesky account" msgstr "Crea un nou compte de Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:151 +#: src/components/StarterPack/QrCodeDialog.tsx:154 msgid "Create a QR code for a starter pack" msgstr "Crea un codi QR per a un starter pack" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:351 msgid "Create a starter pack" msgstr "Crea un starter pack" @@ -1754,7 +1767,7 @@ msgstr "Enlloc d'això, crea un avatar" msgid "Create another" msgstr "Crea'n un altre" -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" msgstr "Crea una contrasenya d'aplicació" @@ -1802,7 +1815,7 @@ msgid "Custom domain" msgstr "Domini personalitzat" #: src/view/screens/Feeds.tsx:760 -#: src/view/screens/Search/Explore.tsx:390 +#: src/view/screens/Search/Explore.tsx:392 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Els canals personalitzats fets per la comunitat et porten noves experiències i t'ajuden a trobar contingut que t'agradarà." @@ -1814,8 +1827,8 @@ msgstr "Personalitza el contingut dels llocs externs." #~ msgid "Danger Zone" #~ msgstr "Zona de perill" -#: src/view/screens/Settings/index.tsx:459 -#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:460 +#: src/view/screens/Settings/index.tsx:486 msgid "Dark" msgstr "Fosc" @@ -1823,7 +1836,7 @@ msgstr "Fosc" msgid "Dark mode" msgstr "Mode fosc" -#: src/view/screens/Settings/index.tsx:472 +#: src/view/screens/Settings/index.tsx:473 msgid "Dark Theme" msgstr "Tema fosc" @@ -1832,15 +1845,15 @@ msgid "Date of birth" msgstr "Data de naixement" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:807 +#: src/view/screens/Settings/index.tsx:808 msgid "Deactivate account" msgstr "Desactiva el compte" -#: src/view/screens/Settings/index.tsx:819 +#: src/view/screens/Settings/index.tsx:820 msgid "Deactivate my account" msgstr "Desactiva el meu compte" -#: src/view/screens/Settings/index.tsx:874 +#: src/view/screens/Settings/index.tsx:875 msgid "Debug Moderation" msgstr "Moderació de depuració" @@ -1852,13 +1865,13 @@ msgstr "Panell de depuració" #: src/screens/StarterPack/StarterPackScreen.tsx:562 #: src/screens/StarterPack/StarterPackScreen.tsx:641 #: src/screens/StarterPack/StarterPackScreen.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Elimina" -#: src/view/screens/Settings/index.tsx:829 +#: src/view/screens/Settings/index.tsx:830 msgid "Delete account" msgstr "Elimina el compte" @@ -1878,8 +1891,8 @@ msgstr "Elimina la contrasenya d'aplicació" msgid "Delete app password?" msgstr "Vols eliminar la contrasenya d'aplicació?" -#: src/view/screens/Settings/index.tsx:891 -#: src/view/screens/Settings/index.tsx:894 +#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:895 msgid "Delete chat declaration record" msgstr "Suprimeix el registre de declaració de xat" @@ -1907,12 +1920,12 @@ msgstr "Elimina el meu compte" #~ msgid "Delete my account…" #~ msgstr "Elimina el meu compte…" -#: src/view/screens/Settings/index.tsx:841 +#: src/view/screens/Settings/index.tsx:842 msgid "Delete My Account…" msgstr "Elimina el meu compte…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:414 -#: src/view/com/util/forms/PostDropdownBtn.tsx:416 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 +#: src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "Elimina la publicació" @@ -1929,7 +1942,7 @@ msgstr "Vols eliminar l'starter pack?" msgid "Delete this list?" msgstr "Vols eliminar aquesta llista?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:428 +#: src/view/com/util/forms/PostDropdownBtn.tsx:431 msgid "Delete this post?" msgstr "Vols eliminar aquesta publicació?" @@ -1941,7 +1954,7 @@ msgstr "Eliminat" msgid "Deleted post." msgstr "Publicació eliminada." -#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:893 msgid "Deletes the chat declaration record" msgstr "Suprimeix el registre de declaració de xat" @@ -1964,11 +1977,11 @@ msgstr "Text alternatiu descriptiu" #~ msgid "Developer Tools" #~ msgstr "Eines de desenvolupador" -#: src/view/com/composer/Composer.tsx:283 +#: src/view/com/composer/Composer.tsx:295 msgid "Did you want to say anything?" msgstr "Vols dir alguna cosa?" -#: src/view/screens/Settings/index.tsx:478 +#: src/view/screens/Settings/index.tsx:479 msgid "Dim" msgstr "Tènue" @@ -2005,7 +2018,7 @@ msgstr "Desactiva la retroalimentació hàptica" msgid "Disabled" msgstr "Deshabilitat" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:682 msgid "Discard" msgstr "Descarta" @@ -2013,7 +2026,7 @@ msgstr "Descarta" #~ msgid "Discard draft" #~ msgstr "Descarta l'esborrany" -#: src/view/com/composer/Composer.tsx:648 +#: src/view/com/composer/Composer.tsx:679 msgid "Discard draft?" msgstr "Vols descartar l'esborrany?" @@ -2031,7 +2044,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "Descobreix nous canals personalitzats" -#: src/view/screens/Search/Explore.tsx:388 +#: src/view/screens/Search/Explore.tsx:390 msgid "Discover new feeds" msgstr "Descobreix nous canals" @@ -2088,22 +2101,20 @@ msgstr "Domini verificat!" #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesFollowingFeed.tsx:310 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Fet" #: src/view/com/modals/EditImage.tsx:334 -#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" msgstr "Fet" @@ -2116,7 +2127,7 @@ msgstr "Fet{extraText}" #~ msgid "Double tap to sign in" #~ msgstr "Fes doble toc per a iniciar la sessió" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319 msgid "Download Bluesky" msgstr "Descarrega Bluesky" @@ -2190,7 +2201,7 @@ msgctxt "action" msgid "Edit" msgstr "Edita" -#: src/view/com/util/UserAvatar.tsx:325 +#: src/view/com/util/UserAvatar.tsx:337 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "Edita l'avatar" @@ -2212,7 +2223,7 @@ msgstr "Edita els detalls de la llista" msgid "Edit Moderation List" msgstr "Edita la llista de moderació" -#: src/Navigation.tsx:274 +#: src/Navigation.tsx:282 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -2227,12 +2238,12 @@ msgstr "Edita el meu perfil" msgid "Edit People" msgstr "Edita les persones" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "Edita el perfil" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "Edita el perfil" @@ -2250,7 +2261,7 @@ msgstr "Edita l'starter pack" msgid "Edit User List" msgstr "Edita la llista d'usuaris" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Edit who can reply" msgstr "Edita qui pot respondre" @@ -2262,7 +2273,7 @@ msgstr "Edita el teu nom mostrat" msgid "Edit your profile description" msgstr "Edita la descripció del teu perfil" -#: src/Navigation.tsx:343 +#: src/Navigation.tsx:356 msgid "Edit your starter pack" msgstr "Edita el teu starter pack" @@ -2301,7 +2312,7 @@ msgstr "Correu actualitzat" msgid "Email verified" msgstr "Correu verificat" -#: src/view/screens/Settings/index.tsx:350 +#: src/view/screens/Settings/index.tsx:351 msgid "Email:" msgstr "Correu:" @@ -2310,8 +2321,8 @@ msgid "Embed HTML code" msgstr "Incrusta el codi HTML" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:324 -#: src/view/com/util/forms/PostDropdownBtn.tsx:326 +#: src/view/com/util/forms/PostDropdownBtn.tsx:327 +#: src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "Incrusta la publicació" @@ -2345,11 +2356,16 @@ msgstr "Habilita els continguts externs" #~ msgid "Enable External Media" #~ msgstr "Habilita el contingut extern" -#: src/view/screens/PreferencesExternalEmbeds.tsx:76 +#: src/view/screens/PreferencesExternalEmbeds.tsx:73 msgid "Enable media players for" msgstr "Habilita reproductors de contingut per" -#: src/view/screens/PreferencesFollowingFeed.tsx:146 +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 msgid "Enable this setting to only see replies between people you follow." msgstr "Activa aquesta opció per a veure només les respostes entre els comptes que segueixes." @@ -2375,7 +2391,7 @@ msgstr "Fi del canal" msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:160 +#: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "Posa un nom a aquesta contrasenya d'aplicació" @@ -2455,7 +2471,7 @@ msgid "Everybody" msgstr "Tothom" #: src/components/WhoCanReply.tsx:69 -#: src/components/WhoCanReply.tsx:240 +#: src/components/WhoCanReply.tsx:241 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "Tothom pot respondre" @@ -2491,8 +2507,8 @@ msgstr "Surt del procés de retallar la imatge" msgid "Exits image view" msgstr "Surt de la visualització de la imatge" -#: src/view/com/modals/ListAddRemoveUsers.tsx:88 -#: src/view/shell/desktop/Search.tsx:215 +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +#: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "Surt de la cerca" @@ -2504,7 +2520,7 @@ msgstr "Surt de la cerca" msgid "Expand alt text" msgstr "Expandeix el text alternatiu" -#: src/view/com/notifications/FeedItem.tsx:238 +#: src/view/com/notifications/FeedItem.tsx:239 msgid "Expand list of users" msgstr "Expandeix la llista d'usuaris" @@ -2513,6 +2529,10 @@ msgstr "Expandeix la llista d'usuaris" msgid "Expand or collapse the full post you are replying to" msgstr "Expandeix o replega la publicació completa a la qual estàs responent" +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." msgstr "Contingut explícit o potencialment pertorbador." @@ -2521,12 +2541,12 @@ msgstr "Contingut explícit o potencialment pertorbador." msgid "Explicit sexual images." msgstr "Imatges sexuals explícites." -#: src/view/screens/Settings/index.tsx:787 +#: src/view/screens/Settings/index.tsx:788 msgid "Export my data" msgstr "Exporta les meves dades" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:798 +#: src/view/screens/Settings/index.tsx:799 msgid "Export My Data" msgstr "Exporta les meves dades" @@ -2536,17 +2556,17 @@ msgid "External Media" msgstr "Contingut extern" #: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/view/screens/PreferencesExternalEmbeds.tsx:64 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:293 +#: src/Navigation.tsx:301 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:680 +#: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" msgstr "Preferència del contingut extern" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "External media settings" msgstr "Configuració del contingut extern" @@ -2576,8 +2596,8 @@ 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/view/screens/Search/Explore.tsx:426 -#: src/view/screens/Search/Explore.tsx:454 +#: src/view/screens/Search/Explore.tsx:428 +#: src/view/screens/Search/Explore.tsx:456 msgid "Failed to load feeds preferences" msgstr "No s'han pogut carregar les preferències dels canals" @@ -2599,20 +2619,24 @@ msgstr "No s'han pogut carregar els missatges anteriors" #~ msgid "Failed to load recommended feeds" #~ msgstr "Error en carregar els canals recomanats" -#: src/view/screens/Search/Explore.tsx:419 -#: src/view/screens/Search/Explore.tsx:447 +#: src/view/screens/Search/Explore.tsx:421 +#: src/view/screens/Search/Explore.tsx:449 msgid "Failed to load suggested feeds" msgstr "No s'han pogut carregar els canals suggerits" -#: src/view/screens/Search/Explore.tsx:377 +#: src/view/screens/Search/Explore.tsx:379 msgid "Failed to load suggested follows" msgstr "No s'han pogut carregar els comptes suggerits" -#: src/view/com/lightbox/Lightbox.tsx:86 +#: src/view/com/lightbox/Lightbox.tsx:90 msgid "Failed to save image: {0}" msgstr "Error en desar la imatge: {0}" -#: src/components/dms/MessageItem.tsx:230 +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + +#: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "No s'ha pogut enviar" @@ -2620,12 +2644,12 @@ msgstr "No s'ha pogut enviar" #~ msgid "Failed to send message(s)." #~ msgstr "Error en enviar missatge(s)." -#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: src/components/moderation/LabelsOnMeDialog.tsx:244 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "No s'ha pogut enviar l'apel·lació, torna-ho a provar." -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:181 msgid "Failed to toggle thread mute, please try again" msgstr "No s'ha pogut desactivar el silenci del fil; torneu-ho a provar" @@ -2638,7 +2662,7 @@ msgstr "No s'han pogut actualitzar els canals" msgid "Failed to update settings" msgstr "No s'ha pogut actualitzar la configuració" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:217 msgid "Feed" msgstr "Canal" @@ -2660,19 +2684,19 @@ msgid "Feed toggle" msgstr "Alterna el canal" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:345 +#: src/view/shell/Drawer.tsx:332 msgid "Feedback" msgstr "Comentaris" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:336 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 #: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:493 -#: src/view/shell/Drawer.tsx:494 +#: src/view/shell/Drawer.tsx:483 +#: src/view/shell/Drawer.tsx:484 msgid "Feeds" msgstr "Canals" @@ -2734,7 +2758,7 @@ msgstr "Troba publicacions i usuaris a Bluesky" #~ msgid "Finding similar accounts..." #~ msgstr "Troba comptes similars…" -#: src/view/screens/PreferencesFollowingFeed.tsx:110 +#: src/view/screens/PreferencesFollowingFeed.tsx:108 msgid "Fine-tune the content you see on your Following feed." msgstr "Ajusta el contingut que veus al teu canal Seguint." @@ -2742,7 +2766,7 @@ msgstr "Ajusta el contingut que veus al teu canal Seguint." #~ msgid "Fine-tune the content you see on your home screen." #~ msgstr "Ajusta el contingut que es veu a la teva pantalla d'inici." -#: src/view/screens/PreferencesThreads.tsx:60 +#: src/view/screens/PreferencesThreads.tsx:54 msgid "Fine-tune the discussion threads." msgstr "Ajusta els fils de debat." @@ -2772,7 +2796,7 @@ msgid "Flip vertically" msgstr "Gira verticalment" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:341 +#: src/components/ProfileCard.tsx:343 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2817,7 +2841,7 @@ msgstr "Segueix-los a tots" msgid "Follow Back" msgstr "Segueix" -#: src/view/screens/Search/Explore.tsx:333 +#: src/view/screens/Search/Explore.tsx:335 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "Segueix més comptes per connectar-te als teus interessos i construir la teva xarxa." @@ -2834,22 +2858,22 @@ msgstr "Segueix més comptes per connectar-te als teus interessos i construir la #~ msgstr "Seguit per" #: src/view/com/profile/ProfileCard.tsx:190 -msgid "Followed by {0}" -msgstr "Seguit per {0}" +#~ msgid "Followed by {0}" +#~ msgstr "Seguit per {0}" -#: src/components/KnownFollowers.tsx:223 +#: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "Seguit per <0>{0}" -#: src/components/KnownFollowers.tsx:209 +#: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Seguit per <0>{0} i {1, plural, one {# altre} other {# altres}}" -#: src/components/KnownFollowers.tsx:196 +#: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" msgstr "Seguit per <0>{0} i <1>{1}" -#: src/components/KnownFollowers.tsx:178 +#: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Seguit per <0>{0}, <1>{1}, i {2, plural, one {# altre} other {# altres}}" @@ -2857,15 +2881,15 @@ msgstr "Seguit per <0>{0}, <1>{1}, i {2, plural, one {# altre} other {# msgid "Followed users" msgstr "Usuaris seguits" -#: src/view/screens/PreferencesFollowingFeed.tsx:153 +#: src/view/screens/PreferencesFollowingFeed.tsx:152 msgid "Followed users only" msgstr "Només els usuaris seguits" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:198 msgid "followed you" msgstr "et segueix" -#: src/view/com/notifications/FeedItem.tsx:195 +#: src/view/com/notifications/FeedItem.tsx:196 msgid "followed you back" msgstr "" @@ -2874,7 +2898,7 @@ msgstr "" msgid "Followers" msgstr "Seguidors" -#: src/Navigation.tsx:182 +#: src/Navigation.tsx:185 msgid "Followers of @{0} that you know" msgstr "Seguidors de @{0} que coneixes" @@ -2888,7 +2912,7 @@ msgstr "Seguidors que coneixes" #~ msgstr "seguint" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:335 +#: src/components/ProfileCard.tsx:337 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2900,7 +2924,7 @@ msgstr "Seguidors que coneixes" msgid "Following" msgstr "Seguint" -#: src/components/ProfileCard.tsx:301 +#: src/components/ProfileCard.tsx:303 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Seguint {0}" @@ -2909,13 +2933,13 @@ msgstr "Seguint {0}" msgid "Following {name}" msgstr "Seguint a {name}" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Following feed preferences" msgstr "Preferències del canal Seguint" -#: src/Navigation.tsx:280 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:583 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesFollowingFeed.tsx:105 +#: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "Preferències del canal Seguint" @@ -2940,7 +2964,7 @@ msgstr "Menjar" msgid "For security reasons, we'll need to send a confirmation code to your email address." msgstr "Per motius de seguretat necessitem enviar-te un codi de confirmació al teu correu." -#: src/view/com/modals/AddAppPasswords.tsx:232 +#: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Per motius de seguretat no podràs tornar-la a veure. Si perds aquesta contrasenya necessitaràs generar-ne una de nova." @@ -2973,7 +2997,7 @@ msgstr "Publica contingut no desitjat freqüentment" msgid "From @{sanitizedAuthor}" msgstr "De @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:236 +#: src/view/com/posts/FeedItem.tsx:242 msgctxt "from-feed" msgid "From <0/>" msgstr "De <0/>" @@ -2986,6 +3010,10 @@ msgstr "Galeria" msgid "Generate a starter pack" msgstr "Genera un starter pack" +#: src/view/shell/Drawer.tsx:336 +msgid "Get help" +msgstr "" + #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" msgstr "Comença" @@ -3033,12 +3061,12 @@ msgid "Go Back" msgstr "Ves enrere" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -msgid "Go back to previous screen" -msgstr "" +#~ msgid "Go back to previous screen" +#~ msgstr "" #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/components/ReportDialog/SubmitView.tsx:121 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 @@ -3103,7 +3131,7 @@ msgstr "Hàptics" msgid "Harassment, trolling, or intolerance" msgstr "Assetjament, troleig o intolerància" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:316 msgid "Hashtag" msgstr "Etiqueta" @@ -3120,7 +3148,7 @@ msgid "Having trouble?" msgstr "Tens problemes?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:355 +#: src/view/shell/Drawer.tsx:345 msgid "Help" msgstr "Ajuda" @@ -3140,7 +3168,7 @@ msgstr "Ajuda la gent a saber que no ets un bot penjant una imatge o creant un a #~ msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." #~ msgstr "Aquí tens uns quants canals d'actualitat basats en els teus interessos: {interestsText}. Pots seguir-ne tants com vulguis." -#: src/view/com/modals/AddAppPasswords.tsx:203 +#: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "Aquí tens la teva contrasenya d'aplicació." @@ -3151,17 +3179,17 @@ msgstr "Aquí tens la teva contrasenya d'aplicació." #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:445 msgid "Hide" msgstr "Amaga" -#: src/view/com/notifications/FeedItem.tsx:444 +#: src/view/com/notifications/FeedItem.tsx:447 msgctxt "action" msgid "Hide" msgstr "Amaga" -#: src/view/com/util/forms/PostDropdownBtn.tsx:387 -#: src/view/com/util/forms/PostDropdownBtn.tsx:389 +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 msgid "Hide post" msgstr "Amaga l'entrada" @@ -3170,11 +3198,11 @@ msgstr "Amaga l'entrada" msgid "Hide the content" msgstr "Amaga el contingut" -#: src/view/com/util/forms/PostDropdownBtn.tsx:439 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide this post?" msgstr "Vols amagar aquesta entrada?" -#: src/view/com/notifications/FeedItem.tsx:435 +#: src/view/com/notifications/FeedItem.tsx:438 msgid "Hide user list" msgstr "Amaga la llista d'usuaris" @@ -3210,12 +3238,12 @@ 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/Navigation.tsx:519 -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:552 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:425 -#: src/view/shell/Drawer.tsx:426 +#: src/view/shell/Drawer.tsx:415 +#: src/view/shell/Drawer.tsx:416 msgid "Home" msgstr "Inici" @@ -3281,7 +3309,7 @@ msgstr "Si encara no ets un adult segons les lleis del teu país, el teu tutor l msgid "If you delete this list, you won't be able to recover it." msgstr "Si esborres aquesta llista no la podràs recuperar." -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 msgid "If you remove this post, you won't be able to recover it." msgstr "Si esborres aquesta publicació no la podràs recuperar." @@ -3310,7 +3338,7 @@ msgstr "Text alternatiu de la imatge" #~ msgid "Image options" #~ msgstr "Opcions de la imatge" -#: src/components/StarterPack/ShareDialog.tsx:75 +#: src/components/StarterPack/ShareDialog.tsx:76 msgid "Image saved to your camera roll!" msgstr "La imatge s'ha desat a la teva galeria!" @@ -3338,7 +3366,7 @@ msgstr "Introdueix el codi de confirmació per a eliminar el compte" #~ msgid "Input invite code to proceed" #~ msgstr "Introdueix el codi d'invitació per a continuar" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" msgstr "Introdueix un nom per la contrasenya d'aplicació" @@ -3431,7 +3459,7 @@ msgstr "Codis d'invitació: {0} disponible" msgid "Invite codes: 1 available" msgstr "Codis d'invitació: 1 disponible" -#: src/components/StarterPack/ShareDialog.tsx:96 +#: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" msgstr "Convida a gent a aquest starter pack!" @@ -3455,8 +3483,8 @@ msgstr "Ara només ets tu! Afegeix més persones al teu starter pack cercant a d msgid "Jobs" msgstr "Feines" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:432 #: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" @@ -3508,11 +3536,11 @@ msgstr "Les etiquetes són anotacions sobre els usuaris i el contingut. Poden se #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "S'han posat etiquetes a aquest {labelTarget}" -#: src/components/moderation/LabelsOnMeDialog.tsx:79 +#: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "Etiquetes al teu compte" -#: src/components/moderation/LabelsOnMeDialog.tsx:81 +#: src/components/moderation/LabelsOnMeDialog.tsx:82 msgid "Labels on your content" msgstr "Etiquetes al teu contingut" @@ -3520,16 +3548,16 @@ msgstr "Etiquetes al teu contingut" msgid "Language selection" msgstr "Tria l'idioma" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Language settings" msgstr "Configuració d'idioma" -#: src/Navigation.tsx:155 +#: src/Navigation.tsx:158 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Configuració d'idioma" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Languages" msgstr "Idiomes" @@ -3597,7 +3625,7 @@ msgstr "Sortint de Bluesky" msgid "left to go." msgstr "queda." -#: src/view/screens/Settings/index.tsx:309 +#: src/view/screens/Settings/index.tsx:310 msgid "Legacy storage cleared, you need to restart the app now." msgstr "L'emmagatzematge heretat s'ha esborrat, cal que reinicieu l'aplicació ara." @@ -3620,7 +3648,7 @@ msgstr "Som-hi!" #~ msgid "Library" #~ msgstr "Biblioteca" -#: src/view/screens/Settings/index.tsx:453 +#: src/view/screens/Settings/index.tsx:454 msgid "Light" msgstr "Clar" @@ -3638,13 +3666,13 @@ msgid "Like 10 posts to train the Discover feed" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Like this feed" msgstr "Fes m'agrada a aquest canal" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:219 -#: src/Navigation.tsx:224 +#: src/Navigation.tsx:222 +#: src/Navigation.tsx:227 msgid "Liked by" msgstr "Li ha agradat a" @@ -3668,7 +3696,7 @@ msgstr "Li ha agradat a" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "Li ha agradat a {likeCount} {0}" -#: src/view/com/notifications/FeedItem.tsx:201 +#: src/view/com/notifications/FeedItem.tsx:202 msgid "liked your custom feed" msgstr "els ha agradat el teu canal personalitzat" @@ -3676,7 +3704,7 @@ msgstr "els ha agradat el teu canal personalitzat" #~ msgid "liked your custom feed{0}" #~ msgstr "i ha agradat el teu canal personalitzat{0}" -#: src/view/com/notifications/FeedItem.tsx:185 +#: src/view/com/notifications/FeedItem.tsx:186 msgid "liked your post" msgstr "li ha agradat la teva publicació" @@ -3688,7 +3716,7 @@ msgstr "M'agrades" msgid "Likes on this post" msgstr "M'agrades a aquesta publicació" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:191 msgid "List" msgstr "Llista" @@ -3725,12 +3753,12 @@ msgstr "Llista desbloquejada" msgid "List unmuted" msgstr "Llista no silenciada" -#: src/Navigation.tsx:125 +#: src/Navigation.tsx:128 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 -#: src/view/shell/Drawer.tsx:509 -#: src/view/shell/Drawer.tsx:510 +#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:500 msgid "Lists" msgstr "Llistes" @@ -3738,7 +3766,7 @@ msgstr "Llistes" msgid "Lists blocking this user:" msgstr "Llistes que bloquegen aquest usuari:" -#: src/view/screens/Search/Explore.tsx:130 +#: src/view/screens/Search/Explore.tsx:131 msgid "Load more" msgstr "Carrega'n més" @@ -3747,21 +3775,21 @@ msgstr "Carrega'n més" #~ msgid "Load more posts" #~ msgstr "Carrega més publicacions" -#: src/view/screens/Search/Explore.tsx:218 +#: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" msgstr "Carrega més canals suggerits" -#: src/view/screens/Search/Explore.tsx:216 +#: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" msgstr "Carrega més suggerencies d'usuaris per seguir" -#: src/view/screens/Notifications.tsx:184 +#: src/view/screens/Notifications.tsx:219 msgid "Load new notifications" msgstr "Carrega noves notificacions" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:494 +#: src/view/screens/ProfileFeed.tsx:495 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Carrega noves publicacions" @@ -3774,7 +3802,7 @@ msgstr "Carregant…" #~ msgid "Local dev server" #~ msgstr "Servidor de desenvolupament local" -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:247 msgid "Log" msgstr "Registre" @@ -3855,7 +3883,7 @@ msgstr "Marca com a llegit" msgid "Media" msgstr "Contingut" -#: src/components/WhoCanReply.tsx:275 +#: src/components/WhoCanReply.tsx:276 msgid "mentioned users" msgstr "usuaris mencionats" @@ -3881,7 +3909,7 @@ msgstr "Missatge esborrat" #~ msgid "Message from server" #~ msgstr "Missatge del servidor" -#: src/view/com/posts/FeedErrorMessage.tsx:200 +#: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "Missatge del servidor: {0}" @@ -3898,7 +3926,7 @@ msgstr "El missatge és massa llarg" msgid "Message settings" msgstr "Configuració dels missatges" -#: src/Navigation.tsx:534 +#: src/Navigation.tsx:547 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3913,9 +3941,9 @@ msgstr "Missatges" msgid "Misleading Account" msgstr "Compte enganyós" -#: src/Navigation.tsx:130 +#: src/Navigation.tsx:133 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:562 +#: src/view/screens/Settings/index.tsx:563 msgid "Moderation" msgstr "Moderació" @@ -3951,16 +3979,16 @@ msgstr "S'ha actualitzat la llista de moderació" msgid "Moderation lists" msgstr "Llistes de moderació" -#: src/Navigation.tsx:135 +#: src/Navigation.tsx:138 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Llistes de moderació" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Moderation settings" msgstr "Configuració de moderació" -#: src/Navigation.tsx:234 +#: src/Navigation.tsx:237 msgid "Moderation states" msgstr "Estats de moderació" @@ -3989,7 +4017,7 @@ msgstr "Més opcions" #~ msgid "More post options" #~ msgstr "Més opcions de publicació" -#: src/view/screens/PreferencesThreads.tsx:82 +#: src/view/screens/PreferencesThreads.tsx:76 msgid "Most-liked replies first" msgstr "Respostes amb més m'agrada primer" @@ -4068,13 +4096,13 @@ msgstr "Silencia aquesta paraula en el text de les publicacions i a les etiquete msgid "Mute this word in tags only" msgstr "Silencia aquesta paraula només a les etiquetes" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:371 msgid "Mute thread" msgstr "Silencia el fil de debat" -#: src/view/com/util/forms/PostDropdownBtn.tsx:378 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 +#: src/view/com/util/forms/PostDropdownBtn.tsx:381 +#: src/view/com/util/forms/PostDropdownBtn.tsx:383 msgid "Mute words & tags" msgstr "Silencia paraules i etiquetes" @@ -4086,7 +4114,7 @@ msgstr "Silenciada" msgid "Muted accounts" msgstr "Comptes silenciats" -#: src/Navigation.tsx:140 +#: src/Navigation.tsx:143 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Comptes silenciats" @@ -4120,11 +4148,11 @@ msgstr "Els meus canals" msgid "My Profile" msgstr "El meu perfil" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "My saved feeds" msgstr "Els meus canals desats" -#: src/view/screens/Settings/index.tsx:623 +#: src/view/screens/Settings/index.tsx:624 msgid "My Saved Feeds" msgstr "Els meus canals desats" @@ -4132,7 +4160,7 @@ msgstr "Els meus canals desats" #~ msgid "my-server.com" #~ msgstr "el-meu-servidor.com" -#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/AddAppPasswords.tsx:174 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Nom" @@ -4167,7 +4195,7 @@ msgstr "Vés a l'starter pack" msgid "Navigates to the next screen" msgstr "Navega a la pantalla següent" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:78 msgid "Navigates to your profile" msgstr "Navega al teu perfil" @@ -4206,7 +4234,7 @@ msgstr "Nova" msgid "New" msgstr "Nova" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" @@ -4234,9 +4262,9 @@ msgid "New post" msgstr "Nova publicació" #: src/view/screens/Feeds.tsx:581 -#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Notifications.tsx:228 #: src/view/screens/Profile.tsx:478 -#: src/view/screens/ProfileFeed.tsx:428 +#: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:278 @@ -4260,7 +4288,7 @@ msgstr "Diàleg d'informació d'usuari nou" msgid "New User List" msgstr "Nova llista d'usuaris" -#: src/view/screens/PreferencesThreads.tsx:79 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Newest replies first" msgstr "Les respostes més noves primer" @@ -4295,16 +4323,16 @@ msgstr "Següent" msgid "Next image" msgstr "Següent imatge" -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:199 -#: src/view/screens/PreferencesFollowingFeed.tsx:234 -#: src/view/screens/PreferencesFollowingFeed.tsx:271 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:198 +#: src/view/screens/PreferencesFollowingFeed.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:270 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "No" msgstr "No" -#: src/view/screens/ProfileFeed.tsx:562 +#: src/view/screens/ProfileFeed.tsx:564 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Cap descripció" @@ -4322,7 +4350,7 @@ msgstr "No s'han trobat GIF destacats. Pot haver-hi un problema amb Tenor." msgid "No feeds found. Try searching for something else." msgstr "No s'han trobat canals. Intenta cercar una altra cosa." -#: src/components/ProfileCard.tsx:321 +#: src/components/ProfileCard.tsx:323 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "Ja no segueixes a {0}" @@ -4339,7 +4367,7 @@ msgstr "Encara no tens cap missatge" msgid "No more conversations to show" msgstr "No hi ha més converses per a mostrar" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:122 msgid "No notifications yet!" msgstr "Encara no tens cap notificació" @@ -4371,7 +4399,7 @@ msgstr "No s'han trobat resultats" msgid "No results found for \"{query}\"" msgstr "No s'han trobat resultats per \"{query}\"" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 @@ -4417,7 +4445,7 @@ msgstr "Nuesa no sexual" #~ msgid "Not Applicable." #~ msgstr "No aplicable." -#: src/Navigation.tsx:120 +#: src/Navigation.tsx:123 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "No s'ha trobat" @@ -4428,7 +4456,7 @@ msgid "Not right now" msgstr "Ara mateix no" #: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/forms/PostDropdownBtn.tsx:459 #: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "Nota sobre compartir" @@ -4441,6 +4469,19 @@ msgstr "Nota: Bluesky és una xarxa oberta i pública. Aquesta configuració tan msgid "Nothing here" msgstr "Aquí no hi ha res" +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:331 +#: src/view/screens/Notifications.tsx:119 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "" + #: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "Sons de les notificacions" @@ -4449,13 +4490,14 @@ msgstr "Sons de les notificacions" msgid "Notification Sounds" msgstr "Sons de les notificacions" -#: src/Navigation.tsx:529 -#: src/view/screens/Notifications.tsx:132 -#: src/view/screens/Notifications.tsx:169 +#: src/Navigation.tsx:542 +#: src/view/screens/Notifications.tsx:145 +#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:203 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 -#: src/view/shell/Drawer.tsx:457 -#: src/view/shell/Drawer.tsx:458 +#: src/view/shell/Drawer.tsx:447 +#: src/view/shell/Drawer.tsx:448 msgid "Notifications" msgstr "Notificacions" @@ -4463,7 +4505,7 @@ msgstr "Notificacions" msgid "now" msgstr "ara" -#: src/components/dms/MessageItem.tsx:175 +#: src/components/dms/MessageItem.tsx:169 msgid "Now" msgstr "Ara" @@ -4497,7 +4539,7 @@ msgstr "Ostres!" msgid "Oh no! Something went wrong." msgstr "Ostres! Alguna cosa ha fallat." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 msgid "OK" msgstr "D'acord" @@ -4505,7 +4547,7 @@ msgstr "D'acord" msgid "Okay" msgstr "D'acord" -#: src/view/screens/PreferencesThreads.tsx:78 +#: src/view/screens/PreferencesThreads.tsx:72 msgid "Oldest replies first" msgstr "Respostes més antigues primer" @@ -4517,7 +4559,7 @@ msgstr "en" msgid "on {str}" msgstr "en {str}" -#: src/view/screens/Settings/index.tsx:257 +#: src/view/screens/Settings/index.tsx:258 msgid "Onboarding reset" msgstr "Restableix la incorporació" @@ -4525,7 +4567,7 @@ msgstr "Restableix la incorporació" msgid "Onboarding tour step {0}: {1}" msgstr "" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:534 msgid "One or more images is missing alt text." msgstr "Falta el text alternatiu a una o més imatges." @@ -4533,7 +4575,7 @@ msgstr "Falta el text alternatiu a una o més imatges." msgid "Only .jpg and .png files are supported" msgstr "Només s'accepten fitxers .jpg i .png" -#: src/components/WhoCanReply.tsx:244 +#: src/components/WhoCanReply.tsx:245 msgid "Only {0} can reply" msgstr "Només {0} pot respondre" @@ -4553,6 +4595,7 @@ msgstr "Ostres, alguna cosa ha anat malament!" #: src/components/StarterPack/ProfileStarterPacks.tsx:304 #: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/NotificationsSettings.tsx:45 #: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Ostres!" @@ -4578,16 +4621,16 @@ msgstr "Obre el creador d'avatars" msgid "Open conversation options" msgstr "Obre les opcions de les converses" -#: src/view/com/composer/Composer.tsx:632 -#: src/view/com/composer/Composer.tsx:633 +#: src/view/com/composer/Composer.tsx:663 +#: src/view/com/composer/Composer.tsx:664 msgid "Open emoji picker" msgstr "Obre el selector d'emojis" -#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileFeed.tsx:297 msgid "Open feed options menu" msgstr "Obre el menú de les opcions del canal" -#: src/view/screens/Settings/index.tsx:737 +#: src/view/screens/Settings/index.tsx:738 msgid "Open links with in-app browser" msgstr "Obre els enllaços al navegador de l'aplicació" @@ -4607,7 +4650,7 @@ msgstr "Obre la configuració de les paraules i etiquetes silenciades" msgid "Open navigation" msgstr "Obre la navegació" -#: src/view/com/util/forms/PostDropdownBtn.tsx:247 +#: src/view/com/util/forms/PostDropdownBtn.tsx:250 msgid "Open post options menu" msgstr "Obre el menú de les opcions de publicació" @@ -4615,12 +4658,12 @@ msgstr "Obre el menú de les opcions de publicació" msgid "Open starter pack menu" msgstr "Obre el menú de l'starter pack" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Open storybook page" msgstr "Obre la pàgina d'historial" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Open system log" msgstr "Obre el registre del sistema" @@ -4632,7 +4675,7 @@ msgstr "Obre {numItems} opcions" msgid "Opens a dialog to choose who can reply to this thread" msgstr "Obre un diàleg per triar qui pot respondre a aquest fil" -#: src/view/screens/Settings/index.tsx:511 +#: src/view/screens/Settings/index.tsx:512 msgid "Opens accessibility settings" msgstr "Obre la configuració d'accessibilitat" @@ -4648,7 +4691,7 @@ msgstr "Obre detalls addicionals per una entrada de depuració" msgid "Opens camera on device" msgstr "Obre la càmera del dispositiu" -#: src/view/screens/Settings/index.tsx:640 +#: src/view/screens/Settings/index.tsx:641 msgid "Opens chat settings" msgstr "Obre la configuració del xat" @@ -4656,7 +4699,7 @@ msgstr "Obre la configuració del xat" msgid "Opens composer" msgstr "Obre el compositor" -#: src/view/screens/Settings/index.tsx:532 +#: src/view/screens/Settings/index.tsx:533 msgid "Opens configurable language settings" msgstr "Obre la configuració d'idioma" @@ -4668,7 +4711,7 @@ msgstr "Obre la galeria fotogràfica del dispositiu" #~ msgid "Opens editor for profile display name, avatar, background image, and description" #~ msgstr "Obre l'editor del perfil per a editar el nom, avatar, imatge de fons i descripció" -#: src/view/screens/Settings/index.tsx:672 +#: src/view/screens/Settings/index.tsx:673 msgid "Opens external embeds settings" msgstr "Obre la configuració per les incrustacions externes" @@ -4702,11 +4745,11 @@ msgstr "Obre el diàleg per a triar GIF" msgid "Opens list of invite codes" msgstr "Obre la llista de codis d'invitació" -#: src/view/screens/Settings/index.tsx:809 +#: src/view/screens/Settings/index.tsx:810 msgid "Opens modal for account deactivation confirmation" msgstr "Obre el modal per a la confirmació de la desactivació del compte" -#: src/view/screens/Settings/index.tsx:831 +#: src/view/screens/Settings/index.tsx:832 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "Obre el modal per a la confirmació de l'eliminació del compte. Requereix codi de correu electrònic" @@ -4714,19 +4757,19 @@ msgstr "Obre el modal per a la confirmació de l'eliminació del compte. Requere #~ msgid "Opens modal for account deletion confirmation. Requires email code." #~ msgstr "Obre el modal per a confirmar l'eliminació del compte. Requereix un codi de correu" -#: src/view/screens/Settings/index.tsx:766 +#: src/view/screens/Settings/index.tsx:767 msgid "Opens modal for changing your Bluesky password" msgstr "Obre el modal per a canviar la contrasenya de Bluesky" -#: src/view/screens/Settings/index.tsx:721 +#: src/view/screens/Settings/index.tsx:722 msgid "Opens modal for choosing a new Bluesky handle" msgstr "Obre el modal per a triar un nou identificador de Bluesky" -#: src/view/screens/Settings/index.tsx:789 +#: src/view/screens/Settings/index.tsx:790 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Obre el modal per a baixar les dades del vostre compte Bluesky (repositori)" -#: src/view/screens/Settings/index.tsx:1009 +#: src/view/screens/Settings/index.tsx:1010 msgid "Opens modal for email verification" msgstr "Obre el modal per a verificar el correu" @@ -4734,7 +4777,7 @@ msgstr "Obre el modal per a verificar el correu" msgid "Opens modal for using custom domain" msgstr "Obre el modal per a utilitzar un domini personalitzat" -#: src/view/screens/Settings/index.tsx:557 +#: src/view/screens/Settings/index.tsx:558 msgid "Opens moderation settings" msgstr "Obre la configuració de la moderació" @@ -4747,11 +4790,11 @@ msgstr "Obre el formulari de restabliment de la contrasenya" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "Obre pantalla per a editar els canals desats" -#: src/view/screens/Settings/index.tsx:618 +#: src/view/screens/Settings/index.tsx:619 msgid "Opens screen with all saved feeds" msgstr "Obre la pantalla amb tots els canals desats" -#: src/view/screens/Settings/index.tsx:699 +#: src/view/screens/Settings/index.tsx:700 msgid "Opens the app password settings" msgstr "Obre la configuració de les contrasenyes d'aplicació" @@ -4759,7 +4802,7 @@ msgstr "Obre la configuració de les contrasenyes d'aplicació" #~ msgid "Opens the app password settings page" #~ msgstr "Obre la pàgina de configuració de les contrasenyes d'aplicació" -#: src/view/screens/Settings/index.tsx:575 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens the Following feed preferences" msgstr "Obre les preferències del canal de Seguint" @@ -4775,30 +4818,34 @@ msgstr "Obre la web enllaçada" #~ msgid "Opens the message settings page" #~ msgstr "Obre la pàgina de configuració dels missatges" -#: src/view/screens/Settings/index.tsx:862 -#: src/view/screens/Settings/index.tsx:872 +#: src/view/screens/Settings/index.tsx:863 +#: src/view/screens/Settings/index.tsx:873 msgid "Opens the storybook page" msgstr "Obre la pàgina de l'historial" -#: src/view/screens/Settings/index.tsx:850 +#: src/view/screens/Settings/index.tsx:851 msgid "Opens the system log page" msgstr "Obre la pàgina de registres del sistema" -#: src/view/screens/Settings/index.tsx:596 +#: src/view/screens/Settings/index.tsx:597 msgid "Opens the threads preferences" msgstr "Obre les preferències dels fils de debat" -#: src/view/com/notifications/FeedItem.tsx:524 -#: src/view/com/util/UserAvatar.tsx:422 +#: src/view/com/notifications/FeedItem.tsx:527 +#: src/view/com/util/UserAvatar.tsx:434 msgid "Opens this profile" msgstr "Obre aquest perfil" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:54 +msgid "Opens video picker" +msgstr "" + #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "Opció {0} de {numItems}" #: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:162 +#: src/components/ReportDialog/SubmitView.tsx:179 msgid "Optionally provide additional information below:" msgstr "Opcionalment, proporciona informació addicional a continuació:" @@ -4862,7 +4909,7 @@ msgstr "Contrasenya actualitzada" msgid "Password updated!" msgstr "Contrasenya actualitzada!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Pause" msgstr "Posa en pausa" @@ -4871,19 +4918,19 @@ msgstr "Posa en pausa" msgid "People" msgstr "Gent" -#: src/Navigation.tsx:175 +#: src/Navigation.tsx:178 msgid "People followed by @{0}" msgstr "Persones seguides per @{0}" -#: src/Navigation.tsx:168 +#: src/Navigation.tsx:171 msgid "People following @{0}" msgstr "Persones seguint a @{0}" -#: src/view/com/lightbox/Lightbox.tsx:69 +#: src/view/com/lightbox/Lightbox.tsx:70 msgid "Permission to access camera roll is required." msgstr "Cal permís per a accedir al carret de la càmera." -#: src/view/com/lightbox/Lightbox.tsx:75 +#: src/view/com/lightbox/Lightbox.tsx:78 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "S'ha denegat el permís per a accedir a la càmera. Activa'l a la configuració del teu sistema." @@ -4908,12 +4955,12 @@ msgstr "Fotografia" msgid "Pictures meant for adults." msgstr "Imatges destinades a adults." -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Fixa a l'inici" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 msgid "Pin to Home" msgstr "Fixa a l'Inici" @@ -4925,7 +4972,7 @@ msgstr "Canals de notícies fixats" msgid "Pinned to your feeds" msgstr "Fixat als teus canals" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Play" msgstr "Reprodueix" @@ -4938,7 +4985,7 @@ msgstr "Reprodueix {0}" #~ msgid "Play notification sounds" #~ msgstr "Reprodueix els sons de notificació" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 msgid "Play or pause the GIF" msgstr "Reprodueix o posa en pausa el GIF" @@ -4976,7 +5023,7 @@ msgstr "Introdueix un nom per a la contrasenya de la vostra aplicació. No es pe #~ msgid "Please enter a phone number that can receive SMS text messages." #~ msgstr "Introdueix un telèfon que pugui rebre missatges SMS" -#: src/view/com/modals/AddAppPasswords.tsx:150 +#: src/view/com/modals/AddAppPasswords.tsx:151 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." @@ -5005,7 +5052,7 @@ msgstr "" msgid "Please enter your password as well:" msgstr "Introdueix la teva contrasenya també:" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:277 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}" @@ -5030,7 +5077,7 @@ msgstr "Inicia sessió com a @{0}" msgid "Please Verify Your Email" msgstr "Verifica el teu correu" -#: src/view/com/composer/Composer.tsx:287 +#: src/view/com/composer/Composer.tsx:299 msgid "Please wait for your link card to finish loading" msgstr "Espera que es generi la targeta de l'enllaç" @@ -5047,8 +5094,8 @@ msgstr "Pornografia" #~ msgid "Pornography" #~ msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:509 +#: src/view/com/composer/Composer.tsx:516 msgctxt "action" msgid "Post" msgstr "Publica" @@ -5068,9 +5115,9 @@ msgstr "Publicació" msgid "Post by {0}" msgstr "Publicació per {0}" -#: src/Navigation.tsx:194 -#: src/Navigation.tsx:201 -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:197 +#: src/Navigation.tsx:204 +#: src/Navigation.tsx:211 msgid "Post by @{0}" msgstr "Publicació per @{0}" @@ -5126,6 +5173,10 @@ msgstr "Publicacions amagades" msgid "Potentially Misleading Link" msgstr "Enllaç potencialment enganyós" +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Prem per provar de connectar de nou" @@ -5146,7 +5197,7 @@ msgstr "Prem per a tornar-ho a provar" #~ msgid "Press to Retry" #~ msgstr "Prem per a tornar-ho a provar" -#: src/components/KnownFollowers.tsx:116 +#: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "Prem per veure els seguidors d'aquest compte que també segueixes" @@ -5158,20 +5209,24 @@ msgstr "Imatge anterior" msgid "Primary Language" msgstr "Idioma principal" -#: src/view/screens/PreferencesThreads.tsx:97 +#: src/view/screens/PreferencesThreads.tsx:91 msgid "Prioritize Your Follows" msgstr "Prioritza els usuaris que segueixes" -#: src/view/screens/Settings/index.tsx:655 +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "" + +#: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privacitat" -#: src/Navigation.tsx:249 +#: src/Navigation.tsx:257 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:958 -#: src/view/shell/Drawer.tsx:285 +#: src/view/screens/Settings/index.tsx:959 +#: src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "Política de privacitat" @@ -5190,9 +5245,9 @@ msgstr "perfil" #: src/view/shell/bottom-bar/BottomBar.tsx:275 #: src/view/shell/desktop/LeftNav.tsx:393 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:542 -#: src/view/shell/Drawer.tsx:543 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:532 +#: src/view/shell/Drawer.tsx:533 msgid "Profile" msgstr "Perfil" @@ -5200,7 +5255,7 @@ msgstr "Perfil" msgid "Profile updated" msgstr "Perfil actualitzat" -#: src/view/screens/Settings/index.tsx:1022 +#: src/view/screens/Settings/index.tsx:1023 msgid "Protect your account by verifying your email." msgstr "Protegeix el teu compte verificant el teu correu." @@ -5216,23 +5271,23 @@ msgstr "Llistes d'usuaris per a silenciar o bloquejar en massa, públiques i per msgid "Public, shareable lists which can drive feeds." msgstr "Llistes que poden nodrir canals, públiques i per a compartir." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish post" msgstr "Publica" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish reply" msgstr "Publica la resposta" -#: src/components/StarterPack/QrCodeDialog.tsx:125 +#: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "Codi QR copiat en memòria!" -#: src/components/StarterPack/QrCodeDialog.tsx:103 +#: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" msgstr "Codi QR descarregat!" -#: src/components/StarterPack/QrCodeDialog.tsx:104 +#: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "Codi QR desat a la teva galeria" @@ -5261,7 +5316,7 @@ msgstr "Cita la publicació" #~ msgid "Quote Post" #~ msgstr "Cita la publicació" -#: src/view/screens/PreferencesThreads.tsx:86 +#: src/view/screens/PreferencesThreads.tsx:80 msgid "Random (aka \"Poster's Roulette\")" msgstr "Aleatori (també conegut com a \"Poster's Roulette\")" @@ -5297,19 +5352,23 @@ msgstr "Cerques recents" msgid "Reconnect" msgstr "Torna a connectar" +#: src/view/screens/Notifications.tsx:146 +msgid "Refresh notifications" +msgstr "" + #: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "Carrega les converses de nou" #: src/components/dialogs/MutedWords.tsx:286 #: src/components/FeedCard.tsx:309 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:212 +#: src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "Elimina" @@ -5325,7 +5384,7 @@ msgstr "Elimina a {displayName} de l'starter pack" msgid "Remove account" msgstr "Elimina el compte" -#: src/view/com/util/UserAvatar.tsx:384 +#: src/view/com/util/UserAvatar.tsx:396 msgid "Remove Avatar" msgstr "Elimina l'avatar" @@ -5337,20 +5396,20 @@ msgstr "Elimina el bàner" msgid "Remove embed" msgstr "Elimina l'incrustat" -#: src/view/com/posts/FeedErrorMessage.tsx:168 -#: src/view/com/posts/FeedShutdownMsg.tsx:113 -#: src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:115 +#: src/view/com/posts/FeedShutdownMsg.tsx:119 msgid "Remove feed" msgstr "Elimina el canal" -#: src/view/com/posts/FeedErrorMessage.tsx:209 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" msgstr "Vols eliminar el canal?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Elimina dels meus canals" @@ -5364,7 +5423,7 @@ msgstr "Vols eliminar-lo dels teus canals?" msgid "Remove image" msgstr "Elimina la imatge" -#: src/view/com/composer/ExternalEmbed.tsx:87 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 msgid "Remove image preview" msgstr "Elimina la visualització prèvia de la imatge" @@ -5393,7 +5452,7 @@ msgstr "Elimina la republicació" #~ msgid "Remove this feed from my feeds?" #~ msgstr "Vols eliminar aquest canal dels teus canals?" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "Elimina aquest canal dels meus canals" @@ -5401,7 +5460,7 @@ msgstr "Elimina aquest canal dels meus canals" #~ msgid "Remove this feed from your saved feeds?" #~ msgstr "Vols eliminar aquest canal dels teus canals desats?" -#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "Elimina de la llista" @@ -5417,15 +5476,19 @@ msgid "Removed from your feeds" msgstr "Eliminat dels teus canals" #: src/view/com/composer/ExternalEmbed.tsx:88 -msgid "Removes default thumbnail from {0}" -msgstr "Elimina la miniatura per defecte de {0}" +#~ msgid "Removes default thumbnail from {0}" +#~ msgstr "Elimina la miniatura per defecte de {0}" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" msgstr "Elimina la publicació amb la citació" -#: src/view/com/posts/FeedShutdownMsg.tsx:126 -#: src/view/com/posts/FeedShutdownMsg.tsx:130 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the image preview" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:128 +#: src/view/com/posts/FeedShutdownMsg.tsx:132 msgid "Replace with Discover" msgstr "Canvia amb Discover" @@ -5441,16 +5504,16 @@ msgstr "Respostes deshabilitades" #~ msgid "Replies on this thread are disabled" #~ msgstr "Les respostes a aquest fil de debat estan deshabilitades" -#: src/components/WhoCanReply.tsx:242 +#: src/components/WhoCanReply.tsx:243 msgid "Replies to this thread are disabled" msgstr "Les respostes a aquest fil de debat estan deshabilitades" -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:507 msgctxt "action" msgid "Reply" msgstr "Respon" -#: src/view/screens/PreferencesFollowingFeed.tsx:143 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 msgid "Reply Filters" msgstr "Filtres de resposta" @@ -5460,17 +5523,23 @@ msgstr "Filtres de resposta" #~ msgid "Reply to <0/>" #~ msgstr "Resposta a <0/>" -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:439 +#: src/view/com/post/Post.tsx:197 +#: src/view/com/posts/FeedItem.tsx:458 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Resposta a <0><1/>" -#: src/view/com/posts/FeedItem.tsx:437 +#: src/view/com/posts/FeedItem.tsx:456 msgctxt "description" msgid "Reply to a blocked post" msgstr "Respon a una publicació bloquejada" +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:454 +msgctxt "description" +msgid "Reply to you" +msgstr "" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -5501,8 +5570,8 @@ msgstr "Informa d'aquesta conversa" msgid "Report dialog" msgstr "Diàleg de l'informe" -#: src/view/screens/ProfileFeed.tsx:349 -#: src/view/screens/ProfileFeed.tsx:351 +#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:352 msgid "Report feed" msgstr "Informa del canal" @@ -5514,8 +5583,8 @@ msgstr "Informa de la llista" msgid "Report message" msgstr "Informa del missatge" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:407 +#: src/view/com/util/forms/PostDropdownBtn.tsx:409 msgid "Report post" msgstr "Informa de la publicació" @@ -5581,7 +5650,7 @@ msgstr "Republica o cita la publicació" msgid "Reposted By" msgstr "Republicat per" -#: src/view/com/posts/FeedItem.tsx:254 +#: src/view/com/posts/FeedItem.tsx:263 msgid "Reposted by {0}" msgstr "Republicat per {0}" @@ -5593,11 +5662,16 @@ msgstr "Republicat per {0}" #~ msgid "Reposted by <0/>" #~ msgstr "Republicada per <0/>" -#: src/view/com/posts/FeedItem.tsx:269 +#: src/view/com/posts/FeedItem.tsx:282 msgid "Reposted by <0><1/>" msgstr "Republicat per <0><1/>" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/posts/FeedItem.tsx:261 +#: src/view/com/posts/FeedItem.tsx:280 +msgid "Reposted by you" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:188 msgid "reposted your post" msgstr "ha republicat la teva publicació" @@ -5648,8 +5722,8 @@ msgstr "Codi de restabliment" #~ msgid "Reset onboarding" #~ msgstr "Restableix la incorporació" -#: src/view/screens/Settings/index.tsx:901 -#: src/view/screens/Settings/index.tsx:904 +#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:905 msgid "Reset onboarding state" msgstr "Restableix l'estat de la incorporació" @@ -5661,16 +5735,16 @@ msgstr "Restableix la contrasenya" #~ msgid "Reset preferences" #~ msgstr "Restableix les preferències" -#: src/view/screens/Settings/index.tsx:881 -#: src/view/screens/Settings/index.tsx:884 +#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:885 msgid "Reset preferences state" msgstr "Restableix l'estat de les preferències" -#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:903 msgid "Resets the onboarding state" msgstr "Restableix l'estat de la incorporació" -#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:883 msgid "Resets the preferences state" msgstr "Restableix l'estat de les preferències" @@ -5683,7 +5757,7 @@ msgstr "Torna a intentar iniciar sessió" msgid "Retries the last action, which errored out" msgstr "Torna a intentar l'última acció, que ha donat error" -#: src/components/dms/MessageItem.tsx:241 +#: src/components/dms/MessageItem.tsx:235 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 @@ -5723,7 +5797,7 @@ msgstr "Torna a la pàgina anterior" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/dialogs/ThreadgateEditor.tsx:88 -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:187 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5732,7 +5806,7 @@ msgstr "Torna a la pàgina anterior" msgid "Save" msgstr "Desa" -#: src/view/com/lightbox/Lightbox.tsx:135 +#: src/view/com/lightbox/Lightbox.tsx:139 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5754,8 +5828,8 @@ msgstr "Desa els canvis" msgid "Save handle change" msgstr "Desa el canvi d'identificador" -#: src/components/StarterPack/ShareDialog.tsx:150 -#: src/components/StarterPack/ShareDialog.tsx:157 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "Desa la imatge" @@ -5763,12 +5837,12 @@ msgstr "Desa la imatge" msgid "Save image crop" msgstr "Desa la imatge retallada" -#: src/components/StarterPack/QrCodeDialog.tsx:178 +#: src/components/StarterPack/QrCodeDialog.tsx:181 msgid "Save QR code" msgstr "Desa el codi QR" -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 +#: src/view/screens/ProfileFeed.tsx:334 +#: src/view/screens/ProfileFeed.tsx:340 msgid "Save to my feeds" msgstr "Desa-ho als meus canals" @@ -5776,7 +5850,7 @@ msgstr "Desa-ho als meus canals" msgid "Saved Feeds" msgstr "Canals desats" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:88 msgid "Saved to your camera roll" msgstr "S'ha desat a la teva galeria d'imatges" @@ -5803,8 +5877,8 @@ msgstr "Desa la configuració de retall d'imatges" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:383 -#: src/view/com/notifications/FeedItem.tsx:408 +#: src/view/com/notifications/FeedItem.tsx:386 +#: src/view/com/notifications/FeedItem.tsx:411 msgid "Say hello!" msgstr "Digues hola!" @@ -5818,9 +5892,9 @@ msgid "Scroll to top" msgstr "Desplaça't cap a dalt" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:524 +#: src/Navigation.tsx:537 #: src/view/com/auth/LoggedOut.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 @@ -5828,14 +5902,14 @@ msgstr "Desplaça't cap a dalt" #: src/view/screens/Search/Search.tsx:813 #: src/view/shell/bottom-bar/BottomBar.tsx:182 #: src/view/shell/desktop/LeftNav.tsx:354 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:394 -#: src/view/shell/Drawer.tsx:395 +#: src/view/shell/desktop/Search.tsx:195 +#: src/view/shell/desktop/Search.tsx:204 +#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:385 msgid "Search" msgstr "Cerca" -#: src/view/shell/desktop/Search.tsx:235 +#: src/view/shell/desktop/Search.tsx:236 msgid "Search for \"{query}\"" msgstr "Cerca per \"{query}\"" @@ -5869,7 +5943,7 @@ msgstr "Cerca canals que vulgueu suggerir als altres." #: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/auth/LoggedOut.tsx:107 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "Cerca usuaris" @@ -5990,7 +6064,7 @@ msgstr "Selecciona l'opció {i} de {numItems}" msgid "Select the {emojiName} emoji as your avatar" msgstr "Selecciona el {emojiName} emoji com al teu avatar" -#: src/components/ReportDialog/SubmitView.tsx:135 +#: src/components/ReportDialog/SubmitView.tsx:152 msgid "Select the moderation service(s) to report to" msgstr "Selecciona els serveis de moderació als quals voleu informar" @@ -6002,6 +6076,10 @@ msgstr "Selecciona el servei que allotja les teves dades." #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "Selecciona els canals d'actualitat per a seguir d'aquesta llista" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:53 +msgid "Select video" +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:63 #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "Selecciona què vols veure (o què no vols veure) i nosaltres farem la resta." @@ -6064,8 +6142,7 @@ msgstr "Envia correu" #~ msgid "Send Email" #~ msgstr "Envia correu" -#: src/view/shell/Drawer.tsx:329 -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:325 msgid "Send feedback" msgstr "Envia comentari" @@ -6074,14 +6151,14 @@ msgstr "Envia comentari" msgid "Send message" msgstr "Envia el missatge" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 msgid "Send post to..." msgstr "Envia el missatge a..." #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:215 -#: src/components/ReportDialog/SubmitView.tsx:219 +#: src/components/ReportDialog/SubmitView.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:236 msgid "Send report" msgstr "Envia informe" @@ -6098,8 +6175,8 @@ msgstr "Envia informe a {0}" msgid "Send verification email" msgstr "Envia un correu de verificació" -#: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 +#: src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" msgstr "Envia per missatge directe" @@ -6153,19 +6230,19 @@ msgstr "Estableix una nova contrasenya" #~ msgid "Set password" #~ msgstr "Estableix una contrasenya" -#: src/view/screens/PreferencesFollowingFeed.tsx:224 +#: src/view/screens/PreferencesFollowingFeed.tsx:223 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Posa \"No\" a aquesta opció per a amagar totes les publicacions citades del teu canal. Les republicacions encara seran visibles." -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:120 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Posa \"No\" a aquesta opció per a amagar totes les respostes del teu canal." -#: src/view/screens/PreferencesFollowingFeed.tsx:190 +#: src/view/screens/PreferencesFollowingFeed.tsx:189 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Posa \"No\" a aquesta opció per a amagar totes les republicacions del teu canal." -#: src/view/screens/PreferencesThreads.tsx:122 +#: src/view/screens/PreferencesThreads.tsx:116 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Posa \"Sí\" a aquesta opció per a mostrar les respostes en vista de fil de debat. Aquesta és una opció experimental." @@ -6173,7 +6250,7 @@ msgstr "Posa \"Sí\" a aquesta opció per a mostrar les respostes en vista de fi #~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." #~ msgstr "Posa \"Sí\" a aquesta opció per a mostrar algunes publicacions dels teus canals en el teu canal de seguits. Aquesta és una opció experimental." -#: src/view/screens/PreferencesFollowingFeed.tsx:260 +#: src/view/screens/PreferencesFollowingFeed.tsx:259 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Estableix aquesta configuració a \"Sí\" per a mostrar mostres dels teus canals desats al teu canal Seguint. Aquesta és una característica experimental." @@ -6185,23 +6262,23 @@ msgstr "Configura el teu compte" msgid "Sets Bluesky username" msgstr "Estableix un nom d'usuari de Bluesky" -#: src/view/screens/Settings/index.tsx:462 +#: src/view/screens/Settings/index.tsx:463 msgid "Sets color theme to dark" msgstr "Estableix el tema a fosc" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Sets color theme to light" msgstr "Estableix el tema a clar" -#: src/view/screens/Settings/index.tsx:449 +#: src/view/screens/Settings/index.tsx:450 msgid "Sets color theme to system setting" msgstr "Estableix el tema a la configuració del sistema" -#: src/view/screens/Settings/index.tsx:488 +#: src/view/screens/Settings/index.tsx:489 msgid "Sets dark theme to the dark theme" msgstr "Estableix el tema fosc al tema fosc" -#: src/view/screens/Settings/index.tsx:481 +#: src/view/screens/Settings/index.tsx:482 msgid "Sets dark theme to the dim theme" msgstr "Estableix el tema fosc al tema atenuat" @@ -6230,11 +6307,11 @@ msgstr "Estableix la relació d'aspecte de la imatge com a ampla" #~ msgid "Sets server for the Bluesky client" #~ msgstr "Estableix el servidor pel cient de Bluesky" -#: src/Navigation.tsx:150 -#: src/view/screens/Settings/index.tsx:333 +#: src/Navigation.tsx:153 +#: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:559 -#: src/view/shell/Drawer.tsx:560 +#: src/view/shell/Drawer.tsx:549 +#: src/view/shell/Drawer.tsx:550 msgid "Settings" msgstr "Configuració" @@ -6246,19 +6323,19 @@ msgstr "Activitat sexual o nu eròtic." msgid "Sexually Suggestive" msgstr "Suggerent sexualment" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:177 #: src/screens/StarterPack/StarterPackScreen.tsx:400 #: src/screens/StarterPack/StarterPackScreen.tsx:571 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 #: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Comparteix" -#: src/view/com/lightbox/Lightbox.tsx:144 +#: src/view/com/lightbox/Lightbox.tsx:148 msgctxt "action" msgid "Share" msgstr "Comparteix" @@ -6272,18 +6349,18 @@ msgid "Share a fun fact!" msgstr "Comparteix una dada divertida!" #: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:464 #: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "Comparteix de totes maneres" -#: src/view/screens/ProfileFeed.tsx:359 -#: src/view/screens/ProfileFeed.tsx:361 +#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:362 msgid "Share feed" msgstr "Comparteix el canal" -#: src/components/StarterPack/ShareDialog.tsx:123 -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 #: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "Comparteix l'enllaç" @@ -6293,12 +6370,12 @@ msgstr "Comparteix l'enllaç" msgid "Share Link" msgstr "Comparteix l'enllaç" -#: src/components/StarterPack/ShareDialog.tsx:87 +#: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" msgstr "Diàleg de compartició de l'enllaç" -#: src/components/StarterPack/ShareDialog.tsx:134 -#: src/components/StarterPack/ShareDialog.tsx:145 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "Comparteix el codi QR" @@ -6306,7 +6383,7 @@ msgstr "Comparteix el codi QR" msgid "Share this starter pack" msgstr "Comparteix aquets starter pack" -#: src/components/StarterPack/ShareDialog.tsx:99 +#: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Comparteix aquets starter pack i ajuda a la gent de la teva comunitat a unir-se a Bluesky." @@ -6314,6 +6391,10 @@ msgstr "Comparteix aquets starter pack i ajuda a la gent de la teva comunitat a msgid "Share your favorite feed!" msgstr "Comparteix el teu canal preferit!" +#: src/Navigation.tsx:242 +msgid "Shared Preferences Tester" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" msgstr "Comparteix la web enllaçada" @@ -6321,7 +6402,7 @@ msgstr "Comparteix la web enllaçada" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:382 +#: src/view/screens/Settings/index.tsx:383 msgid "Show" msgstr "Mostra" @@ -6329,7 +6410,7 @@ msgstr "Mostra" #~ msgid "Show all replies" #~ msgstr "Mostra totes les respostes" -#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +#: src/view/com/util/post-embeds/GifEmbed.tsx:175 msgid "Show alt text" msgstr "Mostra el text alternatiu" @@ -6359,19 +6440,19 @@ msgstr "Mostra seguidors semblants a {0}" msgid "Show hidden replies" msgstr "Mostra les respostes ocultes" -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#: src/view/com/util/forms/PostDropdownBtn.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:349 +#: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" msgstr "Mostra'n menys com aquest" #: src/view/com/post-thread/PostThreadItem.tsx:530 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:396 +#: src/view/com/post/Post.tsx:235 +#: src/view/com/posts/FeedItem.tsx:410 msgid "Show More" msgstr "Mostra més" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 -#: src/view/com/util/forms/PostDropdownBtn.tsx:340 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:343 msgid "Show more like this" msgstr "Mostra'n més com aquest" @@ -6379,11 +6460,11 @@ msgstr "Mostra'n més com aquest" msgid "Show muted replies" msgstr "Mostra les respostes silenciades" -#: src/view/screens/PreferencesFollowingFeed.tsx:257 +#: src/view/screens/PreferencesFollowingFeed.tsx:256 msgid "Show Posts from My Feeds" msgstr "Mostra les publicacions dels meus canals" -#: src/view/screens/PreferencesFollowingFeed.tsx:221 +#: src/view/screens/PreferencesFollowingFeed.tsx:220 msgid "Show Quote Posts" msgstr "Mostra les publicacions citades" @@ -6399,11 +6480,11 @@ msgstr "Mostra les publicacions citades" #~ msgid "Show re-posts in Following feed" #~ msgstr "Mostra les republicacions al canal Seguint" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:117 msgid "Show Replies" msgstr "Mostra les respostes" -#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:94 msgid "Show replies by people you follow before all other replies." msgstr "Mostra les respostes dels comptes que segueixes abans que les altres." @@ -6419,7 +6500,7 @@ msgstr "Mostra les respostes dels comptes que segueixes abans que les altres." #~ msgid "Show replies with at least {value} {0}" #~ msgstr "Mostra respostes amb almenys {value} {0}" -#: src/view/screens/PreferencesFollowingFeed.tsx:187 +#: src/view/screens/PreferencesFollowingFeed.tsx:186 msgid "Show Reposts" msgstr "Mostra republicacions" @@ -6499,8 +6580,8 @@ msgstr "Inicia sessió o crea el teu compte per a unir-te a la conversa" msgid "Sign into Bluesky or create a new account" msgstr "Inicia sessió o crea el teu compte per a unir-te a la conversa" -#: src/view/screens/Settings/index.tsx:129 -#: src/view/screens/Settings/index.tsx:133 +#: src/view/screens/Settings/index.tsx:130 +#: src/view/screens/Settings/index.tsx:134 msgid "Sign out" msgstr "Tanca sessió" @@ -6525,7 +6606,7 @@ msgstr "Registra't o inicia sessió per a unir-te a la conversa" msgid "Sign-in Required" msgstr "Es requereix iniciar sessió" -#: src/view/screens/Settings/index.tsx:392 +#: src/view/screens/Settings/index.tsx:393 msgid "Signed in as" msgstr "S'ha iniciat sessió com a" @@ -6534,7 +6615,7 @@ msgstr "S'ha iniciat sessió com a" msgid "Signed in as @{0}" msgstr "S'ha iniciat sessió com a @{0}" -#: src/view/com/notifications/FeedItem.tsx:208 +#: src/view/com/notifications/FeedItem.tsx:209 msgid "signed up with your starter pack" msgstr "s'ha registrat amb el vostre starter pack" @@ -6542,8 +6623,8 @@ msgstr "s'ha registrat amb el vostre starter pack" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "Tanca la sessió de Bluesky de {0}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 msgid "Signup without a starter pack" msgstr "S'ha registrat sense cap starter pack" @@ -6565,7 +6646,7 @@ msgstr "Salta aquest flux" msgid "Software Dev" msgstr "Desenvolupament de programari" -#: src/components/FeedInterstitials.tsx:378 +#: src/components/FeedInterstitials.tsx:382 msgid "Some other feeds you might like" msgstr "" @@ -6597,24 +6678,25 @@ msgstr "Alguna cosa ha fallat, torna-ho a provar" msgid "Something went wrong, please try again." msgstr "Alguna cosa ha fallat, torna-ho a provar." -#: src/components/Lists.tsx:203 -#~ msgid "Something went wrong!" -#~ msgstr "Alguna cosa ha fallat." +#: src/components/Lists.tsx:192 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "Alguna cosa ha fallat." #: src/view/com/modals/Waitlist.tsx:51 #~ msgid "Something went wrong. Check your email and try again." #~ msgstr "Alguna cosa ha fallat. Comprova el teu correu i torna-ho a provar." -#: src/App.native.tsx:98 -#: src/App.web.tsx:80 +#: src/App.native.tsx:99 +#: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "La teva sessió ha caducat. Torna a iniciar-la." -#: src/view/screens/PreferencesThreads.tsx:69 +#: src/view/screens/PreferencesThreads.tsx:63 msgid "Sort Replies" msgstr "Ordena les respostes" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:66 msgid "Sort replies to the same post by:" msgstr "Ordena les respostes a la mateixa publicació per:" @@ -6622,7 +6704,7 @@ msgstr "Ordena les respostes a la mateixa publicació per:" #~ msgid "Source:" #~ msgstr "Font:" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" msgstr "Font: <0>{0}" @@ -6648,7 +6730,7 @@ msgstr "Quadrat" #~ msgid "Staging" #~ msgstr "Posada en escena" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:63 msgid "Start a new chat" msgstr "Comença un nou xat" @@ -6665,8 +6747,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:328 -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:341 +#: src/Navigation.tsx:346 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "Starter pack" @@ -6691,7 +6773,7 @@ msgstr "Els starter packs et permeten compartir els teus canals i persones prefe #~ msgid "Status page" #~ msgstr "Pàgina d'estat" -#: src/view/screens/Settings/index.tsx:964 +#: src/view/screens/Settings/index.tsx:965 msgid "Status Page" msgstr "Pàgina d'estat" @@ -6707,17 +6789,17 @@ msgstr "Pas {0} de {1}" #~ msgid "Step {0} of {numSteps}" #~ msgstr "Pas {0} de {numSteps}" -#: src/view/screens/Settings/index.tsx:305 +#: src/view/screens/Settings/index.tsx:306 msgid "Storage cleared, you need to restart the app now." msgstr "L'emmagatzematge s'ha esborrat, cal que reinicieu l'aplicació ara." -#: src/Navigation.tsx:229 -#: src/view/screens/Settings/index.tsx:864 +#: src/Navigation.tsx:232 +#: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "Historial" -#: src/components/moderation/LabelsOnMeDialog.tsx:290 -#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/components/moderation/LabelsOnMeDialog.tsx:311 +#: src/components/moderation/LabelsOnMeDialog.tsx:312 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -6740,7 +6822,7 @@ msgstr "Subscriu-te a l'etiquetador" #~ msgid "Subscribe to the {0} feed" #~ msgstr "Subscriu-te al canal {0}" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 msgid "Subscribe to this labeler" msgstr "Subscriu-te a aquest etiquetador" @@ -6748,7 +6830,7 @@ msgstr "Subscriu-te a aquest etiquetador" msgid "Subscribe to this list" msgstr "Subscriure's a la llista" -#: src/view/screens/Search/Explore.tsx:331 +#: src/view/screens/Search/Explore.tsx:333 msgid "Suggested accounts" msgstr "Comptes suggerits" @@ -6756,7 +6838,7 @@ msgstr "Comptes suggerits" #~ msgid "Suggested Follows" #~ msgstr "Usuaris suggerits per a seguir" -#: src/components/FeedInterstitials.tsx:246 +#: src/components/FeedInterstitials.tsx:250 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Suggeriments per tu" @@ -6765,7 +6847,7 @@ msgstr "Suggeriments per tu" msgid "Suggestive" msgstr "Suggerent" -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:252 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6784,19 +6866,19 @@ msgstr "Canvia el compte" msgid "Switch between feeds to control your experience." msgstr "" -#: src/view/screens/Settings/index.tsx:160 +#: src/view/screens/Settings/index.tsx:161 msgid "Switch to {0}" msgstr "Canvia a {0}" -#: src/view/screens/Settings/index.tsx:161 +#: src/view/screens/Settings/index.tsx:162 msgid "Switches the account you are logged in to" msgstr "Canvia en compte amb el que tens iniciada la sessió" -#: src/view/screens/Settings/index.tsx:446 +#: src/view/screens/Settings/index.tsx:447 msgid "System" msgstr "Sistema" -#: src/view/screens/Settings/index.tsx:852 +#: src/view/screens/Settings/index.tsx:853 msgid "System log" msgstr "Registres del sistema" @@ -6849,11 +6931,11 @@ msgstr "Explica'ns una mica més" msgid "Terms" msgstr "Condicions" -#: src/Navigation.tsx:254 +#: src/Navigation.tsx:262 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:952 +#: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:279 +#: src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "Condicions del servei" @@ -6868,13 +6950,13 @@ msgstr "Els termes utilitzats infringeixen els estàndards de la comunitat" msgid "text" msgstr "text" -#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/components/moderation/LabelsOnMeDialog.tsx:275 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Camp d'introducció de text" #: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:93 msgid "Thank you. Your report has been sent." msgstr "Gràcies. El teu informe s'ha enviat." @@ -6917,19 +6999,19 @@ msgstr "La política de drets d'autoria ha estat traslladada a <0/>" msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "L'experiència és millor a l'aplicació. Baixa Bluesky ara i tornarem a començar on ho vas deixar." -#: src/view/com/posts/FeedShutdownMsg.tsx:66 +#: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." msgstr "S'ha canviat el canal per Discover." -#: src/components/moderation/LabelsOnMeDialog.tsx:65 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your account." msgstr "Les següents etiquetes s'han aplicat al teu compte." -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:67 msgid "The following labels were applied to your content." msgstr "Les següents etiquetes s'han aplicat als teus continguts." @@ -6970,8 +7052,8 @@ msgstr "Les condicions del servei han estat traslladades a" msgid "There is no time limit for account deactivation, come back any time." msgstr "No hi ha límit de temps per a la desactivació del compte, torna quan vulguis." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 -#: src/view/screens/ProfileFeed.tsx:544 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 +#: src/view/screens/ProfileFeed.tsx:545 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Hi ha hagut un problema per a contactar amb el servidor, comprova la teva connexió a internet i torna-ho a provar." @@ -6980,7 +7062,7 @@ msgid "There was an an issue removing this feed. Please check your internet conn msgstr "Hi ha hagut un problema per a eliminar aquest canal, comprova la teva connexió a internet i torna-ho a provar." #: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Hi ha hagut un problema per a actualitzar els teus canals, comprova la teva connexió a internet i torna-ho a provar." @@ -6994,7 +7076,7 @@ msgstr "Hi ha hagut un problema per a connectar amb Tenor." #~ msgid "There was an issue connecting to the chat." #~ msgstr "Hi ha hagut un problema per a connectar al xat." -#: src/view/screens/ProfileFeed.tsx:234 +#: src/view/screens/ProfileFeed.tsx:235 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -7008,7 +7090,7 @@ msgstr "Hi ha hagut un problema per a contactar amb el servidor" msgid "There was an issue contacting your server" msgstr "Hi ha hagut un problema per a contactar amb el teu servidor" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:130 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." @@ -7026,7 +7108,7 @@ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Hi ha hagut un problema en obtenir les teves llistes. Toca aquí per a tornar-ho a provar." #: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:82 +#: src/components/ReportDialog/SubmitView.tsx:98 msgid "There was an issue sending your report. Please check your internet connection." msgstr "S'ha produït un problema en enviar el teu informe. Comprova la teva connexió a Internet." @@ -7093,7 +7175,7 @@ msgstr "Aquest compte ha sol·licitat que els usuaris estiguin registrats per a 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 "Aquest compte està bloquejat per una o més de les teves llistes de moderació. Per desbloquejar-lo, visita les llistes directament i elimina aquest usuari." -#: src/components/moderation/LabelsOnMeDialog.tsx:239 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 msgid "This appeal will be sent to <0>{0}." msgstr "Aquesta apel·lació s'enviarà a <0>{0}." @@ -7157,12 +7239,12 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Aquest canal està buit! Necessites seguir més usuaris o modificar la teva configuració d'idiomes." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:473 +#: src/view/screens/ProfileFeed.tsx:474 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "Aquest canal és buit." -#: src/view/com/posts/FeedShutdownMsg.tsx:97 +#: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Aquest canal ja no està en línia. En el seu lloc et mostrem <0>Discover." @@ -7194,7 +7276,7 @@ msgstr "Aquesta etiqueta ha estat aplicada per l'autor." #~ msgid "This label was applied by you" #~ msgstr "Aquesta etiqueta ha estat aplicada per tu" -#: src/components/moderation/LabelsOnMeDialog.tsx:166 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." msgstr "Aquesta etiqueta ha estat aplicada per tu." @@ -7222,12 +7304,12 @@ msgstr "Aquest nom ja està en ús" msgid "This post has been deleted." msgstr "Aquesta publicació ha estat esborrada." -#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 #: src/view/com/util/post-ctrls/PostCtrls.tsx:324 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Aquesta publicació només és visible per als usuaris que han iniciat sessió. No serà visible per a les persones que no hagin iniciat sessió." -#: src/view/com/util/forms/PostDropdownBtn.tsx:440 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "This post will be hidden from feeds." msgstr "Aquesta publicació no es mostrarà als canals." @@ -7300,12 +7382,12 @@ msgstr "Això suprimirà {0} de les teves paraules silenciades. Sempre la pots t #~ msgid "This will hide this post from your feeds." #~ msgstr "Això amagarà aquesta publicació dels teus canals." -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Thread preferences" msgstr "Preferències dels fils de debat" -#: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/PreferencesThreads.tsx:51 +#: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "Preferències dels fils de debat" @@ -7313,11 +7395,11 @@ msgstr "Preferències dels fils de debat" msgid "Thread settings updated" msgstr "Preferències dels fils de debat actualitzades" -#: src/view/screens/PreferencesThreads.tsx:119 +#: src/view/screens/PreferencesThreads.tsx:113 msgid "Threaded Mode" msgstr "Mode fils de debat" -#: src/Navigation.tsx:287 +#: src/Navigation.tsx:295 msgid "Threads Preferences" msgstr "Preferències dels fils de debat" @@ -7358,8 +7440,8 @@ msgstr "Transformacions" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:676 #: src/view/com/post-thread/PostThreadItem.tsx:678 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 -#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "Tradueix" @@ -7376,7 +7458,7 @@ msgstr "Torna-ho a provar" msgid "TV" msgstr "TV" -#: src/view/screens/Settings/index.tsx:746 +#: src/view/screens/Settings/index.tsx:747 msgid "Two-factor authentication" msgstr "Autenticació de dos factors" @@ -7472,7 +7554,7 @@ msgstr "Deixa de seguir el compte" #~ msgid "Unlike" #~ msgstr "Desfés el m'agrada" -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Unlike this feed" msgstr "Desfés el m'agrada a aquest canal" @@ -7506,17 +7588,17 @@ msgstr "Deixa de silenciar la conversa" #~ msgid "Unmute notifications" #~ msgstr "Deixa de silenciar les notificacions" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:367 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Unmute thread" msgstr "Deixa de silenciar el fil de debat" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Deixa de fixar" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 msgid "Unpin from home" msgstr "Deixa de fixar a l'inici" @@ -7536,7 +7618,7 @@ msgstr "Ja no està fix als teus canals" msgid "Unsubscribe" msgstr "Dona't de baixa" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Unsubscribe from this labeler" msgstr "Dona't de baixa d'aquest etiquetador" @@ -7573,20 +7655,20 @@ 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:352 -#: src/view/com/util/UserAvatar.tsx:355 +#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Puja de la càmera" -#: src/view/com/util/UserAvatar.tsx:369 +#: src/view/com/util/UserAvatar.tsx:381 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Puja dels Arxius" -#: src/view/com/util/UserAvatar.tsx:363 -#: src/view/com/util/UserAvatar.tsx:367 +#: src/view/com/util/UserAvatar.tsx:375 +#: src/view/com/util/UserAvatar.tsx:379 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -7626,7 +7708,7 @@ msgstr "Utilitza els recomanats" msgid "Use the DNS panel" msgstr "Utilitza el panell de DNS" -#: src/view/com/modals/AddAppPasswords.tsx:205 +#: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." msgstr "Utilitza-ho per a iniciar sessió a l'altra aplicació, juntament amb el teu identificador." @@ -7702,7 +7784,7 @@ msgstr "Nom d'usuari o correu" msgid "Users" msgstr "Usuaris" -#: src/components/WhoCanReply.tsx:279 +#: src/components/WhoCanReply.tsx:280 msgid "users followed by <0/>" msgstr "usuaris seguits per <0/>" @@ -7737,15 +7819,15 @@ msgstr "Valor:" msgid "Verify DNS Record" msgstr "Verifica els registres de DNS" -#: src/view/screens/Settings/index.tsx:983 +#: src/view/screens/Settings/index.tsx:984 msgid "Verify email" msgstr "Verifica el correu" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Verify my email" msgstr "Verifica el meu correu" -#: src/view/screens/Settings/index.tsx:1017 +#: src/view/screens/Settings/index.tsx:1018 msgid "Verify My Email" msgstr "Verifica el meu correu" @@ -7766,7 +7848,7 @@ msgstr "Verifica el teu correu" #~ msgid "Version {0}" #~ msgstr "Versió {0}" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Version {appVersion} {bundleInfo}" msgstr "Versió {appVersion} {bundleInfo}" @@ -7775,11 +7857,15 @@ msgstr "Versió {appVersion} {bundleInfo}" msgid "Video Games" msgstr "Videojocs" +#: src/view/com/composer/videos/state.ts:27 +msgid "Videos cannot be larger than 100MB" +msgstr "" + #: src/screens/Profile/Header/Shell.tsx:113 msgid "View {0}'s avatar" msgstr "Veure l'avatar de {0}" -#: src/view/com/notifications/FeedItem.tsx:245 +#: src/view/com/notifications/FeedItem.tsx:246 msgid "View {0}'s profile" msgstr "Veure el perfil de {0}" @@ -7811,7 +7897,7 @@ msgstr "Mostra informació sobre aquestes etiquetes" #: src/components/ProfileHoverCard/index.web.tsx:436 #: src/components/ProfileHoverCard/index.web.tsx:463 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "Veure el perfil" @@ -7823,7 +7909,7 @@ msgstr "Veure l'avatar" msgid "View the labeling service provided by @{0}" msgstr "Veure el servei d'etiquetatge proporcionat per @{0}" -#: src/view/screens/ProfileFeed.tsx:585 +#: src/view/screens/ProfileFeed.tsx:587 msgid "View users who like this feed" msgstr "Veure els usuaris a qui els agrada aquest canal" @@ -7927,7 +8013,7 @@ msgstr "Ho sentim, però no hem pogut carregar les teves paraules silenciades en msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Ens sap greu, però la teva cerca no s'ha pogut fer. Prova-ho d'aquí una estona." -#: src/view/com/composer/Composer.tsx:335 +#: src/view/com/composer/Composer.tsx:347 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." @@ -7940,7 +8026,7 @@ msgstr "Ens sap greu! No podem trobar la pàgina que estàs cercant." #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "Ho sentim! Només et pots subscriure a deu etiquetadors i has arribat al teu límit de deu." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Ho sentim! Només pots subscriure't a vint etiquetadors i has arribat al teu límit de vint." @@ -7973,7 +8059,7 @@ msgstr "Com vols anomenar al teu starter pack?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:376 +#: src/view/com/composer/Composer.tsx:388 msgid "What's up?" msgstr "Què hi ha de nou" @@ -7990,15 +8076,15 @@ msgstr "Quins idiomes t'agradaria veure en els teus canals algorítmics?" msgid "Who can message you?" msgstr "Qui et pot enviar missatges?" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Who can reply" msgstr "Qui hi pot respondre" -#: src/components/WhoCanReply.tsx:211 +#: src/components/WhoCanReply.tsx:212 msgid "Who can reply dialog" msgstr "Diàleg de qui pot respondre" -#: src/components/WhoCanReply.tsx:215 +#: src/components/WhoCanReply.tsx:216 msgid "Who can reply?" msgstr "Qui pot respondre?" @@ -8044,11 +8130,11 @@ msgstr "Amplada" msgid "Write a message" msgstr "Escriu un missatge" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:580 msgid "Write post" msgstr "Escriu una publicació" -#: src/view/com/composer/Composer.tsx:375 +#: src/view/com/composer/Composer.tsx:387 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Escriu la teva resposta" @@ -8063,12 +8149,12 @@ msgstr "Escriptors" #~ msgstr "XXXXXX" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:200 -#: src/view/screens/PreferencesFollowingFeed.tsx:235 -#: src/view/screens/PreferencesFollowingFeed.tsx:270 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:199 +#: src/view/screens/PreferencesFollowingFeed.tsx:234 +#: src/view/screens/PreferencesFollowingFeed.tsx:269 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "Yes" msgstr "Sí" @@ -8085,7 +8171,7 @@ msgstr "Sí, elimina aquest starter pack" msgid "Yes, reactivate my account" msgstr "Sí, torna a activar el meu compte" -#: src/components/dms/MessageItem.tsx:188 +#: src/components/dms/MessageItem.tsx:182 msgid "Yesterday, {time}" msgstr "Ahir, {time}" @@ -8254,19 +8340,19 @@ msgstr "Encara no has creat cap starter pack!" msgid "You haven't muted any words or tags yet" msgstr "Encara no has silenciat cap paraula ni etiqueta" -#: src/components/moderation/LabelsOnMeDialog.tsx:86 +#: src/components/moderation/LabelsOnMeDialog.tsx:87 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Pots apel·lar les etiquetes que no són pròpies si creus que s'han col·locat per error." -#: src/components/moderation/LabelsOnMeDialog.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:92 msgid "You may appeal these labels if you feel they were placed in error." msgstr "Pots apel·lar aquestes etiquetes si creus que s'han col·locat per error." -#: src/screens/StarterPack/Wizard/State.tsx:92 +#: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 50 feeds" msgstr "Només pots afegir 50 canals" -#: src/screens/StarterPack/Wizard/State.tsx:77 +#: src/screens/StarterPack/Wizard/State.tsx:78 msgid "You may only add up to 50 profiles" msgstr "Només pots afegir 50 perfils" @@ -8294,7 +8380,7 @@ msgstr "Has de concedir accés a la teva galeria per desar un codi QR" msgid "You must grant access to your photo library to save the image." msgstr "Has de concedir accés a la teva galeria per desar la imatge." -#: src/components/ReportDialog/SubmitView.tsx:205 +#: src/components/ReportDialog/SubmitView.tsx:222 msgid "You must select at least one labeler for a report" msgstr "Has d'escollir almenys un etiquetador per a un informe" @@ -8334,15 +8420,15 @@ msgstr "Seguiràs els usuaris i els canals suggerits un cop hagis acabat de crea msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Seguiràs els usuaris suggerits un cop hagis acabat de crear el teu compte!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people and {0} others" msgstr "Seguiràs aquestes persones i {0} altres" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people right away" msgstr "Seguiràs a aquesta gent de seguida" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272 msgid "You'll stay updated with these feeds" msgstr "Estaràs al dia amb aquests canals" @@ -8455,7 +8541,7 @@ msgstr "Les teves paraules silenciades" msgid "Your password has been changed successfully!" msgstr "S'ha canviat la teva contrasenya!" -#: src/view/com/composer/Composer.tsx:366 +#: src/view/com/composer/Composer.tsx:378 msgid "Your post has been published" msgstr "S'ha publicat" @@ -8463,7 +8549,7 @@ msgstr "S'ha publicat" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Les teves publicacions, m'agrades i bloquejos són públics. Els comptes silenciats són privats." -#: src/view/screens/Settings/index.tsx:148 +#: src/view/screens/Settings/index.tsx:149 msgid "Your profile" msgstr "El teu perfil" @@ -8471,7 +8557,7 @@ msgstr "El teu perfil" 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, fonts 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:365 +#: src/view/com/composer/Composer.tsx:377 msgid "Your reply has been published" msgstr "S'ha publicat la teva resposta" diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po index 41c1d3b7a8..23cd6f692d 100644 --- a/src/locale/locales/de/messages.po +++ b/src/locale/locales/de/messages.po @@ -21,7 +21,7 @@ msgstr "(enthält eingebettete Inhalte)" msgid "(no email)" msgstr "(keine E-Mail)" -#: src/view/com/notifications/FeedItem.tsx:294 +#: src/view/com/notifications/FeedItem.tsx:297 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {{formattedCount} anderer} other {{formattedCount} andere}}" @@ -76,7 +76,7 @@ msgstr "{0, plural, one {Repost} other {Reposts}}" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {Like aufheben (# Like)} other {Like aufheben (# Likes)}}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} sind diese Woche beigetreten" @@ -84,7 +84,7 @@ msgstr "{0} sind diese Woche beigetreten" msgid "{0} people have used this starter pack!" msgstr "{0} Personen haben dieses Startpaket bereits verwendet!" -#: src/view/com/util/UserAvatar.tsx:419 +#: src/view/com/util/UserAvatar.tsx:431 msgid "{0}'s avatar" msgstr "Der Avatar von {0}" @@ -132,7 +132,7 @@ msgstr "{estimatedTimeHrs, plural, one {Stunde} other {Stunden}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {Minute} other {Minuten}}" -#: src/components/ProfileHoverCard/index.web.tsx:504 +#: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} Folge ich" @@ -143,11 +143,11 @@ msgstr "{handle} kann keine Nachricht gesendet werden" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:588 +#: src/view/screens/ProfileFeed.tsx:590 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {Geliked von # Konto} other {Geliked von # Konten}}" -#: src/view/shell/Drawer.tsx:462 +#: src/view/shell/Drawer.tsx:452 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} ungelesen" @@ -163,7 +163,7 @@ msgstr "{profileName} ist vor {0} Bluesky mit einem Startpaket beigetreten" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "{value, plural, =0 {Alle Antworten anzeigen} one {Antworten mit mindestens # Like anzeigen} other {Antworten mit mindestens # Likes anzeigen}}" -#: src/components/WhoCanReply.tsx:295 +#: src/components/WhoCanReply.tsx:296 msgid "<0/> members" msgstr "<0/> Mitglieder" @@ -177,11 +177,11 @@ msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} und {2, plural, one {# weiterer Feed} other {# weitere Feeds}} sind in deinem Startpaket enthalten" -#: src/view/shell/Drawer.tsx:101 +#: src/view/shell/Drawer.tsx:100 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {Follower} other {Follower}}" -#: src/view/shell/Drawer.tsx:112 +#: src/view/shell/Drawer.tsx:111 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {Folge ich} other {Folge ich}}" @@ -223,22 +223,22 @@ msgid "Access profile and other navigation links" msgstr "Zugang zum Profil und anderen Navigationslinks" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:519 +#: src/view/screens/Settings/index.tsx:520 msgid "Accessibility" msgstr "Barrierefreiheit" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Accessibility settings" msgstr "Einstellungen für Barrierefreiheit" -#: src/Navigation.tsx:301 +#: src/Navigation.tsx:309 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "Einstellungen für Barrierefreiheit" #: src/screens/Login/LoginForm.tsx:190 -#: src/view/screens/Settings/index.tsx:346 -#: src/view/screens/Settings/index.tsx:753 +#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:754 msgid "Account" msgstr "Konto" @@ -285,7 +285,7 @@ msgid "Account unmuted" msgstr "Stummschaltung für Konto aufgehoben" #: src/components/dialogs/MutedWords.tsx:164 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 msgid "Add" @@ -309,8 +309,8 @@ msgstr "Einen Benutzer zu dieser Liste hinzufügen" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:423 -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:433 msgid "Add account" msgstr "Konto hinzufügen" @@ -366,7 +366,7 @@ msgstr "Zu Listen hinzufügen" msgid "Add to my feeds" msgstr "Zu meinen Feeds hinzufügen" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "Zur Liste hinzugefügt" @@ -375,7 +375,7 @@ msgstr "Zur Liste hinzugefügt" msgid "Added to my feeds" msgstr "Zu meinen Feeds hinzugefügt" -#: src/view/screens/PreferencesFollowingFeed.tsx:172 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Passe die Anzahl der Likes an, die eine Antwort haben muss, um in deinem Feed angezeigt zu werden." @@ -393,7 +393,7 @@ msgid "Adult content is disabled." msgstr "Inhalte für Erwachsene sind deaktiviert." #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:687 +#: src/view/screens/Settings/index.tsx:688 msgid "Advanced" msgstr "Erweitert" @@ -409,8 +409,8 @@ msgstr "Allen Konten wurden gefolgt!" msgid "All the feeds you've saved, right in one place." msgstr "All deine gespeicherten Feeds an einem Ort." -#: src/view/com/modals/AddAppPasswords.tsx:187 -#: src/view/com/modals/AddAppPasswords.tsx:194 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "Erlaube den Zugriff auf deine Direktnachrichten" @@ -430,7 +430,7 @@ msgstr "Bereits angemeldet als @{0}" #: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "ALT" msgstr "ALT" @@ -440,7 +440,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Alt-Text" -#: src/view/com/util/post-embeds/GifEmbed.tsx:180 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Alt Text" msgstr "Alt-Text" @@ -465,8 +465,8 @@ msgstr "Ein Fehler ist aufgetreten" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Beim Generieren deines Startpakets ist ein Fehler aufgetreten. Möchtest du es erneut versuchen?" -#: src/components/StarterPack/QrCodeDialog.tsx:70 -#: src/components/StarterPack/ShareDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the QR code!" msgstr "Beim Speichern des QR-Codes ist ein Fehler aufgetreten!" @@ -478,10 +478,18 @@ msgstr "Beim Versuch, allen zu folgen, ist ein Fehler aufgetreten." msgid "An issue not included in these options" msgstr "Ein Problem, das hier nicht aufgelistet ist" +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +msgid "An issue occurred while trying to open the chat" +msgstr "" + #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:309 -#: src/components/ProfileCard.tsx:329 +#: src/components/ProfileCard.tsx:311 +#: src/components/ProfileCard.tsx:331 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -493,8 +501,8 @@ msgstr "Ein Problem ist aufgetreten, bitte versuche es erneut." msgid "an unknown error occurred" msgstr "Ein unbekannter Fehler ist aufgetreten" -#: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:291 +#: src/components/WhoCanReply.tsx:317 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "und" @@ -503,7 +511,7 @@ msgstr "und" msgid "Animals" msgstr "Tiere" -#: src/view/com/util/post-embeds/GifEmbed.tsx:146 +#: src/view/com/util/post-embeds/GifEmbed.tsx:155 msgid "Animated GIF" msgstr "Animiertes GIF" @@ -527,26 +535,26 @@ msgstr "App-Passwortnamen dürfen nur Buchstaben, Zahlen, Leerzeichen, Bindestri msgid "App Password names must be at least 4 characters long." msgstr "App-Passwortnamen müssen mindestens 4 Zeichen lang sein." -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "App password settings" msgstr "App-Passwort-Einstellungen" -#: src/Navigation.tsx:269 +#: src/Navigation.tsx:277 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:707 +#: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" msgstr "App-Passwörter" -#: src/components/moderation/LabelsOnMeDialog.tsx:151 -#: src/components/moderation/LabelsOnMeDialog.tsx:154 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "Anfechten" -#: src/components/moderation/LabelsOnMeDialog.tsx:236 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Appeal \"{0}\" label" msgstr "Kennzeichnung „{0}” anfechten" -#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/components/moderation/LabelsOnMeDialog.tsx:248 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Anfechtung gesendet" @@ -558,7 +566,7 @@ msgstr "Anfechtung gesendet" msgid "Appeal this decision" msgstr "Einspruch gegen diese Entscheidung" -#: src/view/screens/Settings/index.tsx:440 +#: src/view/screens/Settings/index.tsx:441 msgid "Appearance" msgstr "Erscheinungsbild" @@ -591,7 +599,7 @@ msgstr "Bist du sicher, dass du {0} von deinen Feeds entfernen möchtest?" 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:649 +#: src/view/com/composer/Composer.tsx:680 msgid "Are you sure you'd like to discard this draft?" msgstr "Bist du sicher, dass du diesen Entwurf verwerfen möchtest?" @@ -617,8 +625,8 @@ msgid "At least 3 characters" msgstr "Mindestens 3 Zeichen" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:281 -#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/components/moderation/LabelsOnMeDialog.tsx:302 +#: src/components/moderation/LabelsOnMeDialog.tsx:303 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -631,13 +639,12 @@ msgstr "Mindestens 3 Zeichen" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Zurück" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Basics" msgstr "Grundlagen" @@ -645,7 +652,7 @@ msgstr "Grundlagen" msgid "Birthday" msgstr "Geburtstag" -#: src/view/screens/Settings/index.tsx:378 +#: src/view/screens/Settings/index.tsx:379 msgid "Birthday:" msgstr "Geburtstag:" @@ -689,7 +696,7 @@ msgstr "Blockiert" msgid "Blocked accounts" msgstr "Blockierte Konten" -#: src/Navigation.tsx:145 +#: src/Navigation.tsx:148 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Blockierte Konten" @@ -756,21 +763,21 @@ msgstr "Bilder verwischen und aus Feeds herausfiltern" msgid "Books" msgstr "Bücher" -#: src/components/FeedInterstitials.tsx:281 +#: src/components/FeedInterstitials.tsx:285 msgid "Browse more accounts on the Explore page" msgstr "Stöbere auf der Seite „Explore” nach weiteren Konten" -#: src/components/FeedInterstitials.tsx:411 +#: src/components/FeedInterstitials.tsx:415 msgid "Browse more feeds on the Explore page" msgstr "Stöbere auf der Seite „Explore” in weiteren Feeds" -#: src/components/FeedInterstitials.tsx:266 -#: src/components/FeedInterstitials.tsx:396 +#: src/components/FeedInterstitials.tsx:270 +#: src/components/FeedInterstitials.tsx:400 msgid "Browse more suggestions" msgstr "Weitere Vorschläge anzeigen" -#: src/components/FeedInterstitials.tsx:289 -#: src/components/FeedInterstitials.tsx:420 +#: src/components/FeedInterstitials.tsx:293 +#: src/components/FeedInterstitials.tsx:424 msgid "Browse more suggestions on the Explore page" msgstr "Stöbere auf der Seite „Explore” nach weiteren Vorschlägen" @@ -807,7 +814,7 @@ msgstr "von dir" msgid "Camera" msgstr "Kamera" -#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Darf nur Buchstaben, Zahlen, Leerzeichen, Bindestriche und Unterstriche enthalten. Muss mindestens 4 Zeichen lang sein, darf aber nicht länger als 32 Zeichen sein." @@ -816,8 +823,8 @@ msgstr "Darf nur Buchstaben, Zahlen, Leerzeichen, Bindestriche und Unterstriche #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:451 -#: src/view/com/composer/Composer.tsx:457 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -835,7 +842,7 @@ msgstr "Darf nur Buchstaben, Zahlen, Leerzeichen, Bindestriche und Unterstriche #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:139 #: src/view/screens/Search/Search.tsx:704 -#: src/view/shell/desktop/Search.tsx:218 +#: src/view/shell/desktop/Search.tsx:219 msgid "Cancel" msgstr "Abbrechen" @@ -871,8 +878,8 @@ msgstr "Beitrag zitieren abbrechen" msgid "Cancel reactivation and log out" msgstr "Reaktivierung abbrechen und abmelden" -#: src/view/com/modals/ListAddRemoveUsers.tsx:87 -#: src/view/shell/desktop/Search.tsx:214 +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "Suche abbrechen" @@ -884,17 +891,17 @@ msgstr "Bricht das Öffnen der verlinkten Website ab" msgid "Change" msgstr "Ändern" -#: src/view/screens/Settings/index.tsx:372 +#: src/view/screens/Settings/index.tsx:373 msgctxt "action" msgid "Change" msgstr "Ändern" -#: src/view/screens/Settings/index.tsx:719 +#: src/view/screens/Settings/index.tsx:720 msgid "Change handle" msgstr "Handle ändern" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:730 +#: src/view/screens/Settings/index.tsx:731 msgid "Change Handle" msgstr "Handle ändern" @@ -902,12 +909,12 @@ msgstr "Handle ändern" msgid "Change my email" msgstr "Meine E-Mail ändern" -#: src/view/screens/Settings/index.tsx:764 +#: src/view/screens/Settings/index.tsx:765 msgid "Change password" msgstr "Passwort ändern" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:775 +#: src/view/screens/Settings/index.tsx:776 msgid "Change Password" msgstr "Passwort ändern" @@ -919,7 +926,7 @@ msgstr "Beitragssprache auf {0} ändern" msgid "Change Your Email" msgstr "Deine E-Mail ändern" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:321 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -931,14 +938,14 @@ msgstr "Chat stummgeschaltet" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:326 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" msgstr "Chat-Einstellungen" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:648 +#: src/view/screens/Settings/index.tsx:649 msgid "Chat Settings" msgstr "Chat-Einstellungen" @@ -1000,19 +1007,19 @@ msgstr "Wähle aus, wer antworten darf" msgid "Choose your password" msgstr "Wähle dein Passwort" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clear all legacy storage data" msgstr "Alle alten Speicherdaten löschen" -#: src/view/screens/Settings/index.tsx:914 +#: src/view/screens/Settings/index.tsx:915 msgid "Clear all legacy storage data (restart after this)" msgstr "Alle alten Speicherdaten löschen (danach neu starten)" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clear all storage data" msgstr "Alle Speicherdaten löschen" -#: src/view/screens/Settings/index.tsx:926 +#: src/view/screens/Settings/index.tsx:927 msgid "Clear all storage data (restart after this)" msgstr "Alle Speicherdaten löschen (danach neu starten)" @@ -1021,11 +1028,11 @@ msgstr "Alle Speicherdaten löschen (danach neu starten)" msgid "Clear search query" msgstr "Suchanfrage löschen" -#: src/view/screens/Settings/index.tsx:912 +#: src/view/screens/Settings/index.tsx:913 msgid "Clears all legacy storage data" msgstr "Löscht alle veralteten Speicherdaten" -#: src/view/screens/Settings/index.tsx:924 +#: src/view/screens/Settings/index.tsx:925 msgid "Clears all storage data" msgstr "Löscht alle Speicherdaten" @@ -1045,7 +1052,7 @@ msgstr "Klicke hier für weitere Informationen." msgid "Click here to open tag menu for {tag}" msgstr "Klicke hier, um das Tag-Menü für {tag} zu öffnen" -#: src/components/dms/MessageItem.tsx:237 +#: src/components/dms/MessageItem.tsx:231 msgid "Click to retry failed message" msgstr "Klicke hier, um die fehlgeschlagene Nachricht erneut zu senden" @@ -1066,7 +1073,7 @@ msgstr "Klipp 🐴 klapp 🐴" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/util/post-embeds/GifEmbed.tsx:195 msgid "Close" msgstr "Schließen" @@ -1121,7 +1128,7 @@ msgstr "Schließt die untere Navigationsleiste" msgid "Closes password update alert" msgstr "Schließt die Kennwortaktualisierungsmeldung" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:472 msgid "Closes post composer and discards post draft" msgstr "Schließt den Beitragsverfasser und verwirft den Beitragsentwurf" @@ -1129,11 +1136,11 @@ msgstr "Schließt den Beitragsverfasser und verwirft den Beitragsentwurf" msgid "Closes viewer for header image" msgstr "Schließt den Betrachter für das Banner" -#: src/view/com/notifications/FeedItem.tsx:237 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Collapse list of users" msgstr "Liste der Benutzer einklappen" -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:440 msgid "Collapses list of users for a given notification" msgstr "Klappt die Liste der Benutzer für eine bestimmte Meldung zusammen" @@ -1147,7 +1154,7 @@ msgstr "Komödie" msgid "Comics" msgstr "Comics" -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:267 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Community-Richtlinien" @@ -1160,7 +1167,7 @@ msgstr "Schließe das Onboarding ab und nutze dein Konto" msgid "Complete the challenge" msgstr "Schließe die Herausforderung ab" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:582 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Verfasse Beiträge mit einer Länge von bis zu {MAX_GRAPHEME_LENGTH} Zeichen" @@ -1181,8 +1188,6 @@ msgstr "Konfiguriert in <0>Moderationseinstellungen" #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/PreferencesFollowingFeed.tsx:307 -#: src/view/screens/PreferencesThreads.tsx:159 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 msgid "Confirm" @@ -1287,12 +1292,12 @@ msgstr "Konversation gelöscht" msgid "Cooking" msgstr "Kochen" -#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Kopiert" -#: src/view/screens/Settings/index.tsx:264 +#: src/view/screens/Settings/index.tsx:265 msgid "Copied build version to clipboard" msgstr "Die Build-Version wurde in die Zwischenablage kopiert" @@ -1300,7 +1305,7 @@ msgstr "Die Build-Version wurde in die Zwischenablage kopiert" #: src/view/com/modals/AddAppPasswords.tsx:80 #: src/view/com/modals/ChangeHandle.tsx:320 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:189 +#: src/view/com/util/forms/PostDropdownBtn.tsx:192 #: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "In die Zwischenablage kopiert" @@ -1309,12 +1314,12 @@ msgstr "In die Zwischenablage kopiert" msgid "Copied!" msgstr "Kopiert!" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" msgstr "Kopiert das App-Passwort" -#: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/view/com/modals/AddAppPasswords.tsx:213 +#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Kopieren" @@ -1327,11 +1332,11 @@ msgstr "{0} kopieren" msgid "Copy code" msgstr "Kopiere den Code" -#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" msgstr "Link kopieren" -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" msgstr "Link kopieren" @@ -1339,8 +1344,8 @@ msgstr "Link kopieren" msgid "Copy link to list" msgstr "Link zur Liste kopieren" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 msgid "Copy link to post" msgstr "Link zum Beitrag kopieren" @@ -1349,20 +1354,24 @@ msgstr "Link zum Beitrag kopieren" msgid "Copy message text" msgstr "Nachrichtentext kopieren" -#: src/view/com/util/forms/PostDropdownBtn.tsx:285 -#: src/view/com/util/forms/PostDropdownBtn.tsx:287 +#: src/view/com/util/forms/PostDropdownBtn.tsx:288 +#: src/view/com/util/forms/PostDropdownBtn.tsx:290 msgid "Copy post text" msgstr "Beitragstext kopieren" -#: src/components/StarterPack/QrCodeDialog.tsx:168 +#: src/components/StarterPack/QrCodeDialog.tsx:171 msgid "Copy QR code" msgstr "QR-Code kopieren" -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:272 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Urheberrechtsbestimmungen" +#: src/view/com/composer/videos/state.ts:31 +msgid "Could not compress video" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "Du konntest den Chat nicht verlassen" @@ -1388,17 +1397,17 @@ msgstr "Erstellen" msgid "Create a new account" msgstr "Neues Konto erstellen" -#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:425 msgid "Create a new Bluesky account" msgstr "Neues Bluesky-Konto erstellen" -#: src/components/StarterPack/QrCodeDialog.tsx:151 +#: src/components/StarterPack/QrCodeDialog.tsx:154 msgid "Create a QR code for a starter pack" msgstr "QR-Code für ein Startpaket erstellen" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:351 msgid "Create a starter pack" msgstr "Ein Startpaket erstellen" @@ -1423,7 +1432,7 @@ msgstr "Stattdessen einen Avatar erstellen" msgid "Create another" msgstr "Ein weiteres erstellen" -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" msgstr "App-Passwort erstellen" @@ -1455,7 +1464,7 @@ msgid "Custom domain" msgstr "Benutzerdefinierte Domain" #: src/view/screens/Feeds.tsx:760 -#: src/view/screens/Search/Explore.tsx:390 +#: src/view/screens/Search/Explore.tsx:392 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Benutzerdefinierte Feeds, die von der Community erstellt wurden, bringen dir neue Erfahrungen und helfen dir, die Inhalte zu finden, die du liebst." @@ -1463,8 +1472,8 @@ msgstr "Benutzerdefinierte Feeds, die von der Community erstellt wurden, bringen msgid "Customize media from external sites." msgstr "Passe die Einstellungen für Medien von externen Websites an." -#: src/view/screens/Settings/index.tsx:459 -#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:460 +#: src/view/screens/Settings/index.tsx:486 msgid "Dark" msgstr "Dunkel" @@ -1472,7 +1481,7 @@ msgstr "Dunkel" msgid "Dark mode" msgstr "Dunkelmodus" -#: src/view/screens/Settings/index.tsx:472 +#: src/view/screens/Settings/index.tsx:473 msgid "Dark Theme" msgstr "Dunkelmodus" @@ -1481,15 +1490,15 @@ msgid "Date of birth" msgstr "Geburtsdatum" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:807 +#: src/view/screens/Settings/index.tsx:808 msgid "Deactivate account" msgstr "Konto deaktivieren" -#: src/view/screens/Settings/index.tsx:819 +#: src/view/screens/Settings/index.tsx:820 msgid "Deactivate my account" msgstr "Mein Konto deaktivieren" -#: src/view/screens/Settings/index.tsx:874 +#: src/view/screens/Settings/index.tsx:875 msgid "Debug Moderation" msgstr "Debug-Moderation" @@ -1501,13 +1510,13 @@ msgstr "Debug-Panel" #: src/screens/StarterPack/StarterPackScreen.tsx:562 #: src/screens/StarterPack/StarterPackScreen.tsx:641 #: src/screens/StarterPack/StarterPackScreen.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Löschen" -#: src/view/screens/Settings/index.tsx:829 +#: src/view/screens/Settings/index.tsx:830 msgid "Delete account" msgstr "Konto löschen" @@ -1523,8 +1532,8 @@ msgstr "App-Passwort löschen" msgid "Delete app password?" msgstr "App-Passwort löschen?" -#: src/view/screens/Settings/index.tsx:891 -#: src/view/screens/Settings/index.tsx:894 +#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:895 msgid "Delete chat declaration record" msgstr "Datensatz für die Chat-Erklärung löschen" @@ -1548,12 +1557,12 @@ msgstr "Nachricht für mich löschen" msgid "Delete my account" msgstr "Mein Konto löschen" -#: src/view/screens/Settings/index.tsx:841 +#: src/view/screens/Settings/index.tsx:842 msgid "Delete My Account…" msgstr "Mein Konto löschen…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:414 -#: src/view/com/util/forms/PostDropdownBtn.tsx:416 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 +#: src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "Beitrag löschen" @@ -1570,7 +1579,7 @@ msgstr "Startpaket löschen?" msgid "Delete this list?" msgstr "Diese Liste löschen?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:428 +#: src/view/com/util/forms/PostDropdownBtn.tsx:431 msgid "Delete this post?" msgstr "Diesen Beitrag löschen?" @@ -1582,7 +1591,7 @@ msgstr "Gelöscht" msgid "Deleted post." msgstr "Gelöschter Beitrag." -#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:893 msgid "Deletes the chat declaration record" msgstr "Löscht den Datensatz für die Chat-Erklärung" @@ -1597,11 +1606,11 @@ msgstr "Beschreibung" msgid "Descriptive alt text" msgstr "Beschreibender Alt-Text" -#: src/view/com/composer/Composer.tsx:283 +#: src/view/com/composer/Composer.tsx:295 msgid "Did you want to say anything?" msgstr "Wolltest du etwas sagen?" -#: src/view/screens/Settings/index.tsx:478 +#: src/view/screens/Settings/index.tsx:479 msgid "Dim" msgstr "Gedimmt" @@ -1630,11 +1639,11 @@ msgstr "Haptische Rückmeldung deaktivieren" msgid "Disabled" msgstr "Deaktiviert" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:682 msgid "Discard" msgstr "Verwerfen" -#: src/view/com/composer/Composer.tsx:648 +#: src/view/com/composer/Composer.tsx:679 msgid "Discard draft?" msgstr "Entwurf verwerfen?" @@ -1652,7 +1661,7 @@ msgstr "„Discover” lernt beim Browsen, welche Beiträge dir gefallen." msgid "Discover new custom feeds" msgstr "Entdecke neue benutzerdefinierte Feeds" -#: src/view/screens/Search/Explore.tsx:388 +#: src/view/screens/Search/Explore.tsx:390 msgid "Discover new feeds" msgstr "Entdecke neue Feeds" @@ -1705,22 +1714,20 @@ msgstr "Domain verifiziert!" #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesFollowingFeed.tsx:310 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Fertig" #: src/view/com/modals/EditImage.tsx:334 -#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" msgstr "Fertig" @@ -1729,7 +1736,7 @@ msgstr "Fertig" msgid "Done{extraText}" msgstr "Fertig{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319 msgid "Download Bluesky" msgstr "Bluesky herunterladen" @@ -1799,7 +1806,7 @@ msgctxt "action" msgid "Edit" msgstr "Bearbeiten" -#: src/view/com/util/UserAvatar.tsx:325 +#: src/view/com/util/UserAvatar.tsx:337 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "Avatar bearbeiten" @@ -1821,7 +1828,7 @@ msgstr "Details der Liste bearbeiten" msgid "Edit Moderation List" msgstr "Moderationsliste bearbeiten" -#: src/Navigation.tsx:274 +#: src/Navigation.tsx:282 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -1836,12 +1843,12 @@ msgstr "Mein Profil bearbeiten" msgid "Edit People" msgstr "Personen bearbeiten" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "Profil bearbeiten" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "Profil bearbeiten" @@ -1854,7 +1861,7 @@ msgstr "Startpaket bearbeiten" msgid "Edit User List" msgstr "Benutzerliste bearbeiten" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Edit who can reply" msgstr "Bearbeiten, wer antworten kann" @@ -1866,7 +1873,7 @@ msgstr "Bearbeite deinen Anzeigenamen" msgid "Edit your profile description" msgstr "Bearbeite deine Profilbeschreibung" -#: src/Navigation.tsx:343 +#: src/Navigation.tsx:356 msgid "Edit your starter pack" msgstr "Dein Startpaket bearbeiten" @@ -1905,7 +1912,7 @@ msgstr "E-Mail aktualisiert" msgid "Email verified" msgstr "E-Mail verifiziert" -#: src/view/screens/Settings/index.tsx:350 +#: src/view/screens/Settings/index.tsx:351 msgid "Email:" msgstr "E-Mail:" @@ -1914,8 +1921,8 @@ msgid "Embed HTML code" msgstr "HTML-Code einbetten" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:324 -#: src/view/com/util/forms/PostDropdownBtn.tsx:326 +#: src/view/com/util/forms/PostDropdownBtn.tsx:327 +#: src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "Beitrag einbetten" @@ -1936,11 +1943,16 @@ msgstr "Inhalte für Erwachsene aktivieren" msgid "Enable external media" msgstr "Externe Medien aktivieren" -#: src/view/screens/PreferencesExternalEmbeds.tsx:76 +#: src/view/screens/PreferencesExternalEmbeds.tsx:73 msgid "Enable media players for" msgstr "Medienplayer aktivieren für" -#: src/view/screens/PreferencesFollowingFeed.tsx:146 +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 msgid "Enable this setting to only see replies between people you follow." msgstr "Aktiviere diese Einstellung, um nur Antworten von Personen zu sehen, denen du folgst." @@ -1962,7 +1974,7 @@ msgstr "Ende des Feeds" msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." msgstr "Ende des Onboarding-Tour-Fensters. Nicht weitergehen. Gehe stattdessen zurück, um weitere Optionen zu sehen, oder drücke, um zu überspringen." -#: src/view/com/modals/AddAppPasswords.tsx:160 +#: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "Gib einen Namen für dieses App-Passwort ein" @@ -2030,7 +2042,7 @@ msgid "Everybody" msgstr "Alle" #: src/components/WhoCanReply.tsx:69 -#: src/components/WhoCanReply.tsx:240 +#: src/components/WhoCanReply.tsx:241 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "Alle können antworten" @@ -2066,8 +2078,8 @@ msgstr "Verlässt den Vorgang des Bildzuschneidens" msgid "Exits image view" msgstr "Verlässt die Bildansicht" -#: src/view/com/modals/ListAddRemoveUsers.tsx:88 -#: src/view/shell/desktop/Search.tsx:215 +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +#: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "Verlässt die Eingabe der Suchanfrage" @@ -2075,7 +2087,7 @@ msgstr "Verlässt die Eingabe der Suchanfrage" msgid "Expand alt text" msgstr "Alt-Text erweitern" -#: src/view/com/notifications/FeedItem.tsx:238 +#: src/view/com/notifications/FeedItem.tsx:239 msgid "Expand list of users" msgstr "Liste der Benutzer erweitern" @@ -2084,6 +2096,10 @@ msgstr "Liste der Benutzer erweitern" msgid "Expand or collapse the full post you are replying to" msgstr "Erweitere oder reduziere den gesamten Beitrag, auf den du antwortest" +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." msgstr "Explizite oder potenziell verstörende Medien." @@ -2092,12 +2108,12 @@ msgstr "Explizite oder potenziell verstörende Medien." msgid "Explicit sexual images." msgstr "Explizite sexuelle Bilder." -#: src/view/screens/Settings/index.tsx:787 +#: src/view/screens/Settings/index.tsx:788 msgid "Export my data" msgstr "Meine Daten exportieren" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:798 +#: src/view/screens/Settings/index.tsx:799 msgid "Export My Data" msgstr "Meine Daten exportieren" @@ -2107,17 +2123,17 @@ msgid "External Media" msgstr "Externe Medien" #: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/view/screens/PreferencesExternalEmbeds.tsx:64 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:293 +#: src/Navigation.tsx:301 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:680 +#: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" msgstr "Externe Medienpräferenzen" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "External media settings" msgstr "Externe Medienpräferenzen" @@ -2147,8 +2163,8 @@ msgstr "Beitrag konnte nicht gelöscht werden, bitte versuche es erneut" msgid "Failed to delete starter pack" msgstr "Startpaket konnte nicht gelöscht werden" -#: src/view/screens/Search/Explore.tsx:426 -#: src/view/screens/Search/Explore.tsx:454 +#: src/view/screens/Search/Explore.tsx:428 +#: src/view/screens/Search/Explore.tsx:456 msgid "Failed to load feeds preferences" msgstr "Fehler beim Laden der Einstellungen für Feeds" @@ -2161,29 +2177,33 @@ msgstr "GIFs konnten nicht geladen werden" msgid "Failed to load past messages" msgstr "Es konnten keine vorherigen Nachrichten geladen werden" -#: src/view/screens/Search/Explore.tsx:419 -#: src/view/screens/Search/Explore.tsx:447 +#: src/view/screens/Search/Explore.tsx:421 +#: src/view/screens/Search/Explore.tsx:449 msgid "Failed to load suggested feeds" msgstr "Die vorgeschlagenen Feeds konnten nicht geladen werden." -#: src/view/screens/Search/Explore.tsx:377 +#: src/view/screens/Search/Explore.tsx:379 msgid "Failed to load suggested follows" msgstr "Die vorgeschlagenen Konten, denen du folgen solltest, konnten nicht geladen werden" -#: src/view/com/lightbox/Lightbox.tsx:86 +#: src/view/com/lightbox/Lightbox.tsx:90 msgid "Failed to save image: {0}" msgstr "Das Speichern des Bildes ist fehlgeschlagen: {0}" -#: src/components/dms/MessageItem.tsx:230 +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + +#: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "Konnte nicht gesendet werden" -#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: src/components/moderation/LabelsOnMeDialog.tsx:244 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "Anfechtung nicht eingereicht. Bitte versuche es erneut." -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:181 msgid "Failed to toggle thread mute, please try again" msgstr "Du konntest die Stummschaltung des Threads nicht aktivieren oder deaktivieren. Bitte versuche es erneut" @@ -2196,7 +2216,7 @@ msgstr "Aktualisierung der Feeds fehlgeschlagen" msgid "Failed to update settings" msgstr "Einstellungen konnten nicht aktualisiert werden" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:217 msgid "Feed" msgstr "Feed" @@ -2210,19 +2230,19 @@ msgid "Feed toggle" msgstr "Feed-Umschalter" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:345 +#: src/view/shell/Drawer.tsx:332 msgid "Feedback" msgstr "Feedback" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:336 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 #: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:493 -#: src/view/shell/Drawer.tsx:494 +#: src/view/shell/Drawer.tsx:483 +#: src/view/shell/Drawer.tsx:484 msgid "Feeds" msgstr "Feeds" @@ -2264,11 +2284,11 @@ msgstr "Finde weitere Feeds und Konten, denen du folgen kannst, auf der „Explo msgid "Find posts and users on Bluesky" msgstr "Finde Beiträge und Nutzer auf Bluesky" -#: src/view/screens/PreferencesFollowingFeed.tsx:110 +#: src/view/screens/PreferencesFollowingFeed.tsx:108 msgid "Fine-tune the content you see on your Following feed." msgstr "Passe die Inhalte deines Following-Feeds an." -#: src/view/screens/PreferencesThreads.tsx:60 +#: src/view/screens/PreferencesThreads.tsx:54 msgid "Fine-tune the discussion threads." msgstr "Passe die Diskussions-Threads an." @@ -2298,7 +2318,7 @@ msgid "Flip vertically" msgstr "Vertikal drehen" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:341 +#: src/components/ProfileCard.tsx:343 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2339,27 +2359,27 @@ msgstr "Allen folgen" msgid "Follow Back" msgstr "Zurückfolgen" -#: src/view/screens/Search/Explore.tsx:333 +#: src/view/screens/Search/Explore.tsx:335 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "Folge weiteren Konten, um dich mit deinen Interessen zu verbinden und dein Netzwerk aufzubauen." #: src/view/com/profile/ProfileCard.tsx:190 -msgid "Followed by {0}" -msgstr "Gefolgt von {0}" +#~ msgid "Followed by {0}" +#~ msgstr "Gefolgt von {0}" -#: src/components/KnownFollowers.tsx:223 +#: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "Gefolgt von <0>{0}" -#: src/components/KnownFollowers.tsx:209 +#: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Gefolgt von <0>{0} und {1, plural, one {# anderer} other {# andere}}" -#: src/components/KnownFollowers.tsx:196 +#: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" msgstr "Gefolgt von <0>{0} und <1>{1}" -#: src/components/KnownFollowers.tsx:178 +#: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Gefolgt von <0>{0}, <1>{1} und {1, plural, one {# anderer} other {# andere}}" @@ -2367,15 +2387,15 @@ msgstr "Gefolgt von <0>{0}, <1>{1} und {1, plural, one {# anderer} other msgid "Followed users" msgstr "Benutzer, denen ich folge" -#: src/view/screens/PreferencesFollowingFeed.tsx:153 +#: src/view/screens/PreferencesFollowingFeed.tsx:152 msgid "Followed users only" msgstr "Nur Benutzer, denen ich folge" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:198 msgid "followed you" msgstr "folgte dir" -#: src/view/com/notifications/FeedItem.tsx:195 +#: src/view/com/notifications/FeedItem.tsx:196 msgid "followed you back" msgstr "ist dir gefolgt" @@ -2384,7 +2404,7 @@ msgstr "ist dir gefolgt" msgid "Followers" msgstr "Follower" -#: src/Navigation.tsx:182 +#: src/Navigation.tsx:185 msgid "Followers of @{0} that you know" msgstr "Follower von @{0}, die du kennst" @@ -2394,7 +2414,7 @@ msgid "Followers you know" msgstr "Follower, die du kennst" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:335 +#: src/components/ProfileCard.tsx:337 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2406,7 +2426,7 @@ msgstr "Follower, die du kennst" msgid "Following" msgstr "Folge ich" -#: src/components/ProfileCard.tsx:301 +#: src/components/ProfileCard.tsx:303 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Ich folge {0}" @@ -2415,13 +2435,13 @@ msgstr "Ich folge {0}" msgid "Following {name}" msgstr "Ich folge {name}" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Following feed preferences" msgstr "Following-Feed-Einstellungen" -#: src/Navigation.tsx:280 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:583 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesFollowingFeed.tsx:105 +#: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "Following-Feed-Einstellungen" @@ -2446,7 +2466,7 @@ msgstr "Essen" msgid "For security reasons, we'll need to send a confirmation code to your email address." msgstr "Aus Sicherheitsgründen müssen wir dir einen Bestätigungscode an deine E-Mail-Adresse schicken." -#: src/view/com/modals/AddAppPasswords.tsx:232 +#: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Aus Sicherheitsgründen kannst du dies nicht erneut ansehen. Wenn du dieses Passwort verlierst, musst du ein neues generieren." @@ -2471,7 +2491,7 @@ msgstr "Postet oft unerwünschte Inhalte" msgid "From @{sanitizedAuthor}" msgstr "Von @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:236 +#: src/view/com/posts/FeedItem.tsx:242 msgctxt "from-feed" msgid "From <0/>" msgstr "Von <0/>" @@ -2484,6 +2504,10 @@ msgstr "Galerie" msgid "Generate a starter pack" msgstr "" +#: src/view/shell/Drawer.tsx:336 +msgid "Get help" +msgstr "" + #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" msgstr "" @@ -2531,12 +2555,12 @@ msgid "Go Back" msgstr "Zurückgehen" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -msgid "Go back to previous screen" -msgstr "" +#~ msgid "Go back to previous screen" +#~ msgstr "" #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/components/ReportDialog/SubmitView.tsx:121 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 @@ -2601,7 +2625,7 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:316 msgid "Hashtag" msgstr "Hashtag" @@ -2614,7 +2638,7 @@ msgid "Having trouble?" msgstr "Hast du Probleme?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:355 +#: src/view/shell/Drawer.tsx:345 msgid "Help" msgstr "Hilfe" @@ -2634,7 +2658,7 @@ msgstr "" #~ msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." #~ msgstr "Hier sind einige thematische Feeds, die auf deinen Interessen basieren: {interestsText}. Du kannst so vielen Feeds folgen, wie du möchtest." -#: src/view/com/modals/AddAppPasswords.tsx:203 +#: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "Hier ist dein App-Passwort." @@ -2645,17 +2669,17 @@ msgstr "Hier ist dein App-Passwort." #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:445 msgid "Hide" msgstr "Ausblenden" -#: src/view/com/notifications/FeedItem.tsx:444 +#: src/view/com/notifications/FeedItem.tsx:447 msgctxt "action" msgid "Hide" msgstr "Ausblenden" -#: src/view/com/util/forms/PostDropdownBtn.tsx:387 -#: src/view/com/util/forms/PostDropdownBtn.tsx:389 +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 msgid "Hide post" msgstr "Beitrag ausblenden" @@ -2664,11 +2688,11 @@ msgstr "Beitrag ausblenden" msgid "Hide the content" msgstr "Den Inhalt ausblenden" -#: src/view/com/util/forms/PostDropdownBtn.tsx:439 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide this post?" msgstr "Diesen Beitrag ausblenden?" -#: src/view/com/notifications/FeedItem.tsx:435 +#: src/view/com/notifications/FeedItem.tsx:438 msgid "Hide user list" msgstr "Benutzerliste ausblenden" @@ -2704,12 +2728,12 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/Navigation.tsx:519 -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:552 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:425 -#: src/view/shell/Drawer.tsx:426 +#: src/view/shell/Drawer.tsx:415 +#: src/view/shell/Drawer.tsx:416 msgid "Home" msgstr "Home" @@ -2763,7 +2787,7 @@ msgstr "" msgid "If you delete this list, you won't be able to recover it." msgstr "Wenn du diese Liste löschst, kannst du sie nicht wiederherstellen." -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 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." @@ -2792,7 +2816,7 @@ msgstr "Bild-Alt-Text" #~ msgid "Image options" #~ msgstr "Bild-Optionen" -#: src/components/StarterPack/ShareDialog.tsx:75 +#: src/components/StarterPack/ShareDialog.tsx:76 msgid "Image saved to your camera roll!" msgstr "" @@ -2820,7 +2844,7 @@ msgstr "Bestätigungscode für die Kontolöschung eingeben" #~ msgid "Input invite code to proceed" #~ msgstr "Einladungscode eingeben, um fortzufahren" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" msgstr "Namen für das App-Passwort eingeben" @@ -2893,7 +2917,7 @@ msgstr "Einladungscodes: {0} verfügbar" msgid "Invite codes: 1 available" msgstr "Einladungscodes: 1 verfügbar" -#: src/components/StarterPack/ShareDialog.tsx:96 +#: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" msgstr "" @@ -2917,8 +2941,8 @@ msgstr "" msgid "Jobs" msgstr "Jobs" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:432 #: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" @@ -2957,11 +2981,11 @@ msgstr "" #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:79 +#: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:81 +#: src/components/moderation/LabelsOnMeDialog.tsx:82 msgid "Labels on your content" msgstr "" @@ -2969,16 +2993,16 @@ msgstr "" msgid "Language selection" msgstr "Sprachauswahl" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Language settings" msgstr "Spracheinstellungen" -#: src/Navigation.tsx:155 +#: src/Navigation.tsx:158 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Spracheinstellungen" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Languages" msgstr "Sprachen" @@ -3046,7 +3070,7 @@ msgstr "Bluesky verlassen" msgid "left to go." msgstr "noch übrig." -#: src/view/screens/Settings/index.tsx:309 +#: src/view/screens/Settings/index.tsx:310 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Der Legacy-Speicher wurde gelöscht, du musst die App jetzt neu starten." @@ -3069,7 +3093,7 @@ msgstr "Los geht's!" #~ msgid "Library" #~ msgstr "Bibliothek" -#: src/view/screens/Settings/index.tsx:453 +#: src/view/screens/Settings/index.tsx:454 msgid "Light" msgstr "Hell" @@ -3087,13 +3111,13 @@ msgid "Like 10 posts to train the Discover feed" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Like this feed" msgstr "Diesen Feed liken" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:219 -#: src/Navigation.tsx:224 +#: src/Navigation.tsx:222 +#: src/Navigation.tsx:227 msgid "Liked by" msgstr "Geliked von" @@ -3117,11 +3141,11 @@ msgstr "Geliked von" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "Von {likeCount} {0} geliked" -#: src/view/com/notifications/FeedItem.tsx:201 +#: src/view/com/notifications/FeedItem.tsx:202 msgid "liked your custom feed" msgstr "hat deinen benutzerdefinierten Feed geliked" -#: src/view/com/notifications/FeedItem.tsx:185 +#: src/view/com/notifications/FeedItem.tsx:186 msgid "liked your post" msgstr "hat deinen Beitrag geliked" @@ -3133,7 +3157,7 @@ msgstr "Likes" msgid "Likes on this post" msgstr "Likes für diesen Beitrag" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:191 msgid "List" msgstr "Liste" @@ -3170,12 +3194,12 @@ msgstr "Liste entblockiert" msgid "List unmuted" msgstr "Listenstummschaltung aufgehoben" -#: src/Navigation.tsx:125 +#: src/Navigation.tsx:128 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 -#: src/view/shell/Drawer.tsx:509 -#: src/view/shell/Drawer.tsx:510 +#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:500 msgid "Lists" msgstr "Listen" @@ -3183,7 +3207,7 @@ msgstr "Listen" msgid "Lists blocking this user:" msgstr "" -#: src/view/screens/Search/Explore.tsx:130 +#: src/view/screens/Search/Explore.tsx:131 msgid "Load more" msgstr "" @@ -3192,21 +3216,21 @@ msgstr "" #~ msgid "Load more posts" #~ msgstr "Mehr Beiträge laden" -#: src/view/screens/Search/Explore.tsx:218 +#: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:216 +#: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" msgstr "" -#: src/view/screens/Notifications.tsx:184 +#: src/view/screens/Notifications.tsx:219 msgid "Load new notifications" msgstr "Neue Mitteilungen laden" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:494 +#: src/view/screens/ProfileFeed.tsx:495 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Neue Beiträge laden" @@ -3215,7 +3239,7 @@ msgstr "Neue Beiträge laden" msgid "Loading..." msgstr "Wird geladen..." -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:247 msgid "Log" msgstr "Systemprotokoll" @@ -3293,7 +3317,7 @@ msgstr "" msgid "Media" msgstr "Medien" -#: src/components/WhoCanReply.tsx:275 +#: src/components/WhoCanReply.tsx:276 msgid "mentioned users" msgstr "erwähnte Benutzer" @@ -3315,7 +3339,7 @@ msgstr "" msgid "Message deleted" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:200 +#: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "Nachricht vom Server: {0}" @@ -3332,7 +3356,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:534 +#: src/Navigation.tsx:547 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3347,9 +3371,9 @@ msgstr "" msgid "Misleading Account" msgstr "Irreführender Account" -#: src/Navigation.tsx:130 +#: src/Navigation.tsx:133 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:562 +#: src/view/screens/Settings/index.tsx:563 msgid "Moderation" msgstr "Moderation" @@ -3385,16 +3409,16 @@ msgstr "Moderationsliste aktualisiert" msgid "Moderation lists" msgstr "Moderationslisten" -#: src/Navigation.tsx:135 +#: src/Navigation.tsx:138 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Moderationslisten" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Moderation settings" msgstr "Moderationseinstellungen" -#: src/Navigation.tsx:234 +#: src/Navigation.tsx:237 msgid "Moderation states" msgstr "" @@ -3419,7 +3443,7 @@ msgstr "Mehr Feeds" msgid "More options" msgstr "Mehr Optionen" -#: src/view/screens/PreferencesThreads.tsx:82 +#: src/view/screens/PreferencesThreads.tsx:76 msgid "Most-liked replies first" msgstr "Beliebteste Antworten zuerst" @@ -3494,13 +3518,13 @@ msgstr "Dieses Wort in Beitragstexten und Tags stummschalten" msgid "Mute this word in tags only" msgstr "Dieses Wort nur in Tags stummschalten" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:371 msgid "Mute thread" msgstr "Thread stummschalten" -#: src/view/com/util/forms/PostDropdownBtn.tsx:378 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 +#: src/view/com/util/forms/PostDropdownBtn.tsx:381 +#: src/view/com/util/forms/PostDropdownBtn.tsx:383 msgid "Mute words & tags" msgstr "Wörter und Tags stummschalten" @@ -3512,7 +3536,7 @@ msgstr "Stummgeschaltet" msgid "Muted accounts" msgstr "Stummgeschaltete Konten" -#: src/Navigation.tsx:140 +#: src/Navigation.tsx:143 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Stummgeschaltete Konten" @@ -3546,11 +3570,11 @@ msgstr "Meine Feeds" msgid "My Profile" msgstr "Mein Profil" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "My saved feeds" msgstr "Meine gespeicherten Feeds" -#: src/view/screens/Settings/index.tsx:623 +#: src/view/screens/Settings/index.tsx:624 msgid "My Saved Feeds" msgstr "Meine gespeicherten Feeds" @@ -3558,7 +3582,7 @@ msgstr "Meine gespeicherten Feeds" #~ msgid "my-server.com" #~ msgstr "mein-server.de" -#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/AddAppPasswords.tsx:174 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Name" @@ -3593,7 +3617,7 @@ msgstr "" msgid "Navigates to the next screen" msgstr "Navigiert zum nächsten Bildschirm" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:78 msgid "Navigates to your profile" msgstr "Navigiert zu deinem Profil" @@ -3632,7 +3656,7 @@ msgstr "Neu" msgid "New" msgstr "Neu" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" @@ -3660,9 +3684,9 @@ msgid "New post" msgstr "Neuer Beitrag" #: src/view/screens/Feeds.tsx:581 -#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Notifications.tsx:228 #: src/view/screens/Profile.tsx:478 -#: src/view/screens/ProfileFeed.tsx:428 +#: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:278 @@ -3682,7 +3706,7 @@ msgstr "" msgid "New User List" msgstr "Neue Benutzerliste" -#: src/view/screens/PreferencesThreads.tsx:79 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Newest replies first" msgstr "Neueste Antworten zuerst" @@ -3717,16 +3741,16 @@ msgstr "Weiter" msgid "Next image" msgstr "Nächstes Bild" -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:199 -#: src/view/screens/PreferencesFollowingFeed.tsx:234 -#: src/view/screens/PreferencesFollowingFeed.tsx:271 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:198 +#: src/view/screens/PreferencesFollowingFeed.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:270 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "No" msgstr "Nein" -#: src/view/screens/ProfileFeed.tsx:562 +#: src/view/screens/ProfileFeed.tsx:564 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Keine Beschreibung" @@ -3744,7 +3768,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/components/ProfileCard.tsx:321 +#: src/components/ProfileCard.tsx:323 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "{0} wird nicht mehr gefolgt" @@ -3761,7 +3785,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:122 msgid "No notifications yet!" msgstr "Noch keine Mitteilungen!" @@ -3793,7 +3817,7 @@ msgstr "Keine Ergebnisse gefunden" msgid "No results found for \"{query}\"" msgstr "Keine Ergebnisse für \"{query}\" gefunden" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 @@ -3839,7 +3863,7 @@ msgstr "Nicht-sexuelle Nacktheit" #~ msgid "Not Applicable." #~ msgstr "Unzutreffend." -#: src/Navigation.tsx:120 +#: src/Navigation.tsx:123 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Nicht gefunden" @@ -3850,7 +3874,7 @@ msgid "Not right now" msgstr "Nicht jetzt" #: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/forms/PostDropdownBtn.tsx:459 #: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "" @@ -3863,6 +3887,19 @@ msgstr "Hinweis: Bluesky ist ein offenes und öffentliches Netzwerk. Diese Einst msgid "Nothing here" msgstr "" +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:331 +#: src/view/screens/Notifications.tsx:119 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "" + #: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "" @@ -3871,13 +3908,14 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:529 -#: src/view/screens/Notifications.tsx:132 -#: src/view/screens/Notifications.tsx:169 +#: src/Navigation.tsx:542 +#: src/view/screens/Notifications.tsx:145 +#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:203 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 -#: src/view/shell/Drawer.tsx:457 -#: src/view/shell/Drawer.tsx:458 +#: src/view/shell/Drawer.tsx:447 +#: src/view/shell/Drawer.tsx:448 msgid "Notifications" msgstr "Mitteilungen" @@ -3885,7 +3923,7 @@ msgstr "Mitteilungen" msgid "now" msgstr "" -#: src/components/dms/MessageItem.tsx:175 +#: src/components/dms/MessageItem.tsx:169 msgid "Now" msgstr "" @@ -3919,7 +3957,7 @@ msgstr "Oh nein!" msgid "Oh no! Something went wrong." msgstr "Oh nein, da ist etwas schief gelaufen." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 msgid "OK" msgstr "OK" @@ -3927,7 +3965,7 @@ msgstr "OK" msgid "Okay" msgstr "Okay" -#: src/view/screens/PreferencesThreads.tsx:78 +#: src/view/screens/PreferencesThreads.tsx:72 msgid "Oldest replies first" msgstr "Älteste Antworten zuerst" @@ -3939,7 +3977,7 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:257 +#: src/view/screens/Settings/index.tsx:258 msgid "Onboarding reset" msgstr "Onboarding zurücksetzen" @@ -3947,7 +3985,7 @@ msgstr "Onboarding zurücksetzen" msgid "Onboarding tour step {0}: {1}" msgstr "" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:534 msgid "One or more images is missing alt text." msgstr "Bei einem oder mehreren Bildern fehlt der Alt-Text." @@ -3955,7 +3993,7 @@ msgstr "Bei einem oder mehreren Bildern fehlt der Alt-Text." msgid "Only .jpg and .png files are supported" msgstr "" -#: src/components/WhoCanReply.tsx:244 +#: src/components/WhoCanReply.tsx:245 msgid "Only {0} can reply" msgstr "" @@ -3975,6 +4013,7 @@ msgstr "Huch, da ist etwas schief gelaufen!" #: src/components/StarterPack/ProfileStarterPacks.tsx:304 #: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/NotificationsSettings.tsx:45 #: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Huch!" @@ -4000,16 +4039,16 @@ msgstr "" msgid "Open conversation options" msgstr "" -#: src/view/com/composer/Composer.tsx:632 -#: src/view/com/composer/Composer.tsx:633 +#: src/view/com/composer/Composer.tsx:663 +#: src/view/com/composer/Composer.tsx:664 msgid "Open emoji picker" msgstr "Emoji-Picker öffnen" -#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileFeed.tsx:297 msgid "Open feed options menu" msgstr "" -#: src/view/screens/Settings/index.tsx:737 +#: src/view/screens/Settings/index.tsx:738 msgid "Open links with in-app browser" msgstr "Links mit In-App-Browser öffnen" @@ -4029,7 +4068,7 @@ msgstr "Einstellungen für stummgeschaltete Wörter und Tags öffnen" msgid "Open navigation" msgstr "Navigation öffnen" -#: src/view/com/util/forms/PostDropdownBtn.tsx:247 +#: src/view/com/util/forms/PostDropdownBtn.tsx:250 msgid "Open post options menu" msgstr "Beitragsoptionsmenü öffnen" @@ -4037,12 +4076,12 @@ msgstr "Beitragsoptionsmenü öffnen" msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Open storybook page" msgstr "Storybook öffnen" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Open system log" msgstr "" @@ -4054,7 +4093,7 @@ msgstr "Öffnet {numItems} Optionen" msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:511 +#: src/view/screens/Settings/index.tsx:512 msgid "Opens accessibility settings" msgstr "" @@ -4070,7 +4109,7 @@ msgstr "Öffnet zusätzliche Details für einen Debug-Eintrag" msgid "Opens camera on device" msgstr "Öffnet die Kamera auf dem Gerät" -#: src/view/screens/Settings/index.tsx:640 +#: src/view/screens/Settings/index.tsx:641 msgid "Opens chat settings" msgstr "" @@ -4078,7 +4117,7 @@ msgstr "" msgid "Opens composer" msgstr "Öffnet den Beitragsverfasser" -#: src/view/screens/Settings/index.tsx:532 +#: src/view/screens/Settings/index.tsx:533 msgid "Opens configurable language settings" msgstr "Öffnet die konfigurierbaren Spracheinstellungen" @@ -4090,7 +4129,7 @@ msgstr "Öffnet die Gerätefotogalerie" #~ msgid "Opens editor for profile display name, avatar, background image, and description" #~ msgstr "Öffnet den Editor für Anzeigename, Avatar, Hintergrundbild und Beschreibung" -#: src/view/screens/Settings/index.tsx:672 +#: src/view/screens/Settings/index.tsx:673 msgid "Opens external embeds settings" msgstr "Öffnet die Einstellungen für externe eingebettete Medien" @@ -4120,11 +4159,11 @@ msgstr "" msgid "Opens list of invite codes" msgstr "Öffnet die Liste der Einladungscodes" -#: src/view/screens/Settings/index.tsx:809 +#: src/view/screens/Settings/index.tsx:810 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:831 +#: src/view/screens/Settings/index.tsx:832 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "" @@ -4132,19 +4171,19 @@ msgstr "" #~ msgid "Opens modal for account deletion confirmation. Requires email code." #~ msgstr "Öffnet ein Modal, um die Löschung des Kontos zu bestätigen. Erfordert einen E-Mail-Code." -#: src/view/screens/Settings/index.tsx:766 +#: src/view/screens/Settings/index.tsx:767 msgid "Opens modal for changing your Bluesky password" msgstr "" -#: src/view/screens/Settings/index.tsx:721 +#: src/view/screens/Settings/index.tsx:722 msgid "Opens modal for choosing a new Bluesky handle" msgstr "" -#: src/view/screens/Settings/index.tsx:789 +#: src/view/screens/Settings/index.tsx:790 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "" -#: src/view/screens/Settings/index.tsx:1009 +#: src/view/screens/Settings/index.tsx:1010 msgid "Opens modal for email verification" msgstr "" @@ -4152,7 +4191,7 @@ msgstr "" msgid "Opens modal for using custom domain" msgstr "Öffnet das Modal für die Verwendung einer benutzerdefinierten Domain" -#: src/view/screens/Settings/index.tsx:557 +#: src/view/screens/Settings/index.tsx:558 msgid "Opens moderation settings" msgstr "Öffnet die Moderationseinstellungen" @@ -4165,11 +4204,11 @@ msgstr "Öffnet das Formular zum Zurücksetzen des Passworts" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "Öffnet den Bildschirm zum Bearbeiten gespeicherten Feeds" -#: src/view/screens/Settings/index.tsx:618 +#: src/view/screens/Settings/index.tsx:619 msgid "Opens screen with all saved feeds" msgstr "Öffnet den Bildschirm mit allen gespeicherten Feeds" -#: src/view/screens/Settings/index.tsx:699 +#: src/view/screens/Settings/index.tsx:700 msgid "Opens the app password settings" msgstr "" @@ -4177,7 +4216,7 @@ msgstr "" #~ msgid "Opens the app password settings page" #~ msgstr "Öffnet die Einstellungsseite für das App-Passwort" -#: src/view/screens/Settings/index.tsx:575 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens the Following feed preferences" msgstr "" @@ -4193,30 +4232,34 @@ msgstr "" #~ msgid "Opens the message settings page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:862 -#: src/view/screens/Settings/index.tsx:872 +#: src/view/screens/Settings/index.tsx:863 +#: src/view/screens/Settings/index.tsx:873 msgid "Opens the storybook page" msgstr "Öffnet die Storybook-Seite" -#: src/view/screens/Settings/index.tsx:850 +#: src/view/screens/Settings/index.tsx:851 msgid "Opens the system log page" msgstr "Öffnet die Systemprotokollseite" -#: src/view/screens/Settings/index.tsx:596 +#: src/view/screens/Settings/index.tsx:597 msgid "Opens the threads preferences" msgstr "Öffnet die Thread-Einstellungen" -#: src/view/com/notifications/FeedItem.tsx:524 -#: src/view/com/util/UserAvatar.tsx:422 +#: src/view/com/notifications/FeedItem.tsx:527 +#: src/view/com/util/UserAvatar.tsx:434 msgid "Opens this profile" msgstr "" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:54 +msgid "Opens video picker" +msgstr "" + #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "Option {0} von {numItems}" #: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:162 +#: src/components/ReportDialog/SubmitView.tsx:179 msgid "Optionally provide additional information below:" msgstr "" @@ -4276,7 +4319,7 @@ msgstr "Passwort aktualisiert" msgid "Password updated!" msgstr "Passwort aktualisiert!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Pause" msgstr "" @@ -4285,19 +4328,19 @@ msgstr "" msgid "People" msgstr "" -#: src/Navigation.tsx:175 +#: src/Navigation.tsx:178 msgid "People followed by @{0}" msgstr "Personen gefolgt von @{0}" -#: src/Navigation.tsx:168 +#: src/Navigation.tsx:171 msgid "People following @{0}" msgstr "Personen, die @{0} folgen" -#: src/view/com/lightbox/Lightbox.tsx:69 +#: src/view/com/lightbox/Lightbox.tsx:70 msgid "Permission to access camera roll is required." msgstr "Die Erlaubnis zum Zugriff auf die Kamerarolle ist erforderlich." -#: src/view/com/lightbox/Lightbox.tsx:75 +#: src/view/com/lightbox/Lightbox.tsx:78 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "Die Berechtigung zum Zugriff auf die Kamerarolle wurde verweigert. Bitte aktiviere sie in deinen Systemeinstellungen." @@ -4318,12 +4361,12 @@ msgstr "" msgid "Pictures meant for adults." msgstr "Bilder, die für Erwachsene bestimmt sind." -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "An die Startseite anheften" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 msgid "Pin to Home" msgstr "" @@ -4335,7 +4378,7 @@ msgstr "Angeheftete Feeds" msgid "Pinned to your feeds" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Play" msgstr "" @@ -4348,7 +4391,7 @@ msgstr "{0} abspielen" #~ msgid "Play notification sounds" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 msgid "Play or pause the GIF" msgstr "" @@ -4382,7 +4425,7 @@ msgstr "Bitte bestätige deine E-Mail, bevor du sie änderst. Dies ist eine vor msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "Bitte gib einen Namen für dein App-Passwort ein. Nur Leerzeichen sind nicht erlaubt." -#: src/view/com/modals/AddAppPasswords.tsx:150 +#: src/view/com/modals/AddAppPasswords.tsx:151 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." @@ -4403,7 +4446,7 @@ msgstr "" msgid "Please enter your password as well:" msgstr "Bitte gib auch dein Passwort ein:" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:277 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" @@ -4425,7 +4468,7 @@ msgstr "" msgid "Please Verify Your Email" msgstr "Bitte verifiziere deine E-Mail" -#: src/view/com/composer/Composer.tsx:287 +#: src/view/com/composer/Composer.tsx:299 msgid "Please wait for your link card to finish loading" msgstr "Bitte warte, bis deine Link-karte vollständig geladen ist" @@ -4442,8 +4485,8 @@ msgstr "Porno" #~ msgid "Pornography" #~ msgstr "" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:509 +#: src/view/com/composer/Composer.tsx:516 msgctxt "action" msgid "Post" msgstr "Beitrag" @@ -4457,9 +4500,9 @@ msgstr "Beitrag" msgid "Post by {0}" msgstr "Beitrag von {0}" -#: src/Navigation.tsx:194 -#: src/Navigation.tsx:201 -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:197 +#: src/Navigation.tsx:204 +#: src/Navigation.tsx:211 msgid "Post by @{0}" msgstr "Beitrag von @{0}" @@ -4515,6 +4558,10 @@ msgstr "Ausgeblendete Beiträge" msgid "Potentially Misleading Link" msgstr "Potenziell irreführender Link" +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "" @@ -4535,7 +4582,7 @@ msgstr "" #~ msgid "Press to Retry" #~ msgstr "" -#: src/components/KnownFollowers.tsx:116 +#: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "" @@ -4547,20 +4594,24 @@ msgstr "Vorheriges Bild" msgid "Primary Language" msgstr "Primäre Sprache" -#: src/view/screens/PreferencesThreads.tsx:97 +#: src/view/screens/PreferencesThreads.tsx:91 msgid "Prioritize Your Follows" msgstr "Priorisiere deine Follower" -#: src/view/screens/Settings/index.tsx:655 +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "" + +#: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privatsphäre" -#: src/Navigation.tsx:249 +#: src/Navigation.tsx:257 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:958 -#: src/view/shell/Drawer.tsx:285 +#: src/view/screens/Settings/index.tsx:959 +#: src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "Datenschutzerklärung" @@ -4579,9 +4630,9 @@ msgstr "" #: src/view/shell/bottom-bar/BottomBar.tsx:275 #: src/view/shell/desktop/LeftNav.tsx:393 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:542 -#: src/view/shell/Drawer.tsx:543 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:532 +#: src/view/shell/Drawer.tsx:533 msgid "Profile" msgstr "Profil" @@ -4589,7 +4640,7 @@ msgstr "Profil" msgid "Profile updated" msgstr "Profil aktualisiert" -#: src/view/screens/Settings/index.tsx:1022 +#: src/view/screens/Settings/index.tsx:1023 msgid "Protect your account by verifying your email." msgstr "Schütze dein Konto, indem du deine E-Mail bestätigst." @@ -4605,23 +4656,23 @@ msgstr "Öffentliche, gemeinsam nutzbare Listen von Nutzern, die du sta­pel­we msgid "Public, shareable lists which can drive feeds." msgstr "Öffentliche, gemeinsam nutzbare Listen, die Feeds steuern können." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish post" msgstr "Beitrag veröffentlichen" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish reply" msgstr "Antwort veröffentlichen" -#: src/components/StarterPack/QrCodeDialog.tsx:125 +#: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:103 +#: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:104 +#: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "" @@ -4646,7 +4697,7 @@ msgstr "Beitrag zitieren" #~ msgid "Quote Post" #~ msgstr "Beitrag zitieren" -#: src/view/screens/PreferencesThreads.tsx:86 +#: src/view/screens/PreferencesThreads.tsx:80 msgid "Random (aka \"Poster's Roulette\")" msgstr "Zufällig (\"Poster's Roulette\")" @@ -4682,19 +4733,23 @@ msgstr "" msgid "Reconnect" msgstr "" +#: src/view/screens/Notifications.tsx:146 +msgid "Refresh notifications" +msgstr "" + #: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 #: src/components/FeedCard.tsx:309 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:212 +#: src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "Entfernen" @@ -4710,7 +4765,7 @@ msgstr "" msgid "Remove account" msgstr "Konto entfernen" -#: src/view/com/util/UserAvatar.tsx:384 +#: src/view/com/util/UserAvatar.tsx:396 msgid "Remove Avatar" msgstr "" @@ -4722,20 +4777,20 @@ msgstr "" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:168 -#: src/view/com/posts/FeedShutdownMsg.tsx:113 -#: src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:115 +#: src/view/com/posts/FeedShutdownMsg.tsx:119 msgid "Remove feed" msgstr "Feed entfernen" -#: src/view/com/posts/FeedErrorMessage.tsx:209 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" msgstr "" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Aus meinen Feeds entfernen" @@ -4749,7 +4804,7 @@ msgstr "" msgid "Remove image" msgstr "Bild entfernen" -#: src/view/com/composer/ExternalEmbed.tsx:87 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 msgid "Remove image preview" msgstr "Bildvorschau entfernen" @@ -4778,7 +4833,7 @@ msgstr "Repost entfernen" #~ msgid "Remove this feed from my feeds?" #~ msgstr "Diesen Feed aus meinen Feeds entfernen?" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "" @@ -4786,7 +4841,7 @@ msgstr "" #~ msgid "Remove this feed from your saved feeds?" #~ msgstr "Diesen Feed aus deinen gespeicherten Feeds entfernen?" -#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "Aus der Liste entfernt" @@ -4802,15 +4857,19 @@ msgid "Removed from your feeds" msgstr "" #: src/view/com/composer/ExternalEmbed.tsx:88 -msgid "Removes default thumbnail from {0}" -msgstr "Entfernt Standard-Miniaturansicht von {0}" +#~ msgid "Removes default thumbnail from {0}" +#~ msgstr "Entfernt Standard-Miniaturansicht von {0}" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" msgstr "" -#: src/view/com/posts/FeedShutdownMsg.tsx:126 -#: src/view/com/posts/FeedShutdownMsg.tsx:130 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the image preview" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:128 +#: src/view/com/posts/FeedShutdownMsg.tsx:132 msgid "Replace with Discover" msgstr "" @@ -4826,16 +4885,16 @@ msgstr "" #~ msgid "Replies on this thread are disabled" #~ msgstr "" -#: src/components/WhoCanReply.tsx:242 +#: src/components/WhoCanReply.tsx:243 msgid "Replies to this thread are disabled" msgstr "Antworten auf diesen Thread sind deaktiviert" -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:507 msgctxt "action" msgid "Reply" msgstr "Antworten" -#: src/view/screens/PreferencesFollowingFeed.tsx:143 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 msgid "Reply Filters" msgstr "Antwortfilter" @@ -4845,17 +4904,23 @@ msgstr "Antwortfilter" #~ msgid "Reply to <0/>" #~ msgstr "Antwort an <0/>" -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:439 +#: src/view/com/post/Post.tsx:197 +#: src/view/com/posts/FeedItem.tsx:458 msgctxt "description" msgid "Reply to <0><1/>" msgstr "" -#: src/view/com/posts/FeedItem.tsx:437 +#: src/view/com/posts/FeedItem.tsx:456 msgctxt "description" msgid "Reply to a blocked post" msgstr "" +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:454 +msgctxt "description" +msgid "Reply to you" +msgstr "" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -4886,8 +4951,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/view/screens/ProfileFeed.tsx:349 -#: src/view/screens/ProfileFeed.tsx:351 +#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:352 msgid "Report feed" msgstr "Feed melden" @@ -4899,8 +4964,8 @@ msgstr "Liste melden" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:407 +#: src/view/com/util/forms/PostDropdownBtn.tsx:409 msgid "Report post" msgstr "Beitrag melden" @@ -4962,7 +5027,7 @@ msgstr "Reposten oder Beitrag zitieren" msgid "Reposted By" msgstr "Repostet von" -#: src/view/com/posts/FeedItem.tsx:254 +#: src/view/com/posts/FeedItem.tsx:263 msgid "Reposted by {0}" msgstr "Repostet von {0}" @@ -4970,11 +5035,16 @@ msgstr "Repostet von {0}" #~ msgid "Reposted by <0/>" #~ msgstr "Repostet von <0/>" -#: src/view/com/posts/FeedItem.tsx:269 +#: src/view/com/posts/FeedItem.tsx:282 msgid "Reposted by <0><1/>" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/posts/FeedItem.tsx:261 +#: src/view/com/posts/FeedItem.tsx:280 +msgid "Reposted by you" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:188 msgid "reposted your post" msgstr "hat deinen Beitrag repostet" @@ -5021,8 +5091,8 @@ msgstr "Code zurücksetzen" #~ msgid "Reset onboarding" #~ msgstr "Onboarding zurücksetzen" -#: src/view/screens/Settings/index.tsx:901 -#: src/view/screens/Settings/index.tsx:904 +#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:905 msgid "Reset onboarding state" msgstr "Onboardingstatus zurücksetzen" @@ -5034,16 +5104,16 @@ msgstr "Passwort zurücksetzen" #~ msgid "Reset preferences" #~ msgstr "Einstellungen zurücksetzen" -#: src/view/screens/Settings/index.tsx:881 -#: src/view/screens/Settings/index.tsx:884 +#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:885 msgid "Reset preferences state" msgstr "Einstellungen zurücksetzen" -#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:903 msgid "Resets the onboarding state" msgstr "Setzt den Onboardingstatus zurück" -#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:883 msgid "Resets the preferences state" msgstr "Einstellungen zurücksetzen" @@ -5056,7 +5126,7 @@ msgstr "Versucht die Anmeldung erneut" msgid "Retries the last action, which errored out" msgstr "Wiederholung der letzten Aktion, bei der ein Fehler aufgetreten ist" -#: src/components/dms/MessageItem.tsx:241 +#: src/components/dms/MessageItem.tsx:235 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 @@ -5092,7 +5162,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/dialogs/ThreadgateEditor.tsx:88 -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:187 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5101,7 +5171,7 @@ msgstr "" msgid "Save" msgstr "Speichern" -#: src/view/com/lightbox/Lightbox.tsx:135 +#: src/view/com/lightbox/Lightbox.tsx:139 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5123,8 +5193,8 @@ msgstr "Änderungen speichern" msgid "Save handle change" msgstr "Handle-Änderung speichern" -#: src/components/StarterPack/ShareDialog.tsx:150 -#: src/components/StarterPack/ShareDialog.tsx:157 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "" @@ -5132,12 +5202,12 @@ msgstr "" msgid "Save image crop" msgstr "Bildausschnitt speichern" -#: src/components/StarterPack/QrCodeDialog.tsx:178 +#: src/components/StarterPack/QrCodeDialog.tsx:181 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 +#: src/view/screens/ProfileFeed.tsx:334 +#: src/view/screens/ProfileFeed.tsx:340 msgid "Save to my feeds" msgstr "" @@ -5145,7 +5215,7 @@ msgstr "" msgid "Saved Feeds" msgstr "Gespeicherte Feeds" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:88 msgid "Saved to your camera roll" msgstr "" @@ -5172,8 +5242,8 @@ msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:383 -#: src/view/com/notifications/FeedItem.tsx:408 +#: src/view/com/notifications/FeedItem.tsx:386 +#: src/view/com/notifications/FeedItem.tsx:411 msgid "Say hello!" msgstr "" @@ -5187,9 +5257,9 @@ msgid "Scroll to top" msgstr "Zum Anfang blättern" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:524 +#: src/Navigation.tsx:537 #: src/view/com/auth/LoggedOut.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 @@ -5197,14 +5267,14 @@ msgstr "Zum Anfang blättern" #: src/view/screens/Search/Search.tsx:813 #: src/view/shell/bottom-bar/BottomBar.tsx:182 #: src/view/shell/desktop/LeftNav.tsx:354 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:394 -#: src/view/shell/Drawer.tsx:395 +#: src/view/shell/desktop/Search.tsx:195 +#: src/view/shell/desktop/Search.tsx:204 +#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:385 msgid "Search" msgstr "Suche" -#: src/view/shell/desktop/Search.tsx:235 +#: src/view/shell/desktop/Search.tsx:236 msgid "Search for \"{query}\"" msgstr "Nach \"{query}\" suchen" @@ -5230,7 +5300,7 @@ msgstr "" #: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/auth/LoggedOut.tsx:107 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "Nach Nutzern suchen" @@ -5339,7 +5409,7 @@ msgstr "Wähle Option {i} von {numItems}" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:135 +#: src/components/ReportDialog/SubmitView.tsx:152 msgid "Select the moderation service(s) to report to" msgstr "" @@ -5351,6 +5421,10 @@ msgstr "Wähle den Dienst aus, der deine Daten hostet." #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "Wähle aus der folgenden Liste die themenbezogenen Feeds aus, die du verfolgen möchtest" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:53 +msgid "Select video" +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:63 #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "Wähle aus, was du sehen (oder nicht sehen) möchtest, und wir kümmern uns um den Rest." @@ -5405,8 +5479,7 @@ msgctxt "action" msgid "Send Email" msgstr "E-Mail senden" -#: src/view/shell/Drawer.tsx:329 -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:325 msgid "Send feedback" msgstr "Feedback senden" @@ -5415,14 +5488,14 @@ msgstr "Feedback senden" msgid "Send message" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 msgid "Send post to..." msgstr "" #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:215 -#: src/components/ReportDialog/SubmitView.tsx:219 +#: src/components/ReportDialog/SubmitView.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:236 msgid "Send report" msgstr "" @@ -5439,8 +5512,8 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 +#: src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" msgstr "" @@ -5494,23 +5567,23 @@ msgstr "Neues Passwort festlegen" #~ msgid "Set password" #~ msgstr "Passwort festlegen" -#: src/view/screens/PreferencesFollowingFeed.tsx:224 +#: src/view/screens/PreferencesFollowingFeed.tsx:223 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Setze diese Einstellung auf \"Nein\", um alle Zitatbeiträge aus deinem Feed auszublenden. Reposts sind weiterhin sichtbar." -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:120 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Setze diese Einstellung auf \"Nein\", um alle Antworten aus deinem Feed auszublenden." -#: src/view/screens/PreferencesFollowingFeed.tsx:190 +#: src/view/screens/PreferencesFollowingFeed.tsx:189 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Setze diese Einstellung auf \"Nein\", um alle Reposts aus deinem Feed auszublenden." -#: src/view/screens/PreferencesThreads.tsx:122 +#: src/view/screens/PreferencesThreads.tsx:116 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Setze diese Einstellung auf \"Ja\", um Antworten in einer Thread-Ansicht anzuzeigen. Dies ist eine experimentelle Funktion." -#: src/view/screens/PreferencesFollowingFeed.tsx:260 +#: src/view/screens/PreferencesFollowingFeed.tsx:259 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Setze diese Einstellung auf \"Ja\", um Beispiele für deine gespeicherten Feeds in deinem Following-Feed anzuzeigen. Dies ist eine experimentelle Funktion." @@ -5522,23 +5595,23 @@ msgstr "Dein Konto einrichten" msgid "Sets Bluesky username" msgstr "Legt deinen Bluesky-Benutzernamen fest" -#: src/view/screens/Settings/index.tsx:462 +#: src/view/screens/Settings/index.tsx:463 msgid "Sets color theme to dark" msgstr "" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Sets color theme to light" msgstr "" -#: src/view/screens/Settings/index.tsx:449 +#: src/view/screens/Settings/index.tsx:450 msgid "Sets color theme to system setting" msgstr "" -#: src/view/screens/Settings/index.tsx:488 +#: src/view/screens/Settings/index.tsx:489 msgid "Sets dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings/index.tsx:481 +#: src/view/screens/Settings/index.tsx:482 msgid "Sets dark theme to the dim theme" msgstr "" @@ -5567,11 +5640,11 @@ msgstr "" #~ msgid "Sets server for the Bluesky client" #~ msgstr "Setzt den Server für den Bluesky-Client" -#: src/Navigation.tsx:150 -#: src/view/screens/Settings/index.tsx:333 +#: src/Navigation.tsx:153 +#: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:559 -#: src/view/shell/Drawer.tsx:560 +#: src/view/shell/Drawer.tsx:549 +#: src/view/shell/Drawer.tsx:550 msgid "Settings" msgstr "Einstellungen" @@ -5583,19 +5656,19 @@ msgstr "Sexuelle Aktivitäten oder erotische Nacktheit." msgid "Sexually Suggestive" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:177 #: src/screens/StarterPack/StarterPackScreen.tsx:400 #: src/screens/StarterPack/StarterPackScreen.tsx:571 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 #: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Teilen" -#: src/view/com/lightbox/Lightbox.tsx:144 +#: src/view/com/lightbox/Lightbox.tsx:148 msgctxt "action" msgid "Share" msgstr "Teilen" @@ -5609,18 +5682,18 @@ msgid "Share a fun fact!" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:464 #: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "" -#: src/view/screens/ProfileFeed.tsx:359 -#: src/view/screens/ProfileFeed.tsx:361 +#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:362 msgid "Share feed" msgstr "Feed teilen" -#: src/components/StarterPack/ShareDialog.tsx:123 -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 #: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -5630,12 +5703,12 @@ msgstr "" msgid "Share Link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:87 +#: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:134 -#: src/components/StarterPack/ShareDialog.tsx:145 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "" @@ -5643,7 +5716,7 @@ msgstr "" msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:99 +#: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5651,6 +5724,10 @@ msgstr "" msgid "Share your favorite feed!" msgstr "" +#: src/Navigation.tsx:242 +msgid "Shared Preferences Tester" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" msgstr "" @@ -5658,11 +5735,11 @@ msgstr "" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:382 +#: src/view/screens/Settings/index.tsx:383 msgid "Show" msgstr "Anzeigen" -#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +#: src/view/com/util/post-embeds/GifEmbed.tsx:175 msgid "Show alt text" msgstr "" @@ -5692,19 +5769,19 @@ msgstr "Zeige ähnliche Konten wie {0}" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#: src/view/com/util/forms/PostDropdownBtn.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:349 +#: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" msgstr "" #: src/view/com/post-thread/PostThreadItem.tsx:530 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:396 +#: src/view/com/post/Post.tsx:235 +#: src/view/com/posts/FeedItem.tsx:410 msgid "Show More" msgstr "Mehr anzeigen" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 -#: src/view/com/util/forms/PostDropdownBtn.tsx:340 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:343 msgid "Show more like this" msgstr "" @@ -5712,11 +5789,11 @@ msgstr "" msgid "Show muted replies" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:257 +#: src/view/screens/PreferencesFollowingFeed.tsx:256 msgid "Show Posts from My Feeds" msgstr "Beiträge aus meinen Feeds anzeigen" -#: src/view/screens/PreferencesFollowingFeed.tsx:221 +#: src/view/screens/PreferencesFollowingFeed.tsx:220 msgid "Show Quote Posts" msgstr "Zitatbeiträge anzeigen" @@ -5732,11 +5809,11 @@ msgstr "Zitatbeiträge anzeigen" #~ msgid "Show re-posts in Following feed" #~ msgstr "Reposts im Following-Feed anzeigen" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:117 msgid "Show Replies" msgstr "Antworten anzeigen" -#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:94 msgid "Show replies by people you follow before all other replies." msgstr "Zeige Antworten von Personen, denen du folgst, vor allen anderen Antworten an." @@ -5748,7 +5825,7 @@ msgstr "Zeige Antworten von Personen, denen du folgst, vor allen anderen Antwort #~ msgid "Show replies in Following feed" #~ msgstr "Antworten in folgendem Feed anzeigen" -#: src/view/screens/PreferencesFollowingFeed.tsx:187 +#: src/view/screens/PreferencesFollowingFeed.tsx:186 msgid "Show Reposts" msgstr "Reposts anzeigen" @@ -5828,8 +5905,8 @@ msgstr "" msgid "Sign into Bluesky or create a new account" msgstr "" -#: src/view/screens/Settings/index.tsx:129 -#: src/view/screens/Settings/index.tsx:133 +#: src/view/screens/Settings/index.tsx:130 +#: src/view/screens/Settings/index.tsx:134 msgid "Sign out" msgstr "Abmelden" @@ -5854,7 +5931,7 @@ msgstr "Registriere dich oder melden dich an, um an der Diskussion teilzunehmen" msgid "Sign-in Required" msgstr "Anmelden erforderlich" -#: src/view/screens/Settings/index.tsx:392 +#: src/view/screens/Settings/index.tsx:393 msgid "Signed in as" msgstr "Angemeldet als" @@ -5863,7 +5940,7 @@ msgstr "Angemeldet als" msgid "Signed in as @{0}" msgstr "Angemeldet als @{0}" -#: src/view/com/notifications/FeedItem.tsx:208 +#: src/view/com/notifications/FeedItem.tsx:209 msgid "signed up with your starter pack" msgstr "" @@ -5871,8 +5948,8 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "Meldet {0} von Bluesky ab" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 msgid "Signup without a starter pack" msgstr "" @@ -5890,7 +5967,7 @@ msgstr "Diesen Schritt überspringen" msgid "Software Dev" msgstr "Software-Entwicklung" -#: src/components/FeedInterstitials.tsx:378 +#: src/components/FeedInterstitials.tsx:382 msgid "Some other feeds you might like" msgstr "" @@ -5918,20 +5995,21 @@ msgstr "" msgid "Something went wrong, please try again." msgstr "" -#: src/components/Lists.tsx:203 -#~ msgid "Something went wrong!" -#~ msgstr "Es ist ein Fehler aufgetreten." +#: src/components/Lists.tsx:192 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "Es ist ein Fehler aufgetreten." -#: src/App.native.tsx:98 -#: src/App.web.tsx:80 +#: src/App.native.tsx:99 +#: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "Entschuldigung! Deine Sitzung ist abgelaufen. Bitte logge dich erneut ein." -#: src/view/screens/PreferencesThreads.tsx:69 +#: src/view/screens/PreferencesThreads.tsx:63 msgid "Sort Replies" msgstr "Antworten sortieren" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:66 msgid "Sort replies to the same post by:" msgstr "Antworten auf denselben Beitrag sortieren nach:" @@ -5939,7 +6017,7 @@ msgstr "Antworten auf denselben Beitrag sortieren nach:" #~ msgid "Source:" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" msgstr "" @@ -5961,7 +6039,7 @@ msgstr "Sport" msgid "Square" msgstr "Quadratische" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:63 msgid "Start a new chat" msgstr "" @@ -5978,8 +6056,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:328 -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:341 +#: src/Navigation.tsx:346 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -6004,7 +6082,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Status-Seite" -#: src/view/screens/Settings/index.tsx:964 +#: src/view/screens/Settings/index.tsx:965 msgid "Status Page" msgstr "" @@ -6020,17 +6098,17 @@ msgstr "" #~ msgid "Step {0} of {numSteps}" #~ msgstr "Schritt {0} von {numSteps}" -#: src/view/screens/Settings/index.tsx:305 +#: src/view/screens/Settings/index.tsx:306 msgid "Storage cleared, you need to restart the app now." msgstr "Der Speicher wurde gelöscht, du musst die App jetzt neu starten." -#: src/Navigation.tsx:229 -#: src/view/screens/Settings/index.tsx:864 +#: src/Navigation.tsx:232 +#: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:290 -#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/components/moderation/LabelsOnMeDialog.tsx:311 +#: src/components/moderation/LabelsOnMeDialog.tsx:312 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -6053,7 +6131,7 @@ msgstr "" #~ msgid "Subscribe to the {0} feed" #~ msgstr "Abonniere den {0} Feed" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 msgid "Subscribe to this labeler" msgstr "" @@ -6061,7 +6139,7 @@ msgstr "" msgid "Subscribe to this list" msgstr "Abonniere diese Liste" -#: src/view/screens/Search/Explore.tsx:331 +#: src/view/screens/Search/Explore.tsx:333 msgid "Suggested accounts" msgstr "" @@ -6069,7 +6147,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "Vorgeschlagene Follower" -#: src/components/FeedInterstitials.tsx:246 +#: src/components/FeedInterstitials.tsx:250 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Vorgeschlagen für dich" @@ -6078,7 +6156,7 @@ msgstr "Vorgeschlagen für dich" msgid "Suggestive" msgstr "Suggestiv" -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:252 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6093,19 +6171,19 @@ msgstr "Konto wechseln" msgid "Switch between feeds to control your experience." msgstr "" -#: src/view/screens/Settings/index.tsx:160 +#: src/view/screens/Settings/index.tsx:161 msgid "Switch to {0}" msgstr "Wechseln zu {0}" -#: src/view/screens/Settings/index.tsx:161 +#: src/view/screens/Settings/index.tsx:162 msgid "Switches the account you are logged in to" msgstr "Wechselt das Konto, in das du eingeloggt bist" -#: src/view/screens/Settings/index.tsx:446 +#: src/view/screens/Settings/index.tsx:447 msgid "System" msgstr "System" -#: src/view/screens/Settings/index.tsx:852 +#: src/view/screens/Settings/index.tsx:853 msgid "System log" msgstr "Systemprotokoll" @@ -6154,11 +6232,11 @@ msgstr "" msgid "Terms" msgstr "Bedingungen" -#: src/Navigation.tsx:254 +#: src/Navigation.tsx:262 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:952 +#: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:279 +#: src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "Nutzungsbedingungen" @@ -6173,13 +6251,13 @@ msgstr "" msgid "text" msgstr "Text" -#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/components/moderation/LabelsOnMeDialog.tsx:275 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Text-Eingabefeld" #: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:93 msgid "Thank you. Your report has been sent." msgstr "" @@ -6222,19 +6300,19 @@ msgstr "Die Copyright-Richtlinie wurde nach <0/> verschoben" msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322 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:66 +#: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:65 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your account." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:67 msgid "The following labels were applied to your content." msgstr "" @@ -6271,8 +6349,8 @@ msgstr "Die Allgemeinen Geschäftsbedingungen wurden verschoben nach" msgid "There is no time limit for account deactivation, come back any time." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 -#: src/view/screens/ProfileFeed.tsx:544 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 +#: src/view/screens/ProfileFeed.tsx:545 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Es gab ein Problem bei der Kontaktaufnahme mit dem Server. Bitte überprüfe deine Internetverbindung und versuche es erneut." @@ -6281,7 +6359,7 @@ msgid "There was an an issue removing this feed. Please check your internet conn msgstr "Es gab ein Problem beim Entfernen dieses Feeds. Bitte überprüfe deine Internetverbindung und versuche es erneut." #: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Es gab ein Problem bei der Aktualisierung deines Feeds. Bitte überprüfe deine Internetverbindung und versuche es erneut." @@ -6295,7 +6373,7 @@ msgstr "" #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:234 +#: src/view/screens/ProfileFeed.tsx:235 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6309,7 +6387,7 @@ msgstr "Es gab ein Problem bei der Kontaktaufnahme mit dem Server" msgid "There was an issue contacting your server" msgstr "Es gab ein Problem bei der Kontaktaufnahme mit deinem Server" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Es gab ein Problem beim Abrufen von Mitteilungen. Tippe hier, um es erneut zu versuchen." @@ -6327,7 +6405,7 @@ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Es gab ein Problem beim Abrufen deiner Listen. Tippe hier, um es erneut zu versuchen." #: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:82 +#: src/components/ReportDialog/SubmitView.tsx:98 msgid "There was an issue sending your report. Please check your internet connection." msgstr "" @@ -6387,7 +6465,7 @@ msgstr "Dieses Konto hat die Benutzer aufgefordert, sich anzumelden, um dein Pro 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/moderation/LabelsOnMeDialog.tsx:239 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 msgid "This appeal will be sent to <0>{0}." msgstr "" @@ -6451,12 +6529,12 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Dieser Feed ist leer! Möglicherweise musst du mehr Benutzern folgen oder deine Spracheinstellungen anpassen." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:473 +#: src/view/screens/ProfileFeed.tsx:474 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" -#: src/view/com/posts/FeedShutdownMsg.tsx:97 +#: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" @@ -6484,7 +6562,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:166 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." msgstr "" @@ -6512,12 +6590,12 @@ msgstr "Dieser Name ist bereits in Gebrauch" msgid "This post has been deleted." msgstr "Dieser Beitrag wurde gelöscht." -#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 #: src/view/com/util/post-ctrls/PostCtrls.tsx:324 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:440 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "This post will be hidden from feeds." msgstr "" @@ -6586,12 +6664,12 @@ msgstr "Dies wird {0} aus deinen stummgeschalteten Wörtern löschen. Du kannst #~ msgid "This will hide this post from your feeds." #~ msgstr "Dadurch wird dieser Beitrag aus deinen Feeds ausgeblendet." -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Thread preferences" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/PreferencesThreads.tsx:51 +#: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "Thread-Einstellungen" @@ -6599,11 +6677,11 @@ msgstr "Thread-Einstellungen" msgid "Thread settings updated" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:119 +#: src/view/screens/PreferencesThreads.tsx:113 msgid "Threaded Mode" msgstr "Thread-Modus" -#: src/Navigation.tsx:287 +#: src/Navigation.tsx:295 msgid "Threads Preferences" msgstr "Thread-Einstellungen" @@ -6644,8 +6722,8 @@ msgstr "Verwandlungen" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:676 #: src/view/com/post-thread/PostThreadItem.tsx:678 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 -#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "Übersetzen" @@ -6658,7 +6736,7 @@ msgstr "Erneut versuchen" msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:746 +#: src/view/screens/Settings/index.tsx:747 msgid "Two-factor authentication" msgstr "" @@ -6754,7 +6832,7 @@ msgstr "" #~ msgid "Unlike" #~ msgstr "Like aufheben" -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Unlike this feed" msgstr "" @@ -6784,17 +6862,17 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:367 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Unmute thread" msgstr "Stummschaltung von Thread aufheben" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Anheften aufheben" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 msgid "Unpin from home" msgstr "" @@ -6814,7 +6892,7 @@ msgstr "" msgid "Unsubscribe" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Unsubscribe from this labeler" msgstr "" @@ -6851,20 +6929,20 @@ msgstr "" msgid "Upload a text file to:" msgstr "Hochladen einer Textdatei auf:" -#: src/view/com/util/UserAvatar.tsx:352 -#: src/view/com/util/UserAvatar.tsx:355 +#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "" -#: src/view/com/util/UserAvatar.tsx:369 +#: src/view/com/util/UserAvatar.tsx:381 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "" -#: src/view/com/util/UserAvatar.tsx:363 -#: src/view/com/util/UserAvatar.tsx:367 +#: src/view/com/util/UserAvatar.tsx:375 +#: src/view/com/util/UserAvatar.tsx:379 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -6904,7 +6982,7 @@ msgstr "" msgid "Use the DNS panel" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:205 +#: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." msgstr "Verwenden dies, um dich mit deinem Handle bei der anderen App einzuloggen." @@ -6976,7 +7054,7 @@ msgstr "Benutzername oder E-Mail-Adresse" msgid "Users" msgstr "Benutzer" -#: src/components/WhoCanReply.tsx:279 +#: src/components/WhoCanReply.tsx:280 msgid "users followed by <0/>" msgstr "Benutzer gefolgt von <0/>" @@ -7007,15 +7085,15 @@ msgstr "" msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:983 +#: src/view/screens/Settings/index.tsx:984 msgid "Verify email" msgstr "E-Mail bestätigen" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Verify my email" msgstr "Meine E-Mail bestätigen" -#: src/view/screens/Settings/index.tsx:1017 +#: src/view/screens/Settings/index.tsx:1018 msgid "Verify My Email" msgstr "Meine E-Mail bestätigen" @@ -7036,7 +7114,7 @@ msgstr "Überprüfe deine E-Mail" #~ msgid "Version {0}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Version {appVersion} {bundleInfo}" msgstr "" @@ -7045,11 +7123,15 @@ msgstr "" msgid "Video Games" msgstr "Videospiele" +#: src/view/com/composer/videos/state.ts:27 +msgid "Videos cannot be larger than 100MB" +msgstr "" + #: src/screens/Profile/Header/Shell.tsx:113 msgid "View {0}'s avatar" msgstr "Avatar von {0} ansehen" -#: src/view/com/notifications/FeedItem.tsx:245 +#: src/view/com/notifications/FeedItem.tsx:246 msgid "View {0}'s profile" msgstr "" @@ -7081,7 +7163,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:436 #: src/components/ProfileHoverCard/index.web.tsx:463 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "Profil ansehen" @@ -7093,7 +7175,7 @@ msgstr "Avatar ansehen" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/view/screens/ProfileFeed.tsx:585 +#: src/view/screens/ProfileFeed.tsx:587 msgid "View users who like this feed" msgstr "" @@ -7197,7 +7279,7 @@ msgstr "Es tut uns leid, aber wir konnten deine stummgeschalteten Wörter nicht msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Es tut uns leid, aber deine Suche konnte nicht abgeschlossen werden. Bitte versuche es in ein paar Minuten erneut." -#: src/view/com/composer/Composer.tsx:335 +#: src/view/com/composer/Composer.tsx:347 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -7210,7 +7292,7 @@ msgstr "Es tut uns leid! Wir können die Seite, nach der du gesucht hast, nicht #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "" @@ -7240,7 +7322,7 @@ msgstr "" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:376 +#: src/view/com/composer/Composer.tsx:388 msgid "What's up?" msgstr "Was gibt's?" @@ -7257,15 +7339,15 @@ msgstr "Welche Sprachen würdest du gerne in deinen algorithmischen Feeds sehen? msgid "Who can message you?" msgstr "" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Who can reply" msgstr "Wer antworten kann" -#: src/components/WhoCanReply.tsx:211 +#: src/components/WhoCanReply.tsx:212 msgid "Who can reply dialog" msgstr "" -#: src/components/WhoCanReply.tsx:215 +#: src/components/WhoCanReply.tsx:216 msgid "Who can reply?" msgstr "" @@ -7311,11 +7393,11 @@ msgstr "Breit" msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:580 msgid "Write post" msgstr "Beitrag verfassen" -#: src/view/com/composer/Composer.tsx:375 +#: src/view/com/composer/Composer.tsx:387 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Schreibe deine Antwort" @@ -7326,12 +7408,12 @@ msgid "Writers" msgstr "Schriftsteller" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:200 -#: src/view/screens/PreferencesFollowingFeed.tsx:235 -#: src/view/screens/PreferencesFollowingFeed.tsx:270 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:199 +#: src/view/screens/PreferencesFollowingFeed.tsx:234 +#: src/view/screens/PreferencesFollowingFeed.tsx:269 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "Yes" msgstr "Ja" @@ -7348,7 +7430,7 @@ msgstr "" msgid "Yes, reactivate my account" msgstr "" -#: src/components/dms/MessageItem.tsx:188 +#: src/components/dms/MessageItem.tsx:182 msgid "Yesterday, {time}" msgstr "" @@ -7513,19 +7595,19 @@ msgstr "" msgid "You haven't muted any words or tags yet" msgstr "Du hast noch keine Wörter oder Tags stummgeschaltet" -#: src/components/moderation/LabelsOnMeDialog.tsx:86 +#: src/components/moderation/LabelsOnMeDialog.tsx:87 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:92 msgid "You may appeal these labels if you feel they were placed in error." msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:92 +#: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 50 feeds" msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:77 +#: src/screens/StarterPack/Wizard/State.tsx:78 msgid "You may only add up to 50 profiles" msgstr "" @@ -7553,7 +7635,7 @@ msgstr "" msgid "You must grant access to your photo library to save the image." msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:205 +#: src/components/ReportDialog/SubmitView.tsx:222 msgid "You must select at least one labeler for a report" msgstr "" @@ -7593,15 +7675,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272 msgid "You'll stay updated with these feeds" msgstr "" @@ -7700,7 +7782,7 @@ msgstr "Deine stummgeschalteten Wörter" msgid "Your password has been changed successfully!" msgstr "Dein Passwort wurde erfolgreich geändert!" -#: src/view/com/composer/Composer.tsx:366 +#: src/view/com/composer/Composer.tsx:378 msgid "Your post has been published" msgstr "Dein Beitrag wurde veröffentlicht" @@ -7708,7 +7790,7 @@ msgstr "Dein Beitrag wurde veröffentlicht" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Deine Beiträge, Likes und Blockierungen sind öffentlich. Stummschaltungen sind privat." -#: src/view/screens/Settings/index.tsx:148 +#: src/view/screens/Settings/index.tsx:149 msgid "Your profile" msgstr "Dein Profil" @@ -7716,7 +7798,7 @@ msgstr "Dein Profil" 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:365 +#: src/view/com/composer/Composer.tsx:377 msgid "Your reply has been published" msgstr "Deine Antwort wurde veröffentlicht" diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po index d5b7550401..d2bc431e19 100644 --- a/src/locale/locales/en/messages.po +++ b/src/locale/locales/en/messages.po @@ -21,7 +21,7 @@ msgstr "" msgid "(no email)" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:294 +#: src/view/com/notifications/FeedItem.tsx:297 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -88,7 +88,7 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "" @@ -100,7 +100,7 @@ msgstr "" #~ msgid "{0} your feeds" #~ msgstr "" -#: src/view/com/util/UserAvatar.tsx:419 +#: src/view/com/util/UserAvatar.tsx:431 msgid "{0}'s avatar" msgstr "" @@ -148,7 +148,7 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:504 +#: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "" @@ -159,11 +159,11 @@ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:588 +#: src/view/screens/ProfileFeed.tsx:590 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:462 +#: src/view/shell/Drawer.tsx:452 msgid "{numUnreadNotifications} unread" msgstr "" @@ -179,7 +179,7 @@ msgstr "" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "" -#: src/components/WhoCanReply.tsx:295 +#: src/components/WhoCanReply.tsx:296 msgid "<0/> members" msgstr "" @@ -201,11 +201,11 @@ msgstr "" #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "" -#: src/view/shell/Drawer.tsx:101 +#: src/view/shell/Drawer.tsx:100 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" -#: src/view/shell/Drawer.tsx:112 +#: src/view/shell/Drawer.tsx:111 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" @@ -272,15 +272,15 @@ msgid "Access profile and other navigation links" msgstr "" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:519 +#: src/view/screens/Settings/index.tsx:520 msgid "Accessibility" msgstr "" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:301 +#: src/Navigation.tsx:309 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "" @@ -290,8 +290,8 @@ msgstr "" #~ msgstr "" #: src/screens/Login/LoginForm.tsx:190 -#: src/view/screens/Settings/index.tsx:346 -#: src/view/screens/Settings/index.tsx:753 +#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:754 msgid "Account" msgstr "" @@ -338,7 +338,7 @@ msgid "Account unmuted" msgstr "" #: src/components/dialogs/MutedWords.tsx:164 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 msgid "Add" @@ -362,8 +362,8 @@ msgstr "" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:423 -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:433 msgid "Add account" msgstr "" @@ -439,7 +439,7 @@ msgstr "" #~ msgid "Added" #~ msgstr "" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "" @@ -448,7 +448,7 @@ msgstr "" msgid "Added to my feeds" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:172 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "" @@ -466,7 +466,7 @@ msgid "Adult content is disabled." msgstr "" #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:687 +#: src/view/screens/Settings/index.tsx:688 msgid "Advanced" msgstr "" @@ -482,8 +482,8 @@ msgstr "" msgid "All the feeds you've saved, right in one place." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:187 -#: src/view/com/modals/AddAppPasswords.tsx:194 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "" @@ -508,7 +508,7 @@ msgstr "" #: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "ALT" msgstr "" @@ -518,7 +518,7 @@ msgstr "" msgid "Alt text" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:180 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Alt Text" msgstr "" @@ -547,8 +547,8 @@ msgstr "" #~ msgid "An error occurred while saving the image." #~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:70 -#: src/components/StarterPack/ShareDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the QR code!" msgstr "" @@ -564,10 +564,18 @@ msgstr "" msgid "An issue not included in these options" msgstr "" +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +msgid "An issue occurred while trying to open the chat" +msgstr "" + #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:309 -#: src/components/ProfileCard.tsx:329 +#: src/components/ProfileCard.tsx:311 +#: src/components/ProfileCard.tsx:331 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -579,8 +587,8 @@ msgstr "" msgid "an unknown error occurred" msgstr "" -#: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:291 +#: src/components/WhoCanReply.tsx:317 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "" @@ -589,7 +597,7 @@ msgstr "" msgid "Animals" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:146 +#: src/view/com/util/post-embeds/GifEmbed.tsx:155 msgid "Animated GIF" msgstr "" @@ -613,26 +621,26 @@ msgstr "" msgid "App Password names must be at least 4 characters long." msgstr "" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "App password settings" msgstr "" -#: src/Navigation.tsx:269 +#: src/Navigation.tsx:277 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:707 +#: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:151 -#: src/components/moderation/LabelsOnMeDialog.tsx:154 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:236 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Appeal \"{0}\" label" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/components/moderation/LabelsOnMeDialog.tsx:248 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "" @@ -648,7 +656,7 @@ msgstr "" msgid "Appeal this decision" msgstr "" -#: src/view/screens/Settings/index.tsx:440 +#: src/view/screens/Settings/index.tsx:441 msgid "Appearance" msgstr "" @@ -658,8 +666,8 @@ msgid "Apply default recommended feeds" msgstr "" #: src/screens/StarterPack/StarterPackScreen.tsx:610 -msgid "Are you sure you want delete this starter pack?" -msgstr "" +#~ msgid "Are you sure you want delete this starter pack?" +#~ msgstr "" #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" @@ -673,6 +681,10 @@ msgstr "" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:189 #~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." #~ msgstr "" @@ -689,7 +701,7 @@ msgstr "" msgid "Are you sure you want to remove this from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:649 +#: src/view/com/composer/Composer.tsx:680 msgid "Are you sure you'd like to discard this draft?" msgstr "" @@ -715,8 +727,8 @@ msgid "At least 3 characters" msgstr "" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:281 -#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/components/moderation/LabelsOnMeDialog.tsx:302 +#: src/components/moderation/LabelsOnMeDialog.tsx:303 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -729,7 +741,6 @@ msgstr "" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" @@ -739,7 +750,7 @@ msgstr "" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Basics" msgstr "" @@ -747,7 +758,7 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/view/screens/Settings/index.tsx:378 +#: src/view/screens/Settings/index.tsx:379 msgid "Birthday:" msgstr "" @@ -791,7 +802,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:145 +#: src/Navigation.tsx:148 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "" @@ -873,21 +884,21 @@ msgstr "" msgid "Books" msgstr "" -#: src/components/FeedInterstitials.tsx:281 +#: src/components/FeedInterstitials.tsx:285 msgid "Browse more accounts on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:411 +#: src/components/FeedInterstitials.tsx:415 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:266 -#: src/components/FeedInterstitials.tsx:396 +#: src/components/FeedInterstitials.tsx:270 +#: src/components/FeedInterstitials.tsx:400 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:289 -#: src/components/FeedInterstitials.tsx:420 +#: src/components/FeedInterstitials.tsx:293 +#: src/components/FeedInterstitials.tsx:424 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -932,7 +943,7 @@ msgstr "" msgid "Camera" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "" @@ -941,8 +952,8 @@ msgstr "" #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:451 -#: src/view/com/composer/Composer.tsx:457 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -960,7 +971,7 @@ msgstr "" #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:139 #: src/view/screens/Search/Search.tsx:704 -#: src/view/shell/desktop/Search.tsx:218 +#: src/view/shell/desktop/Search.tsx:219 msgid "Cancel" msgstr "" @@ -996,8 +1007,8 @@ msgstr "" msgid "Cancel reactivation and log out" msgstr "" -#: src/view/com/modals/ListAddRemoveUsers.tsx:87 -#: src/view/shell/desktop/Search.tsx:214 +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "" @@ -1009,17 +1020,17 @@ msgstr "" msgid "Change" msgstr "" -#: src/view/screens/Settings/index.tsx:372 +#: src/view/screens/Settings/index.tsx:373 msgctxt "action" msgid "Change" msgstr "" -#: src/view/screens/Settings/index.tsx:719 +#: src/view/screens/Settings/index.tsx:720 msgid "Change handle" msgstr "" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:730 +#: src/view/screens/Settings/index.tsx:731 msgid "Change Handle" msgstr "" @@ -1027,12 +1038,12 @@ msgstr "" msgid "Change my email" msgstr "" -#: src/view/screens/Settings/index.tsx:764 +#: src/view/screens/Settings/index.tsx:765 msgid "Change password" msgstr "" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:775 +#: src/view/screens/Settings/index.tsx:776 msgid "Change Password" msgstr "" @@ -1044,7 +1055,7 @@ msgstr "" msgid "Change Your Email" msgstr "" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:321 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -1056,14 +1067,14 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:326 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" msgstr "" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:648 +#: src/view/screens/Settings/index.tsx:649 msgid "Chat Settings" msgstr "" @@ -1150,19 +1161,19 @@ msgstr "" msgid "Choose your password" msgstr "" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clear all legacy storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:914 +#: src/view/screens/Settings/index.tsx:915 msgid "Clear all legacy storage data (restart after this)" msgstr "" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clear all storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:926 +#: src/view/screens/Settings/index.tsx:927 msgid "Clear all storage data (restart after this)" msgstr "" @@ -1171,11 +1182,11 @@ msgstr "" msgid "Clear search query" msgstr "" -#: src/view/screens/Settings/index.tsx:912 +#: src/view/screens/Settings/index.tsx:913 msgid "Clears all legacy storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:924 +#: src/view/screens/Settings/index.tsx:925 msgid "Clears all storage data" msgstr "" @@ -1203,7 +1214,7 @@ msgstr "" #~ msgid "Click here to open tag menu for #{tag}" #~ msgstr "" -#: src/components/dms/MessageItem.tsx:237 +#: src/components/dms/MessageItem.tsx:231 msgid "Click to retry failed message" msgstr "" @@ -1224,7 +1235,7 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/util/post-embeds/GifEmbed.tsx:195 msgid "Close" msgstr "" @@ -1279,7 +1290,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:472 msgid "Closes post composer and discards post draft" msgstr "" @@ -1287,11 +1298,11 @@ msgstr "" msgid "Closes viewer for header image" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:237 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:440 msgid "Collapses list of users for a given notification" msgstr "" @@ -1305,7 +1316,7 @@ msgstr "" msgid "Comics" msgstr "" -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:267 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "" @@ -1318,7 +1329,7 @@ msgstr "" msgid "Complete the challenge" msgstr "" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:582 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "" @@ -1343,8 +1354,6 @@ msgstr "" #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/PreferencesFollowingFeed.tsx:307 -#: src/view/screens/PreferencesThreads.tsx:159 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 msgid "Confirm" @@ -1461,12 +1470,12 @@ msgstr "" msgid "Cooking" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "" -#: src/view/screens/Settings/index.tsx:264 +#: src/view/screens/Settings/index.tsx:265 msgid "Copied build version to clipboard" msgstr "" @@ -1474,7 +1483,7 @@ msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:80 #: src/view/com/modals/ChangeHandle.tsx:320 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:189 +#: src/view/com/util/forms/PostDropdownBtn.tsx:192 #: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "" @@ -1483,12 +1492,12 @@ msgstr "" msgid "Copied!" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/view/com/modals/AddAppPasswords.tsx:213 +#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "" @@ -1501,11 +1510,11 @@ msgstr "" msgid "Copy code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" msgstr "" @@ -1513,8 +1522,8 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 msgid "Copy link to post" msgstr "" @@ -1523,20 +1532,24 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:285 -#: src/view/com/util/forms/PostDropdownBtn.tsx:287 +#: src/view/com/util/forms/PostDropdownBtn.tsx:288 +#: src/view/com/util/forms/PostDropdownBtn.tsx:290 msgid "Copy post text" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:168 +#: src/components/StarterPack/QrCodeDialog.tsx:171 msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:272 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "" +#: src/view/com/composer/videos/state.ts:31 +msgid "Could not compress video" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "" @@ -1570,17 +1583,17 @@ msgstr "" msgid "Create a new account" msgstr "" -#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:425 msgid "Create a new Bluesky account" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:151 +#: src/components/StarterPack/QrCodeDialog.tsx:154 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:351 msgid "Create a starter pack" msgstr "" @@ -1605,7 +1618,7 @@ msgstr "" msgid "Create another" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" msgstr "" @@ -1645,7 +1658,7 @@ msgid "Custom domain" msgstr "" #: src/view/screens/Feeds.tsx:760 -#: src/view/screens/Search/Explore.tsx:390 +#: src/view/screens/Search/Explore.tsx:392 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" @@ -1653,8 +1666,8 @@ msgstr "" msgid "Customize media from external sites." msgstr "" -#: src/view/screens/Settings/index.tsx:459 -#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:460 +#: src/view/screens/Settings/index.tsx:486 msgid "Dark" msgstr "" @@ -1662,7 +1675,7 @@ msgstr "" msgid "Dark mode" msgstr "" -#: src/view/screens/Settings/index.tsx:472 +#: src/view/screens/Settings/index.tsx:473 msgid "Dark Theme" msgstr "" @@ -1671,15 +1684,15 @@ msgid "Date of birth" msgstr "" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:807 +#: src/view/screens/Settings/index.tsx:808 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:819 +#: src/view/screens/Settings/index.tsx:820 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:874 +#: src/view/screens/Settings/index.tsx:875 msgid "Debug Moderation" msgstr "" @@ -1691,13 +1704,13 @@ msgstr "" #: src/screens/StarterPack/StarterPackScreen.tsx:562 #: src/screens/StarterPack/StarterPackScreen.tsx:641 #: src/screens/StarterPack/StarterPackScreen.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "" -#: src/view/screens/Settings/index.tsx:829 +#: src/view/screens/Settings/index.tsx:830 msgid "Delete account" msgstr "" @@ -1717,8 +1730,8 @@ msgstr "" msgid "Delete app password?" msgstr "" -#: src/view/screens/Settings/index.tsx:891 -#: src/view/screens/Settings/index.tsx:894 +#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:895 msgid "Delete chat declaration record" msgstr "" @@ -1742,12 +1755,12 @@ msgstr "" msgid "Delete my account" msgstr "" -#: src/view/screens/Settings/index.tsx:841 +#: src/view/screens/Settings/index.tsx:842 msgid "Delete My Account…" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:414 -#: src/view/com/util/forms/PostDropdownBtn.tsx:416 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 +#: src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "" @@ -1764,7 +1777,7 @@ msgstr "" msgid "Delete this list?" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:428 +#: src/view/com/util/forms/PostDropdownBtn.tsx:431 msgid "Delete this post?" msgstr "" @@ -1776,7 +1789,7 @@ msgstr "" msgid "Deleted post." msgstr "" -#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:893 msgid "Deletes the chat declaration record" msgstr "" @@ -1791,11 +1804,11 @@ msgstr "" msgid "Descriptive alt text" msgstr "" -#: src/view/com/composer/Composer.tsx:283 +#: src/view/com/composer/Composer.tsx:295 msgid "Did you want to say anything?" msgstr "" -#: src/view/screens/Settings/index.tsx:478 +#: src/view/screens/Settings/index.tsx:479 msgid "Dim" msgstr "" @@ -1832,11 +1845,11 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:682 msgid "Discard" msgstr "" -#: src/view/com/composer/Composer.tsx:648 +#: src/view/com/composer/Composer.tsx:679 msgid "Discard draft?" msgstr "" @@ -1854,7 +1867,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:388 +#: src/view/screens/Search/Explore.tsx:390 msgid "Discover new feeds" msgstr "" @@ -1907,22 +1920,20 @@ msgstr "" #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesFollowingFeed.tsx:310 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "" #: src/view/com/modals/EditImage.tsx:334 -#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" msgstr "" @@ -1931,7 +1942,7 @@ msgstr "" msgid "Done{extraText}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319 msgid "Download Bluesky" msgstr "" @@ -2001,7 +2012,7 @@ msgctxt "action" msgid "Edit" msgstr "" -#: src/view/com/util/UserAvatar.tsx:325 +#: src/view/com/util/UserAvatar.tsx:337 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "" @@ -2023,7 +2034,7 @@ msgstr "" msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:274 +#: src/Navigation.tsx:282 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -2038,12 +2049,12 @@ msgstr "" msgid "Edit People" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "" @@ -2061,7 +2072,7 @@ msgstr "" msgid "Edit User List" msgstr "" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Edit who can reply" msgstr "" @@ -2073,7 +2084,7 @@ msgstr "" msgid "Edit your profile description" msgstr "" -#: src/Navigation.tsx:343 +#: src/Navigation.tsx:356 msgid "Edit your starter pack" msgstr "" @@ -2112,7 +2123,7 @@ msgstr "" msgid "Email verified" msgstr "" -#: src/view/screens/Settings/index.tsx:350 +#: src/view/screens/Settings/index.tsx:351 msgid "Email:" msgstr "" @@ -2121,8 +2132,8 @@ msgid "Embed HTML code" msgstr "" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:324 -#: src/view/com/util/forms/PostDropdownBtn.tsx:326 +#: src/view/com/util/forms/PostDropdownBtn.tsx:327 +#: src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "" @@ -2152,11 +2163,16 @@ msgstr "" msgid "Enable external media" msgstr "" -#: src/view/screens/PreferencesExternalEmbeds.tsx:76 +#: src/view/screens/PreferencesExternalEmbeds.tsx:73 msgid "Enable media players for" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:146 +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 msgid "Enable this setting to only see replies between people you follow." msgstr "" @@ -2182,7 +2198,7 @@ msgstr "" msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:160 +#: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "" @@ -2250,7 +2266,7 @@ msgid "Everybody" msgstr "" #: src/components/WhoCanReply.tsx:69 -#: src/components/WhoCanReply.tsx:240 +#: src/components/WhoCanReply.tsx:241 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "" @@ -2286,8 +2302,8 @@ msgstr "" msgid "Exits image view" msgstr "" -#: src/view/com/modals/ListAddRemoveUsers.tsx:88 -#: src/view/shell/desktop/Search.tsx:215 +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +#: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "" @@ -2295,7 +2311,7 @@ msgstr "" msgid "Expand alt text" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:238 +#: src/view/com/notifications/FeedItem.tsx:239 msgid "Expand list of users" msgstr "" @@ -2304,6 +2320,10 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." msgstr "" @@ -2312,12 +2332,12 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/view/screens/Settings/index.tsx:787 +#: src/view/screens/Settings/index.tsx:788 msgid "Export my data" msgstr "" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:798 +#: src/view/screens/Settings/index.tsx:799 msgid "Export My Data" msgstr "" @@ -2327,17 +2347,17 @@ msgid "External Media" msgstr "" #: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/view/screens/PreferencesExternalEmbeds.tsx:64 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:293 +#: src/Navigation.tsx:301 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:680 +#: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" msgstr "" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "External media settings" msgstr "" @@ -2367,8 +2387,8 @@ msgstr "" msgid "Failed to delete starter pack" msgstr "" -#: src/view/screens/Search/Explore.tsx:426 -#: src/view/screens/Search/Explore.tsx:454 +#: src/view/screens/Search/Explore.tsx:428 +#: src/view/screens/Search/Explore.tsx:456 msgid "Failed to load feeds preferences" msgstr "" @@ -2390,20 +2410,24 @@ msgstr "" #~ msgid "Failed to load recommended feeds" #~ msgstr "" -#: src/view/screens/Search/Explore.tsx:419 -#: src/view/screens/Search/Explore.tsx:447 +#: src/view/screens/Search/Explore.tsx:421 +#: src/view/screens/Search/Explore.tsx:449 msgid "Failed to load suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:377 +#: src/view/screens/Search/Explore.tsx:379 msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:86 +#: src/view/com/lightbox/Lightbox.tsx:90 msgid "Failed to save image: {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:230 +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + +#: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "" @@ -2411,12 +2435,12 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: src/components/moderation/LabelsOnMeDialog.tsx:244 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:181 msgid "Failed to toggle thread mute, please try again" msgstr "" @@ -2429,7 +2453,7 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:217 msgid "Feed" msgstr "" @@ -2447,19 +2471,19 @@ msgid "Feed toggle" msgstr "" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:345 +#: src/view/shell/Drawer.tsx:332 msgid "Feedback" msgstr "" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:336 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 #: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:493 -#: src/view/shell/Drawer.tsx:494 +#: src/view/shell/Drawer.tsx:483 +#: src/view/shell/Drawer.tsx:484 msgid "Feeds" msgstr "" @@ -2521,11 +2545,11 @@ msgstr "" #~ msgid "Finding similar accounts..." #~ msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:110 +#: src/view/screens/PreferencesFollowingFeed.tsx:108 msgid "Fine-tune the content you see on your Following feed." msgstr "" -#: src/view/screens/PreferencesThreads.tsx:60 +#: src/view/screens/PreferencesThreads.tsx:54 msgid "Fine-tune the discussion threads." msgstr "" @@ -2555,7 +2579,7 @@ msgid "Flip vertically" msgstr "" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:341 +#: src/components/ProfileCard.tsx:343 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2600,7 +2624,7 @@ msgstr "" msgid "Follow Back" msgstr "" -#: src/view/screens/Search/Explore.tsx:333 +#: src/view/screens/Search/Explore.tsx:335 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "" @@ -2617,22 +2641,22 @@ msgstr "" #~ msgstr "" #: src/view/com/profile/ProfileCard.tsx:190 -msgid "Followed by {0}" -msgstr "" +#~ msgid "Followed by {0}" +#~ msgstr "" -#: src/components/KnownFollowers.tsx:223 +#: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "" -#: src/components/KnownFollowers.tsx:209 +#: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "" -#: src/components/KnownFollowers.tsx:196 +#: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" msgstr "" -#: src/components/KnownFollowers.tsx:178 +#: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" @@ -2640,15 +2664,15 @@ msgstr "" msgid "Followed users" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:153 +#: src/view/screens/PreferencesFollowingFeed.tsx:152 msgid "Followed users only" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:198 msgid "followed you" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:195 +#: src/view/com/notifications/FeedItem.tsx:196 msgid "followed you back" msgstr "" @@ -2657,7 +2681,7 @@ msgstr "" msgid "Followers" msgstr "" -#: src/Navigation.tsx:182 +#: src/Navigation.tsx:185 msgid "Followers of @{0} that you know" msgstr "" @@ -2667,7 +2691,7 @@ msgid "Followers you know" msgstr "" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:335 +#: src/components/ProfileCard.tsx:337 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2679,7 +2703,7 @@ msgstr "" msgid "Following" msgstr "" -#: src/components/ProfileCard.tsx:301 +#: src/components/ProfileCard.tsx:303 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "" @@ -2688,13 +2712,13 @@ msgstr "" msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:280 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:583 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesFollowingFeed.tsx:105 +#: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "" @@ -2719,7 +2743,7 @@ msgstr "" msgid "For security reasons, we'll need to send a confirmation code to your email address." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:232 +#: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "" @@ -2744,7 +2768,7 @@ msgstr "" msgid "From @{sanitizedAuthor}" msgstr "" -#: src/view/com/posts/FeedItem.tsx:236 +#: src/view/com/posts/FeedItem.tsx:242 msgctxt "from-feed" msgid "From <0/>" msgstr "" @@ -2757,6 +2781,10 @@ msgstr "" msgid "Generate a starter pack" msgstr "" +#: src/view/shell/Drawer.tsx:336 +msgid "Get help" +msgstr "" + #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" msgstr "" @@ -2804,12 +2832,12 @@ msgid "Go Back" msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -msgid "Go back to previous screen" -msgstr "" +#~ msgid "Go back to previous screen" +#~ msgstr "" #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/components/ReportDialog/SubmitView.tsx:121 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 @@ -2874,7 +2902,7 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:316 msgid "Hashtag" msgstr "" @@ -2887,7 +2915,7 @@ msgid "Having trouble?" msgstr "" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:355 +#: src/view/shell/Drawer.tsx:345 msgid "Help" msgstr "" @@ -2907,7 +2935,7 @@ msgstr "" #~ msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:203 +#: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "" @@ -2918,17 +2946,17 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:445 msgid "Hide" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:444 +#: src/view/com/notifications/FeedItem.tsx:447 msgctxt "action" msgid "Hide" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:387 -#: src/view/com/util/forms/PostDropdownBtn.tsx:389 +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 msgid "Hide post" msgstr "" @@ -2937,11 +2965,11 @@ msgstr "" msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:439 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide this post?" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:435 +#: src/view/com/notifications/FeedItem.tsx:438 msgid "Hide user list" msgstr "" @@ -2973,12 +3001,12 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/Navigation.tsx:519 -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:552 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:425 -#: src/view/shell/Drawer.tsx:426 +#: src/view/shell/Drawer.tsx:415 +#: src/view/shell/Drawer.tsx:416 msgid "Home" msgstr "" @@ -3032,7 +3060,7 @@ msgstr "" msgid "If you delete this list, you won't be able to recover it." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 msgid "If you remove this post, you won't be able to recover it." msgstr "" @@ -3056,7 +3084,7 @@ msgstr "" msgid "Image alt text" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:75 +#: src/components/StarterPack/ShareDialog.tsx:76 msgid "Image saved to your camera roll!" msgstr "" @@ -3076,7 +3104,7 @@ msgstr "" msgid "Input confirmation code for account deletion" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" msgstr "" @@ -3149,7 +3177,7 @@ msgstr "" msgid "Invite codes: 1 available" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:96 +#: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" msgstr "" @@ -3173,8 +3201,8 @@ msgstr "" msgid "Jobs" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:432 #: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" @@ -3213,11 +3241,11 @@ msgstr "" #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:79 +#: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:81 +#: src/components/moderation/LabelsOnMeDialog.tsx:82 msgid "Labels on your content" msgstr "" @@ -3225,16 +3253,16 @@ msgstr "" msgid "Language selection" msgstr "" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Language settings" msgstr "" -#: src/Navigation.tsx:155 +#: src/Navigation.tsx:158 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Languages" msgstr "" @@ -3294,7 +3322,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/view/screens/Settings/index.tsx:309 +#: src/view/screens/Settings/index.tsx:310 msgid "Legacy storage cleared, you need to restart the app now." msgstr "" @@ -3312,7 +3340,7 @@ msgstr "" msgid "Let's go!" msgstr "" -#: src/view/screens/Settings/index.tsx:453 +#: src/view/screens/Settings/index.tsx:454 msgid "Light" msgstr "" @@ -3330,13 +3358,13 @@ msgid "Like 10 posts to train the Discover feed" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Like this feed" msgstr "" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:219 -#: src/Navigation.tsx:224 +#: src/Navigation.tsx:222 +#: src/Navigation.tsx:227 msgid "Liked by" msgstr "" @@ -3360,11 +3388,11 @@ msgstr "" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "" -#: src/view/com/notifications/FeedItem.tsx:201 +#: src/view/com/notifications/FeedItem.tsx:202 msgid "liked your custom feed" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:185 +#: src/view/com/notifications/FeedItem.tsx:186 msgid "liked your post" msgstr "" @@ -3376,7 +3404,7 @@ msgstr "" msgid "Likes on this post" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:191 msgid "List" msgstr "" @@ -3413,12 +3441,12 @@ msgstr "" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:125 +#: src/Navigation.tsx:128 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 -#: src/view/shell/Drawer.tsx:509 -#: src/view/shell/Drawer.tsx:510 +#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:500 msgid "Lists" msgstr "" @@ -3426,25 +3454,25 @@ msgstr "" msgid "Lists blocking this user:" msgstr "" -#: src/view/screens/Search/Explore.tsx:130 +#: src/view/screens/Search/Explore.tsx:131 msgid "Load more" msgstr "" -#: src/view/screens/Search/Explore.tsx:218 +#: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:216 +#: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" msgstr "" -#: src/view/screens/Notifications.tsx:184 +#: src/view/screens/Notifications.tsx:219 msgid "Load new notifications" msgstr "" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:494 +#: src/view/screens/ProfileFeed.tsx:495 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "" @@ -3453,7 +3481,7 @@ msgstr "" msgid "Loading..." msgstr "" -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:247 msgid "Log" msgstr "" @@ -3523,7 +3551,7 @@ msgstr "" msgid "Media" msgstr "" -#: src/components/WhoCanReply.tsx:275 +#: src/components/WhoCanReply.tsx:276 msgid "mentioned users" msgstr "" @@ -3545,7 +3573,7 @@ msgstr "" msgid "Message deleted" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:200 +#: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "" @@ -3562,7 +3590,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:534 +#: src/Navigation.tsx:547 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3577,9 +3605,9 @@ msgstr "" msgid "Misleading Account" msgstr "" -#: src/Navigation.tsx:130 +#: src/Navigation.tsx:133 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:562 +#: src/view/screens/Settings/index.tsx:563 msgid "Moderation" msgstr "" @@ -3615,16 +3643,16 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:135 +#: src/Navigation.tsx:138 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Moderation settings" msgstr "" -#: src/Navigation.tsx:234 +#: src/Navigation.tsx:237 msgid "Moderation states" msgstr "" @@ -3649,7 +3677,7 @@ msgstr "" msgid "More options" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:82 +#: src/view/screens/PreferencesThreads.tsx:76 msgid "Most-liked replies first" msgstr "" @@ -3716,13 +3744,13 @@ msgstr "" msgid "Mute this word in tags only" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:371 msgid "Mute thread" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:378 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 +#: src/view/com/util/forms/PostDropdownBtn.tsx:381 +#: src/view/com/util/forms/PostDropdownBtn.tsx:383 msgid "Mute words & tags" msgstr "" @@ -3734,7 +3762,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:140 +#: src/Navigation.tsx:143 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "" @@ -3768,15 +3796,15 @@ msgstr "" msgid "My Profile" msgstr "" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "My saved feeds" msgstr "" -#: src/view/screens/Settings/index.tsx:623 +#: src/view/screens/Settings/index.tsx:624 msgid "My Saved Feeds" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/AddAppPasswords.tsx:174 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "" @@ -3811,7 +3839,7 @@ msgstr "" msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:78 msgid "Navigates to your profile" msgstr "" @@ -3841,7 +3869,7 @@ msgstr "" msgid "New" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" @@ -3869,9 +3897,9 @@ msgid "New post" msgstr "" #: src/view/screens/Feeds.tsx:581 -#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Notifications.tsx:228 #: src/view/screens/Profile.tsx:478 -#: src/view/screens/ProfileFeed.tsx:428 +#: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:278 @@ -3891,7 +3919,7 @@ msgstr "" msgid "New User List" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:79 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Newest replies first" msgstr "" @@ -3926,16 +3954,16 @@ msgstr "" msgid "Next image" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:199 -#: src/view/screens/PreferencesFollowingFeed.tsx:234 -#: src/view/screens/PreferencesFollowingFeed.tsx:271 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:198 +#: src/view/screens/PreferencesFollowingFeed.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:270 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "No" msgstr "" -#: src/view/screens/ProfileFeed.tsx:562 +#: src/view/screens/ProfileFeed.tsx:564 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "" @@ -3953,7 +3981,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/components/ProfileCard.tsx:321 +#: src/components/ProfileCard.tsx:323 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "" @@ -3970,7 +3998,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:122 msgid "No notifications yet!" msgstr "" @@ -4002,7 +4030,7 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 @@ -4048,7 +4076,7 @@ msgstr "" #~ msgid "Not Applicable." #~ msgstr "" -#: src/Navigation.tsx:120 +#: src/Navigation.tsx:123 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "" @@ -4059,7 +4087,7 @@ msgid "Not right now" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/forms/PostDropdownBtn.tsx:459 #: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "" @@ -4072,6 +4100,19 @@ msgstr "" msgid "Nothing here" msgstr "" +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:331 +#: src/view/screens/Notifications.tsx:119 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "" + #: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "" @@ -4080,13 +4121,14 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:529 -#: src/view/screens/Notifications.tsx:132 -#: src/view/screens/Notifications.tsx:169 +#: src/Navigation.tsx:542 +#: src/view/screens/Notifications.tsx:145 +#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:203 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 -#: src/view/shell/Drawer.tsx:457 -#: src/view/shell/Drawer.tsx:458 +#: src/view/shell/Drawer.tsx:447 +#: src/view/shell/Drawer.tsx:448 msgid "Notifications" msgstr "" @@ -4094,7 +4136,7 @@ msgstr "" msgid "now" msgstr "" -#: src/components/dms/MessageItem.tsx:175 +#: src/components/dms/MessageItem.tsx:169 msgid "Now" msgstr "" @@ -4124,7 +4166,7 @@ msgstr "" msgid "Oh no! Something went wrong." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 msgid "OK" msgstr "" @@ -4132,7 +4174,7 @@ msgstr "" msgid "Okay" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:78 +#: src/view/screens/PreferencesThreads.tsx:72 msgid "Oldest replies first" msgstr "" @@ -4144,7 +4186,7 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:257 +#: src/view/screens/Settings/index.tsx:258 msgid "Onboarding reset" msgstr "" @@ -4152,7 +4194,7 @@ msgstr "" msgid "Onboarding tour step {0}: {1}" msgstr "" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:534 msgid "One or more images is missing alt text." msgstr "" @@ -4160,7 +4202,7 @@ msgstr "" msgid "Only .jpg and .png files are supported" msgstr "" -#: src/components/WhoCanReply.tsx:244 +#: src/components/WhoCanReply.tsx:245 msgid "Only {0} can reply" msgstr "" @@ -4180,6 +4222,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:304 #: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/NotificationsSettings.tsx:45 #: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "" @@ -4201,16 +4244,16 @@ msgstr "" msgid "Open conversation options" msgstr "" -#: src/view/com/composer/Composer.tsx:632 -#: src/view/com/composer/Composer.tsx:633 +#: src/view/com/composer/Composer.tsx:663 +#: src/view/com/composer/Composer.tsx:664 msgid "Open emoji picker" msgstr "" -#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileFeed.tsx:297 msgid "Open feed options menu" msgstr "" -#: src/view/screens/Settings/index.tsx:737 +#: src/view/screens/Settings/index.tsx:738 msgid "Open links with in-app browser" msgstr "" @@ -4226,7 +4269,7 @@ msgstr "" msgid "Open navigation" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:247 +#: src/view/com/util/forms/PostDropdownBtn.tsx:250 msgid "Open post options menu" msgstr "" @@ -4234,12 +4277,12 @@ msgstr "" msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Open storybook page" msgstr "" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Open system log" msgstr "" @@ -4251,7 +4294,7 @@ msgstr "" msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:511 +#: src/view/screens/Settings/index.tsx:512 msgid "Opens accessibility settings" msgstr "" @@ -4267,7 +4310,7 @@ msgstr "" msgid "Opens camera on device" msgstr "" -#: src/view/screens/Settings/index.tsx:640 +#: src/view/screens/Settings/index.tsx:641 msgid "Opens chat settings" msgstr "" @@ -4275,7 +4318,7 @@ msgstr "" msgid "Opens composer" msgstr "" -#: src/view/screens/Settings/index.tsx:532 +#: src/view/screens/Settings/index.tsx:533 msgid "Opens configurable language settings" msgstr "" @@ -4283,7 +4326,7 @@ msgstr "" msgid "Opens device photo gallery" msgstr "" -#: src/view/screens/Settings/index.tsx:672 +#: src/view/screens/Settings/index.tsx:673 msgid "Opens external embeds settings" msgstr "" @@ -4305,27 +4348,27 @@ msgstr "" msgid "Opens list of invite codes" msgstr "" -#: src/view/screens/Settings/index.tsx:809 +#: src/view/screens/Settings/index.tsx:810 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:831 +#: src/view/screens/Settings/index.tsx:832 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "" -#: src/view/screens/Settings/index.tsx:766 +#: src/view/screens/Settings/index.tsx:767 msgid "Opens modal for changing your Bluesky password" msgstr "" -#: src/view/screens/Settings/index.tsx:721 +#: src/view/screens/Settings/index.tsx:722 msgid "Opens modal for choosing a new Bluesky handle" msgstr "" -#: src/view/screens/Settings/index.tsx:789 +#: src/view/screens/Settings/index.tsx:790 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "" -#: src/view/screens/Settings/index.tsx:1009 +#: src/view/screens/Settings/index.tsx:1010 msgid "Opens modal for email verification" msgstr "" @@ -4333,7 +4376,7 @@ msgstr "" msgid "Opens modal for using custom domain" msgstr "" -#: src/view/screens/Settings/index.tsx:557 +#: src/view/screens/Settings/index.tsx:558 msgid "Opens moderation settings" msgstr "" @@ -4346,15 +4389,15 @@ msgstr "" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:618 +#: src/view/screens/Settings/index.tsx:619 msgid "Opens screen with all saved feeds" msgstr "" -#: src/view/screens/Settings/index.tsx:699 +#: src/view/screens/Settings/index.tsx:700 msgid "Opens the app password settings" msgstr "" -#: src/view/screens/Settings/index.tsx:575 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens the Following feed preferences" msgstr "" @@ -4366,30 +4409,34 @@ msgstr "" #~ msgid "Opens the message settings page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:862 -#: src/view/screens/Settings/index.tsx:872 +#: src/view/screens/Settings/index.tsx:863 +#: src/view/screens/Settings/index.tsx:873 msgid "Opens the storybook page" msgstr "" -#: src/view/screens/Settings/index.tsx:850 +#: src/view/screens/Settings/index.tsx:851 msgid "Opens the system log page" msgstr "" -#: src/view/screens/Settings/index.tsx:596 +#: src/view/screens/Settings/index.tsx:597 msgid "Opens the threads preferences" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:524 -#: src/view/com/util/UserAvatar.tsx:422 +#: src/view/com/notifications/FeedItem.tsx:527 +#: src/view/com/util/UserAvatar.tsx:434 msgid "Opens this profile" msgstr "" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:54 +msgid "Opens video picker" +msgstr "" + #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "" #: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:162 +#: src/components/ReportDialog/SubmitView.tsx:179 msgid "Optionally provide additional information below:" msgstr "" @@ -4449,7 +4496,7 @@ msgstr "" msgid "Password updated!" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Pause" msgstr "" @@ -4458,19 +4505,19 @@ msgstr "" msgid "People" msgstr "" -#: src/Navigation.tsx:175 +#: src/Navigation.tsx:178 msgid "People followed by @{0}" msgstr "" -#: src/Navigation.tsx:168 +#: src/Navigation.tsx:171 msgid "People following @{0}" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:69 +#: src/view/com/lightbox/Lightbox.tsx:70 msgid "Permission to access camera roll is required." msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:75 +#: src/view/com/lightbox/Lightbox.tsx:78 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "" @@ -4491,12 +4538,12 @@ msgstr "" msgid "Pictures meant for adults." msgstr "" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 msgid "Pin to Home" msgstr "" @@ -4508,7 +4555,7 @@ msgstr "" msgid "Pinned to your feeds" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Play" msgstr "" @@ -4521,7 +4568,7 @@ msgstr "" #~ msgid "Play notification sounds" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 msgid "Play or pause the GIF" msgstr "" @@ -4555,7 +4602,7 @@ msgstr "" msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:150 +#: src/view/com/modals/AddAppPasswords.tsx:151 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "" @@ -4576,7 +4623,7 @@ msgstr "" msgid "Please enter your password as well:" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:277 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" @@ -4593,7 +4640,7 @@ msgstr "" msgid "Please Verify Your Email" msgstr "" -#: src/view/com/composer/Composer.tsx:287 +#: src/view/com/composer/Composer.tsx:299 msgid "Please wait for your link card to finish loading" msgstr "" @@ -4606,8 +4653,8 @@ msgstr "" msgid "Porn" msgstr "" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:509 +#: src/view/com/composer/Composer.tsx:516 msgctxt "action" msgid "Post" msgstr "" @@ -4621,9 +4668,9 @@ msgstr "" msgid "Post by {0}" msgstr "" -#: src/Navigation.tsx:194 -#: src/Navigation.tsx:201 -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:197 +#: src/Navigation.tsx:204 +#: src/Navigation.tsx:211 msgid "Post by @{0}" msgstr "" @@ -4679,6 +4726,10 @@ msgstr "" msgid "Potentially Misleading Link" msgstr "" +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "" @@ -4699,7 +4750,7 @@ msgstr "" #~ msgid "Press to Retry" #~ msgstr "" -#: src/components/KnownFollowers.tsx:116 +#: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "" @@ -4711,20 +4762,24 @@ msgstr "" msgid "Primary Language" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:97 +#: src/view/screens/PreferencesThreads.tsx:91 msgid "Prioritize Your Follows" msgstr "" -#: src/view/screens/Settings/index.tsx:655 +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "" + +#: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "" -#: src/Navigation.tsx:249 +#: src/Navigation.tsx:257 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:958 -#: src/view/shell/Drawer.tsx:285 +#: src/view/screens/Settings/index.tsx:959 +#: src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "" @@ -4743,9 +4798,9 @@ msgstr "" #: src/view/shell/bottom-bar/BottomBar.tsx:275 #: src/view/shell/desktop/LeftNav.tsx:393 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:542 -#: src/view/shell/Drawer.tsx:543 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:532 +#: src/view/shell/Drawer.tsx:533 msgid "Profile" msgstr "" @@ -4753,7 +4808,7 @@ msgstr "" msgid "Profile updated" msgstr "" -#: src/view/screens/Settings/index.tsx:1022 +#: src/view/screens/Settings/index.tsx:1023 msgid "Protect your account by verifying your email." msgstr "" @@ -4769,23 +4824,23 @@ msgstr "" msgid "Public, shareable lists which can drive feeds." msgstr "" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish post" msgstr "" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish reply" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:125 +#: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:103 +#: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:104 +#: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "" @@ -4810,7 +4865,7 @@ msgstr "" #~ msgid "Quote Post" #~ msgstr "" -#: src/view/screens/PreferencesThreads.tsx:86 +#: src/view/screens/PreferencesThreads.tsx:80 msgid "Random (aka \"Poster's Roulette\")" msgstr "" @@ -4846,19 +4901,23 @@ msgstr "" msgid "Reconnect" msgstr "" +#: src/view/screens/Notifications.tsx:146 +msgid "Refresh notifications" +msgstr "" + #: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 #: src/components/FeedCard.tsx:309 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:212 +#: src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "" @@ -4870,7 +4929,7 @@ msgstr "" msgid "Remove account" msgstr "" -#: src/view/com/util/UserAvatar.tsx:384 +#: src/view/com/util/UserAvatar.tsx:396 msgid "Remove Avatar" msgstr "" @@ -4882,20 +4941,20 @@ msgstr "" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:168 -#: src/view/com/posts/FeedShutdownMsg.tsx:113 -#: src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:115 +#: src/view/com/posts/FeedShutdownMsg.tsx:119 msgid "Remove feed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:209 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" msgstr "" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "" @@ -4909,7 +4968,7 @@ msgstr "" msgid "Remove image" msgstr "" -#: src/view/com/composer/ExternalEmbed.tsx:87 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 msgid "Remove image preview" msgstr "" @@ -4934,11 +4993,11 @@ msgstr "" msgid "Remove repost" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "" -#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "" @@ -4954,15 +5013,19 @@ msgid "Removed from your feeds" msgstr "" #: src/view/com/composer/ExternalEmbed.tsx:88 -msgid "Removes default thumbnail from {0}" -msgstr "" +#~ msgid "Removes default thumbnail from {0}" +#~ msgstr "" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" msgstr "" -#: src/view/com/posts/FeedShutdownMsg.tsx:126 -#: src/view/com/posts/FeedShutdownMsg.tsx:130 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the image preview" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:128 +#: src/view/com/posts/FeedShutdownMsg.tsx:132 msgid "Replace with Discover" msgstr "" @@ -4978,16 +5041,16 @@ msgstr "" #~ msgid "Replies on this thread are disabled" #~ msgstr "" -#: src/components/WhoCanReply.tsx:242 +#: src/components/WhoCanReply.tsx:243 msgid "Replies to this thread are disabled" msgstr "" -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:507 msgctxt "action" msgid "Reply" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:143 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 msgid "Reply Filters" msgstr "" @@ -4997,17 +5060,23 @@ msgstr "" #~ msgid "Reply to <0/>" #~ msgstr "" -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:439 +#: src/view/com/post/Post.tsx:197 +#: src/view/com/posts/FeedItem.tsx:458 msgctxt "description" msgid "Reply to <0><1/>" msgstr "" -#: src/view/com/posts/FeedItem.tsx:437 +#: src/view/com/posts/FeedItem.tsx:456 msgctxt "description" msgid "Reply to a blocked post" msgstr "" +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:454 +msgctxt "description" +msgid "Reply to you" +msgstr "" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -5034,8 +5103,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/view/screens/ProfileFeed.tsx:349 -#: src/view/screens/ProfileFeed.tsx:351 +#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:352 msgid "Report feed" msgstr "" @@ -5047,8 +5116,8 @@ msgstr "" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:407 +#: src/view/com/util/forms/PostDropdownBtn.tsx:409 msgid "Report post" msgstr "" @@ -5110,7 +5179,7 @@ msgstr "" msgid "Reposted By" msgstr "" -#: src/view/com/posts/FeedItem.tsx:254 +#: src/view/com/posts/FeedItem.tsx:263 msgid "Reposted by {0}" msgstr "" @@ -5118,11 +5187,16 @@ msgstr "" #~ msgid "Reposted by <0/>" #~ msgstr "" -#: src/view/com/posts/FeedItem.tsx:269 +#: src/view/com/posts/FeedItem.tsx:282 msgid "Reposted by <0><1/>" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/posts/FeedItem.tsx:261 +#: src/view/com/posts/FeedItem.tsx:280 +msgid "Reposted by you" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:188 msgid "reposted your post" msgstr "" @@ -5165,8 +5239,8 @@ msgstr "" msgid "Reset Code" msgstr "" -#: src/view/screens/Settings/index.tsx:901 -#: src/view/screens/Settings/index.tsx:904 +#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:905 msgid "Reset onboarding state" msgstr "" @@ -5174,16 +5248,16 @@ msgstr "" msgid "Reset password" msgstr "" -#: src/view/screens/Settings/index.tsx:881 -#: src/view/screens/Settings/index.tsx:884 +#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:885 msgid "Reset preferences state" msgstr "" -#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:903 msgid "Resets the onboarding state" msgstr "" -#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:883 msgid "Resets the preferences state" msgstr "" @@ -5196,7 +5270,7 @@ msgstr "" msgid "Retries the last action, which errored out" msgstr "" -#: src/components/dms/MessageItem.tsx:241 +#: src/components/dms/MessageItem.tsx:235 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 @@ -5232,7 +5306,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/dialogs/ThreadgateEditor.tsx:88 -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:187 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5241,7 +5315,7 @@ msgstr "" msgid "Save" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:135 +#: src/view/com/lightbox/Lightbox.tsx:139 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5263,8 +5337,8 @@ msgstr "" msgid "Save handle change" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:150 -#: src/components/StarterPack/ShareDialog.tsx:157 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "" @@ -5272,12 +5346,12 @@ msgstr "" msgid "Save image crop" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:178 +#: src/components/StarterPack/QrCodeDialog.tsx:181 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 +#: src/view/screens/ProfileFeed.tsx:334 +#: src/view/screens/ProfileFeed.tsx:340 msgid "Save to my feeds" msgstr "" @@ -5285,7 +5359,7 @@ msgstr "" msgid "Saved Feeds" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:88 msgid "Saved to your camera roll" msgstr "" @@ -5312,8 +5386,8 @@ msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:383 -#: src/view/com/notifications/FeedItem.tsx:408 +#: src/view/com/notifications/FeedItem.tsx:386 +#: src/view/com/notifications/FeedItem.tsx:411 msgid "Say hello!" msgstr "" @@ -5327,9 +5401,9 @@ msgid "Scroll to top" msgstr "" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:524 +#: src/Navigation.tsx:537 #: src/view/com/auth/LoggedOut.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 @@ -5337,14 +5411,14 @@ msgstr "" #: src/view/screens/Search/Search.tsx:813 #: src/view/shell/bottom-bar/BottomBar.tsx:182 #: src/view/shell/desktop/LeftNav.tsx:354 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:394 -#: src/view/shell/Drawer.tsx:395 +#: src/view/shell/desktop/Search.tsx:195 +#: src/view/shell/desktop/Search.tsx:204 +#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:385 msgid "Search" msgstr "" -#: src/view/shell/desktop/Search.tsx:235 +#: src/view/shell/desktop/Search.tsx:236 msgid "Search for \"{query}\"" msgstr "" @@ -5370,7 +5444,7 @@ msgstr "" #: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/auth/LoggedOut.tsx:107 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "" @@ -5474,7 +5548,7 @@ msgstr "" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:135 +#: src/components/ReportDialog/SubmitView.tsx:152 msgid "Select the moderation service(s) to report to" msgstr "" @@ -5486,6 +5560,10 @@ msgstr "" #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:53 +msgid "Select video" +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:63 #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "" @@ -5536,8 +5614,7 @@ msgctxt "action" msgid "Send Email" msgstr "" -#: src/view/shell/Drawer.tsx:329 -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:325 msgid "Send feedback" msgstr "" @@ -5546,14 +5623,14 @@ msgstr "" msgid "Send message" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 msgid "Send post to..." msgstr "" #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:215 -#: src/components/ReportDialog/SubmitView.tsx:219 +#: src/components/ReportDialog/SubmitView.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:236 msgid "Send report" msgstr "" @@ -5566,8 +5643,8 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 +#: src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" msgstr "" @@ -5587,23 +5664,23 @@ msgstr "" msgid "Set new password" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:224 +#: src/view/screens/PreferencesFollowingFeed.tsx:223 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:120 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:190 +#: src/view/screens/PreferencesFollowingFeed.tsx:189 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "" -#: src/view/screens/PreferencesThreads.tsx:122 +#: src/view/screens/PreferencesThreads.tsx:116 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:260 +#: src/view/screens/PreferencesFollowingFeed.tsx:259 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "" @@ -5615,23 +5692,23 @@ msgstr "" msgid "Sets Bluesky username" msgstr "" -#: src/view/screens/Settings/index.tsx:462 +#: src/view/screens/Settings/index.tsx:463 msgid "Sets color theme to dark" msgstr "" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Sets color theme to light" msgstr "" -#: src/view/screens/Settings/index.tsx:449 +#: src/view/screens/Settings/index.tsx:450 msgid "Sets color theme to system setting" msgstr "" -#: src/view/screens/Settings/index.tsx:488 +#: src/view/screens/Settings/index.tsx:489 msgid "Sets dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings/index.tsx:481 +#: src/view/screens/Settings/index.tsx:482 msgid "Sets dark theme to the dim theme" msgstr "" @@ -5651,11 +5728,11 @@ msgstr "" msgid "Sets image aspect ratio to wide" msgstr "" -#: src/Navigation.tsx:150 -#: src/view/screens/Settings/index.tsx:333 +#: src/Navigation.tsx:153 +#: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:559 -#: src/view/shell/Drawer.tsx:560 +#: src/view/shell/Drawer.tsx:549 +#: src/view/shell/Drawer.tsx:550 msgid "Settings" msgstr "" @@ -5667,19 +5744,19 @@ msgstr "" msgid "Sexually Suggestive" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:177 #: src/screens/StarterPack/StarterPackScreen.tsx:400 #: src/screens/StarterPack/StarterPackScreen.tsx:571 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 #: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:144 +#: src/view/com/lightbox/Lightbox.tsx:148 msgctxt "action" msgid "Share" msgstr "" @@ -5693,18 +5770,18 @@ msgid "Share a fun fact!" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:464 #: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "" -#: src/view/screens/ProfileFeed.tsx:359 -#: src/view/screens/ProfileFeed.tsx:361 +#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:362 msgid "Share feed" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:123 -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 #: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -5714,12 +5791,12 @@ msgstr "" msgid "Share Link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:87 +#: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:134 -#: src/components/StarterPack/ShareDialog.tsx:145 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "" @@ -5727,7 +5804,7 @@ msgstr "" msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:99 +#: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5735,6 +5812,10 @@ msgstr "" msgid "Share your favorite feed!" msgstr "" +#: src/Navigation.tsx:242 +msgid "Shared Preferences Tester" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" msgstr "" @@ -5742,7 +5823,7 @@ msgstr "" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:382 +#: src/view/screens/Settings/index.tsx:383 msgid "Show" msgstr "" @@ -5750,7 +5831,7 @@ msgstr "" #~ msgid "Show all replies" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +#: src/view/com/util/post-embeds/GifEmbed.tsx:175 msgid "Show alt text" msgstr "" @@ -5776,19 +5857,19 @@ msgstr "" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#: src/view/com/util/forms/PostDropdownBtn.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:349 +#: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" msgstr "" #: src/view/com/post-thread/PostThreadItem.tsx:530 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:396 +#: src/view/com/post/Post.tsx:235 +#: src/view/com/posts/FeedItem.tsx:410 msgid "Show More" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 -#: src/view/com/util/forms/PostDropdownBtn.tsx:340 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:343 msgid "Show more like this" msgstr "" @@ -5796,11 +5877,11 @@ msgstr "" msgid "Show muted replies" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:257 +#: src/view/screens/PreferencesFollowingFeed.tsx:256 msgid "Show Posts from My Feeds" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:221 +#: src/view/screens/PreferencesFollowingFeed.tsx:220 msgid "Show Quote Posts" msgstr "" @@ -5816,11 +5897,11 @@ msgstr "" #~ msgid "Show re-posts in Following feed" #~ msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:117 msgid "Show Replies" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:94 msgid "Show replies by people you follow before all other replies." msgstr "" @@ -5836,7 +5917,7 @@ msgstr "" #~ msgid "Show replies with at least {value} {0}" #~ msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:187 +#: src/view/screens/PreferencesFollowingFeed.tsx:186 msgid "Show Reposts" msgstr "" @@ -5902,8 +5983,8 @@ msgstr "" msgid "Sign into Bluesky or create a new account" msgstr "" -#: src/view/screens/Settings/index.tsx:129 -#: src/view/screens/Settings/index.tsx:133 +#: src/view/screens/Settings/index.tsx:130 +#: src/view/screens/Settings/index.tsx:134 msgid "Sign out" msgstr "" @@ -5928,7 +6009,7 @@ msgstr "" msgid "Sign-in Required" msgstr "" -#: src/view/screens/Settings/index.tsx:392 +#: src/view/screens/Settings/index.tsx:393 msgid "Signed in as" msgstr "" @@ -5937,12 +6018,12 @@ msgstr "" msgid "Signed in as @{0}" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:208 +#: src/view/com/notifications/FeedItem.tsx:209 msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 msgid "Signup without a starter pack" msgstr "" @@ -5960,7 +6041,7 @@ msgstr "" msgid "Software Dev" msgstr "" -#: src/components/FeedInterstitials.tsx:378 +#: src/components/FeedInterstitials.tsx:382 msgid "Some other feeds you might like" msgstr "" @@ -5988,16 +6069,21 @@ msgstr "" msgid "Something went wrong, please try again." msgstr "" -#: src/App.native.tsx:98 -#: src/App.web.tsx:80 +#: src/components/Lists.tsx:192 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "" + +#: src/App.native.tsx:99 +#: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "" -#: src/view/screens/PreferencesThreads.tsx:69 +#: src/view/screens/PreferencesThreads.tsx:63 msgid "Sort Replies" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:66 msgid "Sort replies to the same post by:" msgstr "" @@ -6005,7 +6091,7 @@ msgstr "" #~ msgid "Source:" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" msgstr "" @@ -6027,7 +6113,7 @@ msgstr "" msgid "Square" msgstr "" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:63 msgid "Start a new chat" msgstr "" @@ -6044,8 +6130,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:328 -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:341 +#: src/Navigation.tsx:346 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -6070,7 +6156,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:964 +#: src/view/screens/Settings/index.tsx:965 msgid "Status Page" msgstr "" @@ -6082,17 +6168,17 @@ msgstr "" msgid "Step {0} of {1}" msgstr "" -#: src/view/screens/Settings/index.tsx:305 +#: src/view/screens/Settings/index.tsx:306 msgid "Storage cleared, you need to restart the app now." msgstr "" -#: src/Navigation.tsx:229 -#: src/view/screens/Settings/index.tsx:864 +#: src/Navigation.tsx:232 +#: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:290 -#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/components/moderation/LabelsOnMeDialog.tsx:311 +#: src/components/moderation/LabelsOnMeDialog.tsx:312 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -6115,7 +6201,7 @@ msgstr "" #~ msgid "Subscribe to the {0} feed" #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 msgid "Subscribe to this labeler" msgstr "" @@ -6123,7 +6209,7 @@ msgstr "" msgid "Subscribe to this list" msgstr "" -#: src/view/screens/Search/Explore.tsx:331 +#: src/view/screens/Search/Explore.tsx:333 msgid "Suggested accounts" msgstr "" @@ -6131,7 +6217,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "" -#: src/components/FeedInterstitials.tsx:246 +#: src/components/FeedInterstitials.tsx:250 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "" @@ -6140,7 +6226,7 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:252 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6155,19 +6241,19 @@ msgstr "" msgid "Switch between feeds to control your experience." msgstr "" -#: src/view/screens/Settings/index.tsx:160 +#: src/view/screens/Settings/index.tsx:161 msgid "Switch to {0}" msgstr "" -#: src/view/screens/Settings/index.tsx:161 +#: src/view/screens/Settings/index.tsx:162 msgid "Switches the account you are logged in to" msgstr "" -#: src/view/screens/Settings/index.tsx:446 +#: src/view/screens/Settings/index.tsx:447 msgid "System" msgstr "" -#: src/view/screens/Settings/index.tsx:852 +#: src/view/screens/Settings/index.tsx:853 msgid "System log" msgstr "" @@ -6216,11 +6302,11 @@ msgstr "" msgid "Terms" msgstr "" -#: src/Navigation.tsx:254 +#: src/Navigation.tsx:262 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:952 +#: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:279 +#: src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "" @@ -6235,13 +6321,13 @@ msgstr "" msgid "text" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/components/moderation/LabelsOnMeDialog.tsx:275 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "" #: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:93 msgid "Thank you. Your report has been sent." msgstr "" @@ -6284,19 +6370,19 @@ msgstr "" msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322 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:66 +#: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:65 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your account." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:67 msgid "The following labels were applied to your content." msgstr "" @@ -6333,8 +6419,8 @@ msgstr "" msgid "There is no time limit for account deactivation, come back any time." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 -#: src/view/screens/ProfileFeed.tsx:544 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 +#: src/view/screens/ProfileFeed.tsx:545 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -6343,7 +6429,7 @@ msgid "There was an an issue removing this feed. Please check your internet conn msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "" @@ -6357,7 +6443,7 @@ msgstr "" #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:234 +#: src/view/screens/ProfileFeed.tsx:235 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6371,7 +6457,7 @@ msgstr "" msgid "There was an issue contacting your server" msgstr "" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" @@ -6389,7 +6475,7 @@ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "" #: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:82 +#: src/components/ReportDialog/SubmitView.tsx:98 msgid "There was an issue sending your report. Please check your internet connection." msgstr "" @@ -6449,7 +6535,7 @@ msgstr "" 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/moderation/LabelsOnMeDialog.tsx:239 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 msgid "This appeal will be sent to <0>{0}." msgstr "" @@ -6509,12 +6595,12 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:473 +#: src/view/screens/ProfileFeed.tsx:474 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" -#: src/view/com/posts/FeedShutdownMsg.tsx:97 +#: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" @@ -6542,7 +6628,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:166 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." msgstr "" @@ -6570,12 +6656,12 @@ msgstr "" msgid "This post has been deleted." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 #: src/view/com/util/post-ctrls/PostCtrls.tsx:324 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:440 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "This post will be hidden from feeds." msgstr "" @@ -6632,12 +6718,12 @@ msgstr "" msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Thread preferences" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/PreferencesThreads.tsx:51 +#: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "" @@ -6645,11 +6731,11 @@ msgstr "" msgid "Thread settings updated" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:119 +#: src/view/screens/PreferencesThreads.tsx:113 msgid "Threaded Mode" msgstr "" -#: src/Navigation.tsx:287 +#: src/Navigation.tsx:295 msgid "Threads Preferences" msgstr "" @@ -6690,8 +6776,8 @@ msgstr "" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:676 #: src/view/com/post-thread/PostThreadItem.tsx:678 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 -#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "" @@ -6704,7 +6790,7 @@ msgstr "" msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:746 +#: src/view/screens/Settings/index.tsx:747 msgid "Two-factor authentication" msgstr "" @@ -6796,7 +6882,7 @@ msgstr "" #~ msgid "Unlike" #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Unlike this feed" msgstr "" @@ -6826,17 +6912,17 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:367 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Unmute thread" msgstr "" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 msgid "Unpin from home" msgstr "" @@ -6852,7 +6938,7 @@ msgstr "" msgid "Unsubscribe" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Unsubscribe from this labeler" msgstr "" @@ -6885,20 +6971,20 @@ msgstr "" msgid "Upload a text file to:" msgstr "" -#: src/view/com/util/UserAvatar.tsx:352 -#: src/view/com/util/UserAvatar.tsx:355 +#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "" -#: src/view/com/util/UserAvatar.tsx:369 +#: src/view/com/util/UserAvatar.tsx:381 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "" -#: src/view/com/util/UserAvatar.tsx:363 -#: src/view/com/util/UserAvatar.tsx:367 +#: src/view/com/util/UserAvatar.tsx:375 +#: src/view/com/util/UserAvatar.tsx:379 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -6938,7 +7024,7 @@ msgstr "" msgid "Use the DNS panel" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:205 +#: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." msgstr "" @@ -7006,7 +7092,7 @@ msgstr "" msgid "Users" msgstr "" -#: src/components/WhoCanReply.tsx:279 +#: src/components/WhoCanReply.tsx:280 msgid "users followed by <0/>" msgstr "" @@ -7037,15 +7123,15 @@ msgstr "" msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:983 +#: src/view/screens/Settings/index.tsx:984 msgid "Verify email" msgstr "" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Verify my email" msgstr "" -#: src/view/screens/Settings/index.tsx:1017 +#: src/view/screens/Settings/index.tsx:1018 msgid "Verify My Email" msgstr "" @@ -7066,7 +7152,7 @@ msgstr "" #~ msgid "Version {0}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Version {appVersion} {bundleInfo}" msgstr "" @@ -7075,11 +7161,15 @@ msgstr "" msgid "Video Games" msgstr "" +#: src/view/com/composer/videos/state.ts:27 +msgid "Videos cannot be larger than 100MB" +msgstr "" + #: src/screens/Profile/Header/Shell.tsx:113 msgid "View {0}'s avatar" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:245 +#: src/view/com/notifications/FeedItem.tsx:246 msgid "View {0}'s profile" msgstr "" @@ -7111,7 +7201,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:436 #: src/components/ProfileHoverCard/index.web.tsx:463 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "" @@ -7123,7 +7213,7 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/view/screens/ProfileFeed.tsx:585 +#: src/view/screens/ProfileFeed.tsx:587 msgid "View users who like this feed" msgstr "" @@ -7219,7 +7309,7 @@ msgstr "" msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" -#: src/view/com/composer/Composer.tsx:335 +#: src/view/com/composer/Composer.tsx:347 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -7232,7 +7322,7 @@ msgstr "" #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "" @@ -7258,7 +7348,7 @@ msgstr "" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:376 +#: src/view/com/composer/Composer.tsx:388 msgid "What's up?" msgstr "" @@ -7275,15 +7365,15 @@ msgstr "" msgid "Who can message you?" msgstr "" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Who can reply" msgstr "" -#: src/components/WhoCanReply.tsx:211 +#: src/components/WhoCanReply.tsx:212 msgid "Who can reply dialog" msgstr "" -#: src/components/WhoCanReply.tsx:215 +#: src/components/WhoCanReply.tsx:216 msgid "Who can reply?" msgstr "" @@ -7329,11 +7419,11 @@ msgstr "" msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:580 msgid "Write post" msgstr "" -#: src/view/com/composer/Composer.tsx:375 +#: src/view/com/composer/Composer.tsx:387 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "" @@ -7344,12 +7434,12 @@ msgid "Writers" msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:200 -#: src/view/screens/PreferencesFollowingFeed.tsx:235 -#: src/view/screens/PreferencesFollowingFeed.tsx:270 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:199 +#: src/view/screens/PreferencesFollowingFeed.tsx:234 +#: src/view/screens/PreferencesFollowingFeed.tsx:269 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "Yes" msgstr "" @@ -7366,7 +7456,7 @@ msgstr "" msgid "Yes, reactivate my account" msgstr "" -#: src/components/dms/MessageItem.tsx:188 +#: src/components/dms/MessageItem.tsx:182 msgid "Yesterday, {time}" msgstr "" @@ -7519,19 +7609,19 @@ msgstr "" msgid "You haven't muted any words or tags yet" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:86 +#: src/components/moderation/LabelsOnMeDialog.tsx:87 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:92 msgid "You may appeal these labels if you feel they were placed in error." msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:92 +#: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 50 feeds" msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:77 +#: src/screens/StarterPack/Wizard/State.tsx:78 msgid "You may only add up to 50 profiles" msgstr "" @@ -7555,7 +7645,7 @@ msgstr "" msgid "You must grant access to your photo library to save the image." msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:205 +#: src/components/ReportDialog/SubmitView.tsx:222 msgid "You must select at least one labeler for a report" msgstr "" @@ -7595,15 +7685,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272 msgid "You'll stay updated with these feeds" msgstr "" @@ -7702,7 +7792,7 @@ msgstr "" msgid "Your password has been changed successfully!" msgstr "" -#: src/view/com/composer/Composer.tsx:366 +#: src/view/com/composer/Composer.tsx:378 msgid "Your post has been published" msgstr "" @@ -7710,7 +7800,7 @@ msgstr "" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "" -#: src/view/screens/Settings/index.tsx:148 +#: src/view/screens/Settings/index.tsx:149 msgid "Your profile" msgstr "" @@ -7718,7 +7808,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:365 +#: src/view/com/composer/Composer.tsx:377 msgid "Your reply has been published" msgstr "" diff --git a/src/locale/locales/es/messages.po b/src/locale/locales/es/messages.po index 08f23b11ed..4fabbb41e5 100644 --- a/src/locale/locales/es/messages.po +++ b/src/locale/locales/es/messages.po @@ -21,7 +21,7 @@ msgstr "" msgid "(no email)" msgstr "(sin correo)" -#: src/view/com/notifications/FeedItem.tsx:294 +#: src/view/com/notifications/FeedItem.tsx:297 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -88,7 +88,7 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "" @@ -100,7 +100,7 @@ msgstr "" #~ msgid "{0} your feeds" #~ msgstr "" -#: src/view/com/util/UserAvatar.tsx:419 +#: src/view/com/util/UserAvatar.tsx:431 msgid "{0}'s avatar" msgstr "" @@ -148,7 +148,7 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:504 +#: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} siguiendo" @@ -159,11 +159,11 @@ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:588 +#: src/view/screens/ProfileFeed.tsx:590 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:462 +#: src/view/shell/Drawer.tsx:452 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} sin leer" @@ -179,7 +179,7 @@ msgstr "" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "" -#: src/components/WhoCanReply.tsx:295 +#: src/components/WhoCanReply.tsx:296 msgid "<0/> members" msgstr "<0/> miembros" @@ -201,11 +201,11 @@ msgstr "" #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "" -#: src/view/shell/Drawer.tsx:101 +#: src/view/shell/Drawer.tsx:100 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" -#: src/view/shell/Drawer.tsx:112 +#: src/view/shell/Drawer.tsx:111 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" @@ -260,15 +260,15 @@ msgid "Access profile and other navigation links" msgstr "" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:519 +#: src/view/screens/Settings/index.tsx:520 msgid "Accessibility" msgstr "Accesibilidad" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Accessibility settings" msgstr "Ajustes de accesibilidad" -#: src/Navigation.tsx:301 +#: src/Navigation.tsx:309 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "Ajustes de accesibilidad" @@ -278,8 +278,8 @@ msgstr "Ajustes de accesibilidad" #~ msgstr "cuenta" #: src/screens/Login/LoginForm.tsx:190 -#: src/view/screens/Settings/index.tsx:346 -#: src/view/screens/Settings/index.tsx:753 +#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:754 msgid "Account" msgstr "Cuenta" @@ -326,7 +326,7 @@ msgid "Account unmuted" msgstr "Cuenta demuteada" #: src/components/dialogs/MutedWords.tsx:164 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 msgid "Add" @@ -350,8 +350,8 @@ msgstr "Añadir cuenta a esta lista" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:423 -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:433 msgid "Add account" msgstr "Añadir cuenta" @@ -415,7 +415,7 @@ msgstr "Añadir a listas" msgid "Add to my feeds" msgstr "Añadir a mis feeds" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "Añadido a lista" @@ -424,7 +424,7 @@ msgstr "Añadido a lista" msgid "Added to my feeds" msgstr "Añadido a mis feeds" -#: src/view/screens/PreferencesFollowingFeed.tsx:172 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Ajusta la cantidad de me gusta que una respuesta debe tener para aparecer en tu feed." @@ -442,7 +442,7 @@ msgid "Adult content is disabled." msgstr "El contenido adulto esta desactivado." #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:687 +#: src/view/screens/Settings/index.tsx:688 msgid "Advanced" msgstr "Avanzado" @@ -458,8 +458,8 @@ msgstr "" msgid "All the feeds you've saved, right in one place." msgstr "Todos tus feeds guardados, en un solo lugar." -#: src/view/com/modals/AddAppPasswords.tsx:187 -#: src/view/com/modals/AddAppPasswords.tsx:194 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "" @@ -484,7 +484,7 @@ msgstr "Sesión ya iniciada como @{0}" #: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "ALT" msgstr "ALT" @@ -494,7 +494,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Texto alternativo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:180 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Alt Text" msgstr "Texto alternativo" @@ -523,8 +523,8 @@ msgstr "" #~ msgid "An error occurred while saving the image." #~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:70 -#: src/components/StarterPack/ShareDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the QR code!" msgstr "" @@ -540,10 +540,18 @@ msgstr "" msgid "An issue not included in these options" msgstr "Un problema no presente en estas opciones" +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +msgid "An issue occurred while trying to open the chat" +msgstr "" + #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:309 -#: src/components/ProfileCard.tsx:329 +#: src/components/ProfileCard.tsx:311 +#: src/components/ProfileCard.tsx:331 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -555,8 +563,8 @@ msgstr "Ocurrió un problema. Intenta de nuevo." msgid "an unknown error occurred" msgstr "Ocurrió un error desconocido" -#: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:291 +#: src/components/WhoCanReply.tsx:317 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "y" @@ -565,7 +573,7 @@ msgstr "y" msgid "Animals" msgstr "Animales" -#: src/view/com/util/post-embeds/GifEmbed.tsx:146 +#: src/view/com/util/post-embeds/GifEmbed.tsx:155 msgid "Animated GIF" msgstr "GIF animado" @@ -589,26 +597,26 @@ msgstr "El nombre de una contraseña de app sólo puede contener letras, número msgid "App Password names must be at least 4 characters long." msgstr "El nombre de una contraseña de app deben tener al menos 4 caracteres." -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "App password settings" msgstr "Ajustes de contraseñas de app" -#: src/Navigation.tsx:269 +#: src/Navigation.tsx:277 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:707 +#: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" msgstr "Contraseñas de la app" -#: src/components/moderation/LabelsOnMeDialog.tsx:151 -#: src/components/moderation/LabelsOnMeDialog.tsx:154 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "Apelar" -#: src/components/moderation/LabelsOnMeDialog.tsx:236 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Appeal \"{0}\" label" msgstr "Apelar la etiqueta de \"{0}\"" -#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/components/moderation/LabelsOnMeDialog.tsx:248 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Apelación enviada" @@ -624,7 +632,7 @@ msgstr "Apelación enviada" msgid "Appeal this decision" msgstr "" -#: src/view/screens/Settings/index.tsx:440 +#: src/view/screens/Settings/index.tsx:441 msgid "Appearance" msgstr "Aparencia" @@ -634,8 +642,8 @@ msgid "Apply default recommended feeds" msgstr "" #: src/screens/StarterPack/StarterPackScreen.tsx:610 -msgid "Are you sure you want delete this starter pack?" -msgstr "" +#~ msgid "Are you sure you want delete this starter pack?" +#~ msgstr "" #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" @@ -649,6 +657,10 @@ msgstr "¿Seguro que quieres eliminar la contraseña de app \"{name}\"?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:189 #~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." #~ msgstr "¿Seguro que quieres abandonar esta conversación? Tus mensajes serán eliminados para ti, pero no para los otros participantes." @@ -665,7 +677,7 @@ msgstr "¿Seguro que quieres eliminar {0} de tus feeds?" msgid "Are you sure you want to remove this from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:649 +#: src/view/com/composer/Composer.tsx:680 msgid "Are you sure you'd like to discard this draft?" msgstr "¿Seguro que quieres descartar este borrador?" @@ -691,8 +703,8 @@ msgid "At least 3 characters" msgstr "Al menos 3 caracteres" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:281 -#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/components/moderation/LabelsOnMeDialog.tsx:302 +#: src/components/moderation/LabelsOnMeDialog.tsx:303 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -705,7 +717,6 @@ msgstr "Al menos 3 caracteres" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" @@ -715,7 +726,7 @@ msgstr "Atrás" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Basado en tus intereses en {interestsText}" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Basics" msgstr "General" @@ -723,7 +734,7 @@ msgstr "General" msgid "Birthday" msgstr "Cumpleaños" -#: src/view/screens/Settings/index.tsx:378 +#: src/view/screens/Settings/index.tsx:379 msgid "Birthday:" msgstr "Cumpleaños:" @@ -767,7 +778,7 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Cuentas bloqueadas" -#: src/Navigation.tsx:145 +#: src/Navigation.tsx:148 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Cuentas bloqueadas" @@ -834,21 +845,21 @@ msgstr "" msgid "Books" msgstr "Libros" -#: src/components/FeedInterstitials.tsx:281 +#: src/components/FeedInterstitials.tsx:285 msgid "Browse more accounts on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:411 +#: src/components/FeedInterstitials.tsx:415 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:266 -#: src/components/FeedInterstitials.tsx:396 +#: src/components/FeedInterstitials.tsx:270 +#: src/components/FeedInterstitials.tsx:400 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:289 -#: src/components/FeedInterstitials.tsx:420 +#: src/components/FeedInterstitials.tsx:293 +#: src/components/FeedInterstitials.tsx:424 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -889,7 +900,7 @@ msgstr "por ti" msgid "Camera" msgstr "Cámara" -#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Sólo puede contener letras, números, espacios, guiones y guiones bajos. Debe tener al menos 4 caracteres, pero no más de 32." @@ -898,8 +909,8 @@ msgstr "Sólo puede contener letras, números, espacios, guiones y guiones bajos #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:451 -#: src/view/com/composer/Composer.tsx:457 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -917,7 +928,7 @@ msgstr "Sólo puede contener letras, números, espacios, guiones y guiones bajos #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:139 #: src/view/screens/Search/Search.tsx:704 -#: src/view/shell/desktop/Search.tsx:218 +#: src/view/shell/desktop/Search.tsx:219 msgid "Cancel" msgstr "Cancelar" @@ -953,8 +964,8 @@ msgstr "Cancelar citación" msgid "Cancel reactivation and log out" msgstr "" -#: src/view/com/modals/ListAddRemoveUsers.tsx:87 -#: src/view/shell/desktop/Search.tsx:214 +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "Cancelar búsqueda" @@ -966,17 +977,17 @@ msgstr "" msgid "Change" msgstr "Cambiar" -#: src/view/screens/Settings/index.tsx:372 +#: src/view/screens/Settings/index.tsx:373 msgctxt "action" msgid "Change" msgstr "Cambiar" -#: src/view/screens/Settings/index.tsx:719 +#: src/view/screens/Settings/index.tsx:720 msgid "Change handle" msgstr "Cambiar nombre de usuario" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:730 +#: src/view/screens/Settings/index.tsx:731 msgid "Change Handle" msgstr "Cambiar nombre de usuario" @@ -984,12 +995,12 @@ msgstr "Cambiar nombre de usuario" msgid "Change my email" msgstr "Cambiar mi correo electrónico" -#: src/view/screens/Settings/index.tsx:764 +#: src/view/screens/Settings/index.tsx:765 msgid "Change password" msgstr "Cambiar contraseña" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:775 +#: src/view/screens/Settings/index.tsx:776 msgid "Change Password" msgstr "Cambiar contraseña" @@ -1001,7 +1012,7 @@ msgstr "Cambiar idioma del post a {0}" msgid "Change Your Email" msgstr "Cambiar correo electrónico" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:321 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -1013,14 +1024,14 @@ msgstr "Chat muteado" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:326 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" msgstr "Ajustes de chat" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:648 +#: src/view/screens/Settings/index.tsx:649 msgid "Chat Settings" msgstr "" @@ -1090,19 +1101,19 @@ msgstr "" msgid "Choose your password" msgstr "Elige tu contraseña" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clear all legacy storage data" msgstr "Borrar todos los datos de almacenamiento heredados" -#: src/view/screens/Settings/index.tsx:914 +#: src/view/screens/Settings/index.tsx:915 msgid "Clear all legacy storage data (restart after this)" msgstr "Borrar todos los datos de almacenamiento heredados (reiniciar después de esto)" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clear all storage data" msgstr "Borrar todos los datos de almacenamiento" -#: src/view/screens/Settings/index.tsx:926 +#: src/view/screens/Settings/index.tsx:927 msgid "Clear all storage data (restart after this)" msgstr "Borrar todos los datos de almacenamiento (reiniciar después de esto)" @@ -1111,11 +1122,11 @@ msgstr "Borrar todos los datos de almacenamiento (reiniciar después de esto)" msgid "Clear search query" msgstr "Borrar consulta de búsqueda" -#: src/view/screens/Settings/index.tsx:912 +#: src/view/screens/Settings/index.tsx:913 msgid "Clears all legacy storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:924 +#: src/view/screens/Settings/index.tsx:925 msgid "Clears all storage data" msgstr "" @@ -1139,7 +1150,7 @@ msgstr "" msgid "Click here to open tag menu for {tag}" msgstr "Has clic aquí para abrir el menu de {tag}" -#: src/components/dms/MessageItem.tsx:237 +#: src/components/dms/MessageItem.tsx:231 msgid "Click to retry failed message" msgstr "" @@ -1160,7 +1171,7 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/util/post-embeds/GifEmbed.tsx:195 msgid "Close" msgstr "Cerrar" @@ -1215,7 +1226,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:472 msgid "Closes post composer and discards post draft" msgstr "" @@ -1223,11 +1234,11 @@ msgstr "" msgid "Closes viewer for header image" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:237 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:440 msgid "Collapses list of users for a given notification" msgstr "" @@ -1241,7 +1252,7 @@ msgstr "" msgid "Comics" msgstr "" -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:267 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Directrices de la comunidad" @@ -1254,7 +1265,7 @@ msgstr "" msgid "Complete the challenge" msgstr "" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:582 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "" @@ -1279,8 +1290,6 @@ msgstr "" #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/PreferencesFollowingFeed.tsx:307 -#: src/view/screens/PreferencesThreads.tsx:159 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 msgid "Confirm" @@ -1397,12 +1406,12 @@ msgstr "" msgid "Cooking" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Copiado" -#: src/view/screens/Settings/index.tsx:264 +#: src/view/screens/Settings/index.tsx:265 msgid "Copied build version to clipboard" msgstr "" @@ -1410,7 +1419,7 @@ msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:80 #: src/view/com/modals/ChangeHandle.tsx:320 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:189 +#: src/view/com/util/forms/PostDropdownBtn.tsx:192 #: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "" @@ -1419,12 +1428,12 @@ msgstr "" msgid "Copied!" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/view/com/modals/AddAppPasswords.tsx:213 +#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Copiar" @@ -1437,11 +1446,11 @@ msgstr "" msgid "Copy code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" msgstr "" @@ -1449,8 +1458,8 @@ msgstr "" msgid "Copy link to list" msgstr "Copia el enlace a la lista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 msgid "Copy link to post" msgstr "Copia el enlace a la post" @@ -1459,20 +1468,24 @@ msgstr "Copia el enlace a la post" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:285 -#: src/view/com/util/forms/PostDropdownBtn.tsx:287 +#: src/view/com/util/forms/PostDropdownBtn.tsx:288 +#: src/view/com/util/forms/PostDropdownBtn.tsx:290 msgid "Copy post text" msgstr "Copiar el texto de la post" -#: src/components/StarterPack/QrCodeDialog.tsx:168 +#: src/components/StarterPack/QrCodeDialog.tsx:171 msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:272 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Política de derechos de autor" +#: src/view/com/composer/videos/state.ts:31 +msgid "Could not compress video" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "No se pudo salir de este chat" @@ -1506,17 +1519,17 @@ msgstr "" msgid "Create a new account" msgstr "Crear una cuenta nueva" -#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:425 msgid "Create a new Bluesky account" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:151 +#: src/components/StarterPack/QrCodeDialog.tsx:154 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:351 msgid "Create a starter pack" msgstr "" @@ -1541,7 +1554,7 @@ msgstr "" msgid "Create another" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" msgstr "" @@ -1577,7 +1590,7 @@ msgid "Custom domain" msgstr "Dominio personalizado" #: src/view/screens/Feeds.tsx:760 -#: src/view/screens/Search/Explore.tsx:390 +#: src/view/screens/Search/Explore.tsx:392 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" @@ -1585,8 +1598,8 @@ msgstr "" msgid "Customize media from external sites." msgstr "Preferencias sobre medios externos." -#: src/view/screens/Settings/index.tsx:459 -#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:460 +#: src/view/screens/Settings/index.tsx:486 msgid "Dark" msgstr "" @@ -1594,7 +1607,7 @@ msgstr "" msgid "Dark mode" msgstr "" -#: src/view/screens/Settings/index.tsx:472 +#: src/view/screens/Settings/index.tsx:473 msgid "Dark Theme" msgstr "" @@ -1603,15 +1616,15 @@ msgid "Date of birth" msgstr "" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:807 +#: src/view/screens/Settings/index.tsx:808 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:819 +#: src/view/screens/Settings/index.tsx:820 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:874 +#: src/view/screens/Settings/index.tsx:875 msgid "Debug Moderation" msgstr "" @@ -1623,13 +1636,13 @@ msgstr "" #: src/screens/StarterPack/StarterPackScreen.tsx:562 #: src/screens/StarterPack/StarterPackScreen.tsx:641 #: src/screens/StarterPack/StarterPackScreen.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "" -#: src/view/screens/Settings/index.tsx:829 +#: src/view/screens/Settings/index.tsx:830 msgid "Delete account" msgstr "Borrar la cuenta" @@ -1649,8 +1662,8 @@ msgstr "Borrar la contraseña de la app" msgid "Delete app password?" msgstr "" -#: src/view/screens/Settings/index.tsx:891 -#: src/view/screens/Settings/index.tsx:894 +#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:895 msgid "Delete chat declaration record" msgstr "" @@ -1674,12 +1687,12 @@ msgstr "" msgid "Delete my account" msgstr "Borrar mi cuenta" -#: src/view/screens/Settings/index.tsx:841 +#: src/view/screens/Settings/index.tsx:842 msgid "Delete My Account…" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:414 -#: src/view/com/util/forms/PostDropdownBtn.tsx:416 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 +#: src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "Borrar una post" @@ -1696,7 +1709,7 @@ msgstr "" msgid "Delete this list?" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:428 +#: src/view/com/util/forms/PostDropdownBtn.tsx:431 msgid "Delete this post?" msgstr "¿Borrar esta post?" @@ -1708,7 +1721,7 @@ msgstr "" msgid "Deleted post." msgstr "Se borró la post." -#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:893 msgid "Deletes the chat declaration record" msgstr "" @@ -1723,11 +1736,11 @@ msgstr "Descripción" msgid "Descriptive alt text" msgstr "" -#: src/view/com/composer/Composer.tsx:283 +#: src/view/com/composer/Composer.tsx:295 msgid "Did you want to say anything?" msgstr "¿Quieres decir algo?" -#: src/view/screens/Settings/index.tsx:478 +#: src/view/screens/Settings/index.tsx:479 msgid "Dim" msgstr "" @@ -1756,11 +1769,11 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:682 msgid "Discard" msgstr "Descartar" -#: src/view/com/composer/Composer.tsx:648 +#: src/view/com/composer/Composer.tsx:679 msgid "Discard draft?" msgstr "" @@ -1778,7 +1791,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:388 +#: src/view/screens/Search/Explore.tsx:390 msgid "Discover new feeds" msgstr "" @@ -1831,22 +1844,20 @@ msgstr "¡Dominio verificado!" #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesFollowingFeed.tsx:310 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Listo" #: src/view/com/modals/EditImage.tsx:334 -#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" msgstr "" @@ -1855,7 +1866,7 @@ msgstr "" msgid "Done{extraText}" msgstr "Listo{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319 msgid "Download Bluesky" msgstr "" @@ -1925,7 +1936,7 @@ msgctxt "action" msgid "Edit" msgstr "" -#: src/view/com/util/UserAvatar.tsx:325 +#: src/view/com/util/UserAvatar.tsx:337 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "" @@ -1947,7 +1958,7 @@ msgstr "Editar los detalles de la lista" msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:274 +#: src/Navigation.tsx:282 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -1962,12 +1973,12 @@ msgstr "Editar mi perfil" msgid "Edit People" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "Editar el perfil" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "Editar el perfil" @@ -1985,7 +1996,7 @@ msgstr "" msgid "Edit User List" msgstr "" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Edit who can reply" msgstr "" @@ -1997,7 +2008,7 @@ msgstr "" msgid "Edit your profile description" msgstr "" -#: src/Navigation.tsx:343 +#: src/Navigation.tsx:356 msgid "Edit your starter pack" msgstr "" @@ -2036,7 +2047,7 @@ msgstr "Correo electrónico actualizado" msgid "Email verified" msgstr "" -#: src/view/screens/Settings/index.tsx:350 +#: src/view/screens/Settings/index.tsx:351 msgid "Email:" msgstr "Correo electrónico:" @@ -2045,8 +2056,8 @@ msgid "Embed HTML code" msgstr "" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:324 -#: src/view/com/util/forms/PostDropdownBtn.tsx:326 +#: src/view/com/util/forms/PostDropdownBtn.tsx:327 +#: src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "" @@ -2076,11 +2087,16 @@ msgstr "" msgid "Enable external media" msgstr "" -#: src/view/screens/PreferencesExternalEmbeds.tsx:76 +#: src/view/screens/PreferencesExternalEmbeds.tsx:73 msgid "Enable media players for" msgstr "Reproducir multimedia de" -#: src/view/screens/PreferencesFollowingFeed.tsx:146 +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 msgid "Enable this setting to only see replies between people you follow." msgstr "Activa esta opción para ver sólo las respuestas de las personas a las que sigues." @@ -2106,7 +2122,7 @@ msgstr "Fin de noticias" msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:160 +#: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "" @@ -2174,7 +2190,7 @@ msgid "Everybody" msgstr "Todos" #: src/components/WhoCanReply.tsx:69 -#: src/components/WhoCanReply.tsx:240 +#: src/components/WhoCanReply.tsx:241 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "" @@ -2210,8 +2226,8 @@ msgstr "" msgid "Exits image view" msgstr "" -#: src/view/com/modals/ListAddRemoveUsers.tsx:88 -#: src/view/shell/desktop/Search.tsx:215 +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +#: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "" @@ -2219,7 +2235,7 @@ msgstr "" msgid "Expand alt text" msgstr "Expandir el texto alt" -#: src/view/com/notifications/FeedItem.tsx:238 +#: src/view/com/notifications/FeedItem.tsx:239 msgid "Expand list of users" msgstr "" @@ -2228,6 +2244,10 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." msgstr "" @@ -2236,12 +2256,12 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/view/screens/Settings/index.tsx:787 +#: src/view/screens/Settings/index.tsx:788 msgid "Export my data" msgstr "" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:798 +#: src/view/screens/Settings/index.tsx:799 msgid "Export My Data" msgstr "" @@ -2251,17 +2271,17 @@ msgid "External Media" msgstr "Medios externos" #: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/view/screens/PreferencesExternalEmbeds.tsx:64 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 ningún tipo de información hasta que presiones el botón de \"play\"." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:301 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:680 +#: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" msgstr "Medios externos" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "External media settings" msgstr "Medios externos" @@ -2291,8 +2311,8 @@ msgstr "" msgid "Failed to delete starter pack" msgstr "" -#: src/view/screens/Search/Explore.tsx:426 -#: src/view/screens/Search/Explore.tsx:454 +#: src/view/screens/Search/Explore.tsx:428 +#: src/view/screens/Search/Explore.tsx:456 msgid "Failed to load feeds preferences" msgstr "" @@ -2309,20 +2329,24 @@ msgstr "" #~ msgid "Failed to load past messages." #~ msgstr "" -#: src/view/screens/Search/Explore.tsx:419 -#: src/view/screens/Search/Explore.tsx:447 +#: src/view/screens/Search/Explore.tsx:421 +#: src/view/screens/Search/Explore.tsx:449 msgid "Failed to load suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:377 +#: src/view/screens/Search/Explore.tsx:379 msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:86 +#: src/view/com/lightbox/Lightbox.tsx:90 msgid "Failed to save image: {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:230 +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + +#: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "" @@ -2330,12 +2354,12 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: src/components/moderation/LabelsOnMeDialog.tsx:244 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:181 msgid "Failed to toggle thread mute, please try again" msgstr "" @@ -2348,7 +2372,7 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:217 msgid "Feed" msgstr "" @@ -2366,19 +2390,19 @@ msgid "Feed toggle" msgstr "" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:345 +#: src/view/shell/Drawer.tsx:332 msgid "Feedback" msgstr "Comentarios" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:336 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 #: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:493 -#: src/view/shell/Drawer.tsx:494 +#: src/view/shell/Drawer.tsx:483 +#: src/view/shell/Drawer.tsx:484 msgid "Feeds" msgstr "Feeds" @@ -2424,11 +2448,11 @@ msgstr "" msgid "Find posts and users on Bluesky" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:110 +#: src/view/screens/PreferencesFollowingFeed.tsx:108 msgid "Fine-tune the content you see on your Following feed." msgstr "" -#: src/view/screens/PreferencesThreads.tsx:60 +#: src/view/screens/PreferencesThreads.tsx:54 msgid "Fine-tune the discussion threads." msgstr "Ajusta los hilos de discusión." @@ -2458,7 +2482,7 @@ msgid "Flip vertically" msgstr "" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:341 +#: src/components/ProfileCard.tsx:343 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2503,7 +2527,7 @@ msgstr "" msgid "Follow Back" msgstr "" -#: src/view/screens/Search/Explore.tsx:333 +#: src/view/screens/Search/Explore.tsx:335 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "" @@ -2516,22 +2540,22 @@ msgstr "" #~ msgstr "" #: src/view/com/profile/ProfileCard.tsx:190 -msgid "Followed by {0}" -msgstr "Seguido por {0}" +#~ msgid "Followed by {0}" +#~ msgstr "Seguido por {0}" -#: src/components/KnownFollowers.tsx:223 +#: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "" -#: src/components/KnownFollowers.tsx:209 +#: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "" -#: src/components/KnownFollowers.tsx:196 +#: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" msgstr "" -#: src/components/KnownFollowers.tsx:178 +#: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" @@ -2539,15 +2563,15 @@ msgstr "" msgid "Followed users" msgstr "Usuarios seguidos" -#: src/view/screens/PreferencesFollowingFeed.tsx:153 +#: src/view/screens/PreferencesFollowingFeed.tsx:152 msgid "Followed users only" msgstr "Solo usuarios seguidos" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:198 msgid "followed you" msgstr "ha comenzado a seguirte" -#: src/view/com/notifications/FeedItem.tsx:195 +#: src/view/com/notifications/FeedItem.tsx:196 msgid "followed you back" msgstr "" @@ -2556,7 +2580,7 @@ msgstr "" msgid "Followers" msgstr "Seguidores" -#: src/Navigation.tsx:182 +#: src/Navigation.tsx:185 msgid "Followers of @{0} that you know" msgstr "" @@ -2566,7 +2590,7 @@ msgid "Followers you know" msgstr "" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:335 +#: src/components/ProfileCard.tsx:337 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2578,7 +2602,7 @@ msgstr "" msgid "Following" msgstr "Siguiendo" -#: src/components/ProfileCard.tsx:301 +#: src/components/ProfileCard.tsx:303 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Siguiendo {0}" @@ -2587,13 +2611,13 @@ msgstr "Siguiendo {0}" msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Following feed preferences" msgstr "Feed de Siguiendo" -#: src/Navigation.tsx:280 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:583 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesFollowingFeed.tsx:105 +#: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "Feed de Siguiendo" @@ -2618,7 +2642,7 @@ msgstr "Comida" msgid "For security reasons, we'll need to send a confirmation code to your email address." msgstr "Por razones de seguridad, tendremos que enviarte un código de confirmación a tu dirección de correo electrónico." -#: src/view/com/modals/AddAppPasswords.tsx:232 +#: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Por razones de seguridad, no podrás volver a verla de nuevo. Si pierdes esta contraseña, tendrás que generar una nueva." @@ -2643,7 +2667,7 @@ msgstr "" msgid "From @{sanitizedAuthor}" msgstr "" -#: src/view/com/posts/FeedItem.tsx:236 +#: src/view/com/posts/FeedItem.tsx:242 msgctxt "from-feed" msgid "From <0/>" msgstr "" @@ -2656,6 +2680,10 @@ msgstr "Galería" msgid "Generate a starter pack" msgstr "" +#: src/view/shell/Drawer.tsx:336 +msgid "Get help" +msgstr "" + #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" msgstr "" @@ -2703,12 +2731,12 @@ msgid "Go Back" msgstr "Volver" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -msgid "Go back to previous screen" -msgstr "" +#~ msgid "Go back to previous screen" +#~ msgstr "" #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/components/ReportDialog/SubmitView.tsx:121 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 @@ -2768,7 +2796,7 @@ msgstr "Vibración" msgid "Harassment, trolling, or intolerance" msgstr "Acoso, trolling o intolerancia" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:316 msgid "Hashtag" msgstr "Hashtag" @@ -2781,7 +2809,7 @@ msgid "Having trouble?" msgstr "" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:355 +#: src/view/shell/Drawer.tsx:345 msgid "Help" msgstr "Ayuda" @@ -2801,7 +2829,7 @@ msgstr "" #~ msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:203 +#: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "Aquí tienes tu contraseña de la app." @@ -2812,17 +2840,17 @@ msgstr "Aquí tienes tu contraseña de la app." #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:445 msgid "Hide" msgstr "Ocultar" -#: src/view/com/notifications/FeedItem.tsx:444 +#: src/view/com/notifications/FeedItem.tsx:447 msgctxt "action" msgid "Hide" msgstr "Ocultar" -#: src/view/com/util/forms/PostDropdownBtn.tsx:387 -#: src/view/com/util/forms/PostDropdownBtn.tsx:389 +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 msgid "Hide post" msgstr "Ocultar post" @@ -2831,11 +2859,11 @@ msgstr "Ocultar post" msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:439 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide this post?" msgstr "¿Ocultar este post?" -#: src/view/com/notifications/FeedItem.tsx:435 +#: src/view/com/notifications/FeedItem.tsx:438 msgid "Hide user list" msgstr "Ocultar lista de usuarios" @@ -2867,12 +2895,12 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/Navigation.tsx:519 -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:552 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:425 -#: src/view/shell/Drawer.tsx:426 +#: src/view/shell/Drawer.tsx:415 +#: src/view/shell/Drawer.tsx:416 msgid "Home" msgstr "Inicio" @@ -2926,7 +2954,7 @@ msgstr "" msgid "If you delete this list, you won't be able to recover it." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 msgid "If you remove this post, you won't be able to recover it." msgstr "" @@ -2950,7 +2978,7 @@ msgstr "" msgid "Image alt text" msgstr "Texto alt de la imagen" -#: src/components/StarterPack/ShareDialog.tsx:75 +#: src/components/StarterPack/ShareDialog.tsx:76 msgid "Image saved to your camera roll!" msgstr "" @@ -2970,7 +2998,7 @@ msgstr "" msgid "Input confirmation code for account deletion" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" msgstr "" @@ -3043,7 +3071,7 @@ msgstr "" msgid "Invite codes: 1 available" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:96 +#: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" msgstr "" @@ -3067,8 +3095,8 @@ msgstr "" msgid "Jobs" msgstr "Tareas" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:432 #: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" @@ -3107,11 +3135,11 @@ msgstr "" #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:79 +#: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:81 +#: src/components/moderation/LabelsOnMeDialog.tsx:82 msgid "Labels on your content" msgstr "" @@ -3119,16 +3147,16 @@ msgstr "" msgid "Language selection" msgstr "Escoger el idioma" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Language settings" msgstr "Ajustes de Idiomas" -#: src/Navigation.tsx:155 +#: src/Navigation.tsx:158 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Ajustes de Idiomas" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Languages" msgstr "Idiomas" @@ -3188,7 +3216,7 @@ msgstr "Salir de Bluesky" msgid "left to go." msgstr "" -#: src/view/screens/Settings/index.tsx:309 +#: src/view/screens/Settings/index.tsx:310 msgid "Legacy storage cleared, you need to restart the app now." msgstr "" @@ -3206,7 +3234,7 @@ msgstr "¡Vamos a restablecer tu contraseña!" msgid "Let's go!" msgstr "" -#: src/view/screens/Settings/index.tsx:453 +#: src/view/screens/Settings/index.tsx:454 msgid "Light" msgstr "" @@ -3224,13 +3252,13 @@ msgid "Like 10 posts to train the Discover feed" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Like this feed" msgstr "Dar «me gusta» a esta noticia" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:219 -#: src/Navigation.tsx:224 +#: src/Navigation.tsx:222 +#: src/Navigation.tsx:227 msgid "Liked by" msgstr "Le ha gustado a" @@ -3254,11 +3282,11 @@ msgstr "" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "" -#: src/view/com/notifications/FeedItem.tsx:201 +#: src/view/com/notifications/FeedItem.tsx:202 msgid "liked your custom feed" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:185 +#: src/view/com/notifications/FeedItem.tsx:186 msgid "liked your post" msgstr "" @@ -3270,7 +3298,7 @@ msgstr "Cantidad de «Me gusta»" msgid "Likes on this post" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:191 msgid "List" msgstr "" @@ -3307,12 +3335,12 @@ msgstr "" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:125 +#: src/Navigation.tsx:128 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 -#: src/view/shell/Drawer.tsx:509 -#: src/view/shell/Drawer.tsx:510 +#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:500 msgid "Lists" msgstr "Listas" @@ -3320,25 +3348,25 @@ msgstr "Listas" msgid "Lists blocking this user:" msgstr "" -#: src/view/screens/Search/Explore.tsx:130 +#: src/view/screens/Search/Explore.tsx:131 msgid "Load more" msgstr "" -#: src/view/screens/Search/Explore.tsx:218 +#: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:216 +#: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" msgstr "" -#: src/view/screens/Notifications.tsx:184 +#: src/view/screens/Notifications.tsx:219 msgid "Load new notifications" msgstr "Cargar notificaciones nuevas" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:494 +#: src/view/screens/ProfileFeed.tsx:495 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Cargar posts nuevos" @@ -3347,7 +3375,7 @@ msgstr "Cargar posts nuevos" msgid "Loading..." msgstr "Cargando..." -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:247 msgid "Log" msgstr "" @@ -3417,7 +3445,7 @@ msgstr "" msgid "Media" msgstr "Multimedia" -#: src/components/WhoCanReply.tsx:275 +#: src/components/WhoCanReply.tsx:276 msgid "mentioned users" msgstr "usuarios mencionados" @@ -3439,7 +3467,7 @@ msgstr "" msgid "Message deleted" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:200 +#: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "Mensaje del servidor: {0}" @@ -3456,7 +3484,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:534 +#: src/Navigation.tsx:547 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3471,9 +3499,9 @@ msgstr "" msgid "Misleading Account" msgstr "" -#: src/Navigation.tsx:130 +#: src/Navigation.tsx:133 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:562 +#: src/view/screens/Settings/index.tsx:563 msgid "Moderation" msgstr "Moderación" @@ -3509,16 +3537,16 @@ msgstr "" msgid "Moderation lists" msgstr "Listas de moderación" -#: src/Navigation.tsx:135 +#: src/Navigation.tsx:138 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Listas de moderación" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Moderation settings" msgstr "" -#: src/Navigation.tsx:234 +#: src/Navigation.tsx:237 msgid "Moderation states" msgstr "" @@ -3543,7 +3571,7 @@ msgstr "Más feeds" msgid "More options" msgstr "Más opciones" -#: src/view/screens/PreferencesThreads.tsx:82 +#: src/view/screens/PreferencesThreads.tsx:76 msgid "Most-liked replies first" msgstr "" @@ -3610,13 +3638,13 @@ msgstr "" msgid "Mute this word in tags only" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:371 msgid "Mute thread" msgstr "Mutear hilo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:378 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 +#: src/view/com/util/forms/PostDropdownBtn.tsx:381 +#: src/view/com/util/forms/PostDropdownBtn.tsx:383 msgid "Mute words & tags" msgstr "" @@ -3628,7 +3656,7 @@ msgstr "Muteado" msgid "Muted accounts" msgstr "Cuentas muteadas" -#: src/Navigation.tsx:140 +#: src/Navigation.tsx:143 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Cuentas muteadas" @@ -3662,15 +3690,15 @@ msgstr "Mis feeds" msgid "My Profile" msgstr "Mi perfil" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "My saved feeds" msgstr "Mis feeds guardados" -#: src/view/screens/Settings/index.tsx:623 +#: src/view/screens/Settings/index.tsx:624 msgid "My Saved Feeds" msgstr "Mis feeds guardados" -#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/AddAppPasswords.tsx:174 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Nombre" @@ -3705,7 +3733,7 @@ msgstr "" msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:78 msgid "Navigates to your profile" msgstr "" @@ -3730,7 +3758,7 @@ msgstr "" msgid "New" msgstr "Nuevo" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" @@ -3758,9 +3786,9 @@ msgid "New post" msgstr "" #: src/view/screens/Feeds.tsx:581 -#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Notifications.tsx:228 #: src/view/screens/Profile.tsx:478 -#: src/view/screens/ProfileFeed.tsx:428 +#: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:278 @@ -3780,7 +3808,7 @@ msgstr "" msgid "New User List" msgstr "Nueva lista de usuarios" -#: src/view/screens/PreferencesThreads.tsx:79 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Newest replies first" msgstr "" @@ -3810,16 +3838,16 @@ msgstr "Siguiente" msgid "Next image" msgstr "Imagen nueva" -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:199 -#: src/view/screens/PreferencesFollowingFeed.tsx:234 -#: src/view/screens/PreferencesFollowingFeed.tsx:271 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:198 +#: src/view/screens/PreferencesFollowingFeed.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:270 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "No" msgstr "No" -#: src/view/screens/ProfileFeed.tsx:562 +#: src/view/screens/ProfileFeed.tsx:564 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Sin descripción" @@ -3837,7 +3865,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/components/ProfileCard.tsx:321 +#: src/components/ProfileCard.tsx:323 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "" @@ -3854,7 +3882,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:122 msgid "No notifications yet!" msgstr "" @@ -3886,7 +3914,7 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "No se han encontrado resultados para \"{query}\"" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 @@ -3932,7 +3960,7 @@ msgstr "" #~ msgid "Not Applicable." #~ msgstr "No aplicable." -#: src/Navigation.tsx:120 +#: src/Navigation.tsx:123 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "" @@ -3943,7 +3971,7 @@ msgid "Not right now" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/forms/PostDropdownBtn.tsx:459 #: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "" @@ -3956,6 +3984,19 @@ msgstr "Nota: Bluesky es una red abierta y pública. Esta configuración sólo l msgid "Nothing here" msgstr "" +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:331 +#: src/view/screens/Notifications.tsx:119 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "" + #: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "" @@ -3964,13 +4005,14 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:529 -#: src/view/screens/Notifications.tsx:132 -#: src/view/screens/Notifications.tsx:169 +#: src/Navigation.tsx:542 +#: src/view/screens/Notifications.tsx:145 +#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:203 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 -#: src/view/shell/Drawer.tsx:457 -#: src/view/shell/Drawer.tsx:458 +#: src/view/shell/Drawer.tsx:447 +#: src/view/shell/Drawer.tsx:448 msgid "Notifications" msgstr "Notificaciones" @@ -3978,7 +4020,7 @@ msgstr "Notificaciones" msgid "now" msgstr "" -#: src/components/dms/MessageItem.tsx:175 +#: src/components/dms/MessageItem.tsx:169 msgid "Now" msgstr "" @@ -4008,7 +4050,7 @@ msgstr "¡Qué problema!" msgid "Oh no! Something went wrong." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 msgid "OK" msgstr "" @@ -4016,7 +4058,7 @@ msgstr "" msgid "Okay" msgstr "Está bien" -#: src/view/screens/PreferencesThreads.tsx:78 +#: src/view/screens/PreferencesThreads.tsx:72 msgid "Oldest replies first" msgstr "" @@ -4028,7 +4070,7 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:257 +#: src/view/screens/Settings/index.tsx:258 msgid "Onboarding reset" msgstr "" @@ -4036,7 +4078,7 @@ msgstr "" msgid "Onboarding tour step {0}: {1}" msgstr "" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:534 msgid "One or more images is missing alt text." msgstr "Falta el texto alternativo en una o varias imágenes." @@ -4044,7 +4086,7 @@ msgstr "Falta el texto alternativo en una o varias imágenes." msgid "Only .jpg and .png files are supported" msgstr "" -#: src/components/WhoCanReply.tsx:244 +#: src/components/WhoCanReply.tsx:245 msgid "Only {0} can reply" msgstr "" @@ -4064,6 +4106,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:304 #: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/NotificationsSettings.tsx:45 #: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "" @@ -4085,16 +4128,16 @@ msgstr "" msgid "Open conversation options" msgstr "" -#: src/view/com/composer/Composer.tsx:632 -#: src/view/com/composer/Composer.tsx:633 +#: src/view/com/composer/Composer.tsx:663 +#: src/view/com/composer/Composer.tsx:664 msgid "Open emoji picker" msgstr "" -#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileFeed.tsx:297 msgid "Open feed options menu" msgstr "" -#: src/view/screens/Settings/index.tsx:737 +#: src/view/screens/Settings/index.tsx:738 msgid "Open links with in-app browser" msgstr "" @@ -4110,7 +4153,7 @@ msgstr "" msgid "Open navigation" msgstr "Abrir navegación" -#: src/view/com/util/forms/PostDropdownBtn.tsx:247 +#: src/view/com/util/forms/PostDropdownBtn.tsx:250 msgid "Open post options menu" msgstr "" @@ -4118,12 +4161,12 @@ msgstr "" msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Open storybook page" msgstr "" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Open system log" msgstr "" @@ -4135,7 +4178,7 @@ msgstr "" msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:511 +#: src/view/screens/Settings/index.tsx:512 msgid "Opens accessibility settings" msgstr "" @@ -4151,7 +4194,7 @@ msgstr "" msgid "Opens camera on device" msgstr "" -#: src/view/screens/Settings/index.tsx:640 +#: src/view/screens/Settings/index.tsx:641 msgid "Opens chat settings" msgstr "" @@ -4159,7 +4202,7 @@ msgstr "" msgid "Opens composer" msgstr "" -#: src/view/screens/Settings/index.tsx:532 +#: src/view/screens/Settings/index.tsx:533 msgid "Opens configurable language settings" msgstr "Abrir la configuración del idioma que se puede ajustar" @@ -4167,7 +4210,7 @@ msgstr "Abrir la configuración del idioma que se puede ajustar" msgid "Opens device photo gallery" msgstr "" -#: src/view/screens/Settings/index.tsx:672 +#: src/view/screens/Settings/index.tsx:673 msgid "Opens external embeds settings" msgstr "" @@ -4189,27 +4232,27 @@ msgstr "" msgid "Opens list of invite codes" msgstr "Abre la lista de códigos de invitación" -#: src/view/screens/Settings/index.tsx:809 +#: src/view/screens/Settings/index.tsx:810 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:831 +#: src/view/screens/Settings/index.tsx:832 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "" -#: src/view/screens/Settings/index.tsx:766 +#: src/view/screens/Settings/index.tsx:767 msgid "Opens modal for changing your Bluesky password" msgstr "" -#: src/view/screens/Settings/index.tsx:721 +#: src/view/screens/Settings/index.tsx:722 msgid "Opens modal for choosing a new Bluesky handle" msgstr "" -#: src/view/screens/Settings/index.tsx:789 +#: src/view/screens/Settings/index.tsx:790 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "" -#: src/view/screens/Settings/index.tsx:1009 +#: src/view/screens/Settings/index.tsx:1010 msgid "Opens modal for email verification" msgstr "" @@ -4217,7 +4260,7 @@ msgstr "" msgid "Opens modal for using custom domain" msgstr "Abre el modal para usar el dominio personalizado" -#: src/view/screens/Settings/index.tsx:557 +#: src/view/screens/Settings/index.tsx:558 msgid "Opens moderation settings" msgstr "Abre la configuración de moderación" @@ -4230,15 +4273,15 @@ msgstr "" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:618 +#: src/view/screens/Settings/index.tsx:619 msgid "Opens screen with all saved feeds" msgstr "Abre la pantalla con todas las noticias guardadas" -#: src/view/screens/Settings/index.tsx:699 +#: src/view/screens/Settings/index.tsx:700 msgid "Opens the app password settings" msgstr "" -#: src/view/screens/Settings/index.tsx:575 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens the Following feed preferences" msgstr "" @@ -4250,30 +4293,34 @@ msgstr "" #~ msgid "Opens the message settings page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:862 -#: src/view/screens/Settings/index.tsx:872 +#: src/view/screens/Settings/index.tsx:863 +#: src/view/screens/Settings/index.tsx:873 msgid "Opens the storybook page" msgstr "Abre la página del libro de cuentos" -#: src/view/screens/Settings/index.tsx:850 +#: src/view/screens/Settings/index.tsx:851 msgid "Opens the system log page" msgstr "Abre la página de la bitácora del sistema" -#: src/view/screens/Settings/index.tsx:596 +#: src/view/screens/Settings/index.tsx:597 msgid "Opens the threads preferences" msgstr "Abre las preferencias de hilos" -#: src/view/com/notifications/FeedItem.tsx:524 -#: src/view/com/util/UserAvatar.tsx:422 +#: src/view/com/notifications/FeedItem.tsx:527 +#: src/view/com/util/UserAvatar.tsx:434 msgid "Opens this profile" msgstr "" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:54 +msgid "Opens video picker" +msgstr "" + #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "" #: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:162 +#: src/components/ReportDialog/SubmitView.tsx:179 msgid "Optionally provide additional information below:" msgstr "" @@ -4333,7 +4380,7 @@ msgstr "Contraseña actualizada" msgid "Password updated!" msgstr "¡Contraseña actualizada!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Pause" msgstr "" @@ -4342,19 +4389,19 @@ msgstr "" msgid "People" msgstr "" -#: src/Navigation.tsx:175 +#: src/Navigation.tsx:178 msgid "People followed by @{0}" msgstr "" -#: src/Navigation.tsx:168 +#: src/Navigation.tsx:171 msgid "People following @{0}" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:69 +#: src/view/com/lightbox/Lightbox.tsx:70 msgid "Permission to access camera roll is required." msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:75 +#: src/view/com/lightbox/Lightbox.tsx:78 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "" @@ -4375,12 +4422,12 @@ msgstr "" msgid "Pictures meant for adults." msgstr "Imágenes destinadas a adultos." -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 msgid "Pin to Home" msgstr "" @@ -4392,7 +4439,7 @@ msgstr "Canales de noticias anclados" msgid "Pinned to your feeds" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Play" msgstr "" @@ -4405,7 +4452,7 @@ msgstr "" #~ msgid "Play notification sounds" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 msgid "Play or pause the GIF" msgstr "" @@ -4439,7 +4486,7 @@ msgstr "Por favor, confirma tu correo electrónico antes de cambiarlo. Se trata msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:150 +#: src/view/com/modals/AddAppPasswords.tsx:151 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "Introduce un nombre único para la contraseña de esta app o utiliza una generada aleatoriamente." @@ -4460,7 +4507,7 @@ msgstr "" msgid "Please enter your password as well:" msgstr "Introduce tu contraseña, también:" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:277 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" @@ -4477,7 +4524,7 @@ msgstr "" msgid "Please Verify Your Email" msgstr "" -#: src/view/com/composer/Composer.tsx:287 +#: src/view/com/composer/Composer.tsx:299 msgid "Please wait for your link card to finish loading" msgstr "Por favor, espera a que tu tarjeta de enlace termine de cargarse" @@ -4490,8 +4537,8 @@ msgstr "Política" msgid "Porn" msgstr "Pornografía" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:509 +#: src/view/com/composer/Composer.tsx:516 msgctxt "action" msgid "Post" msgstr "Publicar" @@ -4505,9 +4552,9 @@ msgstr "Post" msgid "Post by {0}" msgstr "Post por {0}" -#: src/Navigation.tsx:194 -#: src/Navigation.tsx:201 -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:197 +#: src/Navigation.tsx:204 +#: src/Navigation.tsx:211 msgid "Post by @{0}" msgstr "Post por {0}" @@ -4563,6 +4610,10 @@ msgstr "" msgid "Potentially Misleading Link" msgstr "Enlace potencialmente engañoso" +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "" @@ -4583,7 +4634,7 @@ msgstr "" #~ msgid "Press to Retry" #~ msgstr "" -#: src/components/KnownFollowers.tsx:116 +#: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "" @@ -4595,20 +4646,24 @@ msgstr "Imagen previa" msgid "Primary Language" msgstr "Idioma primario" -#: src/view/screens/PreferencesThreads.tsx:97 +#: src/view/screens/PreferencesThreads.tsx:91 msgid "Prioritize Your Follows" msgstr "Priorizar los usuarios a los que sigue" -#: src/view/screens/Settings/index.tsx:655 +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "" + +#: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privacidad" -#: src/Navigation.tsx:249 +#: src/Navigation.tsx:257 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:958 -#: src/view/shell/Drawer.tsx:285 +#: src/view/screens/Settings/index.tsx:959 +#: src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "Política de privacidad" @@ -4627,9 +4682,9 @@ msgstr "" #: src/view/shell/bottom-bar/BottomBar.tsx:275 #: src/view/shell/desktop/LeftNav.tsx:393 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:542 -#: src/view/shell/Drawer.tsx:543 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:532 +#: src/view/shell/Drawer.tsx:533 msgid "Profile" msgstr "Perfil" @@ -4637,7 +4692,7 @@ msgstr "Perfil" msgid "Profile updated" msgstr "" -#: src/view/screens/Settings/index.tsx:1022 +#: src/view/screens/Settings/index.tsx:1023 msgid "Protect your account by verifying your email." msgstr "Protege tu cuenta verificando tu correo electrónico." @@ -4653,23 +4708,23 @@ msgstr "Listas públicas y compartibles de usuarios para mutear o bloquear en ca msgid "Public, shareable lists which can drive feeds." msgstr "Listas públicas y compartibles que pueden impulsar feeds." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish post" msgstr "" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish reply" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:125 +#: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:103 +#: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:104 +#: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "" @@ -4694,7 +4749,7 @@ msgstr "Citar una post" #~ msgid "Quote Post" #~ msgstr "Citar una post" -#: src/view/screens/PreferencesThreads.tsx:86 +#: src/view/screens/PreferencesThreads.tsx:80 msgid "Random (aka \"Poster's Roulette\")" msgstr "" @@ -4722,19 +4777,23 @@ msgstr "" msgid "Reconnect" msgstr "" +#: src/view/screens/Notifications.tsx:146 +msgid "Refresh notifications" +msgstr "" + #: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 #: src/components/FeedCard.tsx:309 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:212 +#: src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "Eliminar" @@ -4746,7 +4805,7 @@ msgstr "" msgid "Remove account" msgstr "Eliminar la cuenta" -#: src/view/com/util/UserAvatar.tsx:384 +#: src/view/com/util/UserAvatar.tsx:396 msgid "Remove Avatar" msgstr "" @@ -4758,20 +4817,20 @@ msgstr "" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:168 -#: src/view/com/posts/FeedShutdownMsg.tsx:113 -#: src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:115 +#: src/view/com/posts/FeedShutdownMsg.tsx:119 msgid "Remove feed" msgstr "Eliminar el canal de noticias" -#: src/view/com/posts/FeedErrorMessage.tsx:209 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" msgstr "" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Eliminar de mis canales de noticias" @@ -4785,7 +4844,7 @@ msgstr "" msgid "Remove image" msgstr "Eliminar la imagen" -#: src/view/com/composer/ExternalEmbed.tsx:87 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 msgid "Remove image preview" msgstr "Eliminar la vista previa de la imagen" @@ -4810,11 +4869,11 @@ msgstr "" msgid "Remove repost" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "" -#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "Eliminar de la lista" @@ -4830,15 +4889,19 @@ msgid "Removed from your feeds" msgstr "" #: src/view/com/composer/ExternalEmbed.tsx:88 -msgid "Removes default thumbnail from {0}" -msgstr "" +#~ msgid "Removes default thumbnail from {0}" +#~ msgstr "" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" msgstr "" -#: src/view/com/posts/FeedShutdownMsg.tsx:126 -#: src/view/com/posts/FeedShutdownMsg.tsx:130 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the image preview" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:128 +#: src/view/com/posts/FeedShutdownMsg.tsx:132 msgid "Replace with Discover" msgstr "" @@ -4854,30 +4917,36 @@ msgstr "" #~ msgid "Replies on this thread are disabled" #~ msgstr "" -#: src/components/WhoCanReply.tsx:242 +#: src/components/WhoCanReply.tsx:243 msgid "Replies to this thread are disabled" msgstr "Las respuestas a este hilo están desactivadas" -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:507 msgctxt "action" msgid "Reply" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:143 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 msgid "Reply Filters" msgstr "Filtros de respuestas" -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:439 +#: src/view/com/post/Post.tsx:197 +#: src/view/com/posts/FeedItem.tsx:458 msgctxt "description" msgid "Reply to <0><1/>" msgstr "" -#: src/view/com/posts/FeedItem.tsx:437 +#: src/view/com/posts/FeedItem.tsx:456 msgctxt "description" msgid "Reply to a blocked post" msgstr "" +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:454 +msgctxt "description" +msgid "Reply to you" +msgstr "" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -4904,8 +4973,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/view/screens/ProfileFeed.tsx:349 -#: src/view/screens/ProfileFeed.tsx:351 +#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:352 msgid "Report feed" msgstr "Informe del canal de noticias" @@ -4917,8 +4986,8 @@ msgstr "Informe de la lista" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:407 +#: src/view/com/util/forms/PostDropdownBtn.tsx:409 msgid "Report post" msgstr "Informe de la post" @@ -4980,15 +5049,20 @@ msgstr "Volver a publicar o citar post" msgid "Reposted By" msgstr "Vuelto a publicar por" -#: src/view/com/posts/FeedItem.tsx:254 +#: src/view/com/posts/FeedItem.tsx:263 msgid "Reposted by {0}" msgstr "Vuelto a publicar por {0}" -#: src/view/com/posts/FeedItem.tsx:269 +#: src/view/com/posts/FeedItem.tsx:282 msgid "Reposted by <0><1/>" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/posts/FeedItem.tsx:261 +#: src/view/com/posts/FeedItem.tsx:280 +msgid "Reposted by you" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:188 msgid "reposted your post" msgstr "" @@ -5031,8 +5105,8 @@ msgstr "Código de reseteo" msgid "Reset Code" msgstr "Código de reseteo" -#: src/view/screens/Settings/index.tsx:901 -#: src/view/screens/Settings/index.tsx:904 +#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:905 msgid "Reset onboarding state" msgstr "Restablecer el estado de incorporación" @@ -5040,16 +5114,16 @@ msgstr "Restablecer el estado de incorporación" msgid "Reset password" msgstr "Restablecer la contraseña" -#: src/view/screens/Settings/index.tsx:881 -#: src/view/screens/Settings/index.tsx:884 +#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:885 msgid "Reset preferences state" msgstr "Restablecer el estado de preferencias" -#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:903 msgid "Resets the onboarding state" msgstr "Restablece el estado de incorporación" -#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:883 msgid "Resets the preferences state" msgstr "Restablecer el estado de preferencias" @@ -5062,7 +5136,7 @@ msgstr "" msgid "Retries the last action, which errored out" msgstr "" -#: src/components/dms/MessageItem.tsx:241 +#: src/components/dms/MessageItem.tsx:235 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 @@ -5098,7 +5172,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/dialogs/ThreadgateEditor.tsx:88 -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:187 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5107,7 +5181,7 @@ msgstr "" msgid "Save" msgstr "Guardar" -#: src/view/com/lightbox/Lightbox.tsx:135 +#: src/view/com/lightbox/Lightbox.tsx:139 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5129,8 +5203,8 @@ msgstr "Guardar cambios" msgid "Save handle change" msgstr "Guardar cambio de nombre de usuario" -#: src/components/StarterPack/ShareDialog.tsx:150 -#: src/components/StarterPack/ShareDialog.tsx:157 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "" @@ -5138,12 +5212,12 @@ msgstr "" msgid "Save image crop" msgstr "Guardar recorte de imagen" -#: src/components/StarterPack/QrCodeDialog.tsx:178 +#: src/components/StarterPack/QrCodeDialog.tsx:181 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 +#: src/view/screens/ProfileFeed.tsx:334 +#: src/view/screens/ProfileFeed.tsx:340 msgid "Save to my feeds" msgstr "Guardar a mis feeds" @@ -5151,7 +5225,7 @@ msgstr "Guardar a mis feeds" msgid "Saved Feeds" msgstr "Feeds Guardados" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:88 msgid "Saved to your camera roll" msgstr "" @@ -5178,8 +5252,8 @@ msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:383 -#: src/view/com/notifications/FeedItem.tsx:408 +#: src/view/com/notifications/FeedItem.tsx:386 +#: src/view/com/notifications/FeedItem.tsx:411 msgid "Say hello!" msgstr "" @@ -5193,9 +5267,9 @@ msgid "Scroll to top" msgstr "" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:524 +#: src/Navigation.tsx:537 #: src/view/com/auth/LoggedOut.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 @@ -5203,14 +5277,14 @@ msgstr "" #: src/view/screens/Search/Search.tsx:813 #: src/view/shell/bottom-bar/BottomBar.tsx:182 #: src/view/shell/desktop/LeftNav.tsx:354 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:394 -#: src/view/shell/Drawer.tsx:395 +#: src/view/shell/desktop/Search.tsx:195 +#: src/view/shell/desktop/Search.tsx:204 +#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:385 msgid "Search" msgstr "Buscar" -#: src/view/shell/desktop/Search.tsx:235 +#: src/view/shell/desktop/Search.tsx:236 msgid "Search for \"{query}\"" msgstr "" @@ -5236,7 +5310,7 @@ msgstr "" #: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/auth/LoggedOut.tsx:107 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "Buscar usuarios" @@ -5336,7 +5410,7 @@ msgstr "" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:135 +#: src/components/ReportDialog/SubmitView.tsx:152 msgid "Select the moderation service(s) to report to" msgstr "" @@ -5348,6 +5422,10 @@ msgstr "Elige que proveedor de servicio quieres usar." #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:53 +msgid "Select video" +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:63 #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "Elige lo que quieres ver y nosotros nos encargaremos del resto." @@ -5398,8 +5476,7 @@ msgctxt "action" msgid "Send Email" msgstr "Enviar correo" -#: src/view/shell/Drawer.tsx:329 -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:325 msgid "Send feedback" msgstr "Enviar comentarios" @@ -5408,14 +5485,14 @@ msgstr "Enviar comentarios" msgid "Send message" msgstr "Enviar mensaje" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 msgid "Send post to..." msgstr "" #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:215 -#: src/components/ReportDialog/SubmitView.tsx:219 +#: src/components/ReportDialog/SubmitView.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:236 msgid "Send report" msgstr "Enviar reporte" @@ -5428,8 +5505,8 @@ msgstr "Enviar reporte a {0}" msgid "Send verification email" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 +#: src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" msgstr "" @@ -5449,23 +5526,23 @@ msgstr "Establecer cumpleaños" msgid "Set new password" msgstr "Establecer la contraseña nueva" -#: src/view/screens/PreferencesFollowingFeed.tsx:224 +#: src/view/screens/PreferencesFollowingFeed.tsx:223 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Establece este ajuste en \"No\" para ocultar todas las publicaciones de citas de tus noticias. Las repeticiones seguirán siendo visibles." -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:120 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Establece este ajuste en \"No\" para ocultar todas las respuestas de tus noticias." -#: src/view/screens/PreferencesFollowingFeed.tsx:190 +#: src/view/screens/PreferencesFollowingFeed.tsx:189 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Establece este ajuste en \"No\" para ocultar todas las veces que se han vuelto a publicar desde tus noticias." -#: src/view/screens/PreferencesThreads.tsx:122 +#: src/view/screens/PreferencesThreads.tsx:116 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Establece este ajuste en \"Sí\" para mostrar las respuestas en una vista de hilos. Se trata de una función experimental." -#: src/view/screens/PreferencesFollowingFeed.tsx:260 +#: src/view/screens/PreferencesFollowingFeed.tsx:259 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "" @@ -5477,23 +5554,23 @@ msgstr "" msgid "Sets Bluesky username" msgstr "" -#: src/view/screens/Settings/index.tsx:462 +#: src/view/screens/Settings/index.tsx:463 msgid "Sets color theme to dark" msgstr "" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Sets color theme to light" msgstr "" -#: src/view/screens/Settings/index.tsx:449 +#: src/view/screens/Settings/index.tsx:450 msgid "Sets color theme to system setting" msgstr "" -#: src/view/screens/Settings/index.tsx:488 +#: src/view/screens/Settings/index.tsx:489 msgid "Sets dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings/index.tsx:481 +#: src/view/screens/Settings/index.tsx:482 msgid "Sets dark theme to the dim theme" msgstr "" @@ -5513,11 +5590,11 @@ msgstr "" msgid "Sets image aspect ratio to wide" msgstr "" -#: src/Navigation.tsx:150 -#: src/view/screens/Settings/index.tsx:333 +#: src/Navigation.tsx:153 +#: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:559 -#: src/view/shell/Drawer.tsx:560 +#: src/view/shell/Drawer.tsx:549 +#: src/view/shell/Drawer.tsx:550 msgid "Settings" msgstr "Ajustes" @@ -5529,19 +5606,19 @@ msgstr "Actividad sexual o desnudez erótica." msgid "Sexually Suggestive" msgstr "Sexualmente sugestivo" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:177 #: src/screens/StarterPack/StarterPackScreen.tsx:400 #: src/screens/StarterPack/StarterPackScreen.tsx:571 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 #: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Compartir" -#: src/view/com/lightbox/Lightbox.tsx:144 +#: src/view/com/lightbox/Lightbox.tsx:148 msgctxt "action" msgid "Share" msgstr "Compartir" @@ -5555,18 +5632,18 @@ msgid "Share a fun fact!" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:464 #: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "" -#: src/view/screens/ProfileFeed.tsx:359 -#: src/view/screens/ProfileFeed.tsx:361 +#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:362 msgid "Share feed" msgstr "Compartir feed" -#: src/components/StarterPack/ShareDialog.tsx:123 -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 #: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -5576,12 +5653,12 @@ msgstr "" msgid "Share Link" msgstr "Compartir enlace" -#: src/components/StarterPack/ShareDialog.tsx:87 +#: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:134 -#: src/components/StarterPack/ShareDialog.tsx:145 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "" @@ -5589,7 +5666,7 @@ msgstr "" msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:99 +#: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5597,6 +5674,10 @@ msgstr "" msgid "Share your favorite feed!" msgstr "" +#: src/Navigation.tsx:242 +msgid "Shared Preferences Tester" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" msgstr "" @@ -5604,7 +5685,7 @@ msgstr "" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:382 +#: src/view/screens/Settings/index.tsx:383 msgid "Show" msgstr "Ver" @@ -5612,7 +5693,7 @@ msgstr "Ver" #~ msgid "Show all replies" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +#: src/view/com/util/post-embeds/GifEmbed.tsx:175 msgid "Show alt text" msgstr "Ver texto alternativo" @@ -5638,19 +5719,19 @@ msgstr "" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#: src/view/com/util/forms/PostDropdownBtn.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:349 +#: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" msgstr "" #: src/view/com/post-thread/PostThreadItem.tsx:530 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:396 +#: src/view/com/post/Post.tsx:235 +#: src/view/com/posts/FeedItem.tsx:410 msgid "Show More" msgstr "Ver más" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 -#: src/view/com/util/forms/PostDropdownBtn.tsx:340 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:343 msgid "Show more like this" msgstr "" @@ -5658,11 +5739,11 @@ msgstr "" msgid "Show muted replies" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:257 +#: src/view/screens/PreferencesFollowingFeed.tsx:256 msgid "Show Posts from My Feeds" msgstr "Mostrar publicaciones de mis noticias" -#: src/view/screens/PreferencesFollowingFeed.tsx:221 +#: src/view/screens/PreferencesFollowingFeed.tsx:220 msgid "Show Quote Posts" msgstr "Mostrar publicaciones de citas" @@ -5678,11 +5759,11 @@ msgstr "Mostrar publicaciones de citas" #~ msgid "Show re-posts in Following feed" #~ msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:117 msgid "Show Replies" msgstr "Mostrar respuestas" -#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:94 msgid "Show replies by people you follow before all other replies." msgstr "Mostrar las respuestas de las personas a quienes sigues antes que el resto de respuestas." @@ -5698,7 +5779,7 @@ msgstr "Mostrar las respuestas de las personas a quienes sigues antes que el res #~ msgid "Show replies with at least {value} {0}" #~ msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:187 +#: src/view/screens/PreferencesFollowingFeed.tsx:186 msgid "Show Reposts" msgstr "Mostrar reposts" @@ -5764,8 +5845,8 @@ msgstr "¡Inicia sesión o crea una cuenta para unirte a la conversación!" msgid "Sign into Bluesky or create a new account" msgstr "Inicia sesión a Bluesky o crea una nueva cuenta" -#: src/view/screens/Settings/index.tsx:129 -#: src/view/screens/Settings/index.tsx:133 +#: src/view/screens/Settings/index.tsx:130 +#: src/view/screens/Settings/index.tsx:134 msgid "Sign out" msgstr "Cerrar sesión" @@ -5790,7 +5871,7 @@ msgstr "Inicia sesión o crea una cuenta para unirte a la conversación" msgid "Sign-in Required" msgstr "Se requiere iniciar sesión" -#: src/view/screens/Settings/index.tsx:392 +#: src/view/screens/Settings/index.tsx:393 msgid "Signed in as" msgstr "Sesión iniciada como" @@ -5799,12 +5880,12 @@ msgstr "Sesión iniciada como" msgid "Signed in as @{0}" msgstr "Sesión iniciada como @{0}" -#: src/view/com/notifications/FeedItem.tsx:208 +#: src/view/com/notifications/FeedItem.tsx:209 msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 msgid "Signup without a starter pack" msgstr "" @@ -5822,7 +5903,7 @@ msgstr "Saltar" msgid "Software Dev" msgstr "Programación" -#: src/components/FeedInterstitials.tsx:378 +#: src/components/FeedInterstitials.tsx:382 msgid "Some other feeds you might like" msgstr "" @@ -5850,16 +5931,21 @@ msgstr "" msgid "Something went wrong, please try again." msgstr "Ocurrió un error. Intenta de nuevo." -#: src/App.native.tsx:98 -#: src/App.web.tsx:80 +#: src/components/Lists.tsx:192 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "" + +#: src/App.native.tsx:99 +#: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "Lo sentimos, tu sesión ha expirado. Inicia sesión de nuevo." -#: src/view/screens/PreferencesThreads.tsx:69 +#: src/view/screens/PreferencesThreads.tsx:63 msgid "Sort Replies" msgstr "Ordenar respuestas" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:66 msgid "Sort replies to the same post by:" msgstr "Ordenar respuestas al mismo post por:" @@ -5867,7 +5953,7 @@ msgstr "Ordenar respuestas al mismo post por:" #~ msgid "Source:" #~ msgstr "Fuente:" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" msgstr "" @@ -5889,7 +5975,7 @@ msgstr "Deportes" msgid "Square" msgstr "Cuadrado" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:63 msgid "Start a new chat" msgstr "" @@ -5906,8 +5992,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:328 -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:341 +#: src/Navigation.tsx:346 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -5928,7 +6014,7 @@ msgstr "" msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Settings/index.tsx:964 +#: src/view/screens/Settings/index.tsx:965 msgid "Status Page" msgstr "" @@ -5940,17 +6026,17 @@ msgstr "" msgid "Step {0} of {1}" msgstr "Paso {0} de {1}" -#: src/view/screens/Settings/index.tsx:305 +#: src/view/screens/Settings/index.tsx:306 msgid "Storage cleared, you need to restart the app now." msgstr "" -#: src/Navigation.tsx:229 -#: src/view/screens/Settings/index.tsx:864 +#: src/Navigation.tsx:232 +#: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "Libro de cuentos" -#: src/components/moderation/LabelsOnMeDialog.tsx:290 -#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/components/moderation/LabelsOnMeDialog.tsx:311 +#: src/components/moderation/LabelsOnMeDialog.tsx:312 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5973,7 +6059,7 @@ msgstr "" #~ msgid "Subscribe to the {0} feed" #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 msgid "Subscribe to this labeler" msgstr "" @@ -5981,7 +6067,7 @@ msgstr "" msgid "Subscribe to this list" msgstr "Suscribirse a esta lista" -#: src/view/screens/Search/Explore.tsx:331 +#: src/view/screens/Search/Explore.tsx:333 msgid "Suggested accounts" msgstr "" @@ -5989,7 +6075,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "Usuarios sugeridos a seguir" -#: src/components/FeedInterstitials.tsx:246 +#: src/components/FeedInterstitials.tsx:250 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "" @@ -5998,7 +6084,7 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:252 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6013,19 +6099,19 @@ msgstr "Cambiar a otra cuenta" msgid "Switch between feeds to control your experience." msgstr "" -#: src/view/screens/Settings/index.tsx:160 +#: src/view/screens/Settings/index.tsx:161 msgid "Switch to {0}" msgstr "" -#: src/view/screens/Settings/index.tsx:161 +#: src/view/screens/Settings/index.tsx:162 msgid "Switches the account you are logged in to" msgstr "" -#: src/view/screens/Settings/index.tsx:446 +#: src/view/screens/Settings/index.tsx:447 msgid "System" msgstr "" -#: src/view/screens/Settings/index.tsx:852 +#: src/view/screens/Settings/index.tsx:853 msgid "System log" msgstr "Bitácora del sistema" @@ -6074,11 +6160,11 @@ msgstr "" msgid "Terms" msgstr "Condiciones" -#: src/Navigation.tsx:254 +#: src/Navigation.tsx:262 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:952 +#: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:279 +#: src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "Condiciones de servicio" @@ -6093,13 +6179,13 @@ msgstr "" msgid "text" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/components/moderation/LabelsOnMeDialog.tsx:275 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Campo de introducción de texto" #: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:93 msgid "Thank you. Your report has been sent." msgstr "" @@ -6142,19 +6228,19 @@ msgstr "La Política de derechos de autor se han trasladado a <0/>" msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322 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:66 +#: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:65 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your account." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:67 msgid "The following labels were applied to your content." msgstr "" @@ -6191,8 +6277,8 @@ msgstr "Las condiciones de servicio se han trasladado a" msgid "There is no time limit for account deactivation, come back any time." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 -#: src/view/screens/ProfileFeed.tsx:544 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 +#: src/view/screens/ProfileFeed.tsx:545 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -6201,7 +6287,7 @@ msgid "There was an an issue removing this feed. Please check your internet conn msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "" @@ -6215,7 +6301,7 @@ msgstr "" #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:234 +#: src/view/screens/ProfileFeed.tsx:235 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6229,7 +6315,7 @@ msgstr "" msgid "There was an issue contacting your server" msgstr "" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" @@ -6247,7 +6333,7 @@ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "" #: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:82 +#: src/components/ReportDialog/SubmitView.tsx:98 msgid "There was an issue sending your report. Please check your internet connection." msgstr "" @@ -6307,7 +6393,7 @@ msgstr "Esta cuenta ha solicitado que los usuarios inicien sesión para ver su p 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/moderation/LabelsOnMeDialog.tsx:239 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 msgid "This appeal will be sent to <0>{0}." msgstr "" @@ -6367,12 +6453,12 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:473 +#: src/view/screens/ProfileFeed.tsx:474 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" -#: src/view/com/posts/FeedShutdownMsg.tsx:97 +#: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" @@ -6400,7 +6486,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:166 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." msgstr "" @@ -6428,12 +6514,12 @@ msgstr "" msgid "This post has been deleted." msgstr "Esta post ha sido eliminado." -#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 #: src/view/com/util/post-ctrls/PostCtrls.tsx:324 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:440 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "This post will be hidden from feeds." msgstr "" @@ -6490,12 +6576,12 @@ msgstr "" msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Thread preferences" msgstr "Preferencias de hilos" -#: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/PreferencesThreads.tsx:51 +#: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "Preferencias de hilos" @@ -6503,11 +6589,11 @@ msgstr "Preferencias de hilos" msgid "Thread settings updated" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:119 +#: src/view/screens/PreferencesThreads.tsx:113 msgid "Threaded Mode" msgstr "Modo con hilos" -#: src/Navigation.tsx:287 +#: src/Navigation.tsx:295 msgid "Threads Preferences" msgstr "" @@ -6548,8 +6634,8 @@ msgstr "Transformaciones" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:676 #: src/view/com/post-thread/PostThreadItem.tsx:678 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 -#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "Traducir" @@ -6562,7 +6648,7 @@ msgstr "Intentar de nuevo" msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:746 +#: src/view/screens/Settings/index.tsx:747 msgid "Two-factor authentication" msgstr "" @@ -6654,7 +6740,7 @@ msgstr "Dejar de seguir a esta cuenta" #~ msgid "Unlike" #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Unlike this feed" msgstr "" @@ -6684,17 +6770,17 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "Demutear notificaciones" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:367 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Unmute thread" msgstr "Demutear hilo" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Desfijar" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 msgid "Unpin from home" msgstr "" @@ -6710,7 +6796,7 @@ msgstr "" msgid "Unsubscribe" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Unsubscribe from this labeler" msgstr "" @@ -6743,20 +6829,20 @@ msgstr "" msgid "Upload a text file to:" msgstr "Carga un archivo de texto en:" -#: src/view/com/util/UserAvatar.tsx:352 -#: src/view/com/util/UserAvatar.tsx:355 +#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "" -#: src/view/com/util/UserAvatar.tsx:369 +#: src/view/com/util/UserAvatar.tsx:381 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "" -#: src/view/com/util/UserAvatar.tsx:363 -#: src/view/com/util/UserAvatar.tsx:367 +#: src/view/com/util/UserAvatar.tsx:375 +#: src/view/com/util/UserAvatar.tsx:379 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -6796,7 +6882,7 @@ msgstr "" msgid "Use the DNS panel" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:205 +#: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." msgstr "Utilízalo para iniciar sesión en la otra app junto a tu nombre de usuario." @@ -6864,7 +6950,7 @@ msgstr "Nombre de usuario o dirección de correo electrónico" msgid "Users" msgstr "Usuarios" -#: src/components/WhoCanReply.tsx:279 +#: src/components/WhoCanReply.tsx:280 msgid "users followed by <0/>" msgstr "usuarios seguidos por <0/>" @@ -6895,15 +6981,15 @@ msgstr "" msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:983 +#: src/view/screens/Settings/index.tsx:984 msgid "Verify email" msgstr "Verificar el correo electrónico" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Verify my email" msgstr "Verificar mi correo electrónico" -#: src/view/screens/Settings/index.tsx:1017 +#: src/view/screens/Settings/index.tsx:1018 msgid "Verify My Email" msgstr "Verificar mi correo electrónico" @@ -6920,7 +7006,7 @@ msgstr "" msgid "Verify Your Email" msgstr "" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Version {appVersion} {bundleInfo}" msgstr "" @@ -6929,11 +7015,15 @@ msgstr "" msgid "Video Games" msgstr "Videojuegos" +#: src/view/com/composer/videos/state.ts:27 +msgid "Videos cannot be larger than 100MB" +msgstr "" + #: src/screens/Profile/Header/Shell.tsx:113 msgid "View {0}'s avatar" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:245 +#: src/view/com/notifications/FeedItem.tsx:246 msgid "View {0}'s profile" msgstr "" @@ -6965,7 +7055,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:436 #: src/components/ProfileHoverCard/index.web.tsx:463 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "" @@ -6977,7 +7067,7 @@ msgstr "Ver el avatar" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/view/screens/ProfileFeed.tsx:585 +#: src/view/screens/ProfileFeed.tsx:587 msgid "View users who like this feed" msgstr "" @@ -7073,7 +7163,7 @@ msgstr "" msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Lo sentimos, pero no se ha podido completar tu búsqueda. Intenta de nuevo en unos minutos." -#: src/view/com/composer/Composer.tsx:335 +#: src/view/com/composer/Composer.tsx:347 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -7086,7 +7176,7 @@ msgstr "Lo sentimos. No encontramos la página que buscabas." #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "Lo sentimos. Solo puedes suscribirte a hasta 10 etiquetadores, y has alcanzado el límite." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "" @@ -7108,7 +7198,7 @@ msgstr "" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:376 +#: src/view/com/composer/Composer.tsx:388 msgid "What's up?" msgstr "¿Qué hay de nuevo?" @@ -7125,15 +7215,15 @@ msgstr "¿Qué idiomas te gustaría ver en tus feeds?" msgid "Who can message you?" msgstr "" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Who can reply" msgstr "Quién puede responder" -#: src/components/WhoCanReply.tsx:211 +#: src/components/WhoCanReply.tsx:212 msgid "Who can reply dialog" msgstr "" -#: src/components/WhoCanReply.tsx:215 +#: src/components/WhoCanReply.tsx:216 msgid "Who can reply?" msgstr "" @@ -7179,11 +7269,11 @@ msgstr "Ancho" msgid "Write a message" msgstr "Escribe un mensaje" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:580 msgid "Write post" msgstr "Redacta un post" -#: src/view/com/composer/Composer.tsx:375 +#: src/view/com/composer/Composer.tsx:387 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Redacta una respuesta" @@ -7194,12 +7284,12 @@ msgid "Writers" msgstr "Escritores" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:200 -#: src/view/screens/PreferencesFollowingFeed.tsx:235 -#: src/view/screens/PreferencesFollowingFeed.tsx:270 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:199 +#: src/view/screens/PreferencesFollowingFeed.tsx:234 +#: src/view/screens/PreferencesFollowingFeed.tsx:269 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "Yes" msgstr "Sí" @@ -7216,7 +7306,7 @@ msgstr "" msgid "Yes, reactivate my account" msgstr "" -#: src/components/dms/MessageItem.tsx:188 +#: src/components/dms/MessageItem.tsx:182 msgid "Yesterday, {time}" msgstr "" @@ -7369,19 +7459,19 @@ msgstr "" msgid "You haven't muted any words or tags yet" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:86 +#: src/components/moderation/LabelsOnMeDialog.tsx:87 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:92 msgid "You may appeal these labels if you feel they were placed in error." msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:92 +#: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 50 feeds" msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:77 +#: src/screens/StarterPack/Wizard/State.tsx:78 msgid "You may only add up to 50 profiles" msgstr "" @@ -7405,7 +7495,7 @@ msgstr "" msgid "You must grant access to your photo library to save the image." msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:205 +#: src/components/ReportDialog/SubmitView.tsx:222 msgid "You must select at least one labeler for a report" msgstr "" @@ -7445,15 +7535,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272 msgid "You'll stay updated with these feeds" msgstr "" @@ -7552,7 +7642,7 @@ msgstr "Tus palabras muteadas" msgid "Your password has been changed successfully!" msgstr "Tu contraseña ha sido cambiada exitosamente." -#: src/view/com/composer/Composer.tsx:366 +#: src/view/com/composer/Composer.tsx:378 msgid "Your post has been published" msgstr "Post publicado" @@ -7560,7 +7650,7 @@ msgstr "Post publicado" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Tus posts, a qué le das me gusta y a quién bloqueas son públicos. Nadie puede ver a quien muteas." -#: src/view/screens/Settings/index.tsx:148 +#: src/view/screens/Settings/index.tsx:149 msgid "Your profile" msgstr "Tu perfil" @@ -7568,7 +7658,7 @@ msgstr "Tu perfil" 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:365 +#: src/view/com/composer/Composer.tsx:377 msgid "Your reply has been published" msgstr "Respuesta publicada" diff --git a/src/locale/locales/fi/messages.po b/src/locale/locales/fi/messages.po index 0f67b79f34..fab0d65553 100644 --- a/src/locale/locales/fi/messages.po +++ b/src/locale/locales/fi/messages.po @@ -21,7 +21,7 @@ msgstr "" msgid "(no email)" msgstr "(ei sähköpostiosoitetta)" -#: src/view/com/notifications/FeedItem.tsx:294 +#: src/view/com/notifications/FeedItem.tsx:297 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -88,7 +88,7 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "" @@ -100,7 +100,7 @@ msgstr "" #~ msgid "{0} your feeds" #~ msgstr "" -#: src/view/com/util/UserAvatar.tsx:419 +#: src/view/com/util/UserAvatar.tsx:431 msgid "{0}'s avatar" msgstr "" @@ -148,7 +148,7 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:504 +#: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} seurattua" @@ -159,11 +159,11 @@ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:588 +#: src/view/screens/ProfileFeed.tsx:590 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:462 +#: src/view/shell/Drawer.tsx:452 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} lukematonta" @@ -179,7 +179,7 @@ msgstr "" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "" -#: src/components/WhoCanReply.tsx:295 +#: src/components/WhoCanReply.tsx:296 msgid "<0/> members" msgstr "<0/> jäsentä" @@ -201,11 +201,11 @@ msgstr "" #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "" -#: src/view/shell/Drawer.tsx:101 +#: src/view/shell/Drawer.tsx:100 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" -#: src/view/shell/Drawer.tsx:112 +#: src/view/shell/Drawer.tsx:111 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" @@ -272,15 +272,15 @@ msgid "Access profile and other navigation links" msgstr "Siirry profiiliin ja muihin navigointilinkkeihin" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:519 +#: src/view/screens/Settings/index.tsx:520 msgid "Accessibility" msgstr "Saavutettavuus" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Accessibility settings" msgstr "Esteettömyysasetukset\"" -#: src/Navigation.tsx:301 +#: src/Navigation.tsx:309 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "Esteettömyysasetukset\"" @@ -290,8 +290,8 @@ msgstr "Esteettömyysasetukset\"" #~ msgstr "käyttäjätili" #: src/screens/Login/LoginForm.tsx:190 -#: src/view/screens/Settings/index.tsx:346 -#: src/view/screens/Settings/index.tsx:753 +#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:754 msgid "Account" msgstr "Käyttäjätili" @@ -338,7 +338,7 @@ msgid "Account unmuted" msgstr "Käyttäjätilin hiljennys poistettu" #: src/components/dialogs/MutedWords.tsx:164 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 msgid "Add" @@ -362,8 +362,8 @@ msgstr "Lisää käyttäjä tähän listaan" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:423 -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:433 msgid "Add account" msgstr "Lisää käyttäjätili" @@ -431,7 +431,7 @@ msgstr "Lisää syötteisiini" #~ msgid "Added" #~ msgstr "Lisätty" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "Lisätty listaan" @@ -440,7 +440,7 @@ msgstr "Lisätty listaan" msgid "Added to my feeds" msgstr "Lisätty syötteisiini" -#: src/view/screens/PreferencesFollowingFeed.tsx:172 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Säädä, kuinka monta tykkäystä vastauksen on saatava näkyäkseen syötteessäsi." @@ -458,7 +458,7 @@ msgid "Adult content is disabled." msgstr "Aikuissisältö on estetty" #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:687 +#: src/view/screens/Settings/index.tsx:688 msgid "Advanced" msgstr "Edistyneemmät" @@ -474,8 +474,8 @@ msgstr "" msgid "All the feeds you've saved, right in one place." msgstr "Kaikki tallentamasi syötteet yhdessä paikassa." -#: src/view/com/modals/AddAppPasswords.tsx:187 -#: src/view/com/modals/AddAppPasswords.tsx:194 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "" @@ -500,7 +500,7 @@ msgstr "Kirjautuneena sisään nimellä @{0}" #: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "ALT" msgstr "ALT" @@ -510,7 +510,7 @@ msgstr "ALT" msgid "Alt text" msgstr "ALT-teksti" -#: src/view/com/util/post-embeds/GifEmbed.tsx:180 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Alt Text" msgstr "" @@ -539,8 +539,8 @@ msgstr "" #~ msgid "An error occurred while saving the image." #~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:70 -#: src/components/StarterPack/ShareDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the QR code!" msgstr "" @@ -556,10 +556,18 @@ msgstr "" msgid "An issue not included in these options" msgstr "Ongelma, jota ei ole sisällytetty näihin vaihtoehtoihin" +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +msgid "An issue occurred while trying to open the chat" +msgstr "" + #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:309 -#: src/components/ProfileCard.tsx:329 +#: src/components/ProfileCard.tsx:311 +#: src/components/ProfileCard.tsx:331 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -571,8 +579,8 @@ msgstr "Tapahtui virhe, yritä uudelleen." msgid "an unknown error occurred" msgstr "" -#: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:291 +#: src/components/WhoCanReply.tsx:317 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "ja" @@ -581,7 +589,7 @@ msgstr "ja" msgid "Animals" msgstr "Eläimet" -#: src/view/com/util/post-embeds/GifEmbed.tsx:146 +#: src/view/com/util/post-embeds/GifEmbed.tsx:155 msgid "Animated GIF" msgstr "Animoitu GIF" @@ -605,26 +613,26 @@ msgstr "Sovelluksen salasanan nimet voivat sisältää vain kirjaimia, numeroita msgid "App Password names must be at least 4 characters long." msgstr "Sovelluksen salasanojen nimien on oltava vähintään 4 merkkiä pitkiä." -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "App password settings" msgstr "Sovelluksen salasanan asetukset" -#: src/Navigation.tsx:269 +#: src/Navigation.tsx:277 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:707 +#: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" msgstr "Sovellussalasanat" -#: src/components/moderation/LabelsOnMeDialog.tsx:151 -#: src/components/moderation/LabelsOnMeDialog.tsx:154 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "Valita" -#: src/components/moderation/LabelsOnMeDialog.tsx:236 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Appeal \"{0}\" label" msgstr "Valita \"{0}\" -merkinnästä" -#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/components/moderation/LabelsOnMeDialog.tsx:248 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "" @@ -640,7 +648,7 @@ msgstr "" msgid "Appeal this decision" msgstr "" -#: src/view/screens/Settings/index.tsx:440 +#: src/view/screens/Settings/index.tsx:441 msgid "Appearance" msgstr "Ulkonäkö" @@ -650,8 +658,8 @@ msgid "Apply default recommended feeds" msgstr "" #: src/screens/StarterPack/StarterPackScreen.tsx:610 -msgid "Are you sure you want delete this starter pack?" -msgstr "" +#~ msgid "Are you sure you want delete this starter pack?" +#~ msgstr "" #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" @@ -665,6 +673,10 @@ msgstr "Haluatko varmasti poistaa sovellussalasanan \"{name}\"?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:189 #~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." #~ msgstr "" @@ -681,7 +693,7 @@ msgstr "Haluatko varmasti poistaa {0} syötteistäsi?" msgid "Are you sure you want to remove this from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:649 +#: src/view/com/composer/Composer.tsx:680 msgid "Are you sure you'd like to discard this draft?" msgstr "Haluatko varmasti hylätä tämän luonnoksen?" @@ -707,8 +719,8 @@ msgid "At least 3 characters" msgstr "Vähintään kolme merkkiä" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:281 -#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/components/moderation/LabelsOnMeDialog.tsx:302 +#: src/components/moderation/LabelsOnMeDialog.tsx:303 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -721,7 +733,6 @@ msgstr "Vähintään kolme merkkiä" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" @@ -731,7 +742,7 @@ msgstr "Takaisin" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Perustuen kiinnostukseesi {interestsText}" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Basics" msgstr "Perusasiat" @@ -739,7 +750,7 @@ msgstr "Perusasiat" msgid "Birthday" msgstr "Syntymäpäivä" -#: src/view/screens/Settings/index.tsx:378 +#: src/view/screens/Settings/index.tsx:379 msgid "Birthday:" msgstr "Syntymäpäivä:" @@ -783,7 +794,7 @@ msgstr "Estetty" msgid "Blocked accounts" msgstr "Estetyt käyttäjät" -#: src/Navigation.tsx:145 +#: src/Navigation.tsx:148 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Estetyt käyttäjät" @@ -865,21 +876,21 @@ msgstr "Sumenna kuvat ja suodata syötteistä" msgid "Books" msgstr "Kirjat" -#: src/components/FeedInterstitials.tsx:281 +#: src/components/FeedInterstitials.tsx:285 msgid "Browse more accounts on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:411 +#: src/components/FeedInterstitials.tsx:415 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:266 -#: src/components/FeedInterstitials.tsx:396 +#: src/components/FeedInterstitials.tsx:270 +#: src/components/FeedInterstitials.tsx:400 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:289 -#: src/components/FeedInterstitials.tsx:420 +#: src/components/FeedInterstitials.tsx:293 +#: src/components/FeedInterstitials.tsx:424 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -924,7 +935,7 @@ msgstr "sinulta" msgid "Camera" msgstr "Kamera" -#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Voi sisältää vain kirjaimia, numeroita, välilyöntejä, viivoja ja alaviivoja. Täytyy olla vähintään 4 merkkiä pitkä, mutta enintään 32 merkkiä pitkä." @@ -933,8 +944,8 @@ msgstr "Voi sisältää vain kirjaimia, numeroita, välilyöntejä, viivoja ja a #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:451 -#: src/view/com/composer/Composer.tsx:457 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -952,7 +963,7 @@ msgstr "Voi sisältää vain kirjaimia, numeroita, välilyöntejä, viivoja ja a #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:139 #: src/view/screens/Search/Search.tsx:704 -#: src/view/shell/desktop/Search.tsx:218 +#: src/view/shell/desktop/Search.tsx:219 msgid "Cancel" msgstr "Peruuta" @@ -988,8 +999,8 @@ msgstr "Peruuta uudelleenpostaus" msgid "Cancel reactivation and log out" msgstr "" -#: src/view/com/modals/ListAddRemoveUsers.tsx:87 -#: src/view/shell/desktop/Search.tsx:214 +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "Peruuta haku" @@ -1001,17 +1012,17 @@ msgstr "Peruuttaa linkitetyn verkkosivuston avaamisen" msgid "Change" msgstr "Vaihda" -#: src/view/screens/Settings/index.tsx:372 +#: src/view/screens/Settings/index.tsx:373 msgctxt "action" msgid "Change" msgstr "Vaihda" -#: src/view/screens/Settings/index.tsx:719 +#: src/view/screens/Settings/index.tsx:720 msgid "Change handle" msgstr "Vaihda käyttäjätunnus" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:730 +#: src/view/screens/Settings/index.tsx:731 msgid "Change Handle" msgstr "Vaihda käyttäjätunnus" @@ -1019,12 +1030,12 @@ msgstr "Vaihda käyttäjätunnus" msgid "Change my email" msgstr "Vaihda sähköpostiosoitteeni" -#: src/view/screens/Settings/index.tsx:764 +#: src/view/screens/Settings/index.tsx:765 msgid "Change password" msgstr "Vaihda salasana" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:775 +#: src/view/screens/Settings/index.tsx:776 msgid "Change Password" msgstr "Vaihda salasana" @@ -1036,7 +1047,7 @@ msgstr "Vaihda julkaisun kieleksi {0}" msgid "Change Your Email" msgstr "Vaihda sähköpostiosoitteesi" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:321 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -1048,14 +1059,14 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:326 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" msgstr "" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:648 +#: src/view/screens/Settings/index.tsx:649 msgid "Chat Settings" msgstr "" @@ -1142,19 +1153,19 @@ msgstr "" msgid "Choose your password" msgstr "Valitse salasanasi" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clear all legacy storage data" msgstr "Tyhjennä kaikki vanhan tietomallin mukaiset tiedot" -#: src/view/screens/Settings/index.tsx:914 +#: src/view/screens/Settings/index.tsx:915 msgid "Clear all legacy storage data (restart after this)" msgstr "Tyhjennä kaikki vanhan tietomallin tiedot (käynnistä uudelleen tämän jälkeen)" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clear all storage data" msgstr "Tyhjennä kaikki tallennukset" -#: src/view/screens/Settings/index.tsx:926 +#: src/view/screens/Settings/index.tsx:927 msgid "Clear all storage data (restart after this)" msgstr "Tyhjennä kaikki tallennukset (käynnistä uudelleen tämän jälkeen)" @@ -1163,11 +1174,11 @@ msgstr "Tyhjennä kaikki tallennukset (käynnistä uudelleen tämän jälkeen)" msgid "Clear search query" msgstr "Tyhjennä hakukysely" -#: src/view/screens/Settings/index.tsx:912 +#: src/view/screens/Settings/index.tsx:913 msgid "Clears all legacy storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:924 +#: src/view/screens/Settings/index.tsx:925 msgid "Clears all storage data" msgstr "Tyhjentää kaikki tallennustiedot" @@ -1191,7 +1202,7 @@ msgstr "" msgid "Click here to open tag menu for {tag}" msgstr "Avaa tästä valikko aihetunnisteelle {tag}" -#: src/components/dms/MessageItem.tsx:237 +#: src/components/dms/MessageItem.tsx:231 msgid "Click to retry failed message" msgstr "" @@ -1212,7 +1223,7 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/util/post-embeds/GifEmbed.tsx:195 msgid "Close" msgstr "Sulje" @@ -1267,7 +1278,7 @@ msgstr "Sulkee alanavigaation" msgid "Closes password update alert" msgstr "Sulkee salasanan päivitysilmoituksen" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:472 msgid "Closes post composer and discards post draft" msgstr "Sulkee editorin ja hylkää luonnoksen" @@ -1275,11 +1286,11 @@ msgstr "Sulkee editorin ja hylkää luonnoksen" msgid "Closes viewer for header image" msgstr "Sulkee kuvan katseluohjelman" -#: src/view/com/notifications/FeedItem.tsx:237 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:440 msgid "Collapses list of users for a given notification" msgstr "Pienentää käyttäjäluettelon annetulle ilmoitukselle" @@ -1293,7 +1304,7 @@ msgstr "Komedia" msgid "Comics" msgstr "Sarjakuvat" -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:267 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Yhteisöohjeet" @@ -1306,7 +1317,7 @@ msgstr "Suorita käyttöönotto loppuun ja aloita käyttäjätilisi käyttö" msgid "Complete the challenge" msgstr "Tee haaste loppuun" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:582 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Laadi viestejä, joiden pituus on enintään {MAX_GRAPHEME_LENGTH} merkkiä" @@ -1331,8 +1342,6 @@ msgstr "" #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/PreferencesFollowingFeed.tsx:307 -#: src/view/screens/PreferencesThreads.tsx:159 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 msgid "Confirm" @@ -1449,12 +1458,12 @@ msgstr "" msgid "Cooking" msgstr "Ruoanlaitto" -#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Kopioitu" -#: src/view/screens/Settings/index.tsx:264 +#: src/view/screens/Settings/index.tsx:265 msgid "Copied build version to clipboard" msgstr "Ohjelmiston versio kopioitu leikepöydälle" @@ -1462,7 +1471,7 @@ msgstr "Ohjelmiston versio kopioitu leikepöydälle" #: src/view/com/modals/AddAppPasswords.tsx:80 #: src/view/com/modals/ChangeHandle.tsx:320 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:189 +#: src/view/com/util/forms/PostDropdownBtn.tsx:192 #: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Kopioitu leikepöydälle" @@ -1471,12 +1480,12 @@ msgstr "Kopioitu leikepöydälle" msgid "Copied!" msgstr "Kopioitu!" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" msgstr "Kopioi sovellussalasanan" -#: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/view/com/modals/AddAppPasswords.tsx:213 +#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Kopioi" @@ -1489,11 +1498,11 @@ msgstr "Kopioi {0}" msgid "Copy code" msgstr "Kopioi koodi" -#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" msgstr "" @@ -1501,8 +1510,8 @@ msgstr "" msgid "Copy link to list" msgstr "Kopioi listan linkki" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 msgid "Copy link to post" msgstr "Kopioi julkaisun linkki" @@ -1511,20 +1520,24 @@ msgstr "Kopioi julkaisun linkki" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:285 -#: src/view/com/util/forms/PostDropdownBtn.tsx:287 +#: src/view/com/util/forms/PostDropdownBtn.tsx:288 +#: src/view/com/util/forms/PostDropdownBtn.tsx:290 msgid "Copy post text" msgstr "Kopioi viestin teksti" -#: src/components/StarterPack/QrCodeDialog.tsx:168 +#: src/components/StarterPack/QrCodeDialog.tsx:171 msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:272 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Tekijänoikeuskäytäntö" +#: src/view/com/composer/videos/state.ts:31 +msgid "Could not compress video" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "" @@ -1558,17 +1571,17 @@ msgstr "" msgid "Create a new account" msgstr "Luo uusi käyttäjätili" -#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:425 msgid "Create a new Bluesky account" msgstr "Luo uusi Bluesky-tili" -#: src/components/StarterPack/QrCodeDialog.tsx:151 +#: src/components/StarterPack/QrCodeDialog.tsx:154 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:351 msgid "Create a starter pack" msgstr "" @@ -1593,7 +1606,7 @@ msgstr "" msgid "Create another" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" msgstr "Luo sovellussalasana" @@ -1629,7 +1642,7 @@ msgid "Custom domain" msgstr "Mukautettu verkkotunnus" #: src/view/screens/Feeds.tsx:760 -#: src/view/screens/Search/Explore.tsx:390 +#: src/view/screens/Search/Explore.tsx:392 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Yhteisön rakentamat mukautetut syötteet tuovat sinulle uusia kokemuksia ja auttavat löytämään mieluisaa sisältöä." @@ -1637,8 +1650,8 @@ msgstr "Yhteisön rakentamat mukautetut syötteet tuovat sinulle uusia kokemuksi msgid "Customize media from external sites." msgstr "Muokkaa ulkoisten sivustojen mediasisältöjen asetuksia" -#: src/view/screens/Settings/index.tsx:459 -#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:460 +#: src/view/screens/Settings/index.tsx:486 msgid "Dark" msgstr "Tumma" @@ -1646,7 +1659,7 @@ msgstr "Tumma" msgid "Dark mode" msgstr "Tumma ulkoasu" -#: src/view/screens/Settings/index.tsx:472 +#: src/view/screens/Settings/index.tsx:473 msgid "Dark Theme" msgstr "Tumma teema" @@ -1655,15 +1668,15 @@ msgid "Date of birth" msgstr "Syntymäaika" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:807 +#: src/view/screens/Settings/index.tsx:808 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:819 +#: src/view/screens/Settings/index.tsx:820 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:874 +#: src/view/screens/Settings/index.tsx:875 msgid "Debug Moderation" msgstr "" @@ -1675,13 +1688,13 @@ msgstr "Vianetsintäpaneeli" #: src/screens/StarterPack/StarterPackScreen.tsx:562 #: src/screens/StarterPack/StarterPackScreen.tsx:641 #: src/screens/StarterPack/StarterPackScreen.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Poista" -#: src/view/screens/Settings/index.tsx:829 +#: src/view/screens/Settings/index.tsx:830 msgid "Delete account" msgstr "Poista käyttäjätili" @@ -1701,8 +1714,8 @@ msgstr "Poista sovellussalasana" msgid "Delete app password?" msgstr "Poista sovellussalasana" -#: src/view/screens/Settings/index.tsx:891 -#: src/view/screens/Settings/index.tsx:894 +#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:895 msgid "Delete chat declaration record" msgstr "" @@ -1726,12 +1739,12 @@ msgstr "" msgid "Delete my account" msgstr "Poista käyttäjätilini" -#: src/view/screens/Settings/index.tsx:841 +#: src/view/screens/Settings/index.tsx:842 msgid "Delete My Account…" msgstr "Poista käyttäjätilini…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:414 -#: src/view/com/util/forms/PostDropdownBtn.tsx:416 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 +#: src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "Poista viesti" @@ -1748,7 +1761,7 @@ msgstr "" msgid "Delete this list?" msgstr "Poista tämä lista?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:428 +#: src/view/com/util/forms/PostDropdownBtn.tsx:431 msgid "Delete this post?" msgstr "Poista tämä viesti?" @@ -1760,7 +1773,7 @@ msgstr "Poistettu" msgid "Deleted post." msgstr "Poistettu viesti." -#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:893 msgid "Deletes the chat declaration record" msgstr "" @@ -1775,11 +1788,11 @@ msgstr "Kuvaus" msgid "Descriptive alt text" msgstr "" -#: src/view/com/composer/Composer.tsx:283 +#: src/view/com/composer/Composer.tsx:295 msgid "Did you want to say anything?" msgstr "Haluatko sanoa jotain?" -#: src/view/screens/Settings/index.tsx:478 +#: src/view/screens/Settings/index.tsx:479 msgid "Dim" msgstr "Himmeä" @@ -1808,11 +1821,11 @@ msgstr "Poista haptiset palautteet käytöstä" msgid "Disabled" msgstr "Poistettu käytöstä" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:682 msgid "Discard" msgstr "Hylkää" -#: src/view/com/composer/Composer.tsx:648 +#: src/view/com/composer/Composer.tsx:679 msgid "Discard draft?" msgstr "Hylkää luonnos?" @@ -1830,7 +1843,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "Löydä uusia mukautettuja syötteitä" -#: src/view/screens/Search/Explore.tsx:388 +#: src/view/screens/Search/Explore.tsx:390 msgid "Discover new feeds" msgstr "" @@ -1883,22 +1896,20 @@ msgstr "Verkkotunnus vahvistettu!" #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesFollowingFeed.tsx:310 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Valmis" #: src/view/com/modals/EditImage.tsx:334 -#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" msgstr "Valmis" @@ -1907,7 +1918,7 @@ msgstr "Valmis" msgid "Done{extraText}" msgstr "Valmis{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319 msgid "Download Bluesky" msgstr "" @@ -1977,7 +1988,7 @@ msgctxt "action" msgid "Edit" msgstr "Muokkaa" -#: src/view/com/util/UserAvatar.tsx:325 +#: src/view/com/util/UserAvatar.tsx:337 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "Muokkaa profiilikuvaa" @@ -1999,7 +2010,7 @@ msgstr "Muokkaa listan tietoja" msgid "Edit Moderation List" msgstr "Muokkaa moderaatiolistaa" -#: src/Navigation.tsx:274 +#: src/Navigation.tsx:282 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -2014,12 +2025,12 @@ msgstr "Muokkaa profiilia" msgid "Edit People" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "Muokkaa profiilia" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "Muokkaa profiilia" @@ -2037,7 +2048,7 @@ msgstr "" msgid "Edit User List" msgstr "Muokkaa käyttäjälistaa" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Edit who can reply" msgstr "" @@ -2049,7 +2060,7 @@ msgstr "Muokkaa näyttönimeäsi" msgid "Edit your profile description" msgstr "Muokkaa profiilin kuvausta" -#: src/Navigation.tsx:343 +#: src/Navigation.tsx:356 msgid "Edit your starter pack" msgstr "" @@ -2088,7 +2099,7 @@ msgstr "Sähköpostiosoite päivitetty" msgid "Email verified" msgstr "Sähköpostiosoite vahvistettu" -#: src/view/screens/Settings/index.tsx:350 +#: src/view/screens/Settings/index.tsx:351 msgid "Email:" msgstr "Sähköpostiosoite:" @@ -2097,8 +2108,8 @@ msgid "Embed HTML code" msgstr "Upotuksen HTML-koodi" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:324 -#: src/view/com/util/forms/PostDropdownBtn.tsx:326 +#: src/view/com/util/forms/PostDropdownBtn.tsx:327 +#: src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "Upota viesti" @@ -2128,11 +2139,16 @@ msgstr "Ota aikuissisältö käyttöön" msgid "Enable external media" msgstr "Ota käyttöön ulkoinen media" -#: src/view/screens/PreferencesExternalEmbeds.tsx:76 +#: src/view/screens/PreferencesExternalEmbeds.tsx:73 msgid "Enable media players for" msgstr "Ota mediatoistimet käyttöön kohteille" -#: src/view/screens/PreferencesFollowingFeed.tsx:146 +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 msgid "Enable this setting to only see replies between people you follow." msgstr "Ota tämä asetus käyttöön nähdäksesi vastaukset vain seuraamiltasi ihmisiltä." @@ -2158,7 +2174,7 @@ msgstr "Syötteen loppu" msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:160 +#: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "Anna sovellusalasanalle nimi" @@ -2226,7 +2242,7 @@ msgid "Everybody" msgstr "Kaikki" #: src/components/WhoCanReply.tsx:69 -#: src/components/WhoCanReply.tsx:240 +#: src/components/WhoCanReply.tsx:241 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "" @@ -2262,8 +2278,8 @@ msgstr "Keskeyttää kuvan rajausprosessin" msgid "Exits image view" msgstr "Poistuu kuvan katselutilasta" -#: src/view/com/modals/ListAddRemoveUsers.tsx:88 -#: src/view/shell/desktop/Search.tsx:215 +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +#: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "Poistuu hakukyselyn kirjoittamisesta" @@ -2271,7 +2287,7 @@ msgstr "Poistuu hakukyselyn kirjoittamisesta" msgid "Expand alt text" msgstr "Laajenna ALT-teksti" -#: src/view/com/notifications/FeedItem.tsx:238 +#: src/view/com/notifications/FeedItem.tsx:239 msgid "Expand list of users" msgstr "" @@ -2280,6 +2296,10 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "Laajenna tai pienennä viesti johon olit vastaamassa" +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." msgstr "Selvästi tai mahdollisesti häiritsevä media." @@ -2288,12 +2308,12 @@ msgstr "Selvästi tai mahdollisesti häiritsevä media." msgid "Explicit sexual images." msgstr "Selvästi seksuaalista kuvamateriaalia." -#: src/view/screens/Settings/index.tsx:787 +#: src/view/screens/Settings/index.tsx:788 msgid "Export my data" msgstr "Vie tietoni" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:798 +#: src/view/screens/Settings/index.tsx:799 msgid "Export My Data" msgstr "Vie tietoni" @@ -2303,17 +2323,17 @@ msgid "External Media" msgstr "Ulkoiset mediat" #: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/view/screens/PreferencesExternalEmbeds.tsx:64 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 "Ulkoiset mediat voivat sallia verkkosivustojen kerätä tietoja sinusta ja laitteestasi. Tietoja ei lähetetä eikä pyydetä, ennen kuin painat \"toista\"-painiketta." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:301 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:680 +#: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" msgstr "Ulkoisten mediasoittimien asetukset" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "External media settings" msgstr "Ulkoisten mediasoittimien asetukset" @@ -2343,8 +2363,8 @@ msgstr "Viestin poistaminen epäonnistui, yritä uudelleen" msgid "Failed to delete starter pack" msgstr "" -#: src/view/screens/Search/Explore.tsx:426 -#: src/view/screens/Search/Explore.tsx:454 +#: src/view/screens/Search/Explore.tsx:428 +#: src/view/screens/Search/Explore.tsx:456 msgid "Failed to load feeds preferences" msgstr "" @@ -2366,20 +2386,24 @@ msgstr "" #~ msgid "Failed to load recommended feeds" #~ msgstr "Suositeltujen syötteiden lataaminen epäonnistui" -#: src/view/screens/Search/Explore.tsx:419 -#: src/view/screens/Search/Explore.tsx:447 +#: src/view/screens/Search/Explore.tsx:421 +#: src/view/screens/Search/Explore.tsx:449 msgid "Failed to load suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:377 +#: src/view/screens/Search/Explore.tsx:379 msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:86 +#: src/view/com/lightbox/Lightbox.tsx:90 msgid "Failed to save image: {0}" msgstr "Kuvan {0} tallennus epäonnistui" -#: src/components/dms/MessageItem.tsx:230 +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + +#: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "" @@ -2387,12 +2411,12 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: src/components/moderation/LabelsOnMeDialog.tsx:244 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:181 msgid "Failed to toggle thread mute, please try again" msgstr "" @@ -2405,7 +2429,7 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:217 msgid "Feed" msgstr "Syöte" @@ -2423,19 +2447,19 @@ msgid "Feed toggle" msgstr "" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:345 +#: src/view/shell/Drawer.tsx:332 msgid "Feedback" msgstr "Palaute" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:336 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 #: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:493 -#: src/view/shell/Drawer.tsx:494 +#: src/view/shell/Drawer.tsx:483 +#: src/view/shell/Drawer.tsx:484 msgid "Feeds" msgstr "Syötteet" @@ -2489,11 +2513,11 @@ msgstr "Etsi viestejä ja käyttäjiä Blueskysta" #~ msgid "Finding similar accounts..." #~ msgstr "Etsitään samankaltaisia käyttäjätilejä" -#: src/view/screens/PreferencesFollowingFeed.tsx:110 +#: src/view/screens/PreferencesFollowingFeed.tsx:108 msgid "Fine-tune the content you see on your Following feed." msgstr "Hienosäädä näkemääsi sisältöä Seuratut-syötteessäsi." -#: src/view/screens/PreferencesThreads.tsx:60 +#: src/view/screens/PreferencesThreads.tsx:54 msgid "Fine-tune the discussion threads." msgstr "Hienosäädä keskusteluketjuja." @@ -2523,7 +2547,7 @@ msgid "Flip vertically" msgstr "Käännä pystysuunnassa" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:341 +#: src/components/ProfileCard.tsx:343 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2568,7 +2592,7 @@ msgstr "" msgid "Follow Back" msgstr "Seuraa takaisin" -#: src/view/screens/Search/Explore.tsx:333 +#: src/view/screens/Search/Explore.tsx:335 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "" @@ -2585,22 +2609,22 @@ msgstr "" #~ msgstr "" #: src/view/com/profile/ProfileCard.tsx:190 -msgid "Followed by {0}" -msgstr "Seuraajina {0}" +#~ msgid "Followed by {0}" +#~ msgstr "Seuraajina {0}" -#: src/components/KnownFollowers.tsx:223 +#: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "" -#: src/components/KnownFollowers.tsx:209 +#: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "" -#: src/components/KnownFollowers.tsx:196 +#: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" msgstr "" -#: src/components/KnownFollowers.tsx:178 +#: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" @@ -2608,15 +2632,15 @@ msgstr "" msgid "Followed users" msgstr "Seuratut käyttäjät" -#: src/view/screens/PreferencesFollowingFeed.tsx:153 +#: src/view/screens/PreferencesFollowingFeed.tsx:152 msgid "Followed users only" msgstr "Vain seuratut käyttäjät" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:198 msgid "followed you" msgstr "seurasi sinua" -#: src/view/com/notifications/FeedItem.tsx:195 +#: src/view/com/notifications/FeedItem.tsx:196 msgid "followed you back" msgstr "" @@ -2625,7 +2649,7 @@ msgstr "" msgid "Followers" msgstr "Seuraajat" -#: src/Navigation.tsx:182 +#: src/Navigation.tsx:185 msgid "Followers of @{0} that you know" msgstr "" @@ -2635,7 +2659,7 @@ msgid "Followers you know" msgstr "" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:335 +#: src/components/ProfileCard.tsx:337 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2647,7 +2671,7 @@ msgstr "" msgid "Following" msgstr "Seurataan" -#: src/components/ProfileCard.tsx:301 +#: src/components/ProfileCard.tsx:303 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Seurataan {0}" @@ -2656,13 +2680,13 @@ msgstr "Seurataan {0}" msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Following feed preferences" msgstr "Seuratut -syötteen asetukset" -#: src/Navigation.tsx:280 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:583 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesFollowingFeed.tsx:105 +#: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "Seuratut -syötteen asetukset" @@ -2687,7 +2711,7 @@ msgstr "Ruoka" msgid "For security reasons, we'll need to send a confirmation code to your email address." msgstr "Turvallisuussyistä meidän on lähetettävä vahvistuskoodi sähköpostiosoitteeseesi." -#: src/view/com/modals/AddAppPasswords.tsx:232 +#: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Turvallisuussyistä et näe tätä uudelleen. Jos unohdat tämän salasanan, sinun on luotava uusi." @@ -2712,7 +2736,7 @@ msgstr "Julkaisee usein ei-toivottua sisältöä" msgid "From @{sanitizedAuthor}" msgstr "Käyttäjältä @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:236 +#: src/view/com/posts/FeedItem.tsx:242 msgctxt "from-feed" msgid "From <0/>" msgstr "Lähde: <0/>" @@ -2725,6 +2749,10 @@ msgstr "Galleria" msgid "Generate a starter pack" msgstr "" +#: src/view/shell/Drawer.tsx:336 +msgid "Get help" +msgstr "" + #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" msgstr "" @@ -2772,12 +2800,12 @@ msgid "Go Back" msgstr "Palaa takaisin" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -msgid "Go back to previous screen" -msgstr "" +#~ msgid "Go back to previous screen" +#~ msgstr "" #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/components/ReportDialog/SubmitView.tsx:121 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 @@ -2842,7 +2870,7 @@ msgstr "Haptiikka" msgid "Harassment, trolling, or intolerance" msgstr "Häirintä, trollaus tai suvaitsemattomuus" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:316 msgid "Hashtag" msgstr "Aihetunniste" @@ -2855,7 +2883,7 @@ msgid "Having trouble?" msgstr "Ongelmia?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:355 +#: src/view/shell/Drawer.tsx:345 msgid "Help" msgstr "Ohje" @@ -2875,7 +2903,7 @@ msgstr "" #~ msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." #~ msgstr "Tässä on joitakin aihepiirikohtaisia syötteitä kiinnostuksiesi perusteella: {interestsText}. Voit valita seurata niin montaa kuin haluat." -#: src/view/com/modals/AddAppPasswords.tsx:203 +#: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "Tässä on sovelluksesi salasana." @@ -2886,17 +2914,17 @@ msgstr "Tässä on sovelluksesi salasana." #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:445 msgid "Hide" msgstr "Piilota" -#: src/view/com/notifications/FeedItem.tsx:444 +#: src/view/com/notifications/FeedItem.tsx:447 msgctxt "action" msgid "Hide" msgstr "Piilota" -#: src/view/com/util/forms/PostDropdownBtn.tsx:387 -#: src/view/com/util/forms/PostDropdownBtn.tsx:389 +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 msgid "Hide post" msgstr "Piilota viesti" @@ -2905,11 +2933,11 @@ msgstr "Piilota viesti" msgid "Hide the content" msgstr "Piilota sisältö" -#: src/view/com/util/forms/PostDropdownBtn.tsx:439 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide this post?" msgstr "Piilota tämä viesti?" -#: src/view/com/notifications/FeedItem.tsx:435 +#: src/view/com/notifications/FeedItem.tsx:438 msgid "Hide user list" msgstr "Piilota käyttäjäluettelo" @@ -2941,12 +2969,12 @@ msgstr "Hmm, vaikuttaa siltä, että tämän datan lataamisessa on ongelmia. Kat msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmm, emme pystyneet avaamaan kyseistä moderaatiopalvelua." -#: src/Navigation.tsx:519 -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:552 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:425 -#: src/view/shell/Drawer.tsx:426 +#: src/view/shell/Drawer.tsx:415 +#: src/view/shell/Drawer.tsx:416 msgid "Home" msgstr "Koti" @@ -3000,7 +3028,7 @@ msgstr "Jos et ole vielä täysi-ikäinen, huoltajasi tai laillisen edustajasi o msgid "If you delete this list, you won't be able to recover it." msgstr "Jos poistat tämän listan, et voi palauttaa sitä." -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 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ä." @@ -3024,7 +3052,7 @@ msgstr "Kuva" msgid "Image alt text" msgstr "Kuvan ALT-teksti" -#: src/components/StarterPack/ShareDialog.tsx:75 +#: src/components/StarterPack/ShareDialog.tsx:76 msgid "Image saved to your camera roll!" msgstr "" @@ -3044,7 +3072,7 @@ msgstr "Syötä sähköpostiisi lähetetty koodi salasanan nollaamista varten" msgid "Input confirmation code for account deletion" msgstr "Syötä vahvistuskoodi käyttäjätilin poistoa varten" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" msgstr "Syötä nimi sovellussalasanaa varten" @@ -3117,7 +3145,7 @@ msgstr "Kutsukoodit: {0} saatavilla" msgid "Invite codes: 1 available" msgstr "Kutsukoodit: 1 saatavilla" -#: src/components/StarterPack/ShareDialog.tsx:96 +#: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" msgstr "" @@ -3141,8 +3169,8 @@ msgstr "" msgid "Jobs" msgstr "Työpaikat" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:432 #: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" @@ -3181,11 +3209,11 @@ msgstr "" #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:79 +#: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:81 +#: src/components/moderation/LabelsOnMeDialog.tsx:82 msgid "Labels on your content" msgstr "" @@ -3193,16 +3221,16 @@ msgstr "" msgid "Language selection" msgstr "Kielen valinta" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Language settings" msgstr "Kielen asetukset" -#: src/Navigation.tsx:155 +#: src/Navigation.tsx:158 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Kielen asetukset" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Languages" msgstr "Kielet" @@ -3262,7 +3290,7 @@ msgstr "Poistuminen Blueskysta" msgid "left to go." msgstr "jäljellä." -#: src/view/screens/Settings/index.tsx:309 +#: src/view/screens/Settings/index.tsx:310 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Legacy tietovarasto tyhjennetty, sinun on käynnistettävä sovellus uudelleen nyt." @@ -3280,7 +3308,7 @@ msgstr "Aloitetaan salasanasi nollaus!" msgid "Let's go!" msgstr "Aloitetaan!" -#: src/view/screens/Settings/index.tsx:453 +#: src/view/screens/Settings/index.tsx:454 msgid "Light" msgstr "Vaalea" @@ -3298,13 +3326,13 @@ msgid "Like 10 posts to train the Discover feed" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Like this feed" msgstr "Tykkää tästä syötteestä" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:219 -#: src/Navigation.tsx:224 +#: src/Navigation.tsx:222 +#: src/Navigation.tsx:227 msgid "Liked by" msgstr "Tykänneet" @@ -3328,11 +3356,11 @@ msgstr "Tykänneet" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "Tykännyt {likeCount} {0}" -#: src/view/com/notifications/FeedItem.tsx:201 +#: src/view/com/notifications/FeedItem.tsx:202 msgid "liked your custom feed" msgstr "tykkäsi mukautetusta syötteestäsi" -#: src/view/com/notifications/FeedItem.tsx:185 +#: src/view/com/notifications/FeedItem.tsx:186 msgid "liked your post" msgstr "tykkäsi viestistäsi" @@ -3344,7 +3372,7 @@ msgstr "Tykkäykset" msgid "Likes on this post" msgstr "Tykkäykset tässä viestissä" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:191 msgid "List" msgstr "Lista" @@ -3381,12 +3409,12 @@ msgstr "Listaa estosta poistetut" msgid "List unmuted" msgstr "Listaa hiljennyksestä poistetut" -#: src/Navigation.tsx:125 +#: src/Navigation.tsx:128 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 -#: src/view/shell/Drawer.tsx:509 -#: src/view/shell/Drawer.tsx:510 +#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:500 msgid "Lists" msgstr "Listat" @@ -3394,25 +3422,25 @@ msgstr "Listat" msgid "Lists blocking this user:" msgstr "" -#: src/view/screens/Search/Explore.tsx:130 +#: src/view/screens/Search/Explore.tsx:131 msgid "Load more" msgstr "" -#: src/view/screens/Search/Explore.tsx:218 +#: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:216 +#: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" msgstr "" -#: src/view/screens/Notifications.tsx:184 +#: src/view/screens/Notifications.tsx:219 msgid "Load new notifications" msgstr "Lataa uusia ilmoituksia" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:494 +#: src/view/screens/ProfileFeed.tsx:495 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Lataa uusia viestejä" @@ -3421,7 +3449,7 @@ msgstr "Lataa uusia viestejä" msgid "Loading..." msgstr "Ladataan..." -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:247 msgid "Log" msgstr "Loki" @@ -3491,7 +3519,7 @@ msgstr "" msgid "Media" msgstr "Media" -#: src/components/WhoCanReply.tsx:275 +#: src/components/WhoCanReply.tsx:276 msgid "mentioned users" msgstr "mainitut käyttäjät" @@ -3513,7 +3541,7 @@ msgstr "" msgid "Message deleted" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:200 +#: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "Viesti palvelimelta: {0}" @@ -3530,7 +3558,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:534 +#: src/Navigation.tsx:547 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3545,9 +3573,9 @@ msgstr "" msgid "Misleading Account" msgstr "Harhaanjohtava käyttäjätili" -#: src/Navigation.tsx:130 +#: src/Navigation.tsx:133 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:562 +#: src/view/screens/Settings/index.tsx:563 msgid "Moderation" msgstr "Moderointi" @@ -3583,16 +3611,16 @@ msgstr "Moderointilista päivitetty" msgid "Moderation lists" msgstr "Moderointilistat" -#: src/Navigation.tsx:135 +#: src/Navigation.tsx:138 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Moderointilistat" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Moderation settings" msgstr "Moderointiasetukset" -#: src/Navigation.tsx:234 +#: src/Navigation.tsx:237 msgid "Moderation states" msgstr "" @@ -3617,7 +3645,7 @@ msgstr "Lisää syötteitä" msgid "More options" msgstr "Lisää asetuksia" -#: src/view/screens/PreferencesThreads.tsx:82 +#: src/view/screens/PreferencesThreads.tsx:76 msgid "Most-liked replies first" msgstr "Eniten tykätyt vastaukset ensin" @@ -3684,13 +3712,13 @@ msgstr "Hiljennä tämä sana viesteissä ja aihetunnisteissa" msgid "Mute this word in tags only" msgstr "Hiljennä tämä sana vain aihetunnisteissa" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:371 msgid "Mute thread" msgstr "Hiljennä keskustelu" -#: src/view/com/util/forms/PostDropdownBtn.tsx:378 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 +#: src/view/com/util/forms/PostDropdownBtn.tsx:381 +#: src/view/com/util/forms/PostDropdownBtn.tsx:383 msgid "Mute words & tags" msgstr "Hiljennä sanat ja aihetunnisteet" @@ -3702,7 +3730,7 @@ msgstr "Hiljennetty" msgid "Muted accounts" msgstr "Hiljennetyt käyttäjät" -#: src/Navigation.tsx:140 +#: src/Navigation.tsx:143 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Hiljennetyt käyttäjätilit" @@ -3736,15 +3764,15 @@ msgstr "Omat syötteet" msgid "My Profile" msgstr "Profiilini" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "My saved feeds" msgstr "Tallennetut syötteeni" -#: src/view/screens/Settings/index.tsx:623 +#: src/view/screens/Settings/index.tsx:624 msgid "My Saved Feeds" msgstr "Tallennetut syötteeni" -#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/AddAppPasswords.tsx:174 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Nimi" @@ -3779,7 +3807,7 @@ msgstr "" msgid "Navigates to the next screen" msgstr "Siirtyy seuraavalle näytölle" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:78 msgid "Navigates to your profile" msgstr "Siirtyy profiiliisi" @@ -3809,7 +3837,7 @@ msgstr "Uusi" msgid "New" msgstr "Uusi" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" @@ -3837,9 +3865,9 @@ msgid "New post" msgstr "Uusi viesti" #: src/view/screens/Feeds.tsx:581 -#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Notifications.tsx:228 #: src/view/screens/Profile.tsx:478 -#: src/view/screens/ProfileFeed.tsx:428 +#: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:278 @@ -3859,7 +3887,7 @@ msgstr "" msgid "New User List" msgstr "Uusi käyttäjälista" -#: src/view/screens/PreferencesThreads.tsx:79 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Newest replies first" msgstr "Uusimmat vastaukset ensin" @@ -3894,16 +3922,16 @@ msgstr "Seuraava" msgid "Next image" msgstr "Seuraava kuva" -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:199 -#: src/view/screens/PreferencesFollowingFeed.tsx:234 -#: src/view/screens/PreferencesFollowingFeed.tsx:271 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:198 +#: src/view/screens/PreferencesFollowingFeed.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:270 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "No" msgstr "Ei" -#: src/view/screens/ProfileFeed.tsx:562 +#: src/view/screens/ProfileFeed.tsx:564 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Ei kuvausta" @@ -3921,7 +3949,7 @@ msgstr "Ei löydetty esillä olevia GIF-kuvia. Tenor-palvelussa saattaa olla ong msgid "No feeds found. Try searching for something else." msgstr "" -#: src/components/ProfileCard.tsx:321 +#: src/components/ProfileCard.tsx:323 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "Et enää seuraa käyttäjää {0}" @@ -3938,7 +3966,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:122 msgid "No notifications yet!" msgstr "Ei vielä ilmoituksia!" @@ -3970,7 +3998,7 @@ msgstr "Tuloksia ei löydetty" msgid "No results found for \"{query}\"" msgstr "Ei tuloksia haulle \"{query}\"" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 @@ -4016,7 +4044,7 @@ msgstr "Ei-seksuaalinen alastomuus" #~ msgid "Not Applicable." #~ msgstr "Ei sovellettavissa." -#: src/Navigation.tsx:120 +#: src/Navigation.tsx:123 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Ei löytynyt" @@ -4027,7 +4055,7 @@ msgid "Not right now" msgstr "Ei juuri nyt" #: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/forms/PostDropdownBtn.tsx:459 #: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "" @@ -4040,6 +4068,19 @@ msgstr "Huomio: Bluesky on avoin ja julkinen verkosto. Tämä asetus rajoittaa v msgid "Nothing here" msgstr "" +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:331 +#: src/view/screens/Notifications.tsx:119 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "" + #: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "" @@ -4048,13 +4089,14 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:529 -#: src/view/screens/Notifications.tsx:132 -#: src/view/screens/Notifications.tsx:169 +#: src/Navigation.tsx:542 +#: src/view/screens/Notifications.tsx:145 +#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:203 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 -#: src/view/shell/Drawer.tsx:457 -#: src/view/shell/Drawer.tsx:458 +#: src/view/shell/Drawer.tsx:447 +#: src/view/shell/Drawer.tsx:448 msgid "Notifications" msgstr "Ilmoitukset" @@ -4062,7 +4104,7 @@ msgstr "Ilmoitukset" msgid "now" msgstr "" -#: src/components/dms/MessageItem.tsx:175 +#: src/components/dms/MessageItem.tsx:169 msgid "Now" msgstr "" @@ -4092,7 +4134,7 @@ msgstr "Voi ei!" msgid "Oh no! Something went wrong." msgstr "Voi ei! Jokin meni pieleen." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 msgid "OK" msgstr "OK" @@ -4100,7 +4142,7 @@ msgstr "OK" msgid "Okay" msgstr "Selvä" -#: src/view/screens/PreferencesThreads.tsx:78 +#: src/view/screens/PreferencesThreads.tsx:72 msgid "Oldest replies first" msgstr "Vanhimmat vastaukset ensin" @@ -4112,7 +4154,7 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:257 +#: src/view/screens/Settings/index.tsx:258 msgid "Onboarding reset" msgstr "Käyttöönoton nollaus" @@ -4120,7 +4162,7 @@ msgstr "Käyttöönoton nollaus" msgid "Onboarding tour step {0}: {1}" msgstr "" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:534 msgid "One or more images is missing alt text." msgstr "Yksi tai useampi kuva on ilman vaihtoehtoista Alt-tekstiä." @@ -4128,7 +4170,7 @@ msgstr "Yksi tai useampi kuva on ilman vaihtoehtoista Alt-tekstiä." msgid "Only .jpg and .png files are supported" msgstr "" -#: src/components/WhoCanReply.tsx:244 +#: src/components/WhoCanReply.tsx:245 msgid "Only {0} can reply" msgstr "" @@ -4148,6 +4190,7 @@ msgstr "Hups, nyt meni jotain väärin!" #: src/components/StarterPack/ProfileStarterPacks.tsx:304 #: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/NotificationsSettings.tsx:45 #: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Hups!" @@ -4169,16 +4212,16 @@ msgstr "" msgid "Open conversation options" msgstr "" -#: src/view/com/composer/Composer.tsx:632 -#: src/view/com/composer/Composer.tsx:633 +#: src/view/com/composer/Composer.tsx:663 +#: src/view/com/composer/Composer.tsx:664 msgid "Open emoji picker" msgstr "Avaa emoji-valitsin" -#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileFeed.tsx:297 msgid "Open feed options menu" msgstr "Avaa syötteen asetusvalikko" -#: src/view/screens/Settings/index.tsx:737 +#: src/view/screens/Settings/index.tsx:738 msgid "Open links with in-app browser" msgstr "Avaa linkit sovelluksen sisäisellä selaimella" @@ -4194,7 +4237,7 @@ msgstr "Avaa hiljennettyjen sanojen ja aihetunnisteiden asetukset" msgid "Open navigation" msgstr "Avaa navigointi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:247 +#: src/view/com/util/forms/PostDropdownBtn.tsx:250 msgid "Open post options menu" msgstr "Avaa viestin asetusvalikko" @@ -4202,12 +4245,12 @@ msgstr "Avaa viestin asetusvalikko" msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Open storybook page" msgstr "Avaa storybook-sivu" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Open system log" msgstr "Avaa järjestelmäloki" @@ -4219,7 +4262,7 @@ msgstr "Avaa {numItems} asetusta" msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:511 +#: src/view/screens/Settings/index.tsx:512 msgid "Opens accessibility settings" msgstr "Avaa esteettömyysasetukset" @@ -4235,7 +4278,7 @@ msgstr "Avaa debug lisätiedot" msgid "Opens camera on device" msgstr "Avaa laitteen kameran" -#: src/view/screens/Settings/index.tsx:640 +#: src/view/screens/Settings/index.tsx:641 msgid "Opens chat settings" msgstr "" @@ -4243,7 +4286,7 @@ msgstr "" msgid "Opens composer" msgstr "Avaa editorin" -#: src/view/screens/Settings/index.tsx:532 +#: src/view/screens/Settings/index.tsx:533 msgid "Opens configurable language settings" msgstr "Avaa mukautettavat kielen asetukset" @@ -4251,7 +4294,7 @@ msgstr "Avaa mukautettavat kielen asetukset" msgid "Opens device photo gallery" msgstr "Avaa laitteen valokuvat" -#: src/view/screens/Settings/index.tsx:672 +#: src/view/screens/Settings/index.tsx:673 msgid "Opens external embeds settings" msgstr "Avaa ulkoiset upotusasetukset" @@ -4273,27 +4316,27 @@ msgstr "Avaa GIF-valinnan valintaikkunan." msgid "Opens list of invite codes" msgstr "Avaa kutsukoodien luettelon" -#: src/view/screens/Settings/index.tsx:809 +#: src/view/screens/Settings/index.tsx:810 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:831 +#: src/view/screens/Settings/index.tsx:832 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "" -#: src/view/screens/Settings/index.tsx:766 +#: src/view/screens/Settings/index.tsx:767 msgid "Opens modal for changing your Bluesky password" msgstr "" -#: src/view/screens/Settings/index.tsx:721 +#: src/view/screens/Settings/index.tsx:722 msgid "Opens modal for choosing a new Bluesky handle" msgstr "" -#: src/view/screens/Settings/index.tsx:789 +#: src/view/screens/Settings/index.tsx:790 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "" -#: src/view/screens/Settings/index.tsx:1009 +#: src/view/screens/Settings/index.tsx:1010 msgid "Opens modal for email verification" msgstr "" @@ -4301,7 +4344,7 @@ msgstr "" msgid "Opens modal for using custom domain" msgstr "Avaa asetukset oman verkkotunnuksen käyttöönottoon" -#: src/view/screens/Settings/index.tsx:557 +#: src/view/screens/Settings/index.tsx:558 msgid "Opens moderation settings" msgstr "Avaa moderointiasetukset" @@ -4314,15 +4357,15 @@ msgstr "Avaa salasanan palautuslomakkeen" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "Avaa näkymän tallennettujen syötteiden muokkaamiseen" -#: src/view/screens/Settings/index.tsx:618 +#: src/view/screens/Settings/index.tsx:619 msgid "Opens screen with all saved feeds" msgstr "Avaa näkymän kaikkiin tallennettuihin syötteisiin" -#: src/view/screens/Settings/index.tsx:699 +#: src/view/screens/Settings/index.tsx:700 msgid "Opens the app password settings" msgstr "Avaa sovelluksen salasanojen asetukset" -#: src/view/screens/Settings/index.tsx:575 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens the Following feed preferences" msgstr "Avaa Seuratut-syötteen asetukset" @@ -4334,30 +4377,34 @@ msgstr "Avaa linkitetyn verkkosivun" #~ msgid "Opens the message settings page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:862 -#: src/view/screens/Settings/index.tsx:872 +#: src/view/screens/Settings/index.tsx:863 +#: src/view/screens/Settings/index.tsx:873 msgid "Opens the storybook page" msgstr "Avaa storybook-sivun" -#: src/view/screens/Settings/index.tsx:850 +#: src/view/screens/Settings/index.tsx:851 msgid "Opens the system log page" msgstr "Avaa järjestelmän lokisivun" -#: src/view/screens/Settings/index.tsx:596 +#: src/view/screens/Settings/index.tsx:597 msgid "Opens the threads preferences" msgstr "Avaa keskusteluasetukset" -#: src/view/com/notifications/FeedItem.tsx:524 -#: src/view/com/util/UserAvatar.tsx:422 +#: src/view/com/notifications/FeedItem.tsx:527 +#: src/view/com/util/UserAvatar.tsx:434 msgid "Opens this profile" msgstr "" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:54 +msgid "Opens video picker" +msgstr "" + #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "Asetus {0}/{numItems}" #: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:162 +#: src/components/ReportDialog/SubmitView.tsx:179 msgid "Optionally provide additional information below:" msgstr "Voit tarvittaessa antaa lisätietoja alla:" @@ -4417,7 +4464,7 @@ msgstr "Salasana päivitetty" msgid "Password updated!" msgstr "Salasana päivitetty!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Pause" msgstr "Pysäytä" @@ -4426,19 +4473,19 @@ msgstr "Pysäytä" msgid "People" msgstr "Henkilöt" -#: src/Navigation.tsx:175 +#: src/Navigation.tsx:178 msgid "People followed by @{0}" msgstr "Henkilöt, joita @{0} seuraa" -#: src/Navigation.tsx:168 +#: src/Navigation.tsx:171 msgid "People following @{0}" msgstr "Henkilöt, jotka seuraavat käyttäjää @{0}" -#: src/view/com/lightbox/Lightbox.tsx:69 +#: src/view/com/lightbox/Lightbox.tsx:70 msgid "Permission to access camera roll is required." msgstr "Käyttöoikeus valokuviin tarvitaan." -#: src/view/com/lightbox/Lightbox.tsx:75 +#: src/view/com/lightbox/Lightbox.tsx:78 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "Lupa valokuviin evättiin. Anna lupa järjestelmäasetuksissa." @@ -4459,12 +4506,12 @@ msgstr "" msgid "Pictures meant for adults." msgstr "Aikuisille tarkoitetut kuvat." -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Kiinnitä etusivulle" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 msgid "Pin to Home" msgstr "Kiinnitä etusivulle" @@ -4476,7 +4523,7 @@ msgstr "Kiinnitetyt syötteet" msgid "Pinned to your feeds" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Play" msgstr "Käynnistä" @@ -4489,7 +4536,7 @@ msgstr "Toista {0}" #~ msgid "Play notification sounds" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 msgid "Play or pause the GIF" msgstr "Toista tai pysäytä GIF" @@ -4523,7 +4570,7 @@ msgstr "Vahvista sähköpostiosoitteesi ennen sen vaihtamista. Tämä on väliai msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "Anna nimi sovellussalasanalle. Kaikki välilyönnit eivät ole sallittuja." -#: src/view/com/modals/AddAppPasswords.tsx:150 +#: src/view/com/modals/AddAppPasswords.tsx:151 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "Anna uniikki nimi tälle sovellussalasanalle tai käytä satunnaisesti luotua." @@ -4544,7 +4591,7 @@ msgstr "" msgid "Please enter your password as well:" msgstr "Anna myös salasanasi:" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:277 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" @@ -4561,7 +4608,7 @@ msgstr "" msgid "Please Verify Your Email" msgstr "Vahvista sähköpostiosoitteesi" -#: src/view/com/composer/Composer.tsx:287 +#: src/view/com/composer/Composer.tsx:299 msgid "Please wait for your link card to finish loading" msgstr "Odota, että linkkikortti latautuu kokonaan" @@ -4574,8 +4621,8 @@ msgstr "Politiikka" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:509 +#: src/view/com/composer/Composer.tsx:516 msgctxt "action" msgid "Post" msgstr "Lähetä" @@ -4589,9 +4636,9 @@ msgstr "Viesti" msgid "Post by {0}" msgstr "Lähettäjä {0}" -#: src/Navigation.tsx:194 -#: src/Navigation.tsx:201 -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:197 +#: src/Navigation.tsx:204 +#: src/Navigation.tsx:211 msgid "Post by @{0}" msgstr "Lähettäjä @{0}" @@ -4647,6 +4694,10 @@ msgstr "Piilotetut viestit" msgid "Potentially Misleading Link" msgstr "Mahdollisesti harhaanjohtava linkki" +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "" @@ -4667,7 +4718,7 @@ msgstr "Paina uudelleen jatkaaksesi" #~ msgid "Press to Retry" #~ msgstr "" -#: src/components/KnownFollowers.tsx:116 +#: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "" @@ -4679,20 +4730,24 @@ msgstr "Edellinen kuva" msgid "Primary Language" msgstr "Ensisijainen kieli" -#: src/view/screens/PreferencesThreads.tsx:97 +#: src/view/screens/PreferencesThreads.tsx:91 msgid "Prioritize Your Follows" msgstr "Aseta seurattavat tärkeysjärjestykseen" -#: src/view/screens/Settings/index.tsx:655 +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "" + +#: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Yksityisyys" -#: src/Navigation.tsx:249 +#: src/Navigation.tsx:257 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:958 -#: src/view/shell/Drawer.tsx:285 +#: src/view/screens/Settings/index.tsx:959 +#: src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "Yksityisyydensuojakäytäntö" @@ -4711,9 +4766,9 @@ msgstr "profiili" #: src/view/shell/bottom-bar/BottomBar.tsx:275 #: src/view/shell/desktop/LeftNav.tsx:393 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:542 -#: src/view/shell/Drawer.tsx:543 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:532 +#: src/view/shell/Drawer.tsx:533 msgid "Profile" msgstr "Profiili" @@ -4721,7 +4776,7 @@ msgstr "Profiili" msgid "Profile updated" msgstr "Profiili päivitetty" -#: src/view/screens/Settings/index.tsx:1022 +#: src/view/screens/Settings/index.tsx:1023 msgid "Protect your account by verifying your email." msgstr "Suojaa käyttäjätilisi vahvistamalla sähköpostiosoitteesi." @@ -4737,23 +4792,23 @@ msgstr "Julkinen, jaettava käyttäjäluettelo hiljennettyjen tai estettyjen kä msgid "Public, shareable lists which can drive feeds." msgstr "Julkinen, jaettava lista, joka voi ohjata syötteitä." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish post" msgstr "Julkaise viesti" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish reply" msgstr "Julkaise vastaus" -#: src/components/StarterPack/QrCodeDialog.tsx:125 +#: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:103 +#: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:104 +#: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "" @@ -4778,7 +4833,7 @@ msgstr "Lainaa viestiä" #~ msgid "Quote Post" #~ msgstr "Lainaa viestiä" -#: src/view/screens/PreferencesThreads.tsx:86 +#: src/view/screens/PreferencesThreads.tsx:80 msgid "Random (aka \"Poster's Roulette\")" msgstr "Satunnainen (tunnetaan myös nimellä \"Lähettäjän ruletti\")" @@ -4814,19 +4869,23 @@ msgstr "Viimeaikaiset haut" msgid "Reconnect" msgstr "" +#: src/view/screens/Notifications.tsx:146 +msgid "Refresh notifications" +msgstr "" + #: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 #: src/components/FeedCard.tsx:309 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:212 +#: src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "Poista" @@ -4838,7 +4897,7 @@ msgstr "" msgid "Remove account" msgstr "Poista käyttäjätili" -#: src/view/com/util/UserAvatar.tsx:384 +#: src/view/com/util/UserAvatar.tsx:396 msgid "Remove Avatar" msgstr "Poista avatar" @@ -4850,20 +4909,20 @@ msgstr "Poista banneri" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:168 -#: src/view/com/posts/FeedShutdownMsg.tsx:113 -#: src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:115 +#: src/view/com/posts/FeedShutdownMsg.tsx:119 msgid "Remove feed" msgstr "Poista syöte" -#: src/view/com/posts/FeedErrorMessage.tsx:209 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" msgstr "Poista syöte?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Poista syötteistäni" @@ -4877,7 +4936,7 @@ msgstr "Poista syötteistäni?" msgid "Remove image" msgstr "Poista kuva" -#: src/view/com/composer/ExternalEmbed.tsx:87 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 msgid "Remove image preview" msgstr "Poista kuvan esikatselu" @@ -4902,11 +4961,11 @@ msgstr "" msgid "Remove repost" msgstr "Poista uudelleenjulkaisu" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "Poista tämä syöte seurannasta" -#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "Poistettu listalta" @@ -4922,15 +4981,19 @@ msgid "Removed from your feeds" msgstr "Poistettu syötteistäsi" #: src/view/com/composer/ExternalEmbed.tsx:88 -msgid "Removes default thumbnail from {0}" -msgstr "Poistaa {0} oletuskuvakkeen" +#~ msgid "Removes default thumbnail from {0}" +#~ msgstr "Poistaa {0} oletuskuvakkeen" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" msgstr "" -#: src/view/com/posts/FeedShutdownMsg.tsx:126 -#: src/view/com/posts/FeedShutdownMsg.tsx:130 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the image preview" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:128 +#: src/view/com/posts/FeedShutdownMsg.tsx:132 msgid "Replace with Discover" msgstr "" @@ -4946,30 +5009,36 @@ msgstr "" #~ msgid "Replies on this thread are disabled" #~ msgstr "" -#: src/components/WhoCanReply.tsx:242 +#: src/components/WhoCanReply.tsx:243 msgid "Replies to this thread are disabled" msgstr "Tähän keskusteluun vastaaminen on estetty" -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:507 msgctxt "action" msgid "Reply" msgstr "Vastaa" -#: src/view/screens/PreferencesFollowingFeed.tsx:143 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 msgid "Reply Filters" msgstr "Vastaussuodattimet" -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:439 +#: src/view/com/post/Post.tsx:197 +#: src/view/com/posts/FeedItem.tsx:458 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Vastaa käyttäjälle <0><1/>" -#: src/view/com/posts/FeedItem.tsx:437 +#: src/view/com/posts/FeedItem.tsx:456 msgctxt "description" msgid "Reply to a blocked post" msgstr "" +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:454 +msgctxt "description" +msgid "Reply to you" +msgstr "" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -4996,8 +5065,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/view/screens/ProfileFeed.tsx:349 -#: src/view/screens/ProfileFeed.tsx:351 +#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:352 msgid "Report feed" msgstr "Ilmianna syöte" @@ -5009,8 +5078,8 @@ msgstr "Ilmianna luettelo" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:407 +#: src/view/com/util/forms/PostDropdownBtn.tsx:409 msgid "Report post" msgstr "Ilmianna viesti" @@ -5072,15 +5141,20 @@ msgstr "Uudelleenjulkaise tai lainaa viestiä" msgid "Reposted By" msgstr "Uudelleenjulkaissut" -#: src/view/com/posts/FeedItem.tsx:254 +#: src/view/com/posts/FeedItem.tsx:263 msgid "Reposted by {0}" msgstr "{0} uudelleenjulkaisi" -#: src/view/com/posts/FeedItem.tsx:269 +#: src/view/com/posts/FeedItem.tsx:282 msgid "Reposted by <0><1/>" msgstr "Uudelleenjulkaissut <0><1/>" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/posts/FeedItem.tsx:261 +#: src/view/com/posts/FeedItem.tsx:280 +msgid "Reposted by you" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:188 msgid "reposted your post" msgstr "uudelleenjulkaisi viestisi" @@ -5123,8 +5197,8 @@ msgstr "Nollauskoodi" msgid "Reset Code" msgstr "Nollauskoodi" -#: src/view/screens/Settings/index.tsx:901 -#: src/view/screens/Settings/index.tsx:904 +#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:905 msgid "Reset onboarding state" msgstr "Nollaa käyttöönoton tila" @@ -5132,16 +5206,16 @@ msgstr "Nollaa käyttöönoton tila" msgid "Reset password" msgstr "Nollaa salasana" -#: src/view/screens/Settings/index.tsx:881 -#: src/view/screens/Settings/index.tsx:884 +#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:885 msgid "Reset preferences state" msgstr "Nollaa asetusten tila" -#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:903 msgid "Resets the onboarding state" msgstr "Nollaa käyttöönoton tilan" -#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:883 msgid "Resets the preferences state" msgstr "Nollaa asetusten tilan" @@ -5154,7 +5228,7 @@ msgstr "Yrittää uudelleen kirjautumista" msgid "Retries the last action, which errored out" msgstr "Yrittää uudelleen viimeisintä toimintoa, joka epäonnistui" -#: src/components/dms/MessageItem.tsx:241 +#: src/components/dms/MessageItem.tsx:235 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 @@ -5190,7 +5264,7 @@ msgstr "Palaa edelliselle sivulle" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/dialogs/ThreadgateEditor.tsx:88 -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:187 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5199,7 +5273,7 @@ msgstr "Palaa edelliselle sivulle" msgid "Save" msgstr "Tallenna" -#: src/view/com/lightbox/Lightbox.tsx:135 +#: src/view/com/lightbox/Lightbox.tsx:139 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5221,8 +5295,8 @@ msgstr "Tallenna muutokset" msgid "Save handle change" msgstr "Tallenna käyttäjätunnuksen muutos" -#: src/components/StarterPack/ShareDialog.tsx:150 -#: src/components/StarterPack/ShareDialog.tsx:157 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "" @@ -5230,12 +5304,12 @@ msgstr "" msgid "Save image crop" msgstr "Tallenna kuvan rajaus" -#: src/components/StarterPack/QrCodeDialog.tsx:178 +#: src/components/StarterPack/QrCodeDialog.tsx:181 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 +#: src/view/screens/ProfileFeed.tsx:334 +#: src/view/screens/ProfileFeed.tsx:340 msgid "Save to my feeds" msgstr "Tallenna syötteisiini" @@ -5243,7 +5317,7 @@ msgstr "Tallenna syötteisiini" msgid "Saved Feeds" msgstr "Tallennetut syötteet" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:88 msgid "Saved to your camera roll" msgstr "" @@ -5270,8 +5344,8 @@ msgstr "Tallentaa kuvan rajausasetukset" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:383 -#: src/view/com/notifications/FeedItem.tsx:408 +#: src/view/com/notifications/FeedItem.tsx:386 +#: src/view/com/notifications/FeedItem.tsx:411 msgid "Say hello!" msgstr "" @@ -5285,9 +5359,9 @@ msgid "Scroll to top" msgstr "Vieritä alkuun" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:524 +#: src/Navigation.tsx:537 #: src/view/com/auth/LoggedOut.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 @@ -5295,14 +5369,14 @@ msgstr "Vieritä alkuun" #: src/view/screens/Search/Search.tsx:813 #: src/view/shell/bottom-bar/BottomBar.tsx:182 #: src/view/shell/desktop/LeftNav.tsx:354 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:394 -#: src/view/shell/Drawer.tsx:395 +#: src/view/shell/desktop/Search.tsx:195 +#: src/view/shell/desktop/Search.tsx:204 +#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:385 msgid "Search" msgstr "Haku" -#: src/view/shell/desktop/Search.tsx:235 +#: src/view/shell/desktop/Search.tsx:236 msgid "Search for \"{query}\"" msgstr "Haku hakusanalla \"{query}\"" @@ -5328,7 +5402,7 @@ msgstr "" #: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/auth/LoggedOut.tsx:107 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "Hae käyttäjiä" @@ -5428,7 +5502,7 @@ msgstr "Valitse vaihtoehto {i} / {numItems}" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:135 +#: src/components/ReportDialog/SubmitView.tsx:152 msgid "Select the moderation service(s) to report to" msgstr "" @@ -5440,6 +5514,10 @@ msgstr "Valitse palvelu, joka hostaa tietojasi." #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "Valitse ajankohtaisia syötteitä alla olevasta listasta" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:53 +msgid "Select video" +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:63 #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "Valitse, mitä haluat nähdä (tai olla näkemättä) ja me huolehdimme lopusta." @@ -5490,8 +5568,7 @@ msgctxt "action" msgid "Send Email" msgstr "Lähetä sähköposti" -#: src/view/shell/Drawer.tsx:329 -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:325 msgid "Send feedback" msgstr "Lähetä palautetta" @@ -5500,14 +5577,14 @@ msgstr "Lähetä palautetta" msgid "Send message" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 msgid "Send post to..." msgstr "" #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:215 -#: src/components/ReportDialog/SubmitView.tsx:219 +#: src/components/ReportDialog/SubmitView.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:236 msgid "Send report" msgstr "Lähetä raportti" @@ -5520,8 +5597,8 @@ msgstr "" msgid "Send verification email" msgstr "Lähetä vahvistussähköposti" -#: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 +#: src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" msgstr "" @@ -5541,23 +5618,23 @@ msgstr "Aseta syntymäaika" msgid "Set new password" msgstr "Aseta uusi salasana" -#: src/view/screens/PreferencesFollowingFeed.tsx:224 +#: src/view/screens/PreferencesFollowingFeed.tsx:223 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Aseta tämä asetus \"Ei\"-tilaan piilottaaksesi kaikki lainaukset syötteestäsi. Uudelleenjulkaisut näkyvät silti." -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:120 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Aseta tämä asetus \"Ei\"-tilaan piilottaaksesi kaikki vastaukset syötteestäsi." -#: src/view/screens/PreferencesFollowingFeed.tsx:190 +#: src/view/screens/PreferencesFollowingFeed.tsx:189 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Aseta tämä asetus \"Ei\"-tilaan piilottaaksesi kaikki uudelleenjulkaisut syötteestäsi." -#: src/view/screens/PreferencesThreads.tsx:122 +#: src/view/screens/PreferencesThreads.tsx:116 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Aseta tämä asetus \"Kyllä\" tilaan näyttääksesi vastaukset ketjumaisessa näkymässä. Tämä on kokeellinen ominaisuus." -#: src/view/screens/PreferencesFollowingFeed.tsx:260 +#: src/view/screens/PreferencesFollowingFeed.tsx:259 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Aseta tämä asetus \"Kyllä\"-tilaan nähdäksesi esimerkkejä tallennetuista syötteistäsi seuraamissasi syötteessäsi. Tämä on kokeellinen ominaisuus." @@ -5569,23 +5646,23 @@ msgstr "Luo käyttäjätili" msgid "Sets Bluesky username" msgstr "Asettaa Bluesky-käyttäjätunnuksen" -#: src/view/screens/Settings/index.tsx:462 +#: src/view/screens/Settings/index.tsx:463 msgid "Sets color theme to dark" msgstr "Muuttaa väriteeman tummaksi" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Sets color theme to light" msgstr "Muuttaa väriteeman vaaleaksi" -#: src/view/screens/Settings/index.tsx:449 +#: src/view/screens/Settings/index.tsx:450 msgid "Sets color theme to system setting" msgstr "Muuttaa väriteeman käyttöjärjestelmän mukaiseksi" -#: src/view/screens/Settings/index.tsx:488 +#: src/view/screens/Settings/index.tsx:489 msgid "Sets dark theme to the dark theme" msgstr "Muuttaa tumman väriteeman tummaksi" -#: src/view/screens/Settings/index.tsx:481 +#: src/view/screens/Settings/index.tsx:482 msgid "Sets dark theme to the dim theme" msgstr "Asettaa tumman teeman himmeäksi teemaksi" @@ -5605,11 +5682,11 @@ msgstr "Asettaa kuvan kuvasuhteen korkeaksi" msgid "Sets image aspect ratio to wide" msgstr "Asettaa kuvan kuvasuhteen leveäksi" -#: src/Navigation.tsx:150 -#: src/view/screens/Settings/index.tsx:333 +#: src/Navigation.tsx:153 +#: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:559 -#: src/view/shell/Drawer.tsx:560 +#: src/view/shell/Drawer.tsx:549 +#: src/view/shell/Drawer.tsx:550 msgid "Settings" msgstr "Asetukset" @@ -5621,19 +5698,19 @@ msgstr "Erotiikka tai muu aikuisviihde." msgid "Sexually Suggestive" msgstr "Seksuaalisesti vihjaileva" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:177 #: src/screens/StarterPack/StarterPackScreen.tsx:400 #: src/screens/StarterPack/StarterPackScreen.tsx:571 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 #: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Jaa" -#: src/view/com/lightbox/Lightbox.tsx:144 +#: src/view/com/lightbox/Lightbox.tsx:148 msgctxt "action" msgid "Share" msgstr "Jaa" @@ -5647,18 +5724,18 @@ msgid "Share a fun fact!" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:464 #: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "Jaa kuitenkin" -#: src/view/screens/ProfileFeed.tsx:359 -#: src/view/screens/ProfileFeed.tsx:361 +#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:362 msgid "Share feed" msgstr "Jaa syöte" -#: src/components/StarterPack/ShareDialog.tsx:123 -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 #: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -5668,12 +5745,12 @@ msgstr "" msgid "Share Link" msgstr "Jaa linkki" -#: src/components/StarterPack/ShareDialog.tsx:87 +#: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:134 -#: src/components/StarterPack/ShareDialog.tsx:145 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "" @@ -5681,7 +5758,7 @@ msgstr "" msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:99 +#: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5689,6 +5766,10 @@ msgstr "" msgid "Share your favorite feed!" msgstr "" +#: src/Navigation.tsx:242 +msgid "Shared Preferences Tester" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" msgstr "Jakaa linkitetyn verkkosivun" @@ -5696,7 +5777,7 @@ msgstr "Jakaa linkitetyn verkkosivun" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:382 +#: src/view/screens/Settings/index.tsx:383 msgid "Show" msgstr "Näytä" @@ -5704,7 +5785,7 @@ msgstr "Näytä" #~ msgid "Show all replies" #~ msgstr "Näytä kaikki vastaukset" -#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +#: src/view/com/util/post-embeds/GifEmbed.tsx:175 msgid "Show alt text" msgstr "" @@ -5730,19 +5811,19 @@ msgstr "Näytä seurannat samankaltaisilta käyttäjiltä kuin {0}" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#: src/view/com/util/forms/PostDropdownBtn.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:349 +#: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" msgstr "" #: src/view/com/post-thread/PostThreadItem.tsx:530 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:396 +#: src/view/com/post/Post.tsx:235 +#: src/view/com/posts/FeedItem.tsx:410 msgid "Show More" msgstr "Näytä lisää" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 -#: src/view/com/util/forms/PostDropdownBtn.tsx:340 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:343 msgid "Show more like this" msgstr "" @@ -5750,11 +5831,11 @@ msgstr "" msgid "Show muted replies" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:257 +#: src/view/screens/PreferencesFollowingFeed.tsx:256 msgid "Show Posts from My Feeds" msgstr "Näytä viestit omista syötteistäni" -#: src/view/screens/PreferencesFollowingFeed.tsx:221 +#: src/view/screens/PreferencesFollowingFeed.tsx:220 msgid "Show Quote Posts" msgstr "Näytä lainatut viestit" @@ -5770,11 +5851,11 @@ msgstr "Näytä lainatut viestit" #~ msgid "Show re-posts in Following feed" #~ msgstr "Näytä uudelleenjulkaistut viestit seurattavissa" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:117 msgid "Show Replies" msgstr "Näytä vastaukset" -#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:94 msgid "Show replies by people you follow before all other replies." msgstr "Näytä seurattujen henkilöiden vastaukset ennen muita vastauksia." @@ -5790,7 +5871,7 @@ msgstr "Näytä seurattujen henkilöiden vastaukset ennen muita vastauksia." #~ msgid "Show replies with at least {value} {0}" #~ msgstr "Näytä vastaukset, joissa on vähintään {value} {0}" -#: src/view/screens/PreferencesFollowingFeed.tsx:187 +#: src/view/screens/PreferencesFollowingFeed.tsx:186 msgid "Show Reposts" msgstr "Näytä uudelleenjulkaisut" @@ -5856,8 +5937,8 @@ msgstr "Kirjaudu sisään tai luo tili osallistuaksesi keskusteluun!" msgid "Sign into Bluesky or create a new account" msgstr "Kirjaudu Blueskyhin tai luo uusi käyttäjätili" -#: src/view/screens/Settings/index.tsx:129 -#: src/view/screens/Settings/index.tsx:133 +#: src/view/screens/Settings/index.tsx:130 +#: src/view/screens/Settings/index.tsx:134 msgid "Sign out" msgstr "Kirjaudu ulos" @@ -5882,7 +5963,7 @@ msgstr "Rekisteröidy tai kirjaudu sisään liittyäksesi keskusteluun" msgid "Sign-in Required" msgstr "Sisäänkirjautuminen vaaditaan" -#: src/view/screens/Settings/index.tsx:392 +#: src/view/screens/Settings/index.tsx:393 msgid "Signed in as" msgstr "Kirjautunut sisään nimellä" @@ -5891,12 +5972,12 @@ msgstr "Kirjautunut sisään nimellä" msgid "Signed in as @{0}" msgstr "Kirjautunut sisään käyttäjätunnuksella @{0}" -#: src/view/com/notifications/FeedItem.tsx:208 +#: src/view/com/notifications/FeedItem.tsx:209 msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 msgid "Signup without a starter pack" msgstr "" @@ -5914,7 +5995,7 @@ msgstr "Ohita tämä vaihe" msgid "Software Dev" msgstr "Ohjelmistokehitys" -#: src/components/FeedInterstitials.tsx:378 +#: src/components/FeedInterstitials.tsx:382 msgid "Some other feeds you might like" msgstr "" @@ -5942,16 +6023,21 @@ msgstr "" msgid "Something went wrong, please try again." msgstr "Jotain meni pieleen, yritä uudelleen" -#: src/App.native.tsx:98 -#: src/App.web.tsx:80 +#: src/components/Lists.tsx:192 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "" + +#: src/App.native.tsx:99 +#: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "Pahoittelut! Istuntosi on vanhentunut. Kirjaudu sisään uudelleen." -#: src/view/screens/PreferencesThreads.tsx:69 +#: src/view/screens/PreferencesThreads.tsx:63 msgid "Sort Replies" msgstr "Lajittele vastaukset" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:66 msgid "Sort replies to the same post by:" msgstr "Lajittele saman viestin vastaukset seuraavasti:" @@ -5959,7 +6045,7 @@ msgstr "Lajittele saman viestin vastaukset seuraavasti:" #~ msgid "Source:" #~ msgstr "Lähde:" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" msgstr "" @@ -5981,7 +6067,7 @@ msgstr "Urheilu" msgid "Square" msgstr "Neliö" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:63 msgid "Start a new chat" msgstr "" @@ -5998,8 +6084,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:328 -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:341 +#: src/Navigation.tsx:346 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -6024,7 +6110,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Tilasivu" -#: src/view/screens/Settings/index.tsx:964 +#: src/view/screens/Settings/index.tsx:965 msgid "Status Page" msgstr "" @@ -6036,17 +6122,17 @@ msgstr "" msgid "Step {0} of {1}" msgstr "" -#: src/view/screens/Settings/index.tsx:305 +#: src/view/screens/Settings/index.tsx:306 msgid "Storage cleared, you need to restart the app now." msgstr "Tallennustila tyhjennetty, sinun on käynnistettävä sovellus uudelleen." -#: src/Navigation.tsx:229 -#: src/view/screens/Settings/index.tsx:864 +#: src/Navigation.tsx:232 +#: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:290 -#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/components/moderation/LabelsOnMeDialog.tsx:311 +#: src/components/moderation/LabelsOnMeDialog.tsx:312 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -6069,7 +6155,7 @@ msgstr "" #~ msgid "Subscribe to the {0} feed" #~ msgstr "Tilaa {0}-syöte" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 msgid "Subscribe to this labeler" msgstr "" @@ -6077,7 +6163,7 @@ msgstr "" msgid "Subscribe to this list" msgstr "Tilaa tämä lista" -#: src/view/screens/Search/Explore.tsx:331 +#: src/view/screens/Search/Explore.tsx:333 msgid "Suggested accounts" msgstr "" @@ -6085,7 +6171,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "Mahdollisia seurattavia" -#: src/components/FeedInterstitials.tsx:246 +#: src/components/FeedInterstitials.tsx:250 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Suositeltua sinulle" @@ -6094,7 +6180,7 @@ msgstr "Suositeltua sinulle" msgid "Suggestive" msgstr "Viittaava" -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:252 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6109,19 +6195,19 @@ msgstr "Vaihda käyttäjätiliä" msgid "Switch between feeds to control your experience." msgstr "" -#: src/view/screens/Settings/index.tsx:160 +#: src/view/screens/Settings/index.tsx:161 msgid "Switch to {0}" msgstr "Vaihda käyttäjään {0}" -#: src/view/screens/Settings/index.tsx:161 +#: src/view/screens/Settings/index.tsx:162 msgid "Switches the account you are logged in to" msgstr "Vaihtaa sisäänkirjautuneen käyttäjän tilin" -#: src/view/screens/Settings/index.tsx:446 +#: src/view/screens/Settings/index.tsx:447 msgid "System" msgstr "Järjestelmä" -#: src/view/screens/Settings/index.tsx:852 +#: src/view/screens/Settings/index.tsx:853 msgid "System log" msgstr "Järjestelmäloki" @@ -6170,11 +6256,11 @@ msgstr "" msgid "Terms" msgstr "Ehdot" -#: src/Navigation.tsx:254 +#: src/Navigation.tsx:262 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:952 +#: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:279 +#: src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "Käyttöehdot" @@ -6189,13 +6275,13 @@ msgstr "" msgid "text" msgstr "teksti" -#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/components/moderation/LabelsOnMeDialog.tsx:275 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Tekstikenttä" #: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:93 msgid "Thank you. Your report has been sent." msgstr "Kiitos. Raporttisi on lähetetty." @@ -6238,19 +6324,19 @@ msgstr "Tekijänoikeuskäytäntö on siirretty kohtaan <0/>" msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322 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:66 +#: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:65 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your account." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:67 msgid "The following labels were applied to your content." msgstr "" @@ -6287,8 +6373,8 @@ msgstr "Käyttöehdot on siirretty kohtaan" msgid "There is no time limit for account deactivation, come back any time." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 -#: src/view/screens/ProfileFeed.tsx:544 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 +#: src/view/screens/ProfileFeed.tsx:545 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Emme saaneet yhteyttä palvelimeen, tarkista internetyhteytesi ja yritä uudelleen." @@ -6297,7 +6383,7 @@ msgid "There was an an issue removing this feed. Please check your internet conn msgstr "Syötteen poistossa on ongelmia. Tarkista internetyhteytesi ja yritä uudelleen." #: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Syötteiden päivittämisessä on ongelmia, tarkista internetyhteytesi ja yritä uudelleen." @@ -6311,7 +6397,7 @@ msgstr "Yhteyden muodostamisessa Tenoriin ilmeni ongelma." #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:234 +#: src/view/screens/ProfileFeed.tsx:235 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6325,7 +6411,7 @@ msgstr "Yhteydenotto palvelimeen epäonnistui" msgid "There was an issue contacting your server" msgstr "Yhteydenotto palvelimeen epäonnistui" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ongelma ilmoitusten hakemisessa. Napauta tästä yrittääksesi uudelleen." @@ -6343,7 +6429,7 @@ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Ongelma listojesi hakemisessa. Napauta tästä yrittääksesi uudelleen." #: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:82 +#: src/components/ReportDialog/SubmitView.tsx:98 msgid "There was an issue sending your report. Please check your internet connection." msgstr "Raportin lähettämisessä ilmeni ongelma. Tarkista internet-yhteytesi." @@ -6403,7 +6489,7 @@ msgstr "Tämä käyttäjätili on pyytänyt, että käyttät kirjautuvat sisää 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/moderation/LabelsOnMeDialog.tsx:239 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 msgid "This appeal will be sent to <0>{0}." msgstr "" @@ -6463,12 +6549,12 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Tämä syöte on tyhjä! Sinun on ehkä seurattava useampia käyttäjiä tai säädettävä kieliasetuksiasi." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:473 +#: src/view/screens/ProfileFeed.tsx:474 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" -#: src/view/com/posts/FeedShutdownMsg.tsx:97 +#: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" @@ -6496,7 +6582,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:166 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." msgstr "" @@ -6524,12 +6610,12 @@ msgstr "Tämä nimi on jo käytössä" msgid "This post has been deleted." msgstr "Tämä viesti on poistettu." -#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 #: src/view/com/util/post-ctrls/PostCtrls.tsx:324 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Tämä julkaisu on näkyvissä vain kirjautuneille käyttäjille. Sitä ei näytetä kirjautumattomille henkilöille." -#: src/view/com/util/forms/PostDropdownBtn.tsx:440 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "This post will be hidden from feeds." msgstr "Tämä julkaisu piilotetaan syötteistä." @@ -6586,12 +6672,12 @@ msgstr "Tämä käyttäjä ei seuraa ketään." msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "Tämä poistaa {0}:n hiljennetyistä sanoistasi. Voit lisätä sen takaisin myöhemmin." -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Thread preferences" msgstr "Keskusteluketjun asetukset" -#: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/PreferencesThreads.tsx:51 +#: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "Keskusteluketjun asetukset" @@ -6599,11 +6685,11 @@ msgstr "Keskusteluketjun asetukset" msgid "Thread settings updated" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:119 +#: src/view/screens/PreferencesThreads.tsx:113 msgid "Threaded Mode" msgstr "Ketjumainen näkymä" -#: src/Navigation.tsx:287 +#: src/Navigation.tsx:295 msgid "Threads Preferences" msgstr "Keskusteluketjujen asetukset" @@ -6644,8 +6730,8 @@ msgstr "Muutokset" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:676 #: src/view/com/post-thread/PostThreadItem.tsx:678 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 -#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "Käännä" @@ -6658,7 +6744,7 @@ msgstr "Yritä uudelleen" msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:746 +#: src/view/screens/Settings/index.tsx:747 msgid "Two-factor authentication" msgstr "Kaksivaiheinen tunnistautuminen" @@ -6750,7 +6836,7 @@ msgstr "Lopeta käyttäjätilin seuraaminen" #~ msgid "Unlike" #~ msgstr "En tykkää" -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Unlike this feed" msgstr "Poista tykkäys tästä syötteestä" @@ -6780,17 +6866,17 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:367 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Unmute thread" msgstr "Poista keskusteluketjun hiljennys" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Poista kiinnitys" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 msgid "Unpin from home" msgstr "Poista kiinnitys etusivulta" @@ -6806,7 +6892,7 @@ msgstr "" msgid "Unsubscribe" msgstr "Peruuta tilaus" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Unsubscribe from this labeler" msgstr "" @@ -6839,20 +6925,20 @@ msgstr "" msgid "Upload a text file to:" msgstr "Lataa tekstitiedosto kohteeseen:" -#: src/view/com/util/UserAvatar.tsx:352 -#: src/view/com/util/UserAvatar.tsx:355 +#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Lataa kamerasta" -#: src/view/com/util/UserAvatar.tsx:369 +#: src/view/com/util/UserAvatar.tsx:381 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Lataa tiedostoista" -#: src/view/com/util/UserAvatar.tsx:363 -#: src/view/com/util/UserAvatar.tsx:367 +#: src/view/com/util/UserAvatar.tsx:375 +#: src/view/com/util/UserAvatar.tsx:379 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -6892,7 +6978,7 @@ msgstr "" msgid "Use the DNS panel" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:205 +#: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." msgstr "Käytä tätä kirjautuaksesi toiseen sovellukseen käyttäjätunnuksellasi." @@ -6960,7 +7046,7 @@ msgstr "Käyttäjätunnus tai sähköpostiosoite" msgid "Users" msgstr "Käyttäjät" -#: src/components/WhoCanReply.tsx:279 +#: src/components/WhoCanReply.tsx:280 msgid "users followed by <0/>" msgstr "käyttäjät, joita <0/> seuraa" @@ -6991,15 +7077,15 @@ msgstr "Arvo:" msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:983 +#: src/view/screens/Settings/index.tsx:984 msgid "Verify email" msgstr "Varmista sähköposti" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Verify my email" msgstr "Vahvista sähköpostini" -#: src/view/screens/Settings/index.tsx:1017 +#: src/view/screens/Settings/index.tsx:1018 msgid "Verify My Email" msgstr "Vahvista sähköpostini" @@ -7020,7 +7106,7 @@ msgstr "Vahvista sähköpostisi" #~ msgid "Version {0}" #~ msgstr "Versio {0}" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Version {appVersion} {bundleInfo}" msgstr "" @@ -7029,11 +7115,15 @@ msgstr "" msgid "Video Games" msgstr "Videopelit" +#: src/view/com/composer/videos/state.ts:27 +msgid "Videos cannot be larger than 100MB" +msgstr "" + #: src/screens/Profile/Header/Shell.tsx:113 msgid "View {0}'s avatar" msgstr "Katso {0}:n avatar" -#: src/view/com/notifications/FeedItem.tsx:245 +#: src/view/com/notifications/FeedItem.tsx:246 msgid "View {0}'s profile" msgstr "" @@ -7065,7 +7155,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:436 #: src/components/ProfileHoverCard/index.web.tsx:463 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "Katso profiilia" @@ -7077,7 +7167,7 @@ msgstr "Katso avatar" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/view/screens/ProfileFeed.tsx:585 +#: src/view/screens/ProfileFeed.tsx:587 msgid "View users who like this feed" msgstr "Katso, kuka tykkää tästä syötteestä" @@ -7173,7 +7263,7 @@ msgstr "Pahoittelemme, emme pystyneet lataamaan hiljennettyjä sanojasi tällä msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Pahoittelemme, hakuasi ei voitu suorittaa loppuun. Yritä uudelleen muutaman minuutin kuluttua." -#: src/view/com/composer/Composer.tsx:335 +#: src/view/com/composer/Composer.tsx:347 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -7186,7 +7276,7 @@ msgstr "Pahoittelut! Emme löydä etsimääsi sivua." #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "" @@ -7212,7 +7302,7 @@ msgstr "" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:376 +#: src/view/com/composer/Composer.tsx:388 msgid "What's up?" msgstr "Mitä kuuluu?" @@ -7229,15 +7319,15 @@ msgstr "Mitä kieliä haluaisit nähdä algoritmisissä syötteissä?" msgid "Who can message you?" msgstr "" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Who can reply" msgstr "Kuka voi vastata" -#: src/components/WhoCanReply.tsx:211 +#: src/components/WhoCanReply.tsx:212 msgid "Who can reply dialog" msgstr "" -#: src/components/WhoCanReply.tsx:215 +#: src/components/WhoCanReply.tsx:216 msgid "Who can reply?" msgstr "" @@ -7283,11 +7373,11 @@ msgstr "Leveä" msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:580 msgid "Write post" msgstr "Kirjoita viesti" -#: src/view/com/composer/Composer.tsx:375 +#: src/view/com/composer/Composer.tsx:387 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Kirjoita vastauksesi" @@ -7298,12 +7388,12 @@ msgid "Writers" msgstr "Kirjoittajat" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:200 -#: src/view/screens/PreferencesFollowingFeed.tsx:235 -#: src/view/screens/PreferencesFollowingFeed.tsx:270 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:199 +#: src/view/screens/PreferencesFollowingFeed.tsx:234 +#: src/view/screens/PreferencesFollowingFeed.tsx:269 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "Yes" msgstr "Kyllä" @@ -7320,7 +7410,7 @@ msgstr "" msgid "Yes, reactivate my account" msgstr "" -#: src/components/dms/MessageItem.tsx:188 +#: src/components/dms/MessageItem.tsx:182 msgid "Yesterday, {time}" msgstr "" @@ -7473,19 +7563,19 @@ msgstr "" msgid "You haven't muted any words or tags yet" msgstr "Et ole vielä hiljentänyt yhtään sanaa tai aihetunnistetta" -#: src/components/moderation/LabelsOnMeDialog.tsx:86 +#: src/components/moderation/LabelsOnMeDialog.tsx:87 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:92 msgid "You may appeal these labels if you feel they were placed in error." msgstr "Voit valittaa näistä merkinnöistä, jos ne ovat mielestäsi virheellisiä." -#: src/screens/StarterPack/Wizard/State.tsx:92 +#: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 50 feeds" msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:77 +#: src/screens/StarterPack/Wizard/State.tsx:78 msgid "You may only add up to 50 profiles" msgstr "" @@ -7509,7 +7599,7 @@ msgstr "" msgid "You must grant access to your photo library to save the image." msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:205 +#: src/components/ReportDialog/SubmitView.tsx:222 msgid "You must select at least one labeler for a report" msgstr "" @@ -7549,15 +7639,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272 msgid "You'll stay updated with these feeds" msgstr "" @@ -7656,7 +7746,7 @@ msgstr "Hiljentämäsi sanat" msgid "Your password has been changed successfully!" msgstr "Salasanasi on vaihdettu onnistuneesti!" -#: src/view/com/composer/Composer.tsx:366 +#: src/view/com/composer/Composer.tsx:378 msgid "Your post has been published" msgstr "Viestisi on julkaistu" @@ -7664,7 +7754,7 @@ msgstr "Viestisi on julkaistu" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Julkaisusi, tykkäyksesi ja estosi ovat julkisia. Hiljennykset ovat yksityisiä." -#: src/view/screens/Settings/index.tsx:148 +#: src/view/screens/Settings/index.tsx:149 msgid "Your profile" msgstr "Profiilisi" @@ -7672,7 +7762,7 @@ msgstr "Profiilisi" 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:365 +#: src/view/com/composer/Composer.tsx:377 msgid "Your reply has been published" msgstr "Vastauksesi on julkaistu" diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index 1c232407ec..c8714c5719 100644 --- a/src/locale/locales/fr/messages.po +++ b/src/locale/locales/fr/messages.po @@ -21,7 +21,7 @@ msgstr "(contient du contenu intégré)" msgid "(no email)" msgstr "(pas d’e-mail)" -#: src/view/com/notifications/FeedItem.tsx:294 +#: src/view/com/notifications/FeedItem.tsx:297 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {{formattedCount} autre} other {{formattedCount} autres}}" @@ -76,7 +76,7 @@ msgstr "{0, plural, one {repost} other {reposts}}" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {Déliker (# like)} other {Déliker (# likes)}}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} personnes se sont inscrites cette semaine" @@ -84,7 +84,7 @@ msgstr "{0} personnes se sont inscrites cette semaine" msgid "{0} people have used this starter pack!" msgstr "{0} personnes ont utilisé ce kit de démarrage !" -#: src/view/com/util/UserAvatar.tsx:419 +#: src/view/com/util/UserAvatar.tsx:431 msgid "{0}'s avatar" msgstr "Avatar de {0}" @@ -132,7 +132,7 @@ msgstr "{estimatedTimeHrs, plural, one {heure} other {heures}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minute} other {minutes}}" -#: src/components/ProfileHoverCard/index.web.tsx:504 +#: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} abonnements" @@ -143,11 +143,11 @@ msgstr "{handle} ne peut être contacté par message" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:588 +#: src/view/screens/ProfileFeed.tsx:590 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {Liké par # compte} other {Liké par # comptes}}" -#: src/view/shell/Drawer.tsx:462 +#: src/view/shell/Drawer.tsx:452 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} non lus" @@ -163,7 +163,7 @@ msgstr "{profileName} a rejoint Bluesky en utilisant un kit de démarrage il y a msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "{value, plural, =0 {Voir toutes les réponses} one {Voir les réponses avec au moins # like} other {Voir les réponses avec au moins # likes}}" -#: src/components/WhoCanReply.tsx:295 +#: src/components/WhoCanReply.tsx:296 msgid "<0/> members" msgstr "<0/> membres" @@ -177,11 +177,11 @@ msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} et {2, plural, one {# autre} other {# autres}} sont inclus dans votre kit de démarrage" -#: src/view/shell/Drawer.tsx:101 +#: src/view/shell/Drawer.tsx:100 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {abonné·e} other {abonné·e·s}}" -#: src/view/shell/Drawer.tsx:112 +#: src/view/shell/Drawer.tsx:111 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {abonnement} other {abonnements}}" @@ -223,22 +223,22 @@ msgid "Access profile and other navigation links" msgstr "Accède au profil et aux autres liens de navigation" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:519 +#: src/view/screens/Settings/index.tsx:520 msgid "Accessibility" msgstr "Accessibilité" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Accessibility settings" msgstr "Paramètres d’accessibilité" -#: src/Navigation.tsx:301 +#: src/Navigation.tsx:309 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "Paramètres d’accessibilité" #: src/screens/Login/LoginForm.tsx:190 -#: src/view/screens/Settings/index.tsx:346 -#: src/view/screens/Settings/index.tsx:753 +#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:754 msgid "Account" msgstr "Compte" @@ -285,7 +285,7 @@ msgid "Account unmuted" msgstr "Compte démasqué" #: src/components/dialogs/MutedWords.tsx:164 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 msgid "Add" @@ -309,8 +309,8 @@ msgstr "Ajouter un compte à cette liste" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:423 -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:433 msgid "Add account" msgstr "Ajouter un compte" @@ -366,7 +366,7 @@ msgstr "Ajouter aux listes" msgid "Add to my feeds" msgstr "Ajouter à mes fils d’actu" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "Ajouté à la liste" @@ -375,7 +375,7 @@ msgstr "Ajouté à la liste" msgid "Added to my feeds" msgstr "Ajouté à mes fils d’actu" -#: src/view/screens/PreferencesFollowingFeed.tsx:172 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Définissez le nombre de likes qu’une réponse doit avoir pour être affichée dans votre fil d’actu." @@ -393,7 +393,7 @@ msgid "Adult content is disabled." msgstr "Le contenu pour adultes est désactivé." #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:687 +#: src/view/screens/Settings/index.tsx:688 msgid "Advanced" msgstr "Avancé" @@ -409,8 +409,8 @@ msgstr "Tous les comptes ont été suivis !" msgid "All the feeds you've saved, right in one place." msgstr "Tous les fils d’actu que vous avez enregistrés, au même endroit." -#: src/view/com/modals/AddAppPasswords.tsx:187 -#: src/view/com/modals/AddAppPasswords.tsx:194 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "Autoriser l’accès à vos messages privés" @@ -430,7 +430,7 @@ msgstr "Déjà connecté·e en tant que @{0}" #: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "ALT" msgstr "ALT" @@ -440,7 +440,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Texte alt" -#: src/view/com/util/post-embeds/GifEmbed.tsx:180 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Alt Text" msgstr "Texte alt" @@ -465,8 +465,8 @@ msgstr "Une erreur s’est produite" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "Une erreur s’est produite lors de la génération de votre kit de démarrage. Vous voulez réessayer ?" -#: src/components/StarterPack/QrCodeDialog.tsx:70 -#: src/components/StarterPack/ShareDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the QR code!" msgstr "Une erreur s’est produite lors de l’enregistrement du code QR !" @@ -478,10 +478,18 @@ msgstr "Une erreur s’est produite en essayant de suivre tous les comptes" 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:36 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +msgid "An issue occurred while trying to open the chat" +msgstr "" + #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:309 -#: src/components/ProfileCard.tsx:329 +#: src/components/ProfileCard.tsx:311 +#: src/components/ProfileCard.tsx:331 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -493,8 +501,8 @@ msgstr "Un problème est survenu, veuillez réessayer." msgid "an unknown error occurred" msgstr "une erreur inconnue s’est produite" -#: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:291 +#: src/components/WhoCanReply.tsx:317 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "et" @@ -503,7 +511,7 @@ msgstr "et" msgid "Animals" msgstr "Animaux" -#: src/view/com/util/post-embeds/GifEmbed.tsx:146 +#: src/view/com/util/post-embeds/GifEmbed.tsx:155 msgid "Animated GIF" msgstr "GIF animé" @@ -527,26 +535,26 @@ msgstr "Les noms de mots de passe d’application ne peuvent contenir que des le msgid "App Password names must be at least 4 characters long." msgstr "Les noms de mots de passe d’application doivent comporter au moins 4 caractères." -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "App password settings" msgstr "Paramètres de mot de passe d’application" -#: src/Navigation.tsx:269 +#: src/Navigation.tsx:277 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:707 +#: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" msgstr "Mots de passe d’application" -#: src/components/moderation/LabelsOnMeDialog.tsx:151 -#: src/components/moderation/LabelsOnMeDialog.tsx:154 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "Faire appel" -#: src/components/moderation/LabelsOnMeDialog.tsx:236 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Appeal \"{0}\" label" msgstr "Faire appel de l’étiquette « {0} »" -#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/components/moderation/LabelsOnMeDialog.tsx:248 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Appel soumis" @@ -558,7 +566,7 @@ msgstr "Appel soumis" msgid "Appeal this decision" msgstr "Faire appel de cette décision" -#: src/view/screens/Settings/index.tsx:440 +#: src/view/screens/Settings/index.tsx:441 msgid "Appearance" msgstr "Affichage" @@ -591,7 +599,7 @@ msgstr "Êtes-vous sûr de vouloir supprimer {0} de vos fils d’actu ?" 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:649 +#: src/view/com/composer/Composer.tsx:680 msgid "Are you sure you'd like to discard this draft?" msgstr "Êtes-vous sûr de vouloir rejeter ce brouillon ?" @@ -617,8 +625,8 @@ msgid "At least 3 characters" msgstr "Au moins 3 caractères" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:281 -#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/components/moderation/LabelsOnMeDialog.tsx:302 +#: src/components/moderation/LabelsOnMeDialog.tsx:303 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -631,13 +639,12 @@ msgstr "Au moins 3 caractères" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Arrière" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Basics" msgstr "Principes de base" @@ -645,7 +652,7 @@ msgstr "Principes de base" msgid "Birthday" msgstr "Date de naissance" -#: src/view/screens/Settings/index.tsx:378 +#: src/view/screens/Settings/index.tsx:379 msgid "Birthday:" msgstr "Date de naissance :" @@ -689,7 +696,7 @@ msgstr "Bloqué" msgid "Blocked accounts" msgstr "Comptes bloqués" -#: src/Navigation.tsx:145 +#: src/Navigation.tsx:148 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Comptes bloqués" @@ -756,21 +763,21 @@ msgstr "Flouter les images et les filtrer des fils d’actu" msgid "Books" msgstr "Livres" -#: src/components/FeedInterstitials.tsx:281 +#: src/components/FeedInterstitials.tsx:285 msgid "Browse more accounts on the Explore page" msgstr "Parcourir d’autres comptes sur la page « Explore »" -#: src/components/FeedInterstitials.tsx:411 +#: src/components/FeedInterstitials.tsx:415 msgid "Browse more feeds on the Explore page" msgstr "Parcourir d’autres fils d’actu sur la page « Explore »" -#: src/components/FeedInterstitials.tsx:266 -#: src/components/FeedInterstitials.tsx:396 +#: src/components/FeedInterstitials.tsx:270 +#: src/components/FeedInterstitials.tsx:400 msgid "Browse more suggestions" msgstr "Parcourir d’autres suggestions" -#: src/components/FeedInterstitials.tsx:289 -#: src/components/FeedInterstitials.tsx:420 +#: src/components/FeedInterstitials.tsx:293 +#: src/components/FeedInterstitials.tsx:424 msgid "Browse more suggestions on the Explore page" msgstr "Parcourir d’autres suggestions sur la page « Explore »" @@ -807,7 +814,7 @@ msgstr "par vous" msgid "Camera" msgstr "Caméra" -#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Ne peut contenir que des lettres, des chiffres, des espaces, des tirets et des tirets bas. La longueur doit être d’au moins 4 caractères, mais pas plus de 32." @@ -816,8 +823,8 @@ msgstr "Ne peut contenir que des lettres, des chiffres, des espaces, des tirets #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:451 -#: src/view/com/composer/Composer.tsx:457 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -835,7 +842,7 @@ msgstr "Ne peut contenir que des lettres, des chiffres, des espaces, des tirets #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:139 #: src/view/screens/Search/Search.tsx:704 -#: src/view/shell/desktop/Search.tsx:218 +#: src/view/shell/desktop/Search.tsx:219 msgid "Cancel" msgstr "Annuler" @@ -871,8 +878,8 @@ msgstr "Annuler la citation" msgid "Cancel reactivation and log out" msgstr "Annuler la réactivation et se déconnecter" -#: src/view/com/modals/ListAddRemoveUsers.tsx:87 -#: src/view/shell/desktop/Search.tsx:214 +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "Annuler la recherche" @@ -884,17 +891,17 @@ msgstr "Annule l’ouverture du site web lié" msgid "Change" msgstr "Modifier" -#: src/view/screens/Settings/index.tsx:372 +#: src/view/screens/Settings/index.tsx:373 msgctxt "action" msgid "Change" msgstr "Modifier" -#: src/view/screens/Settings/index.tsx:719 +#: src/view/screens/Settings/index.tsx:720 msgid "Change handle" msgstr "Modifier le pseudo" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:730 +#: src/view/screens/Settings/index.tsx:731 msgid "Change Handle" msgstr "Modifier le pseudo" @@ -902,12 +909,12 @@ msgstr "Modifier le pseudo" msgid "Change my email" msgstr "Modifier mon e-mail" -#: src/view/screens/Settings/index.tsx:764 +#: src/view/screens/Settings/index.tsx:765 msgid "Change password" msgstr "Modifier le mot de passe" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:775 +#: src/view/screens/Settings/index.tsx:776 msgid "Change Password" msgstr "Modifier le mot de passe" @@ -919,7 +926,7 @@ msgstr "Modifier la langue de post en {0}" msgid "Change Your Email" msgstr "Modifier votre e-mail" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:321 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -931,14 +938,14 @@ msgstr "Discussion masquée" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:326 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" msgstr "Paramètres de discussion" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:648 +#: src/view/screens/Settings/index.tsx:649 msgid "Chat Settings" msgstr "Paramètres de discussion" @@ -1000,19 +1007,19 @@ msgstr "Choisissez qui peut répondre" msgid "Choose your password" msgstr "Choisissez votre mot de passe" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clear all legacy storage data" msgstr "Effacer toutes les données de stockage existantes" -#: src/view/screens/Settings/index.tsx:914 +#: src/view/screens/Settings/index.tsx:915 msgid "Clear all legacy storage data (restart after this)" msgstr "Effacer toutes les données de stockage existantes (redémarrer ensuite)" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clear all storage data" msgstr "Effacer toutes les données de stockage" -#: src/view/screens/Settings/index.tsx:926 +#: src/view/screens/Settings/index.tsx:927 msgid "Clear all storage data (restart after this)" msgstr "Effacer toutes les données de stockage (redémarrer ensuite)" @@ -1021,11 +1028,11 @@ msgstr "Effacer toutes les données de stockage (redémarrer ensuite)" msgid "Clear search query" msgstr "Effacer la recherche" -#: src/view/screens/Settings/index.tsx:912 +#: src/view/screens/Settings/index.tsx:913 msgid "Clears all legacy storage data" msgstr "Efface toutes les données de stockage existantes" -#: src/view/screens/Settings/index.tsx:924 +#: src/view/screens/Settings/index.tsx:925 msgid "Clears all storage data" msgstr "Efface toutes les données de stockage" @@ -1045,7 +1052,7 @@ msgstr "Cliquez ici pour plus d’informations." msgid "Click here to open tag menu for {tag}" msgstr "Cliquez ici pour ouvrir le menu de mot-clé pour {tag}" -#: src/components/dms/MessageItem.tsx:237 +#: src/components/dms/MessageItem.tsx:231 msgid "Click to retry failed message" msgstr "Cliquer pour réessayer l’envoi échoué du message" @@ -1066,7 +1073,7 @@ msgstr "Cataclop 🐴 cataclop 🐴" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/util/post-embeds/GifEmbed.tsx:195 msgid "Close" msgstr "Fermer" @@ -1121,7 +1128,7 @@ msgstr "Ferme la barre de navigation du bas" msgid "Closes password update alert" msgstr "Ferme la notification de mise à jour du mot de passe" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:472 msgid "Closes post composer and discards post draft" msgstr "Ferme la fenêtre de rédaction et supprime le brouillon" @@ -1129,11 +1136,11 @@ msgstr "Ferme la fenêtre de rédaction et supprime le brouillon" msgid "Closes viewer for header image" msgstr "Ferme la visionneuse pour l’image d’en-tête" -#: src/view/com/notifications/FeedItem.tsx:237 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Collapse list of users" msgstr "Fermer la liste des comptes" -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:440 msgid "Collapses list of users for a given notification" msgstr "Réduit la liste des comptes pour une notification donnée" @@ -1147,7 +1154,7 @@ msgstr "Comédie" msgid "Comics" msgstr "Bandes dessinées" -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:267 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Directives communautaires" @@ -1160,7 +1167,7 @@ msgstr "Terminez le didacticiel et commencez à utiliser votre compte" msgid "Complete the challenge" msgstr "Compléter le défi" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:582 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Permet d’écrire des posts de {MAX_GRAPHEME_LENGTH} caractères maximum" @@ -1181,8 +1188,6 @@ msgstr "Configuré dans <0>les paramètres de modération." #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/PreferencesFollowingFeed.tsx:307 -#: src/view/screens/PreferencesThreads.tsx:159 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 msgid "Confirm" @@ -1287,12 +1292,12 @@ msgstr "Conversation supprimée" msgid "Cooking" msgstr "Cuisine" -#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Copié" -#: src/view/screens/Settings/index.tsx:264 +#: src/view/screens/Settings/index.tsx:265 msgid "Copied build version to clipboard" msgstr "Version de build copiée dans le presse-papier" @@ -1300,7 +1305,7 @@ msgstr "Version de build copiée dans le presse-papier" #: src/view/com/modals/AddAppPasswords.tsx:80 #: src/view/com/modals/ChangeHandle.tsx:320 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:189 +#: src/view/com/util/forms/PostDropdownBtn.tsx:192 #: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Copié dans le presse-papier" @@ -1309,12 +1314,12 @@ msgstr "Copié dans le presse-papier" msgid "Copied!" msgstr "Copié !" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" msgstr "Copie le mot de passe d’application" -#: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/view/com/modals/AddAppPasswords.tsx:213 +#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Copier" @@ -1327,11 +1332,11 @@ msgstr "Copier {0}" msgid "Copy code" msgstr "Copier ce code" -#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" msgstr "Copier le lien" -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" msgstr "Copier le lien" @@ -1339,8 +1344,8 @@ msgstr "Copier le lien" msgid "Copy link to list" msgstr "Copier le lien vers la liste" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 msgid "Copy link to post" msgstr "Copier le lien vers le post" @@ -1349,16 +1354,16 @@ msgstr "Copier le lien vers le post" msgid "Copy message text" msgstr "Copier le texte du message" -#: src/view/com/util/forms/PostDropdownBtn.tsx:285 -#: src/view/com/util/forms/PostDropdownBtn.tsx:287 +#: src/view/com/util/forms/PostDropdownBtn.tsx:288 +#: src/view/com/util/forms/PostDropdownBtn.tsx:290 msgid "Copy post text" msgstr "Copier le texte du post" -#: src/components/StarterPack/QrCodeDialog.tsx:168 +#: src/components/StarterPack/QrCodeDialog.tsx:171 msgid "Copy QR code" msgstr "Copier le code QR" -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:272 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Politique sur les droits d’auteur" @@ -1392,17 +1397,17 @@ msgstr "Créer" msgid "Create a new account" msgstr "Créer un nouveau compte" -#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:425 msgid "Create a new Bluesky account" msgstr "Créer un compte Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:151 +#: src/components/StarterPack/QrCodeDialog.tsx:154 msgid "Create a QR code for a starter pack" msgstr "Créer un code QR pour un kit de démarrage" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:351 msgid "Create a starter pack" msgstr "Créer un kit de démarrage" @@ -1427,7 +1432,7 @@ msgstr "Créer plutôt un avatar" msgid "Create another" msgstr "Créer un autre" -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" msgstr "Créer un mot de passe d’application" @@ -1459,7 +1464,7 @@ msgid "Custom domain" msgstr "Domaine personnalisé" #: src/view/screens/Feeds.tsx:760 -#: src/view/screens/Search/Explore.tsx:390 +#: src/view/screens/Search/Explore.tsx:392 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Les fils d’actu personnalisés élaborés par la communauté vous font vivre de nouvelles expériences et vous aident à trouver le contenu que vous aimez." @@ -1467,8 +1472,8 @@ msgstr "Les fils d’actu personnalisés élaborés par la communauté vous font msgid "Customize media from external sites." msgstr "Personnaliser les médias provenant de sites externes." -#: src/view/screens/Settings/index.tsx:459 -#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:460 +#: src/view/screens/Settings/index.tsx:486 msgid "Dark" msgstr "Sombre" @@ -1476,7 +1481,7 @@ msgstr "Sombre" msgid "Dark mode" msgstr "Mode sombre" -#: src/view/screens/Settings/index.tsx:472 +#: src/view/screens/Settings/index.tsx:473 msgid "Dark Theme" msgstr "Thème sombre" @@ -1485,15 +1490,15 @@ msgid "Date of birth" msgstr "Date de naissance" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:807 +#: src/view/screens/Settings/index.tsx:808 msgid "Deactivate account" msgstr "Désactiver le compte" -#: src/view/screens/Settings/index.tsx:819 +#: src/view/screens/Settings/index.tsx:820 msgid "Deactivate my account" msgstr "Désactiver mon compte" -#: src/view/screens/Settings/index.tsx:874 +#: src/view/screens/Settings/index.tsx:875 msgid "Debug Moderation" msgstr "Déboguer la modération" @@ -1505,13 +1510,13 @@ msgstr "Panneau de débug" #: src/screens/StarterPack/StarterPackScreen.tsx:562 #: src/screens/StarterPack/StarterPackScreen.tsx:641 #: src/screens/StarterPack/StarterPackScreen.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Supprimer" -#: src/view/screens/Settings/index.tsx:829 +#: src/view/screens/Settings/index.tsx:830 msgid "Delete account" msgstr "Supprimer le compte" @@ -1527,8 +1532,8 @@ msgstr "Supprimer le mot de passe de l’appli" msgid "Delete app password?" msgstr "Supprimer le mot de passe de l’appli ?" -#: src/view/screens/Settings/index.tsx:891 -#: src/view/screens/Settings/index.tsx:894 +#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:895 msgid "Delete chat declaration record" msgstr "Supprimer la déclaration d’ouverture aux discussions" @@ -1552,12 +1557,12 @@ msgstr "Supprimer le message pour moi" msgid "Delete my account" msgstr "Supprimer mon compte" -#: src/view/screens/Settings/index.tsx:841 +#: src/view/screens/Settings/index.tsx:842 msgid "Delete My Account…" msgstr "Supprimer mon compte…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:414 -#: src/view/com/util/forms/PostDropdownBtn.tsx:416 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 +#: src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "Supprimer le post" @@ -1574,7 +1579,7 @@ msgstr "Supprimer le kit de démarrage ?" msgid "Delete this list?" msgstr "Supprimer cette liste ?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:428 +#: src/view/com/util/forms/PostDropdownBtn.tsx:431 msgid "Delete this post?" msgstr "Supprimer ce post ?" @@ -1586,7 +1591,7 @@ msgstr "Supprimé" msgid "Deleted post." msgstr "Post supprimé." -#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:893 msgid "Deletes the chat declaration record" msgstr "Supprime l’enregistrement de déclaration de discussion" @@ -1601,11 +1606,11 @@ msgstr "Description" msgid "Descriptive alt text" msgstr "Texte alt descriptif" -#: src/view/com/composer/Composer.tsx:283 +#: src/view/com/composer/Composer.tsx:295 msgid "Did you want to say anything?" msgstr "Vous vouliez dire quelque chose ?" -#: src/view/screens/Settings/index.tsx:478 +#: src/view/screens/Settings/index.tsx:479 msgid "Dim" msgstr "Atténué" @@ -1634,11 +1639,11 @@ msgstr "Désactiver le retour haptique" msgid "Disabled" msgstr "Désactivé" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:682 msgid "Discard" msgstr "Abandonner" -#: src/view/com/composer/Composer.tsx:648 +#: src/view/com/composer/Composer.tsx:679 msgid "Discard draft?" msgstr "Abandonner le brouillon ?" @@ -1656,7 +1661,7 @@ msgstr "« Discover » apprend quels sont les posts que vous aimez au fur et msgid "Discover new custom feeds" msgstr "Découvrir des fils d’actu personnalisés" -#: src/view/screens/Search/Explore.tsx:388 +#: src/view/screens/Search/Explore.tsx:390 msgid "Discover new feeds" msgstr "Découvrir de nouveaux fils d’actu" @@ -1709,22 +1714,20 @@ msgstr "Domaine vérifié !" #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesFollowingFeed.tsx:310 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Terminé" #: src/view/com/modals/EditImage.tsx:334 -#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" msgstr "Terminer" @@ -1733,7 +1736,7 @@ msgstr "Terminer" msgid "Done{extraText}" msgstr "Terminé{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319 msgid "Download Bluesky" msgstr "Télécharger Bluesky" @@ -1799,7 +1802,7 @@ msgctxt "action" msgid "Edit" msgstr "Modifier" -#: src/view/com/util/UserAvatar.tsx:325 +#: src/view/com/util/UserAvatar.tsx:337 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "Modifier l’avatar" @@ -1821,7 +1824,7 @@ msgstr "Modifier les infos de la liste" msgid "Edit Moderation List" msgstr "Modifier la liste de modération" -#: src/Navigation.tsx:274 +#: src/Navigation.tsx:282 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -1836,12 +1839,12 @@ msgstr "Modifier mon profil" msgid "Edit People" msgstr "Modifier les personnes" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "Modifier le profil" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "Modifier le profil" @@ -1854,7 +1857,7 @@ msgstr "Modifier le kit de démarrage" msgid "Edit User List" msgstr "Modifier la liste de comptes" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Edit who can reply" msgstr "Modifier qui peut répondre" @@ -1866,7 +1869,7 @@ msgstr "Modifier votre nom d’affichage" msgid "Edit your profile description" msgstr "Modifier votre description de profil" -#: src/Navigation.tsx:343 +#: src/Navigation.tsx:356 msgid "Edit your starter pack" msgstr "Modifier votre kit de démarrage" @@ -1905,7 +1908,7 @@ msgstr "E-mail mis à jour" msgid "Email verified" msgstr "Adresse e-mail vérifiée" -#: src/view/screens/Settings/index.tsx:350 +#: src/view/screens/Settings/index.tsx:351 msgid "Email:" msgstr "E-mail :" @@ -1914,8 +1917,8 @@ msgid "Embed HTML code" msgstr "Code HTML à intégrer" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:324 -#: src/view/com/util/forms/PostDropdownBtn.tsx:326 +#: src/view/com/util/forms/PostDropdownBtn.tsx:327 +#: src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "Intégrer le post" @@ -1936,11 +1939,16 @@ msgstr "Activer le contenu pour adultes" msgid "Enable external media" msgstr "Activer les médias externes" -#: src/view/screens/PreferencesExternalEmbeds.tsx:76 +#: src/view/screens/PreferencesExternalEmbeds.tsx:73 msgid "Enable media players for" msgstr "Activer les lecteurs médias pour" -#: src/view/screens/PreferencesFollowingFeed.tsx:146 +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 msgid "Enable this setting to only see replies between people you follow." msgstr "Activez ce paramètre pour ne voir que les réponses des personnes que vous suivez." @@ -1962,7 +1970,7 @@ msgstr "Fin du fil d’actu" msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." msgstr "Fin de la fenêtre de la visite d’accueil. N’avancez pas. Au lieu de cela, revenez en arrière pour plus d’options, ou appuyez pour passer." -#: src/view/com/modals/AddAppPasswords.tsx:160 +#: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "Entrer un nom pour ce mot de passe d’application" @@ -2030,7 +2038,7 @@ msgid "Everybody" msgstr "Tout le monde" #: src/components/WhoCanReply.tsx:69 -#: src/components/WhoCanReply.tsx:240 +#: src/components/WhoCanReply.tsx:241 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "Tout le monde peut répondre" @@ -2066,8 +2074,8 @@ msgstr "Sort du processus de recadrage de l’image" msgid "Exits image view" msgstr "Sort de la vue de l’image" -#: src/view/com/modals/ListAddRemoveUsers.tsx:88 -#: src/view/shell/desktop/Search.tsx:215 +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +#: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "Sort de la saisie de la recherche" @@ -2075,7 +2083,7 @@ msgstr "Sort de la saisie de la recherche" msgid "Expand alt text" msgstr "Développer le texte alt" -#: src/view/com/notifications/FeedItem.tsx:238 +#: src/view/com/notifications/FeedItem.tsx:239 msgid "Expand list of users" msgstr "Développer la liste des comptes" @@ -2084,6 +2092,10 @@ msgstr "Développer la liste des comptes" msgid "Expand or collapse the full post you are replying to" msgstr "Développe ou réduit le post complet auquel vous répondez" +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." msgstr "Médias explicites ou potentiellement dérangeants." @@ -2092,12 +2104,12 @@ msgstr "Médias explicites ou potentiellement dérangeants." msgid "Explicit sexual images." msgstr "Images sexuelles explicites." -#: src/view/screens/Settings/index.tsx:787 +#: src/view/screens/Settings/index.tsx:788 msgid "Export my data" msgstr "Exporter mes données" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:798 +#: src/view/screens/Settings/index.tsx:799 msgid "Export My Data" msgstr "Exporter mes données" @@ -2107,17 +2119,17 @@ msgid "External Media" msgstr "Média externe" #: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/view/screens/PreferencesExternalEmbeds.tsx:64 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:293 +#: src/Navigation.tsx:301 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:680 +#: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" msgstr "Préférences sur les médias externes" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "External media settings" msgstr "Préférences sur les médias externes" @@ -2147,8 +2159,8 @@ 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/view/screens/Search/Explore.tsx:426 -#: src/view/screens/Search/Explore.tsx:454 +#: src/view/screens/Search/Explore.tsx:428 +#: src/view/screens/Search/Explore.tsx:456 msgid "Failed to load feeds preferences" msgstr "Échec du chargement des fils d’actu" @@ -2161,29 +2173,33 @@ msgstr "Échec du chargement des GIFs" msgid "Failed to load past messages" msgstr "Échec du chargement de l’historique" -#: src/view/screens/Search/Explore.tsx:419 -#: src/view/screens/Search/Explore.tsx:447 +#: src/view/screens/Search/Explore.tsx:421 +#: src/view/screens/Search/Explore.tsx:449 msgid "Failed to load suggested feeds" msgstr "Échec du chargement des fils d’actu suggerés" -#: src/view/screens/Search/Explore.tsx:377 +#: src/view/screens/Search/Explore.tsx:379 msgid "Failed to load suggested follows" msgstr "Échec du chargement des suivis suggérés" -#: src/view/com/lightbox/Lightbox.tsx:86 +#: src/view/com/lightbox/Lightbox.tsx:90 msgid "Failed to save image: {0}" msgstr "Échec de l’enregistrement de l’image : {0}" -#: src/components/dms/MessageItem.tsx:230 +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + +#: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "Échec de l’envoi" -#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: src/components/moderation/LabelsOnMeDialog.tsx:244 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "Échec de l’envoi de l’appel, veuillez réessayer." -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:181 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" @@ -2196,7 +2212,7 @@ msgstr "Échec de la mise à jour des fils d’actu" msgid "Failed to update settings" msgstr "Échec de la mise à jour des paramètres" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:217 msgid "Feed" msgstr "Fil d’actu" @@ -2210,19 +2226,19 @@ msgid "Feed toggle" msgstr "Ajouter/enlever le fil d’actu" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:345 +#: src/view/shell/Drawer.tsx:332 msgid "Feedback" msgstr "Feedback" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:336 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 #: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:493 -#: src/view/shell/Drawer.tsx:494 +#: src/view/shell/Drawer.tsx:483 +#: src/view/shell/Drawer.tsx:484 msgid "Feeds" msgstr "Fils d’actu" @@ -2264,11 +2280,11 @@ msgstr "Trouvez d’autres fils d’actu et comptes à suivre dans la page « E msgid "Find posts and users on Bluesky" msgstr "Trouver des posts et comptes sur Bluesky" -#: src/view/screens/PreferencesFollowingFeed.tsx:110 +#: src/view/screens/PreferencesFollowingFeed.tsx:108 msgid "Fine-tune the content you see on your Following feed." msgstr "Affine le contenu affiché sur votre fil d’actu « Following »." -#: src/view/screens/PreferencesThreads.tsx:60 +#: src/view/screens/PreferencesThreads.tsx:54 msgid "Fine-tune the discussion threads." msgstr "Affine les fils de discussion." @@ -2298,7 +2314,7 @@ msgid "Flip vertically" msgstr "Miroir vertical" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:341 +#: src/components/ProfileCard.tsx:343 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2339,27 +2355,27 @@ msgstr "Suivre tous" msgid "Follow Back" msgstr "Suivre en retour" -#: src/view/screens/Search/Explore.tsx:333 +#: src/view/screens/Search/Explore.tsx:335 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "Suivez plus de comptes pour vous connecter à vos centres d’intérêt et développer votre réseau." #: src/view/com/profile/ProfileCard.tsx:190 -msgid "Followed by {0}" -msgstr "Suivi par {0}" +#~ msgid "Followed by {0}" +#~ msgstr "Suivi par {0}" -#: src/components/KnownFollowers.tsx:223 +#: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "Suivi par <0>{0}" -#: src/components/KnownFollowers.tsx:209 +#: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Suivi par <0>{0} et {1, plural, one {# autre} other {# autres}}" -#: src/components/KnownFollowers.tsx:196 +#: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" msgstr "Suivi par <0>{0} et <1>{1}" -#: src/components/KnownFollowers.tsx:178 +#: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Suivi par <0>{0}, <1>{1} et {2, plural, one {# autre} other {# autres}}" @@ -2367,15 +2383,15 @@ msgstr "Suivi par <0>{0}, <1>{1} et {2, plural, one {# autre} other {# a msgid "Followed users" msgstr "Comptes suivis" -#: src/view/screens/PreferencesFollowingFeed.tsx:153 +#: src/view/screens/PreferencesFollowingFeed.tsx:152 msgid "Followed users only" msgstr "Comptes suivis uniquement" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:198 msgid "followed you" msgstr "vous suit" -#: src/view/com/notifications/FeedItem.tsx:195 +#: src/view/com/notifications/FeedItem.tsx:196 msgid "followed you back" msgstr "vous a suivi" @@ -2384,7 +2400,7 @@ msgstr "vous a suivi" msgid "Followers" msgstr "Abonné·e·s" -#: src/Navigation.tsx:182 +#: src/Navigation.tsx:185 msgid "Followers of @{0} that you know" msgstr "Abonné·e·s de @{0} que vous connaissez" @@ -2394,7 +2410,7 @@ msgid "Followers you know" msgstr "Abonné·e·s que vous connaissez" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:335 +#: src/components/ProfileCard.tsx:337 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2406,7 +2422,7 @@ msgstr "Abonné·e·s que vous connaissez" msgid "Following" msgstr "Suivi" -#: src/components/ProfileCard.tsx:301 +#: src/components/ProfileCard.tsx:303 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Suit {0}" @@ -2415,13 +2431,13 @@ msgstr "Suit {0}" msgid "Following {name}" msgstr "Suit {name}" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Following feed preferences" msgstr "Préférences du fil d’actu « Following »" -#: src/Navigation.tsx:280 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:583 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesFollowingFeed.tsx:105 +#: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "Préférences du fil d’actu « Following »" @@ -2446,7 +2462,7 @@ msgstr "Nourriture" msgid "For security reasons, we'll need to send a confirmation code to your email address." msgstr "Pour des raisons de sécurité, nous devrons envoyer un code de confirmation à votre e-mail." -#: src/view/com/modals/AddAppPasswords.tsx:232 +#: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Pour des raisons de sécurité, vous ne pourrez plus afficher ceci. Si vous perdez ce mot de passe, vous devrez en générer un autre." @@ -2471,7 +2487,7 @@ msgstr "Publication fréquente de contenu indésirable" msgid "From @{sanitizedAuthor}" msgstr "De @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:236 +#: src/view/com/posts/FeedItem.tsx:242 msgctxt "from-feed" msgid "From <0/>" msgstr "Tiré de <0/>" @@ -2484,6 +2500,10 @@ msgstr "Galerie" msgid "Generate a starter pack" msgstr "Générer un kit de démarrage" +#: src/view/shell/Drawer.tsx:336 +msgid "Get help" +msgstr "" + #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" msgstr "C’est parti" @@ -2531,12 +2551,12 @@ msgid "Go Back" msgstr "Retour" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -msgid "Go back to previous screen" -msgstr "Retour à l’écran précédent" +#~ msgid "Go back to previous screen" +#~ msgstr "Retour à l’écran précédent" #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/components/ReportDialog/SubmitView.tsx:121 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 @@ -2596,7 +2616,7 @@ msgstr "Haptiques" msgid "Harassment, trolling, or intolerance" msgstr "Harcèlement, trolling ou intolérance" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:316 msgid "Hashtag" msgstr "Mot-clé" @@ -2609,7 +2629,7 @@ msgid "Having trouble?" msgstr "Un souci ?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:355 +#: src/view/shell/Drawer.tsx:345 msgid "Help" msgstr "Aide" @@ -2617,7 +2637,7 @@ msgstr "Aide" 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." -#: src/view/com/modals/AddAppPasswords.tsx:203 +#: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "Voici le mot de passe de votre appli." @@ -2628,17 +2648,17 @@ msgstr "Voici le mot de passe de votre appli." #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:445 msgid "Hide" msgstr "Cacher" -#: src/view/com/notifications/FeedItem.tsx:444 +#: src/view/com/notifications/FeedItem.tsx:447 msgctxt "action" msgid "Hide" msgstr "Cacher" -#: src/view/com/util/forms/PostDropdownBtn.tsx:387 -#: src/view/com/util/forms/PostDropdownBtn.tsx:389 +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 msgid "Hide post" msgstr "Cacher ce post" @@ -2647,11 +2667,11 @@ msgstr "Cacher ce post" msgid "Hide the content" msgstr "Cacher ce contenu" -#: src/view/com/util/forms/PostDropdownBtn.tsx:439 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide this post?" msgstr "Cacher ce post ?" -#: src/view/com/notifications/FeedItem.tsx:435 +#: src/view/com/notifications/FeedItem.tsx:438 msgid "Hide user list" msgstr "Cacher la liste des comptes" @@ -2683,12 +2703,12 @@ 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/Navigation.tsx:519 -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:552 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:425 -#: src/view/shell/Drawer.tsx:426 +#: src/view/shell/Drawer.tsx:415 +#: src/view/shell/Drawer.tsx:416 msgid "Home" msgstr "Accueil" @@ -2742,7 +2762,7 @@ msgstr "Si vous n’êtes pas encore un adulte selon les lois de votre pays, vos msgid "If you delete this list, you won't be able to recover it." msgstr "Si vous supprimez cette liste, vous ne pourrez pas la récupérer." -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 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." @@ -2766,7 +2786,7 @@ msgstr "Image" msgid "Image alt text" msgstr "Texte alt de l’image" -#: src/components/StarterPack/ShareDialog.tsx:75 +#: src/components/StarterPack/ShareDialog.tsx:76 msgid "Image saved to your camera roll!" msgstr "Image enregistrée dans votre photothèque !" @@ -2786,7 +2806,7 @@ msgstr "Entrez le code envoyé à votre e-mail pour réinitialiser le mot de pas msgid "Input confirmation code for account deletion" msgstr "Entrez le code de confirmation pour supprimer le compte" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" msgstr "Entrez le nom du mot de passe de l’appli" @@ -2855,7 +2875,7 @@ msgstr "Code d’invitation : {0} disponible" msgid "Invite codes: 1 available" msgstr "Invitations : 1 code dispo" -#: src/components/StarterPack/ShareDialog.tsx:96 +#: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" msgstr "Invitez les gens à ce kit de démarrage !" @@ -2875,8 +2895,8 @@ msgstr "Il n’y a que vous pour l’instant ! Ajoutez d’autres personnes à msgid "Jobs" msgstr "Emplois" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:432 #: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" @@ -2907,11 +2927,11 @@ msgstr "Étiquettes" msgid "Labels are annotations on users and content. They can be used to hide, warn, and categorize the network." msgstr "Les étiquettes sont des annotations sur les comptes et le contenu. Elles peuvent être utilisées pour masquer, avertir et catégoriser le réseau." -#: src/components/moderation/LabelsOnMeDialog.tsx:79 +#: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "Étiquettes sur votre compte" -#: src/components/moderation/LabelsOnMeDialog.tsx:81 +#: src/components/moderation/LabelsOnMeDialog.tsx:82 msgid "Labels on your content" msgstr "Étiquettes sur votre contenu" @@ -2919,16 +2939,16 @@ msgstr "Étiquettes sur votre contenu" msgid "Language selection" msgstr "Sélection de la langue" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Language settings" msgstr "Préférences de langue" -#: src/Navigation.tsx:155 +#: src/Navigation.tsx:158 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Paramètres linguistiques" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Languages" msgstr "Langues" @@ -2988,7 +3008,7 @@ msgstr "Quitter Bluesky" msgid "left to go." msgstr "devant vous dans la file." -#: src/view/screens/Settings/index.tsx:309 +#: src/view/screens/Settings/index.tsx:310 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Stockage ancien effacé, vous devez redémarrer l’application maintenant." @@ -3006,7 +3026,7 @@ msgstr "Réinitialisez votre mot de passe !" msgid "Let's go!" msgstr "Allons-y !" -#: src/view/screens/Settings/index.tsx:453 +#: src/view/screens/Settings/index.tsx:454 msgid "Light" msgstr "Clair" @@ -3020,13 +3040,13 @@ msgid "Like 10 posts to train the Discover feed" msgstr "Liker 10 posts pour former le fil d’actu « Discover »" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Like this feed" msgstr "Liker ce fil d’actu" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:219 -#: src/Navigation.tsx:224 +#: src/Navigation.tsx:222 +#: src/Navigation.tsx:227 msgid "Liked by" msgstr "Liké par" @@ -3036,11 +3056,11 @@ msgstr "Liké par" msgid "Liked By" msgstr "Liké par" -#: src/view/com/notifications/FeedItem.tsx:201 +#: src/view/com/notifications/FeedItem.tsx:202 msgid "liked your custom feed" msgstr "liké votre fil d’actu personnalisé" -#: src/view/com/notifications/FeedItem.tsx:185 +#: src/view/com/notifications/FeedItem.tsx:186 msgid "liked your post" msgstr "liké votre post" @@ -3052,7 +3072,7 @@ msgstr "Likes" msgid "Likes on this post" msgstr "Likes sur ce post" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:191 msgid "List" msgstr "Liste" @@ -3089,12 +3109,12 @@ msgstr "Liste débloquée" msgid "List unmuted" msgstr "Liste démasquée" -#: src/Navigation.tsx:125 +#: src/Navigation.tsx:128 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 -#: src/view/shell/Drawer.tsx:509 -#: src/view/shell/Drawer.tsx:510 +#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:500 msgid "Lists" msgstr "Listes" @@ -3102,25 +3122,25 @@ msgstr "Listes" msgid "Lists blocking this user:" msgstr "Listes qui bloquent ce compte :" -#: src/view/screens/Search/Explore.tsx:130 +#: src/view/screens/Search/Explore.tsx:131 msgid "Load more" msgstr "Charger plus" -#: src/view/screens/Search/Explore.tsx:218 +#: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" msgstr "Charger d’autres fils d’actu suggérés" -#: src/view/screens/Search/Explore.tsx:216 +#: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" msgstr "Charger d’autres suggestions de suivis" -#: src/view/screens/Notifications.tsx:184 +#: src/view/screens/Notifications.tsx:219 msgid "Load new notifications" msgstr "Charger les nouvelles notifications" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:494 +#: src/view/screens/ProfileFeed.tsx:495 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Charger les nouveaux posts" @@ -3129,7 +3149,7 @@ msgstr "Charger les nouveaux posts" msgid "Loading..." msgstr "Chargement…" -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:247 msgid "Log" msgstr "Journaux" @@ -3195,7 +3215,7 @@ msgstr "Marqué comme lu" msgid "Media" msgstr "Média" -#: src/components/WhoCanReply.tsx:275 +#: src/components/WhoCanReply.tsx:276 msgid "mentioned users" msgstr "comptes mentionnés" @@ -3217,7 +3237,7 @@ msgstr "Envoyer un message à {0}" msgid "Message deleted" msgstr "Message supprimé" -#: src/view/com/posts/FeedErrorMessage.tsx:200 +#: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "Message du serveur : {0}" @@ -3234,7 +3254,7 @@ msgstr "Le message est trop long" msgid "Message settings" msgstr "Paramètres des messages" -#: src/Navigation.tsx:534 +#: src/Navigation.tsx:547 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3245,9 +3265,9 @@ msgstr "Messages" msgid "Misleading Account" msgstr "Compte trompeur" -#: src/Navigation.tsx:130 +#: src/Navigation.tsx:133 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:562 +#: src/view/screens/Settings/index.tsx:563 msgid "Moderation" msgstr "Modération" @@ -3283,16 +3303,16 @@ msgstr "Liste de modération mise à jour" msgid "Moderation lists" msgstr "Listes de modération" -#: src/Navigation.tsx:135 +#: src/Navigation.tsx:138 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Listes de modération" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Moderation settings" msgstr "Paramètres de modération" -#: src/Navigation.tsx:234 +#: src/Navigation.tsx:237 msgid "Moderation states" msgstr "États de modération" @@ -3317,7 +3337,7 @@ msgstr "Plus de fils d’actu" msgid "More options" msgstr "Plus d’options" -#: src/view/screens/PreferencesThreads.tsx:82 +#: src/view/screens/PreferencesThreads.tsx:76 msgid "Most-liked replies first" msgstr "Réponses les plus likées en premier" @@ -3379,13 +3399,13 @@ msgstr "Masquer ce mot dans le texte du post et les mots-clés" msgid "Mute this word in tags only" msgstr "Masquer ce mot dans les mots-clés uniquement" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:371 msgid "Mute thread" msgstr "Masquer ce fil de discussion" -#: src/view/com/util/forms/PostDropdownBtn.tsx:378 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 +#: src/view/com/util/forms/PostDropdownBtn.tsx:381 +#: src/view/com/util/forms/PostDropdownBtn.tsx:383 msgid "Mute words & tags" msgstr "Masquer les mots et les mots-clés" @@ -3397,7 +3417,7 @@ msgstr "Masqué" msgid "Muted accounts" msgstr "Comptes masqués" -#: src/Navigation.tsx:140 +#: src/Navigation.tsx:143 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Comptes masqués" @@ -3431,15 +3451,15 @@ msgstr "Mes fils d’actu" msgid "My Profile" msgstr "Mon profil" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "My saved feeds" msgstr "Mes fils d’actu enregistrés" -#: src/view/screens/Settings/index.tsx:623 +#: src/view/screens/Settings/index.tsx:624 msgid "My Saved Feeds" msgstr "Mes fils d’actu enregistrés" -#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/AddAppPasswords.tsx:174 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Nom" @@ -3474,7 +3494,7 @@ msgstr "Navigue vers le kit de démarrage" msgid "Navigates to the next screen" msgstr "Navigue vers le prochain écran" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:78 msgid "Navigates to your profile" msgstr "Navigue vers votre profil" @@ -3499,7 +3519,7 @@ msgstr "Nouveau" msgid "New" msgstr "Nouveau" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" @@ -3527,9 +3547,9 @@ msgid "New post" msgstr "Nouveau post" #: src/view/screens/Feeds.tsx:581 -#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Notifications.tsx:228 #: src/view/screens/Profile.tsx:478 -#: src/view/screens/ProfileFeed.tsx:428 +#: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:278 @@ -3549,7 +3569,7 @@ msgstr "Dialogue d’information sur un nouveau compte" msgid "New User List" msgstr "Nouvelle liste de comptes" -#: src/view/screens/PreferencesThreads.tsx:79 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Newest replies first" msgstr "Réponses les plus récentes en premier" @@ -3579,16 +3599,16 @@ msgstr "Suivant" msgid "Next image" msgstr "Image suivante" -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:199 -#: src/view/screens/PreferencesFollowingFeed.tsx:234 -#: src/view/screens/PreferencesFollowingFeed.tsx:271 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:198 +#: src/view/screens/PreferencesFollowingFeed.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:270 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "No" msgstr "Non" -#: src/view/screens/ProfileFeed.tsx:562 +#: src/view/screens/ProfileFeed.tsx:564 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Aucune description" @@ -3606,7 +3626,7 @@ msgstr "Aucun GIFs vedettes à afficher. Il y a peut-être un souci chez Tenor." msgid "No feeds found. Try searching for something else." msgstr "Aucun fil d’actu n’a été trouvé. Essayez de chercher autre chose." -#: src/components/ProfileCard.tsx:321 +#: src/components/ProfileCard.tsx:323 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "Ne suit plus {0}" @@ -3623,7 +3643,7 @@ msgstr "Pas encore de messages" msgid "No more conversations to show" msgstr "Plus aucune conversation à afficher" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:122 msgid "No notifications yet!" msgstr "Pas encore de notifications !" @@ -3655,7 +3675,7 @@ msgstr "Aucun résultat trouvé" msgid "No results found for \"{query}\"" msgstr "Aucun résultat trouvé pour « {query} »" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 @@ -3693,7 +3713,7 @@ msgstr "Personne n’a été trouvé. Essayez de chercher quelqu’un d’autre. msgid "Non-sexual Nudity" msgstr "Nudité non sexuelle" -#: src/Navigation.tsx:120 +#: src/Navigation.tsx:123 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Introuvable" @@ -3704,7 +3724,7 @@ msgid "Not right now" msgstr "Pas maintenant" #: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/forms/PostDropdownBtn.tsx:459 #: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "Note sur le partage" @@ -3717,6 +3737,19 @@ msgstr "Remarque : Bluesky est un réseau ouvert et public. Ce paramètre limit msgid "Nothing here" msgstr "Rien ici" +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:331 +#: src/view/screens/Notifications.tsx:119 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "" + #: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "Sons de notification" @@ -3725,13 +3758,14 @@ msgstr "Sons de notification" msgid "Notification Sounds" msgstr "Sons de notification" -#: src/Navigation.tsx:529 -#: src/view/screens/Notifications.tsx:132 -#: src/view/screens/Notifications.tsx:169 +#: src/Navigation.tsx:542 +#: src/view/screens/Notifications.tsx:145 +#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:203 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 -#: src/view/shell/Drawer.tsx:457 -#: src/view/shell/Drawer.tsx:458 +#: src/view/shell/Drawer.tsx:447 +#: src/view/shell/Drawer.tsx:448 msgid "Notifications" msgstr "Notifications" @@ -3739,7 +3773,7 @@ msgstr "Notifications" msgid "now" msgstr "maintenant" -#: src/components/dms/MessageItem.tsx:175 +#: src/components/dms/MessageItem.tsx:169 msgid "Now" msgstr "Maintenant" @@ -3765,7 +3799,7 @@ msgstr "Oh non !" msgid "Oh no! Something went wrong." msgstr "Oh non ! Il y a eu un problème." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 msgid "OK" msgstr "OK" @@ -3773,7 +3807,7 @@ msgstr "OK" msgid "Okay" msgstr "D’accord" -#: src/view/screens/PreferencesThreads.tsx:78 +#: src/view/screens/PreferencesThreads.tsx:72 msgid "Oldest replies first" msgstr "Plus anciennes réponses en premier" @@ -3785,7 +3819,7 @@ msgstr "sur" msgid "on {str}" msgstr "le {str}" -#: src/view/screens/Settings/index.tsx:257 +#: src/view/screens/Settings/index.tsx:258 msgid "Onboarding reset" msgstr "Réinitialiser le didacticiel" @@ -3793,7 +3827,7 @@ msgstr "Réinitialiser le didacticiel" msgid "Onboarding tour step {0}: {1}" msgstr "Étape de la visite d’accueil {0} : {1}" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:534 msgid "One or more images is missing alt text." msgstr "Une ou plusieurs images n’ont pas de texte alt." @@ -3801,7 +3835,7 @@ msgstr "Une ou plusieurs images n’ont pas de texte alt." msgid "Only .jpg and .png files are supported" msgstr "Seuls les fichiers .jpg et .png sont acceptés" -#: src/components/WhoCanReply.tsx:244 +#: src/components/WhoCanReply.tsx:245 msgid "Only {0} can reply" msgstr "Seul {0} peut répondre" @@ -3817,6 +3851,7 @@ msgstr "Oups, quelque chose n’a pas marché !" #: src/components/StarterPack/ProfileStarterPacks.tsx:304 #: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/NotificationsSettings.tsx:45 #: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Oups !" @@ -3838,16 +3873,16 @@ msgstr "Ouvre le créateur d’avatar" msgid "Open conversation options" msgstr "Ouvrir les options de conversation" -#: src/view/com/composer/Composer.tsx:632 -#: src/view/com/composer/Composer.tsx:633 +#: src/view/com/composer/Composer.tsx:663 +#: src/view/com/composer/Composer.tsx:664 msgid "Open emoji picker" msgstr "Ouvrir le sélecteur d’emoji" -#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileFeed.tsx:297 msgid "Open feed options menu" msgstr "Ouvrir le menu des options de fil d’actu" -#: src/view/screens/Settings/index.tsx:737 +#: src/view/screens/Settings/index.tsx:738 msgid "Open links with in-app browser" msgstr "Ouvrir des liens avec le navigateur interne à l’appli" @@ -3863,7 +3898,7 @@ msgstr "Ouvrir les paramètres des mots masqués et mots-clés" msgid "Open navigation" msgstr "Navigation ouverte" -#: src/view/com/util/forms/PostDropdownBtn.tsx:247 +#: src/view/com/util/forms/PostDropdownBtn.tsx:250 msgid "Open post options menu" msgstr "Ouvrir le menu d’options du post" @@ -3871,12 +3906,12 @@ msgstr "Ouvrir le menu d’options du post" msgid "Open starter pack menu" msgstr "Ouvrir le menu du kit de démarrage" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Open storybook page" msgstr "Ouvrir la page Storybook" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Open system log" msgstr "Ouvrir le journal du système" @@ -3888,7 +3923,7 @@ msgstr "Ouvre {numItems} options" msgid "Opens a dialog to choose who can reply to this thread" msgstr "Ouvre une boîte de dialogue permettant de choisir qui peut répondre à ce fil de discussion" -#: src/view/screens/Settings/index.tsx:511 +#: src/view/screens/Settings/index.tsx:512 msgid "Opens accessibility settings" msgstr "Ouvre les paramètres d’accessibilité" @@ -3900,7 +3935,7 @@ msgstr "Ouvre des détails supplémentaires pour une entrée de débug" msgid "Opens camera on device" msgstr "Ouvre l’appareil photo de l’appareil" -#: src/view/screens/Settings/index.tsx:640 +#: src/view/screens/Settings/index.tsx:641 msgid "Opens chat settings" msgstr "Ouvre les paramètres de discussion" @@ -3908,7 +3943,7 @@ msgstr "Ouvre les paramètres de discussion" msgid "Opens composer" msgstr "Ouvre le rédacteur" -#: src/view/screens/Settings/index.tsx:532 +#: src/view/screens/Settings/index.tsx:533 msgid "Opens configurable language settings" msgstr "Ouvre les paramètres linguistiques configurables" @@ -3916,7 +3951,7 @@ msgstr "Ouvre les paramètres linguistiques configurables" msgid "Opens device photo gallery" msgstr "Ouvre la galerie de photos de l’appareil" -#: src/view/screens/Settings/index.tsx:672 +#: src/view/screens/Settings/index.tsx:673 msgid "Opens external embeds settings" msgstr "Ouvre les paramètres d’intégration externe" @@ -3938,27 +3973,27 @@ msgstr "Ouvre la sélection de GIF" msgid "Opens list of invite codes" msgstr "Ouvre la liste des codes d’invitation" -#: src/view/screens/Settings/index.tsx:809 +#: src/view/screens/Settings/index.tsx:810 msgid "Opens modal for account deactivation confirmation" msgstr "Ouvre la fenêtre modale pour confirmer la désactivation du compte" -#: src/view/screens/Settings/index.tsx:831 +#: src/view/screens/Settings/index.tsx:832 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "Ouvre la fenêtre modale pour confirmer la suppression du compte. Requiert un code e-mail." -#: src/view/screens/Settings/index.tsx:766 +#: src/view/screens/Settings/index.tsx:767 msgid "Opens modal for changing your Bluesky password" msgstr "Ouvre une fenêtre modale pour changer le mot de passe de Bluesky" -#: src/view/screens/Settings/index.tsx:721 +#: src/view/screens/Settings/index.tsx:722 msgid "Opens modal for choosing a new Bluesky handle" msgstr "Ouvre une fenêtre modale pour choisir un nouveau pseudo Bluesky" -#: src/view/screens/Settings/index.tsx:789 +#: src/view/screens/Settings/index.tsx:790 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Ouvre une fenêtre modale pour télécharger les données du compte Bluesky (dépôt)" -#: src/view/screens/Settings/index.tsx:1009 +#: src/view/screens/Settings/index.tsx:1010 msgid "Opens modal for email verification" msgstr "Ouvre une fenêtre modale pour la vérification de l’e-mail" @@ -3966,7 +4001,7 @@ msgstr "Ouvre une fenêtre modale pour la vérification de l’e-mail" msgid "Opens modal for using custom domain" msgstr "Ouvre une fenêtre modale pour utiliser un domaine personnalisé" -#: src/view/screens/Settings/index.tsx:557 +#: src/view/screens/Settings/index.tsx:558 msgid "Opens moderation settings" msgstr "Ouvre les paramètres de modération" @@ -3974,15 +4009,15 @@ msgstr "Ouvre les paramètres de modération" msgid "Opens password reset form" msgstr "Ouvre le formulaire de réinitialisation du mot de passe" -#: src/view/screens/Settings/index.tsx:618 +#: src/view/screens/Settings/index.tsx:619 msgid "Opens screen with all saved feeds" msgstr "Ouvre l’écran avec tous les fils d’actu enregistrés" -#: src/view/screens/Settings/index.tsx:699 +#: src/view/screens/Settings/index.tsx:700 msgid "Opens the app password settings" msgstr "Ouvre les paramètres du mot de passe de l’application" -#: src/view/screens/Settings/index.tsx:575 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens the Following feed preferences" msgstr "Ouvre les préférences du fil d’actu « Following »" @@ -3990,21 +4025,21 @@ msgstr "Ouvre les préférences du fil d’actu « Following »" msgid "Opens the linked website" msgstr "Ouvre le site web lié" -#: src/view/screens/Settings/index.tsx:862 -#: src/view/screens/Settings/index.tsx:872 +#: src/view/screens/Settings/index.tsx:863 +#: src/view/screens/Settings/index.tsx:873 msgid "Opens the storybook page" msgstr "Ouvre la page de l’historique" -#: src/view/screens/Settings/index.tsx:850 +#: src/view/screens/Settings/index.tsx:851 msgid "Opens the system log page" msgstr "Ouvre la page du journal système" -#: src/view/screens/Settings/index.tsx:596 +#: src/view/screens/Settings/index.tsx:597 msgid "Opens the threads preferences" msgstr "Ouvre les préférences relatives aux fils de discussion" -#: src/view/com/notifications/FeedItem.tsx:524 -#: src/view/com/util/UserAvatar.tsx:422 +#: src/view/com/notifications/FeedItem.tsx:527 +#: src/view/com/util/UserAvatar.tsx:434 msgid "Opens this profile" msgstr "Ouvre ce profil" @@ -4017,7 +4052,7 @@ msgid "Option {0} of {numItems}" msgstr "Option {0} sur {numItems}" #: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:162 +#: src/components/ReportDialog/SubmitView.tsx:179 msgid "Optionally provide additional information below:" msgstr "Ajoutez des informations supplémentaires ci-dessous (optionnel) :" @@ -4077,7 +4112,7 @@ msgstr "Mise à jour du mot de passe" msgid "Password updated!" msgstr "Mot de passe mis à jour !" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Pause" msgstr "Mettre en pause" @@ -4086,19 +4121,19 @@ msgstr "Mettre en pause" msgid "People" msgstr "Personnes" -#: src/Navigation.tsx:175 +#: src/Navigation.tsx:178 msgid "People followed by @{0}" msgstr "Personnes suivies par @{0}" -#: src/Navigation.tsx:168 +#: src/Navigation.tsx:171 msgid "People following @{0}" msgstr "Personnes qui suivent @{0}" -#: src/view/com/lightbox/Lightbox.tsx:69 +#: src/view/com/lightbox/Lightbox.tsx:70 msgid "Permission to access camera roll is required." msgstr "Permission d’accès à la pellicule requise." -#: src/view/com/lightbox/Lightbox.tsx:75 +#: src/view/com/lightbox/Lightbox.tsx:78 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "Permission d’accès à la pellicule refusée. Veuillez l’activer dans les paramètres de votre système." @@ -4119,12 +4154,12 @@ msgstr "Photographie" msgid "Pictures meant for adults." msgstr "Images destinées aux adultes." -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Ajouter à l’accueil" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 msgid "Pin to Home" msgstr "Ajouter à l’accueil" @@ -4136,7 +4171,7 @@ msgstr "Fils épinglés" msgid "Pinned to your feeds" msgstr "Épinglé à vos fils d’actu" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Play" msgstr "Lire" @@ -4144,7 +4179,7 @@ msgstr "Lire" msgid "Play {0}" msgstr "Lire {0}" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 msgid "Play or pause the GIF" msgstr "Lire ou mettre en pause le GIF" @@ -4178,7 +4213,7 @@ msgstr "Veuillez confirmer votre e-mail avant de le modifier. Ceci est temporair msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "Veuillez entrer un nom pour votre mot de passe d’application. Les espaces ne sont pas autorisés." -#: src/view/com/modals/AddAppPasswords.tsx:150 +#: src/view/com/modals/AddAppPasswords.tsx:151 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "Veuillez saisir un nom unique pour le mot de passe de l’application ou utiliser celui que nous avons généré de manière aléatoire." @@ -4199,7 +4234,7 @@ msgstr "Veuillez saisir votre code d’invitation." msgid "Please enter your password as well:" msgstr "Veuillez également entrer votre mot de passe :" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:277 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Veuillez expliquer pourquoi vous pensez que cette étiquette a été appliquée à tort par {0}" @@ -4216,7 +4251,7 @@ msgstr "Veuillez vous identifier comme @{0}" msgid "Please Verify Your Email" msgstr "Veuillez vérifier votre e-mail" -#: src/view/com/composer/Composer.tsx:287 +#: src/view/com/composer/Composer.tsx:299 msgid "Please wait for your link card to finish loading" msgstr "Veuillez patienter le temps que votre carte de lien soit chargée" @@ -4229,8 +4264,8 @@ msgstr "Politique" msgid "Porn" msgstr "Porno" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:509 +#: src/view/com/composer/Composer.tsx:516 msgctxt "action" msgid "Post" msgstr "Poster" @@ -4244,9 +4279,9 @@ msgstr "Post" msgid "Post by {0}" msgstr "Post de {0}" -#: src/Navigation.tsx:194 -#: src/Navigation.tsx:201 -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:197 +#: src/Navigation.tsx:204 +#: src/Navigation.tsx:211 msgid "Post by @{0}" msgstr "Post de @{0}" @@ -4302,6 +4337,10 @@ msgstr "Posts cachés" msgid "Potentially Misleading Link" msgstr "Lien potentiellement trompeur" +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Appuyer pour tenter une reconnection" @@ -4317,7 +4356,7 @@ msgstr "Appuyer pour changer d’hébergeur" msgid "Press to retry" msgstr "Appuyer pour réessayer" -#: src/components/KnownFollowers.tsx:116 +#: src/components/KnownFollowers.tsx:124 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" @@ -4329,20 +4368,24 @@ msgstr "Image précédente" msgid "Primary Language" msgstr "Langue principale" -#: src/view/screens/PreferencesThreads.tsx:97 +#: src/view/screens/PreferencesThreads.tsx:91 msgid "Prioritize Your Follows" msgstr "Définissez des priorités de vos suivis" -#: src/view/screens/Settings/index.tsx:655 +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "" + +#: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Vie privée" -#: src/Navigation.tsx:249 +#: src/Navigation.tsx:257 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:958 -#: src/view/shell/Drawer.tsx:285 +#: src/view/screens/Settings/index.tsx:959 +#: src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "Charte de confidentialité" @@ -4361,9 +4404,9 @@ msgstr "profil" #: src/view/shell/bottom-bar/BottomBar.tsx:275 #: src/view/shell/desktop/LeftNav.tsx:393 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:542 -#: src/view/shell/Drawer.tsx:543 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:532 +#: src/view/shell/Drawer.tsx:533 msgid "Profile" msgstr "Profil" @@ -4371,7 +4414,7 @@ msgstr "Profil" msgid "Profile updated" msgstr "Profil mis à jour" -#: src/view/screens/Settings/index.tsx:1022 +#: src/view/screens/Settings/index.tsx:1023 msgid "Protect your account by verifying your email." msgstr "Protégez votre compte en vérifiant votre e-mail." @@ -4387,23 +4430,23 @@ msgstr "Listes publiques et partageables de comptes à masquer ou à bloquer." msgid "Public, shareable lists which can drive feeds." msgstr "Les listes publiques et partageables qui peuvent alimenter les fils d’actu." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish post" msgstr "Publier le post" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish reply" msgstr "Publier la réponse" -#: src/components/StarterPack/QrCodeDialog.tsx:125 +#: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "Code QR copié dans votre presse-papier !" -#: src/components/StarterPack/QrCodeDialog.tsx:103 +#: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" msgstr "Code QR a été téléchargé !" -#: src/components/StarterPack/QrCodeDialog.tsx:104 +#: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "Code QR enregistré dans votre photothèque !" @@ -4418,7 +4461,7 @@ msgstr "Petite astuce" msgid "Quote post" msgstr "Citer le post" -#: src/view/screens/PreferencesThreads.tsx:86 +#: src/view/screens/PreferencesThreads.tsx:80 msgid "Random (aka \"Poster's Roulette\")" msgstr "Aléatoire" @@ -4442,19 +4485,23 @@ msgstr "Recherches récentes" msgid "Reconnect" msgstr "Se reconnecter" +#: src/view/screens/Notifications.tsx:146 +msgid "Refresh notifications" +msgstr "" + #: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "Rafraîchir les conversations" #: src/components/dialogs/MutedWords.tsx:286 #: src/components/FeedCard.tsx:309 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:212 +#: src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "Supprimer" @@ -4466,7 +4513,7 @@ msgstr "Supprimer {displayName} du kit de démarrage" msgid "Remove account" msgstr "Supprimer compte" -#: src/view/com/util/UserAvatar.tsx:384 +#: src/view/com/util/UserAvatar.tsx:396 msgid "Remove Avatar" msgstr "Supprimer l’avatar" @@ -4478,20 +4525,20 @@ msgstr "Supprimer l’image d’en-tête" msgid "Remove embed" msgstr "Supprimer l’intégration" -#: src/view/com/posts/FeedErrorMessage.tsx:168 -#: src/view/com/posts/FeedShutdownMsg.tsx:113 -#: src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:115 +#: src/view/com/posts/FeedShutdownMsg.tsx:119 msgid "Remove feed" msgstr "Supprimer le fil d’actu" -#: src/view/com/posts/FeedErrorMessage.tsx:209 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" msgstr "Supprimer le fil d’actu ?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Supprimer de mes fils d’actu" @@ -4505,7 +4552,7 @@ msgstr "Supprimer de mes fils d’actu ?" msgid "Remove image" msgstr "Supprimer l’image" -#: src/view/com/composer/ExternalEmbed.tsx:87 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 msgid "Remove image preview" msgstr "Supprimer l’aperçu d’image" @@ -4530,11 +4577,11 @@ msgstr "Supprimer la citation" msgid "Remove repost" msgstr "Supprimer le repost" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "Supprimer ce fil d’actu de vos fils d’actu enregistrés" -#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "Supprimé de la liste" @@ -4550,8 +4597,8 @@ msgid "Removed from your feeds" msgstr "Supprimé de vos fils d’actu" #: src/view/com/composer/ExternalEmbed.tsx:88 -msgid "Removes default thumbnail from {0}" -msgstr "Supprime la miniature par défaut de {0}" +#~ msgid "Removes default thumbnail from {0}" +#~ msgstr "Supprime la miniature par défaut de {0}" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" @@ -4561,8 +4608,8 @@ msgstr "Supprime le post cité" msgid "Removes the image preview" msgstr "Supprime l’aperçu de l’image" -#: src/view/com/posts/FeedShutdownMsg.tsx:126 -#: src/view/com/posts/FeedShutdownMsg.tsx:130 +#: src/view/com/posts/FeedShutdownMsg.tsx:128 +#: src/view/com/posts/FeedShutdownMsg.tsx:132 msgid "Replace with Discover" msgstr "Remplacer par Discover" @@ -4574,26 +4621,26 @@ msgstr "Réponses" msgid "Replies disabled" msgstr "Les réponses sont désactivées" -#: src/components/WhoCanReply.tsx:242 +#: src/components/WhoCanReply.tsx:243 msgid "Replies to this thread are disabled" msgstr "Les réponses à ce fil de discussion sont désactivées" -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:507 msgctxt "action" msgid "Reply" msgstr "Répondre" -#: src/view/screens/PreferencesFollowingFeed.tsx:143 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 msgid "Reply Filters" msgstr "Filtres de réponse" -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:439 +#: src/view/com/post/Post.tsx:197 +#: src/view/com/posts/FeedItem.tsx:458 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Réponse à <0><1/>" -#: src/view/com/posts/FeedItem.tsx:437 +#: src/view/com/posts/FeedItem.tsx:456 msgctxt "description" msgid "Reply to a blocked post" msgstr "Réponse à un post bloqué" @@ -4625,8 +4672,8 @@ msgstr "Signaler la conversation" msgid "Report dialog" msgstr "Fenêtre de dialogue de signalement" -#: src/view/screens/ProfileFeed.tsx:349 -#: src/view/screens/ProfileFeed.tsx:351 +#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:352 msgid "Report feed" msgstr "Signaler le fil d’actu" @@ -4638,8 +4685,8 @@ msgstr "Signaler la liste" msgid "Report message" msgstr "Signaler le message" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:407 +#: src/view/com/util/forms/PostDropdownBtn.tsx:409 msgid "Report post" msgstr "Signaler le post" @@ -4701,11 +4748,11 @@ msgstr "Republier ou citer" msgid "Reposted By" msgstr "Republié par" -#: src/view/com/posts/FeedItem.tsx:254 +#: src/view/com/posts/FeedItem.tsx:263 msgid "Reposted by {0}" msgstr "Republié par {0}" -#: src/view/com/posts/FeedItem.tsx:269 +#: src/view/com/posts/FeedItem.tsx:282 msgid "Reposted by <0><1/>" msgstr "Republié par <0><1/>" @@ -4714,7 +4761,7 @@ msgstr "Republié par <0><1/>" msgid "Reposted by you" msgstr "Republié par vous" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:188 msgid "reposted your post" msgstr "a republié votre post" @@ -4757,8 +4804,8 @@ msgstr "Réinitialiser le code" msgid "Reset Code" msgstr "Code de réinitialisation" -#: src/view/screens/Settings/index.tsx:901 -#: src/view/screens/Settings/index.tsx:904 +#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:905 msgid "Reset onboarding state" msgstr "Réinitialisation du didacticiel" @@ -4766,16 +4813,16 @@ msgstr "Réinitialisation du didacticiel" msgid "Reset password" msgstr "Réinitialiser mot de passe" -#: src/view/screens/Settings/index.tsx:881 -#: src/view/screens/Settings/index.tsx:884 +#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:885 msgid "Reset preferences state" msgstr "Réinitialiser l’état des préférences" -#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:903 msgid "Resets the onboarding state" msgstr "Réinitialise l’état d’accueil" -#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:883 msgid "Resets the preferences state" msgstr "Réinitialise l’état des préférences" @@ -4788,7 +4835,7 @@ msgstr "Réessaye la connection" msgid "Retries the last action, which errored out" msgstr "Réessaye la dernière action, qui a échoué" -#: src/components/dms/MessageItem.tsx:241 +#: src/components/dms/MessageItem.tsx:235 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 @@ -4820,7 +4867,7 @@ msgstr "Retour à la page précédente" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/dialogs/ThreadgateEditor.tsx:88 -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:187 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -4829,7 +4876,7 @@ msgstr "Retour à la page précédente" msgid "Save" msgstr "Enregistrer" -#: src/view/com/lightbox/Lightbox.tsx:135 +#: src/view/com/lightbox/Lightbox.tsx:139 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -4851,8 +4898,8 @@ msgstr "Enregistrer les modifications" msgid "Save handle change" msgstr "Enregistrer le changement de pseudo" -#: src/components/StarterPack/ShareDialog.tsx:150 -#: src/components/StarterPack/ShareDialog.tsx:157 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "Enregistrer l’image" @@ -4860,12 +4907,12 @@ msgstr "Enregistrer l’image" msgid "Save image crop" msgstr "Enregistrer le recadrage de l’image" -#: src/components/StarterPack/QrCodeDialog.tsx:178 +#: src/components/StarterPack/QrCodeDialog.tsx:181 msgid "Save QR code" msgstr "Enregistrer le code QR" -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 +#: src/view/screens/ProfileFeed.tsx:334 +#: src/view/screens/ProfileFeed.tsx:340 msgid "Save to my feeds" msgstr "Enregistrer dans mes fils d’actu" @@ -4873,7 +4920,7 @@ msgstr "Enregistrer dans mes fils d’actu" msgid "Saved Feeds" msgstr "Fils d’actu enregistrés" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:88 msgid "Saved to your camera roll" msgstr "Enregistré dans votre photothèque" @@ -4896,8 +4943,8 @@ msgstr "Enregistre les paramètres de recadrage de l’image" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:383 -#: src/view/com/notifications/FeedItem.tsx:408 +#: src/view/com/notifications/FeedItem.tsx:386 +#: src/view/com/notifications/FeedItem.tsx:411 msgid "Say hello!" msgstr "Dites bonjour !" @@ -4911,9 +4958,9 @@ msgid "Scroll to top" msgstr "Remonter en haut" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:524 +#: src/Navigation.tsx:537 #: src/view/com/auth/LoggedOut.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 @@ -4921,14 +4968,14 @@ msgstr "Remonter en haut" #: src/view/screens/Search/Search.tsx:813 #: src/view/shell/bottom-bar/BottomBar.tsx:182 #: src/view/shell/desktop/LeftNav.tsx:354 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:394 -#: src/view/shell/Drawer.tsx:395 +#: src/view/shell/desktop/Search.tsx:195 +#: src/view/shell/desktop/Search.tsx:204 +#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:385 msgid "Search" msgstr "Recherche" -#: src/view/shell/desktop/Search.tsx:235 +#: src/view/shell/desktop/Search.tsx:236 msgid "Search for \"{query}\"" msgstr "Recherche de « {query} »" @@ -4950,7 +4997,7 @@ msgstr "Recherchez des fils d’actu que vous voulez suggérer à d’autres per #: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/auth/LoggedOut.tsx:107 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "Rechercher des comptes" @@ -5041,7 +5088,7 @@ msgstr "Sélectionne l’option {i} sur {numItems}" msgid "Select the {emojiName} emoji as your avatar" msgstr "Sélectionner l’emoji {emojiName} comme avatar" -#: src/components/ReportDialog/SubmitView.tsx:135 +#: src/components/ReportDialog/SubmitView.tsx:152 msgid "Select the moderation service(s) to report to" msgstr "Sélectionnez le(s) service(s) de modération destinataires du signalement" @@ -5091,8 +5138,7 @@ msgctxt "action" msgid "Send Email" msgstr "Envoyer l’e-mail" -#: src/view/shell/Drawer.tsx:329 -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:325 msgid "Send feedback" msgstr "Envoyer des commentaires" @@ -5101,14 +5147,14 @@ msgstr "Envoyer des commentaires" msgid "Send message" msgstr "Envoyer le message" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 msgid "Send post to..." msgstr "Envoyer le post à…" #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:215 -#: src/components/ReportDialog/SubmitView.tsx:219 +#: src/components/ReportDialog/SubmitView.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:236 msgid "Send report" msgstr "Envoyer le rapport" @@ -5121,8 +5167,8 @@ msgstr "Envoyer le rapport à {0}" msgid "Send verification email" msgstr "Envoyer l’e-mail de vérification" -#: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 +#: src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" msgstr "Envoyer par message privé" @@ -5142,23 +5188,23 @@ msgstr "Entrez votre date de naissance" msgid "Set new password" msgstr "Définir un nouveau mot de passe" -#: src/view/screens/PreferencesFollowingFeed.tsx:224 +#: src/view/screens/PreferencesFollowingFeed.tsx:223 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Choisissez « Non » pour cacher toutes les citations sur votre fils d’actu. Les reposts seront toujours visibles." -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:120 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Choisissez « Non » pour cacher toutes les réponses dans votre fils d’actu." -#: src/view/screens/PreferencesFollowingFeed.tsx:190 +#: src/view/screens/PreferencesFollowingFeed.tsx:189 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Choisissez « Non » pour cacher toutes les reposts de votre fils d’actu." -#: src/view/screens/PreferencesThreads.tsx:122 +#: src/view/screens/PreferencesThreads.tsx:116 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Choisissez « Oui » pour afficher les réponses dans un fil de discussion. C’est une fonctionnalité expérimentale." -#: src/view/screens/PreferencesFollowingFeed.tsx:260 +#: src/view/screens/PreferencesFollowingFeed.tsx:259 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Choisissez « Oui » pour afficher des échantillons de vos fils d’actu enregistrés dans votre fil d’actu « Following ». C’est une fonctionnalité expérimentale." @@ -5170,23 +5216,23 @@ msgstr "Créez votre compte" msgid "Sets Bluesky username" msgstr "Définit le pseudo Bluesky" -#: src/view/screens/Settings/index.tsx:462 +#: src/view/screens/Settings/index.tsx:463 msgid "Sets color theme to dark" msgstr "Change le thème de couleur en sombre" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Sets color theme to light" msgstr "Change le thème de couleur en clair" -#: src/view/screens/Settings/index.tsx:449 +#: src/view/screens/Settings/index.tsx:450 msgid "Sets color theme to system setting" msgstr "Change le thème de couleur en fonction du paramètre système" -#: src/view/screens/Settings/index.tsx:488 +#: src/view/screens/Settings/index.tsx:489 msgid "Sets dark theme to the dark theme" msgstr "Change le thème sombre comme étant le plus sombre" -#: src/view/screens/Settings/index.tsx:481 +#: src/view/screens/Settings/index.tsx:482 msgid "Sets dark theme to the dim theme" msgstr "Change le thème sombre comme étant le thème atténué" @@ -5206,11 +5252,11 @@ msgstr "Définit le rapport d’aspect de l’image comme portrait" msgid "Sets image aspect ratio to wide" msgstr "Définit le rapport d’aspect de l’image comme paysage" -#: src/Navigation.tsx:150 -#: src/view/screens/Settings/index.tsx:333 +#: src/Navigation.tsx:153 +#: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:559 -#: src/view/shell/Drawer.tsx:560 +#: src/view/shell/Drawer.tsx:549 +#: src/view/shell/Drawer.tsx:550 msgid "Settings" msgstr "Paramètres" @@ -5222,19 +5268,19 @@ msgstr "Activité sexuelle ou nudité érotique." msgid "Sexually Suggestive" msgstr "Sexuellement suggestif" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:177 #: src/screens/StarterPack/StarterPackScreen.tsx:400 #: src/screens/StarterPack/StarterPackScreen.tsx:571 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 #: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Partager" -#: src/view/com/lightbox/Lightbox.tsx:144 +#: src/view/com/lightbox/Lightbox.tsx:148 msgctxt "action" msgid "Share" msgstr "Partager" @@ -5248,18 +5294,18 @@ msgid "Share a fun fact!" msgstr "Partagez une anecdote insolite !" #: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:464 #: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "Partager quand même" -#: src/view/screens/ProfileFeed.tsx:359 -#: src/view/screens/ProfileFeed.tsx:361 +#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:362 msgid "Share feed" msgstr "Partager le fil d’actu" -#: src/components/StarterPack/ShareDialog.tsx:123 -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 #: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "Partager le lien" @@ -5269,12 +5315,12 @@ msgstr "Partager le lien" msgid "Share Link" msgstr "Partager le lien" -#: src/components/StarterPack/ShareDialog.tsx:87 +#: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" msgstr "Dialogue pour le partage d’un lien" -#: src/components/StarterPack/ShareDialog.tsx:134 -#: src/components/StarterPack/ShareDialog.tsx:145 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "Partager le code QR" @@ -5282,7 +5328,7 @@ msgstr "Partager le code QR" msgid "Share this starter pack" msgstr "Partagez ce kit de démarrage" -#: src/components/StarterPack/ShareDialog.tsx:99 +#: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Partagez ce kit de démarrage et aidez les gens à rejoindre votre communauté sur Bluesky." @@ -5290,7 +5336,7 @@ msgstr "Partagez ce kit de démarrage et aidez les gens à rejoindre votre commu msgid "Share your favorite feed!" msgstr "Partagez votre fil d’actu favori !" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:242 msgid "Shared Preferences Tester" msgstr "Testeur de préférences partagées" @@ -5301,11 +5347,11 @@ msgstr "Partage le site web lié" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:382 +#: src/view/screens/Settings/index.tsx:383 msgid "Show" msgstr "Afficher" -#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +#: src/view/com/util/post-embeds/GifEmbed.tsx:175 msgid "Show alt text" msgstr "Voir le texte alt" @@ -5331,19 +5377,19 @@ msgstr "Afficher les suivis similaires à {0}" msgid "Show hidden replies" msgstr "Afficher les réponses cachées" -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#: src/view/com/util/forms/PostDropdownBtn.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:349 +#: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" msgstr "En montrer moins comme ça" #: src/view/com/post-thread/PostThreadItem.tsx:530 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:396 +#: src/view/com/post/Post.tsx:235 +#: src/view/com/posts/FeedItem.tsx:410 msgid "Show More" msgstr "Voir plus" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 -#: src/view/com/util/forms/PostDropdownBtn.tsx:340 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:343 msgid "Show more like this" msgstr "En montrer plus comme ça" @@ -5351,23 +5397,23 @@ msgstr "En montrer plus comme ça" msgid "Show muted replies" msgstr "Afficher les réponses masquées" -#: src/view/screens/PreferencesFollowingFeed.tsx:257 +#: src/view/screens/PreferencesFollowingFeed.tsx:256 msgid "Show Posts from My Feeds" msgstr "Afficher les posts de mes fils d’actu" -#: src/view/screens/PreferencesFollowingFeed.tsx:221 +#: src/view/screens/PreferencesFollowingFeed.tsx:220 msgid "Show Quote Posts" msgstr "Afficher les citations" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:117 msgid "Show Replies" msgstr "Afficher les réponses" -#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:94 msgid "Show replies by people you follow before all other replies." msgstr "Afficher les réponses des personnes que vous suivez avant toutes les autres réponses." -#: src/view/screens/PreferencesFollowingFeed.tsx:187 +#: src/view/screens/PreferencesFollowingFeed.tsx:186 msgid "Show Reposts" msgstr "Afficher les reposts" @@ -5425,8 +5471,8 @@ msgstr "Connectez-vous ou créez votre compte pour participer à la conversation msgid "Sign into Bluesky or create a new account" msgstr "Connectez-vous à Bluesky ou créez un nouveau compte" -#: src/view/screens/Settings/index.tsx:129 -#: src/view/screens/Settings/index.tsx:133 +#: src/view/screens/Settings/index.tsx:130 +#: src/view/screens/Settings/index.tsx:134 msgid "Sign out" msgstr "Déconnexion" @@ -5451,7 +5497,7 @@ msgstr "S’inscrire ou se connecter pour participer à la conversation" msgid "Sign-in Required" msgstr "Connexion requise" -#: src/view/screens/Settings/index.tsx:392 +#: src/view/screens/Settings/index.tsx:393 msgid "Signed in as" msgstr "Connecté en tant que" @@ -5460,12 +5506,12 @@ msgstr "Connecté en tant que" msgid "Signed in as @{0}" msgstr "Connecté en tant que @{0}" -#: src/view/com/notifications/FeedItem.tsx:208 +#: src/view/com/notifications/FeedItem.tsx:209 msgid "signed up with your starter pack" msgstr "s’est inscrit·e avec votre kit de démarrage" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 msgid "Signup without a starter pack" msgstr "S’inscrire sans kit de démarrage" @@ -5483,7 +5529,7 @@ msgstr "Passer cette étape" msgid "Software Dev" msgstr "Développement de logiciels" -#: src/components/FeedInterstitials.tsx:378 +#: src/components/FeedInterstitials.tsx:382 msgid "Some other feeds you might like" msgstr "Quelques autres fils d’actu qui pourraient vous intéresser" @@ -5507,20 +5553,25 @@ msgstr "Quelque chose n’a pas marché, veuillez réessayer" msgid "Something went wrong, please try again." msgstr "Quelque chose n’a pas marché, veuillez réessayer." -#: src/App.native.tsx:98 -#: src/App.web.tsx:80 +#: src/components/Lists.tsx:192 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "" + +#: src/App.native.tsx:99 +#: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "Désolé ! Votre session a expiré. Essayez de vous reconnecter." -#: src/view/screens/PreferencesThreads.tsx:69 +#: src/view/screens/PreferencesThreads.tsx:63 msgid "Sort Replies" msgstr "Trier les réponses" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:66 msgid "Sort replies to the same post by:" msgstr "Trier les réponses au même post par :" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" msgstr "Source : <0>{0}" @@ -5542,7 +5593,7 @@ msgstr "Sports" msgid "Square" msgstr "Carré" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:63 msgid "Start a new chat" msgstr "Démarrer une nouvelle discussion" @@ -5559,8 +5610,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "Début de la fenêtre de la visite d’accueil. Ne revenez pas en arrière. Allez plutôt vers l’avant pour plus d’options, ou appuyez pour passer." #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:328 -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:341 +#: src/Navigation.tsx:346 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "Kit de démarrage" @@ -5581,7 +5632,7 @@ msgstr "Kits de démarrage" msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "Les kits de démarrage vous permettent de partager facilement vos fils d’actu et vos personnes préférées avec vos ami·e·s." -#: src/view/screens/Settings/index.tsx:964 +#: src/view/screens/Settings/index.tsx:965 msgid "Status Page" msgstr "État du service" @@ -5589,17 +5640,17 @@ msgstr "État du service" msgid "Step {0} of {1}" msgstr "Étape {0} sur {1}" -#: src/view/screens/Settings/index.tsx:305 +#: src/view/screens/Settings/index.tsx:306 msgid "Storage cleared, you need to restart the app now." msgstr "Stockage effacé, vous devez redémarrer l’application maintenant." -#: src/Navigation.tsx:229 -#: src/view/screens/Settings/index.tsx:864 +#: src/Navigation.tsx:232 +#: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "Historique" -#: src/components/moderation/LabelsOnMeDialog.tsx:290 -#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/components/moderation/LabelsOnMeDialog.tsx:311 +#: src/components/moderation/LabelsOnMeDialog.tsx:312 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5617,7 +5668,7 @@ msgstr "Abonnez-vous à @{0} pour utiliser ces étiquettes :" msgid "Subscribe to Labeler" msgstr "S’abonner à l’étiqueteur" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 msgid "Subscribe to this labeler" msgstr "S’abonner à cet étiqueteur" @@ -5625,11 +5676,11 @@ msgstr "S’abonner à cet étiqueteur" msgid "Subscribe to this list" msgstr "S’abonner à cette liste" -#: src/view/screens/Search/Explore.tsx:331 +#: src/view/screens/Search/Explore.tsx:333 msgid "Suggested accounts" msgstr "Comptes suggérés" -#: src/components/FeedInterstitials.tsx:246 +#: src/components/FeedInterstitials.tsx:250 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Suggérés pour vous" @@ -5638,7 +5689,7 @@ msgstr "Suggérés pour vous" msgid "Suggestive" msgstr "Suggestif" -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:252 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5653,19 +5704,19 @@ msgstr "Changer de compte" msgid "Switch between feeds to control your experience." msgstr "Basculez d’un fil d’actu à l’autre pour contrôler votre expérience." -#: src/view/screens/Settings/index.tsx:160 +#: src/view/screens/Settings/index.tsx:161 msgid "Switch to {0}" msgstr "Basculer sur {0}" -#: src/view/screens/Settings/index.tsx:161 +#: src/view/screens/Settings/index.tsx:162 msgid "Switches the account you are logged in to" msgstr "Bascule le compte auquel vous êtes connectés vers" -#: src/view/screens/Settings/index.tsx:446 +#: src/view/screens/Settings/index.tsx:447 msgid "System" msgstr "Système" -#: src/view/screens/Settings/index.tsx:852 +#: src/view/screens/Settings/index.tsx:853 msgid "System log" msgstr "Journal système" @@ -5714,11 +5765,11 @@ msgstr "Dites-nous en un peu plus" msgid "Terms" msgstr "Conditions générales" -#: src/Navigation.tsx:254 +#: src/Navigation.tsx:262 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:952 +#: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:279 +#: src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "Conditions d’utilisation" @@ -5733,13 +5784,13 @@ msgstr "Termes utilisés qui violent les normes de la communauté" msgid "text" msgstr "texte" -#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/components/moderation/LabelsOnMeDialog.tsx:275 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Champ de saisie de texte" #: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:93 msgid "Thank you. Your report has been sent." msgstr "Nous vous remercions. Votre rapport a été envoyé." @@ -5778,19 +5829,19 @@ msgstr "Notre politique de droits d’auteur a été déplacée vers <0/>" msgid "The Discover feed now knows what you like" msgstr "Le fil d’actu « Discover » sait désormais ce que vous aimez" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "L’expérience est meilleure dans l’application. Téléchargez Bluesky maintenant et nous reprendrons là où vous en étiez." -#: src/view/com/posts/FeedShutdownMsg.tsx:66 +#: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." msgstr "Ce fil d’actu a été remplacé par Discover." -#: src/components/moderation/LabelsOnMeDialog.tsx:65 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your account." msgstr "Les étiquettes suivantes ont été appliquées à votre compte." -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:67 msgid "The following labels were applied to your content." msgstr "Les étiquettes suivantes ont été appliquées à votre contenu." @@ -5823,8 +5874,8 @@ msgstr "Nos conditions d’utilisation ont été déplacées vers" msgid "There is no time limit for account deactivation, come back any time." msgstr "Il n’y a pas de limite de temps pour la désactivation du compte, revenez quand vous voulez." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 -#: src/view/screens/ProfileFeed.tsx:544 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 +#: src/view/screens/ProfileFeed.tsx:545 msgid "There was an 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, veuillez vérifier votre connexion Internet et réessayez." @@ -5833,7 +5884,7 @@ msgid "There was an an issue removing this feed. Please check your internet conn msgstr "Il y a eu un problème lors de la suppression du fil, veuillez vérifier votre connexion Internet et réessayez." #: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Il y a eu un problème lors de la mise à jour de vos fils d’actu, veuillez vérifier votre connexion Internet et réessayez." @@ -5843,7 +5894,7 @@ msgstr "Il y a eu un problème lors de la mise à jour de vos fils d’actu, veu msgid "There was an issue connecting to Tenor." msgstr "Il y a eu un problème de connexion à Tenor." -#: src/view/screens/ProfileFeed.tsx:234 +#: src/view/screens/ProfileFeed.tsx:235 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -5857,7 +5908,7 @@ msgstr "Il y a eu un problème de connexion au serveur" msgid "There was an issue contacting your server" msgstr "Il y a eu un problème de connexion à votre serveur" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:130 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." @@ -5875,7 +5926,7 @@ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Il y a eu un problème lors de la récupération de vos listes. Appuyez ici pour réessayer." #: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:82 +#: src/components/ReportDialog/SubmitView.tsx:98 msgid "There was an issue sending your report. Please check your internet connection." msgstr "Il y a eu un problème lors de l’envoi de votre rapport. Veuillez vérifier votre connexion internet." @@ -5927,7 +5978,7 @@ msgstr "Ce compte a demandé aux personnes de se connecter pour voir son profil. 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 "Ce compte est bloqué par un ou plusieurs de vos listes de modération. Pour le débloquer, veuillez visiter les listes directement et en retirer ce compte." -#: src/components/moderation/LabelsOnMeDialog.tsx:239 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 msgid "This appeal will be sent to <0>{0}." msgstr "Cet appel sera envoyé à <0>{0}." @@ -5977,12 +6028,12 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Ce fil d’actu est vide ! Vous devriez peut-être suivre plus de comptes ou ajuster vos paramètres de langue." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:473 +#: src/view/screens/ProfileFeed.tsx:474 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "Ce fil d’actu est vide." -#: src/view/com/posts/FeedShutdownMsg.tsx:97 +#: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Ce fil d’actu n’est plus disponible. Nous vous montrons <0>Discover à la place." @@ -6002,7 +6053,7 @@ msgstr "Cette étiquette a été apposée par <0>{0}." msgid "This label was applied by the author." msgstr "Cette étiquette a été apposée par l’auteur·ice." -#: src/components/moderation/LabelsOnMeDialog.tsx:166 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." msgstr "Cette étiquette a été apposée par vous." @@ -6030,12 +6081,12 @@ msgstr "Ce nom est déjà utilisé" msgid "This post has been deleted." msgstr "Ce post a été supprimé." -#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 #: src/view/com/util/post-ctrls/PostCtrls.tsx:324 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Ce post n’est visible que pour les personnes connectées. Il ne sera pas visible pour les personnes qui ne sont pas connectées." -#: src/view/com/util/forms/PostDropdownBtn.tsx:440 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "This post will be hidden from feeds." msgstr "Ce post sera masqué des fils d’actu." @@ -6088,12 +6139,12 @@ msgstr "Ce compte ne suit personne." msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "Cela supprimera {0} de vos mots masqués. Vous pourrez toujours le réintégrer plus tard." -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Thread preferences" msgstr "Préférences des fils de discussion" -#: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/PreferencesThreads.tsx:51 +#: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "Préférences des fils de discussion" @@ -6101,11 +6152,11 @@ msgstr "Préférences des fils de discussion" msgid "Thread settings updated" msgstr "Paramètres du fil de discussion mis à jour" -#: src/view/screens/PreferencesThreads.tsx:119 +#: src/view/screens/PreferencesThreads.tsx:113 msgid "Threaded Mode" msgstr "Mode arborescent" -#: src/Navigation.tsx:287 +#: src/Navigation.tsx:295 msgid "Threads Preferences" msgstr "Préférences des fils de discussion" @@ -6146,8 +6197,8 @@ msgstr "Transformations" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:676 #: src/view/com/post-thread/PostThreadItem.tsx:678 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 -#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "Traduire" @@ -6160,7 +6211,7 @@ msgstr "Réessayer" msgid "TV" msgstr "TV" -#: src/view/screens/Settings/index.tsx:746 +#: src/view/screens/Settings/index.tsx:747 msgid "Two-factor authentication" msgstr "Authentification à deux facteurs" @@ -6248,7 +6299,7 @@ msgstr "Se désabonner de {0}" msgid "Unfollow Account" msgstr "Se désabonner du compte" -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Unlike this feed" msgstr "Déliker ce fil d’actu" @@ -6274,17 +6325,17 @@ msgstr "Réafficher tous les posts {displayTag}" msgid "Unmute conversation" msgstr "Réafficher la conversation" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:367 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Unmute thread" msgstr "Réafficher ce fil de discussion" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Désépingler" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 msgid "Unpin from home" msgstr "Désépingler de l’accueil" @@ -6300,7 +6351,7 @@ msgstr "Désépinglé de vos fils d’actu" msgid "Unsubscribe" msgstr "Se désabonner" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Unsubscribe from this labeler" msgstr "Se désabonner de cet étiqueteur" @@ -6329,20 +6380,20 @@ msgstr "Envoyer plutôt une photo" msgid "Upload a text file to:" msgstr "Envoyer un fichier texte vers :" -#: src/view/com/util/UserAvatar.tsx:352 -#: src/view/com/util/UserAvatar.tsx:355 +#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Envoyer à partir de l’appareil photo" -#: src/view/com/util/UserAvatar.tsx:369 +#: src/view/com/util/UserAvatar.tsx:381 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Envoyer à partir de fichiers" -#: src/view/com/util/UserAvatar.tsx:363 -#: src/view/com/util/UserAvatar.tsx:367 +#: src/view/com/util/UserAvatar.tsx:375 +#: src/view/com/util/UserAvatar.tsx:379 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -6382,7 +6433,7 @@ msgstr "Utiliser les recommandés" msgid "Use the DNS panel" msgstr "Utiliser le panneau DNS" -#: src/view/com/modals/AddAppPasswords.tsx:205 +#: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." msgstr "Utilisez-le pour vous connecter à l’autre application avec votre identifiant." @@ -6450,7 +6501,7 @@ msgstr "Pseudo ou e-mail" msgid "Users" msgstr "Comptes" -#: src/components/WhoCanReply.tsx:279 +#: src/components/WhoCanReply.tsx:280 msgid "users followed by <0/>" msgstr "comptes suivis par <0/>" @@ -6477,15 +6528,15 @@ msgstr "Valeur :" msgid "Verify DNS Record" msgstr "Vérifier l’enregistrement DNS" -#: src/view/screens/Settings/index.tsx:983 +#: src/view/screens/Settings/index.tsx:984 msgid "Verify email" msgstr "Confirmer l’e-mail" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Verify my email" msgstr "Confirmer mon e-mail" -#: src/view/screens/Settings/index.tsx:1017 +#: src/view/screens/Settings/index.tsx:1018 msgid "Verify My Email" msgstr "Confirmer mon e-mail" @@ -6502,7 +6553,7 @@ msgstr "Vérifier le fichier texte" msgid "Verify Your Email" msgstr "Vérifiez votre e-mail" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Version {appVersion} {bundleInfo}" msgstr "Version {appVersion} {bundleInfo}" @@ -6519,7 +6570,7 @@ msgstr "Les vidéos ne peuvent pas dépasser 100 Mo" msgid "View {0}'s avatar" msgstr "Voir l’avatar de {0}" -#: src/view/com/notifications/FeedItem.tsx:245 +#: src/view/com/notifications/FeedItem.tsx:246 msgid "View {0}'s profile" msgstr "Voir le profil de {0}" @@ -6551,7 +6602,7 @@ msgstr "Voir les informations sur ces étiquettes" #: src/components/ProfileHoverCard/index.web.tsx:436 #: src/components/ProfileHoverCard/index.web.tsx:463 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "Voir le profil" @@ -6563,7 +6614,7 @@ msgstr "Afficher l’avatar" msgid "View the labeling service provided by @{0}" msgstr "Voir le service d’étiquetage fourni par @{0}" -#: src/view/screens/ProfileFeed.tsx:585 +#: src/view/screens/ProfileFeed.tsx:587 msgid "View users who like this feed" msgstr "Voir les comptes qui a liké ce fil d’actu" @@ -6655,7 +6706,7 @@ msgstr "Nous sommes désolés, mais nous n’avons pas pu charger vos mots masqu msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Nous sommes désolés, mais votre recherche a été annulée. Veuillez réessayer dans quelques minutes." -#: src/view/com/composer/Composer.tsx:335 +#: src/view/com/composer/Composer.tsx:347 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é." @@ -6664,7 +6715,7 @@ msgstr "Nous sommes désolés ! Le post auquel vous répondez a été supprimé msgid "We're sorry! We can't find the page you were looking for." msgstr "Nous sommes désolés ! La page que vous recherchez est introuvable." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Nous sommes désolés ! Vous ne pouvez vous abonner qu’à vingt étiqueteurs, et vous avez atteint votre limite de vingt." @@ -6686,7 +6737,7 @@ msgstr "Quel est le nom de votre kit de démarrage ?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:376 +#: src/view/com/composer/Composer.tsx:388 msgid "What's up?" msgstr "Quoi de neuf ?" @@ -6703,15 +6754,15 @@ msgstr "Quelles langues aimeriez-vous voir apparaître dans vos fils d’actu al msgid "Who can message you?" msgstr "Qui peut discuter avec vous ?" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Who can reply" msgstr "Qui peut répondre ?" -#: src/components/WhoCanReply.tsx:211 +#: src/components/WhoCanReply.tsx:212 msgid "Who can reply dialog" msgstr "Dialogue qui permet de changer qui peut répondre" -#: src/components/WhoCanReply.tsx:215 +#: src/components/WhoCanReply.tsx:216 msgid "Who can reply?" msgstr "Qui peut répondre ?" @@ -6757,11 +6808,11 @@ msgstr "Large" msgid "Write a message" msgstr "Écrire un message" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:580 msgid "Write post" msgstr "Rédiger un post" -#: src/view/com/composer/Composer.tsx:375 +#: src/view/com/composer/Composer.tsx:387 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Rédigez votre réponse" @@ -6772,12 +6823,12 @@ msgid "Writers" msgstr "Écrivain·e·s" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:200 -#: src/view/screens/PreferencesFollowingFeed.tsx:235 -#: src/view/screens/PreferencesFollowingFeed.tsx:270 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:199 +#: src/view/screens/PreferencesFollowingFeed.tsx:234 +#: src/view/screens/PreferencesFollowingFeed.tsx:269 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "Yes" msgstr "Oui" @@ -6794,7 +6845,7 @@ msgstr "Oui, supprimer ce kit de démarrage" msgid "Yes, reactivate my account" msgstr "Oui, réactiver mon compte" -#: src/components/dms/MessageItem.tsx:188 +#: src/components/dms/MessageItem.tsx:182 msgid "Yesterday, {time}" msgstr "Hier, {time}" @@ -6935,19 +6986,19 @@ msgstr "Vous n’avez pas encore créé de kit de démarrage !" msgid "You haven't muted any words or tags yet" msgstr "Vous n’avez pas encore masqué de mot ou de mot-clé" -#: src/components/moderation/LabelsOnMeDialog.tsx:86 +#: src/components/moderation/LabelsOnMeDialog.tsx:87 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Vous pouvez faire appel des étiquettes poseés par des tiers si vous pensez qu’elles ont été appliquées par erreur." -#: src/components/moderation/LabelsOnMeDialog.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:92 msgid "You may appeal these labels if you feel they were placed in error." msgstr "Vous pouvez faire appel de ces étiquettes si vous estimez qu’elles ont été apposées par erreur." -#: src/screens/StarterPack/Wizard/State.tsx:92 +#: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 50 feeds" msgstr "Vous ne pouvez ajouter que 50 fils d’actu au maximum" -#: src/screens/StarterPack/Wizard/State.tsx:77 +#: src/screens/StarterPack/Wizard/State.tsx:78 msgid "You may only add up to 50 profiles" msgstr "Vous ne pouvez ajouter que 50 profils au maximum" @@ -6967,7 +7018,7 @@ msgstr "Vous devez autoriser l’accès à votre photothèque pour enregistrer u msgid "You must grant access to your photo library to save the image." msgstr "Vous devez autoriser l’accès à votre photothèque pour enregistrer l’image." -#: src/components/ReportDialog/SubmitView.tsx:205 +#: src/components/ReportDialog/SubmitView.tsx:222 msgid "You must select at least one labeler for a report" msgstr "Vous devez sélectionner au moins un étiqueteur pour un rapport" @@ -7007,15 +7058,15 @@ msgstr "Vous suivrez les comptes et fils d’actu suggérés une fois que vous a msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Vous suivrez les comptes suggérés une fois que vous aurez créé votre compte !" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people and {0} others" msgstr "Vous suivrez ces personnes et {0} autres" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people right away" msgstr "Vous suivrez ces personnes immédiatement" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272 msgid "You'll stay updated with these feeds" msgstr "Vous resterez informé grâce à ces fils d’actu" @@ -7106,7 +7157,7 @@ msgstr "Vos mots masqués" msgid "Your password has been changed successfully!" msgstr "Votre mot de passe a été modifié avec succès !" -#: src/view/com/composer/Composer.tsx:366 +#: src/view/com/composer/Composer.tsx:378 msgid "Your post has been published" msgstr "Votre post a été publié" @@ -7114,7 +7165,7 @@ msgstr "Votre post a été publié" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Vos posts, les likes et les blocages sont publics. Les silences (comptes masqués) sont privés." -#: src/view/screens/Settings/index.tsx:148 +#: src/view/screens/Settings/index.tsx:149 msgid "Your profile" msgstr "Votre profil" @@ -7122,7 +7173,7 @@ msgstr "Votre profil" 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:365 +#: src/view/com/composer/Composer.tsx:377 msgid "Your reply has been published" msgstr "Votre réponse a été publiée" diff --git a/src/locale/locales/ga/messages.po b/src/locale/locales/ga/messages.po index 2774405b7c..51d196a40c 100644 --- a/src/locale/locales/ga/messages.po +++ b/src/locale/locales/ga/messages.po @@ -20,7 +20,7 @@ msgstr "(tá ábhar leabaithe ann)" msgid "(no email)" msgstr "(gan ríomhphost)" -#: src/view/com/notifications/FeedItem.tsx:294 +#: src/view/com/notifications/FeedItem.tsx:297 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {duine amháin eile} two {beirt eile} few {{formattedCount} dhuine eile} many {{formattedCount} nduine eile} other {{formattedCount} duine eile}}" @@ -89,7 +89,7 @@ msgstr "{0, plural, one {athphostáil} two {athphostáil} few {athphostáil} man msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {Dímhol (# mholadh)} two {Dímhol (# mholadh)} few {Dímhol (# mholadh)} many {Dímhol (# moladh)} other {Dímhol (# moladh)}}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "" @@ -102,7 +102,7 @@ msgstr "" #~ msgid "{0} your feeds" #~ msgstr "Sábháilte le mo chuid fothaí" -#: src/view/com/util/UserAvatar.tsx:419 +#: src/view/com/util/UserAvatar.tsx:431 msgid "{0}'s avatar" msgstr "abhatár {0}" @@ -150,7 +150,7 @@ msgstr "{estimatedTimeHrs, plural, one {uair} two {uair} few {uair} many {uair} msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {nóiméad} two {nóiméad} few {nóiméad} many {nóiméad} other {nóiméad}}" -#: src/components/ProfileHoverCard/index.web.tsx:504 +#: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} á leanúint" @@ -161,11 +161,11 @@ msgstr "Ní féidir TD a chur chuig {handle}" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:588 +#: src/view/screens/ProfileFeed.tsx:590 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {Molta ag úsáideoir amháin} two {Molta ag beirt úsáideoirí} few {Molta ag # úsáideoir} many {Molta ag # n-úsáideoir} other {Molta ag # úsáideoir}}" -#: src/view/shell/Drawer.tsx:462 +#: src/view/shell/Drawer.tsx:452 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} gan léamh" @@ -181,7 +181,7 @@ msgstr "" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "{value, plural, =0 {Taispeáin gach freagra} one {Taispeáin freagraí a bhfuil ar a laghad moladh amháin acu} two {Taispeáin freagraí a bhfuil ar a laghad # mholadh acu} few {Taispeáin freagraí a bhfuil ar a laghad # mholadh acu} many {Taispeáin freagraí a bhfuil ar a laghad # moladh acu} other {Taispeáin freagraí a bhfuil ar a laghad # moladh acu}}" -#: src/components/WhoCanReply.tsx:295 +#: src/components/WhoCanReply.tsx:296 msgid "<0/> members" msgstr "<0/> ball" @@ -203,11 +203,11 @@ msgstr "" #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "" -#: src/view/shell/Drawer.tsx:101 +#: src/view/shell/Drawer.tsx:100 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {leantóir} two {leantóir} few {leantóir} many {leantóir} other {leantóir}}" -#: src/view/shell/Drawer.tsx:112 +#: src/view/shell/Drawer.tsx:111 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {á leanúint} two {á leanúint} few {á leanúint} many {á leanúint} other {á leanúint}}" @@ -273,15 +273,15 @@ msgid "Access profile and other navigation links" msgstr "Oscail próifíl agus nascanna eile" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:519 +#: src/view/screens/Settings/index.tsx:520 msgid "Accessibility" msgstr "Inrochtaineacht" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Accessibility settings" msgstr "Socruithe inrochtaineachta" -#: src/Navigation.tsx:301 +#: src/Navigation.tsx:309 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "Socruithe Inrochtaineachta" @@ -291,8 +291,8 @@ msgstr "Socruithe Inrochtaineachta" #~ msgstr "cuntas" #: src/screens/Login/LoginForm.tsx:190 -#: src/view/screens/Settings/index.tsx:346 -#: src/view/screens/Settings/index.tsx:753 +#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:754 msgid "Account" msgstr "Cuntas" @@ -339,7 +339,7 @@ msgid "Account unmuted" msgstr "Níl an cuntas i bhfolach a thuilleadh" #: src/components/dialogs/MutedWords.tsx:164 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 msgid "Add" @@ -363,8 +363,8 @@ msgstr "Cuir cuntas leis an liosta seo" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:423 -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:433 msgid "Add account" msgstr "Cuir cuntas leis seo" @@ -441,7 +441,7 @@ msgstr "Cuir le mo chuid fothaí" #~ msgid "Added" #~ msgstr "Curtha leis" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "Curtha leis an liosta" @@ -450,7 +450,7 @@ msgstr "Curtha leis an liosta" msgid "Added to my feeds" msgstr "Curtha le mo chuid fothaí" -#: src/view/screens/PreferencesFollowingFeed.tsx:172 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Sonraigh an méid moltaí ar fhreagra atá de dhíth le bheith le feiceáil i d'fhotha." @@ -468,7 +468,7 @@ msgid "Adult content is disabled." msgstr "Tá ábhar do dhaoine fásta curtha ar ceal." #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:687 +#: src/view/screens/Settings/index.tsx:688 msgid "Advanced" msgstr "Ardleibhéal" @@ -484,8 +484,8 @@ msgstr "" msgid "All the feeds you've saved, right in one place." msgstr "Na fothaí go léir a shábháil tú, in áit amháin." -#: src/view/com/modals/AddAppPasswords.tsx:187 -#: src/view/com/modals/AddAppPasswords.tsx:194 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "Ceadaigh fáil ar do chuid TDanna" @@ -510,7 +510,7 @@ msgstr "Logáilte isteach cheana mar @{0}" #: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "ALT" msgstr "ALT" @@ -520,7 +520,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Téacs malartach" -#: src/view/com/util/post-embeds/GifEmbed.tsx:180 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Alt Text" msgstr "Téacs Malartach" @@ -549,8 +549,8 @@ msgstr "" #~ msgid "An error occurred while saving the image." #~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:70 -#: src/components/StarterPack/ShareDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the QR code!" msgstr "" @@ -566,10 +566,18 @@ msgstr "" msgid "An issue not included in these options" msgstr "Rud nach bhfuil ar fáil sna roghanna seo" +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +msgid "An issue occurred while trying to open the chat" +msgstr "" + #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:309 -#: src/components/ProfileCard.tsx:329 +#: src/components/ProfileCard.tsx:311 +#: src/components/ProfileCard.tsx:331 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -581,8 +589,8 @@ msgstr "Tharla fadhb. Déan iarracht eile, le do thoil." msgid "an unknown error occurred" msgstr "tharla earráid nach eol dúinn" -#: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:291 +#: src/components/WhoCanReply.tsx:317 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "agus" @@ -591,7 +599,7 @@ msgstr "agus" msgid "Animals" msgstr "Ainmhithe" -#: src/view/com/util/post-embeds/GifEmbed.tsx:146 +#: src/view/com/util/post-embeds/GifEmbed.tsx:155 msgid "Animated GIF" msgstr "GIF beo" @@ -615,26 +623,26 @@ msgstr "Ní féidir ach litreacha, uimhreacha, spásanna, daiseanna agus fostrí msgid "App Password names must be at least 4 characters long." msgstr "Caithfear 4 charachtar ar a laghad a bheith in ainmneacha phasfhocal na haipe." -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "App password settings" msgstr "Socruithe phasfhocal na haipe" -#: src/Navigation.tsx:269 +#: src/Navigation.tsx:277 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:707 +#: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" msgstr "Pasfhocal na haipe" -#: src/components/moderation/LabelsOnMeDialog.tsx:151 -#: src/components/moderation/LabelsOnMeDialog.tsx:154 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "Achomharc" -#: src/components/moderation/LabelsOnMeDialog.tsx:236 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Appeal \"{0}\" label" msgstr "Achomharc in aghaidh lipéid \"{0}\"" -#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/components/moderation/LabelsOnMeDialog.tsx:248 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Achomharc déanta" @@ -650,7 +658,7 @@ msgstr "Achomharc déanta" msgid "Appeal this decision" msgstr "Déan achomharc i gcoinne an chinnidh seo" -#: src/view/screens/Settings/index.tsx:440 +#: src/view/screens/Settings/index.tsx:441 msgid "Appearance" msgstr "Cuma" @@ -660,8 +668,8 @@ msgid "Apply default recommended feeds" msgstr "Bain úsáid as fothaí réamhshocraithe a moladh" #: src/screens/StarterPack/StarterPackScreen.tsx:610 -msgid "Are you sure you want delete this starter pack?" -msgstr "" +#~ msgid "Are you sure you want delete this starter pack?" +#~ msgstr "" #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" @@ -676,6 +684,10 @@ msgstr "An bhfuil tú cinnte gur mhaith leat pasfhocal na haipe “{name}” a s msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "An bhfuil tú cinnte gur mhaith leat an teachtaireacht seo a scrios? Scriosfar duitse í ach ní don duine eile atá páirteach." +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:189 #, fuzzy #~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." @@ -693,7 +705,7 @@ msgstr "An bhfuil tú cinnte gur mhaith leat {0} a bhaint de do chuid fothaí?" msgid "Are you sure you want to remove this from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:649 +#: src/view/com/composer/Composer.tsx:680 msgid "Are you sure you'd like to discard this draft?" msgstr "An bhfuil tú cinnte gur mhaith leat an dréacht seo a scriosadh?" @@ -719,8 +731,8 @@ msgid "At least 3 characters" msgstr "3 charachtar ar a laghad" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:281 -#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/components/moderation/LabelsOnMeDialog.tsx:302 +#: src/components/moderation/LabelsOnMeDialog.tsx:303 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -733,7 +745,6 @@ msgstr "3 charachtar ar a laghad" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" @@ -743,7 +754,7 @@ msgstr "Ar ais" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Toisc go bhfuil suim agat in {interestsText}" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Basics" msgstr "Bunrudaí" @@ -751,7 +762,7 @@ msgstr "Bunrudaí" msgid "Birthday" msgstr "Breithlá" -#: src/view/screens/Settings/index.tsx:378 +#: src/view/screens/Settings/index.tsx:379 msgid "Birthday:" msgstr "Breithlá:" @@ -795,7 +806,7 @@ msgstr "Blocáilte" msgid "Blocked accounts" msgstr "Cuntais bhlocáilte" -#: src/Navigation.tsx:145 +#: src/Navigation.tsx:148 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Cuntais bhlocáilte" @@ -874,21 +885,21 @@ msgstr "Déan íomhánna doiléir agus scag ó fhothaí iad" msgid "Books" msgstr "Leabhair" -#: src/components/FeedInterstitials.tsx:281 +#: src/components/FeedInterstitials.tsx:285 msgid "Browse more accounts on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:411 +#: src/components/FeedInterstitials.tsx:415 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:266 -#: src/components/FeedInterstitials.tsx:396 +#: src/components/FeedInterstitials.tsx:270 +#: src/components/FeedInterstitials.tsx:400 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:289 -#: src/components/FeedInterstitials.tsx:420 +#: src/components/FeedInterstitials.tsx:293 +#: src/components/FeedInterstitials.tsx:424 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -933,7 +944,7 @@ msgstr "leat" msgid "Camera" msgstr "Ceamara" -#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Ní féidir ach litreacha, uimhreacha, spásanna, daiseanna agus fostríocanna a bheith ann. Caithfear 4 charachtar ar a laghad a bheith ann agus gan níos mó ná 32 charachtar." @@ -942,8 +953,8 @@ msgstr "Ní féidir ach litreacha, uimhreacha, spásanna, daiseanna agus fostrí #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:451 -#: src/view/com/composer/Composer.tsx:457 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -961,7 +972,7 @@ msgstr "Ní féidir ach litreacha, uimhreacha, spásanna, daiseanna agus fostrí #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:139 #: src/view/screens/Search/Search.tsx:704 -#: src/view/shell/desktop/Search.tsx:218 +#: src/view/shell/desktop/Search.tsx:219 msgid "Cancel" msgstr "Cealaigh" @@ -997,8 +1008,8 @@ msgstr "Ná déan athlua na postála" msgid "Cancel reactivation and log out" msgstr "Cuir an t-athghníomhú ar ceal agus logáil amach" -#: src/view/com/modals/ListAddRemoveUsers.tsx:87 -#: src/view/shell/desktop/Search.tsx:214 +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "Cealaigh an cuardach" @@ -1010,17 +1021,17 @@ msgstr "Cuireann sé seo oscailt an tsuímh gréasáin atá nasctha ar ceal" msgid "Change" msgstr "Athraigh" -#: src/view/screens/Settings/index.tsx:372 +#: src/view/screens/Settings/index.tsx:373 msgctxt "action" msgid "Change" msgstr "Athraigh" -#: src/view/screens/Settings/index.tsx:719 +#: src/view/screens/Settings/index.tsx:720 msgid "Change handle" msgstr "Athraigh mo leasainm" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:730 +#: src/view/screens/Settings/index.tsx:731 msgid "Change Handle" msgstr "Athraigh mo leasainm" @@ -1028,12 +1039,12 @@ msgstr "Athraigh mo leasainm" msgid "Change my email" msgstr "Athraigh mo ríomhphost" -#: src/view/screens/Settings/index.tsx:764 +#: src/view/screens/Settings/index.tsx:765 msgid "Change password" msgstr "Athraigh mo phasfhocal" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:775 +#: src/view/screens/Settings/index.tsx:776 msgid "Change Password" msgstr "Athraigh mo phasfhocal" @@ -1045,7 +1056,7 @@ msgstr "Athraigh an teanga phostála go {0}" msgid "Change Your Email" msgstr "Athraigh do ríomhphost" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:321 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -1057,14 +1068,14 @@ msgstr "Balbhaíodh an comhrá" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:326 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" msgstr "Socruithe comhrá" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:648 +#: src/view/screens/Settings/index.tsx:649 msgid "Chat Settings" msgstr "Socruithe Comhrá" @@ -1150,19 +1161,19 @@ msgstr "" msgid "Choose your password" msgstr "Roghnaigh do phasfhocal" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clear all legacy storage data" msgstr "Glan na sonraí oidhreachta ar fad atá i dtaisce." -#: src/view/screens/Settings/index.tsx:914 +#: src/view/screens/Settings/index.tsx:915 msgid "Clear all legacy storage data (restart after this)" msgstr "Glan na sonraí oidhreachta ar fad atá i dtaisce. Ansin atosaigh." -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clear all storage data" msgstr "Glan na sonraí ar fad atá i dtaisce." -#: src/view/screens/Settings/index.tsx:926 +#: src/view/screens/Settings/index.tsx:927 msgid "Clear all storage data (restart after this)" msgstr "Glan na sonraí ar fad atá i dtaisce. Ansin atosaigh." @@ -1171,11 +1182,11 @@ msgstr "Glan na sonraí ar fad atá i dtaisce. Ansin atosaigh." msgid "Clear search query" msgstr "Glan an cuardach" -#: src/view/screens/Settings/index.tsx:912 +#: src/view/screens/Settings/index.tsx:913 msgid "Clears all legacy storage data" msgstr "Glanann seo na sonraí oidhreachta ar fad atá i dtaisce" -#: src/view/screens/Settings/index.tsx:924 +#: src/view/screens/Settings/index.tsx:925 msgid "Clears all storage data" msgstr "Glanann seo na sonraí ar fad atá i dtaisce" @@ -1204,7 +1215,7 @@ msgstr "Cliceáil anseo le clár na clibe le haghaidh {tag} a oscailt" #~ msgid "Click here to open tag menu for #{tag}" #~ msgstr "Cliceáil anseo le clár na clibe le haghaidh #{tag} a oscailt" -#: src/components/dms/MessageItem.tsx:237 +#: src/components/dms/MessageItem.tsx:231 msgid "Click to retry failed message" msgstr "Cliceáil le triail eile a bhaint as teachtaireacht ar theip uirthi" @@ -1225,7 +1236,7 @@ msgstr "Trup, Trup a Chapaillín 🐴" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/util/post-embeds/GifEmbed.tsx:195 msgid "Close" msgstr "Dún" @@ -1280,7 +1291,7 @@ msgstr "Dúnann sé seo an barra nascleanúna ag an mbun" msgid "Closes password update alert" msgstr "Dúnann sé seo an rabhadh faoi uasdátú an phasfhocail" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:472 msgid "Closes post composer and discards post draft" msgstr "Dúnann sé seo cumadóir na postálacha agus ní shábhálann sé an dréacht" @@ -1288,11 +1299,11 @@ msgstr "Dúnann sé seo cumadóir na postálacha agus ní shábhálann sé an dr msgid "Closes viewer for header image" msgstr "Dúnann sé seo an t-amharcóir le haghaidh íomhá an cheanntáisc" -#: src/view/com/notifications/FeedItem.tsx:237 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Collapse list of users" msgstr "Laghdaigh an liosta úsáideoirí" -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:440 msgid "Collapses list of users for a given notification" msgstr "Laghdaíonn sé seo liosta na n-úsáideoirí le haghaidh an fhógra sin" @@ -1306,7 +1317,7 @@ msgstr "Greann" msgid "Comics" msgstr "Greannáin" -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:267 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Treoirlínte an phobail" @@ -1319,7 +1330,7 @@ msgstr "Críochnaigh agus tosaigh ag baint úsáide as do chuntas." msgid "Complete the challenge" msgstr "Freagair an dúshlán" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:582 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Scríobh postálacha chomh fada le {MAX_GRAPHEME_LENGTH} litir agus carachtair eile" @@ -1344,8 +1355,6 @@ msgstr "Le socrú i <0>socruithe na modhnóireachta." #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/PreferencesFollowingFeed.tsx:307 -#: src/view/screens/PreferencesThreads.tsx:159 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 msgid "Confirm" @@ -1462,12 +1471,12 @@ msgstr "Scriosadh an comhrá" msgid "Cooking" msgstr "Cócaireacht" -#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Cóipeáilte" -#: src/view/screens/Settings/index.tsx:264 +#: src/view/screens/Settings/index.tsx:265 msgid "Copied build version to clipboard" msgstr "Leagan cóipeáilte sa ghearrthaisce" @@ -1475,7 +1484,7 @@ msgstr "Leagan cóipeáilte sa ghearrthaisce" #: src/view/com/modals/AddAppPasswords.tsx:80 #: src/view/com/modals/ChangeHandle.tsx:320 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:189 +#: src/view/com/util/forms/PostDropdownBtn.tsx:192 #: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Cóipeáilte sa ghearrthaisce" @@ -1484,12 +1493,12 @@ msgstr "Cóipeáilte sa ghearrthaisce" msgid "Copied!" msgstr "Cóipeáilte!" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" msgstr "Cóipeálann sé seo pasfhocal na haipe" -#: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/view/com/modals/AddAppPasswords.tsx:213 +#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Cóipeáil" @@ -1502,11 +1511,11 @@ msgstr "Cóipeáil {0}" msgid "Copy code" msgstr "Cóipeáil an cód" -#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" msgstr "" @@ -1514,8 +1523,8 @@ msgstr "" msgid "Copy link to list" msgstr "Cóipeáil an nasc leis an liosta" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 msgid "Copy link to post" msgstr "Cóipeáil an nasc leis an bpostáil" @@ -1524,20 +1533,24 @@ msgstr "Cóipeáil an nasc leis an bpostáil" msgid "Copy message text" msgstr "Cóipeáil téacs na teachtaireachta" -#: src/view/com/util/forms/PostDropdownBtn.tsx:285 -#: src/view/com/util/forms/PostDropdownBtn.tsx:287 +#: src/view/com/util/forms/PostDropdownBtn.tsx:288 +#: src/view/com/util/forms/PostDropdownBtn.tsx:290 msgid "Copy post text" msgstr "Cóipeáil téacs na postála" -#: src/components/StarterPack/QrCodeDialog.tsx:168 +#: src/components/StarterPack/QrCodeDialog.tsx:171 msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:272 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "An polasaí maidir le cóipcheart" +#: src/view/com/composer/videos/state.ts:31 +msgid "Could not compress video" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "Níor éiríodh ar an gcomhrá a fhágail" @@ -1572,17 +1585,17 @@ msgstr "" msgid "Create a new account" msgstr "Cruthaigh cuntas nua" -#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:425 msgid "Create a new Bluesky account" msgstr "Cruthaigh cuntas nua Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:151 +#: src/components/StarterPack/QrCodeDialog.tsx:154 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:351 msgid "Create a starter pack" msgstr "" @@ -1607,7 +1620,7 @@ msgstr "Cruthaigh abhatár nua ina ionad sin" msgid "Create another" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" msgstr "Cruthaigh pasfhocal aipe" @@ -1647,7 +1660,7 @@ msgid "Custom domain" msgstr "Sainfhearann" #: src/view/screens/Feeds.tsx:760 -#: src/view/screens/Search/Explore.tsx:390 +#: src/view/screens/Search/Explore.tsx:392 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Cruthaíonn an pobal fothaí chun eispéiris nua a chur ar fáil duit, agus chun cabhrú leat teacht ar an ábhar a thaitníonn leat" @@ -1655,8 +1668,8 @@ msgstr "Cruthaíonn an pobal fothaí chun eispéiris nua a chur ar fáil duit, a msgid "Customize media from external sites." msgstr "Oiriúnaigh na meáin ó shuíomhanna seachtracha" -#: src/view/screens/Settings/index.tsx:459 -#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:460 +#: src/view/screens/Settings/index.tsx:486 msgid "Dark" msgstr "Dorcha" @@ -1664,7 +1677,7 @@ msgstr "Dorcha" msgid "Dark mode" msgstr "Modh dorcha" -#: src/view/screens/Settings/index.tsx:472 +#: src/view/screens/Settings/index.tsx:473 msgid "Dark Theme" msgstr "Téama Dorcha" @@ -1673,15 +1686,15 @@ msgid "Date of birth" msgstr "Dáta breithe" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:807 +#: src/view/screens/Settings/index.tsx:808 msgid "Deactivate account" msgstr "Díghníomhaigh mo chuntas" -#: src/view/screens/Settings/index.tsx:819 +#: src/view/screens/Settings/index.tsx:820 msgid "Deactivate my account" msgstr "Díghníomhaigh mo chuntas" -#: src/view/screens/Settings/index.tsx:874 +#: src/view/screens/Settings/index.tsx:875 msgid "Debug Moderation" msgstr "Dífhabhtaigh Modhnóireacht" @@ -1693,13 +1706,13 @@ msgstr "Painéal dífhabhtaithe" #: src/screens/StarterPack/StarterPackScreen.tsx:562 #: src/screens/StarterPack/StarterPackScreen.tsx:641 #: src/screens/StarterPack/StarterPackScreen.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Scrios" -#: src/view/screens/Settings/index.tsx:829 +#: src/view/screens/Settings/index.tsx:830 msgid "Delete account" msgstr "Scrios an cuntas" @@ -1719,8 +1732,8 @@ msgstr "Scrios pasfhocal na haipe" msgid "Delete app password?" msgstr "Scrios pasfhocal na haipe?" -#: src/view/screens/Settings/index.tsx:891 -#: src/view/screens/Settings/index.tsx:894 +#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:895 msgid "Delete chat declaration record" msgstr "Scrios taifead dearbhaithe comhrá" @@ -1744,12 +1757,12 @@ msgstr "Scrios an teachtaireacht seo domsa" msgid "Delete my account" msgstr "Scrios mo chuntas" -#: src/view/screens/Settings/index.tsx:841 +#: src/view/screens/Settings/index.tsx:842 msgid "Delete My Account…" msgstr "Scrios mo chuntas…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:414 -#: src/view/com/util/forms/PostDropdownBtn.tsx:416 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 +#: src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "Scrios an phostáil" @@ -1766,7 +1779,7 @@ msgstr "" msgid "Delete this list?" msgstr "An bhfuil fonn ort an liosta seo a scriosadh?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:428 +#: src/view/com/util/forms/PostDropdownBtn.tsx:431 msgid "Delete this post?" msgstr "An bhfuil fonn ort an phostáil seo a scriosadh?" @@ -1778,7 +1791,7 @@ msgstr "Scriosta" msgid "Deleted post." msgstr "Scriosadh an phostáil." -#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:893 msgid "Deletes the chat declaration record" msgstr "Scriosann sé seo an taifead dearbhaithe comhrá" @@ -1793,11 +1806,11 @@ msgstr "Cur síos" msgid "Descriptive alt text" msgstr "Téacs malartach tuairisciúil" -#: src/view/com/composer/Composer.tsx:283 +#: src/view/com/composer/Composer.tsx:295 msgid "Did you want to say anything?" msgstr "Ar mhaith leat rud éigin a rá?" -#: src/view/screens/Settings/index.tsx:478 +#: src/view/screens/Settings/index.tsx:479 msgid "Dim" msgstr "Breacdhorcha" @@ -1834,11 +1847,11 @@ msgstr "Ná húsáid aiseolas haptach" msgid "Disabled" msgstr "Díchumasaithe" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:682 msgid "Discard" msgstr "Ná sábháil" -#: src/view/com/composer/Composer.tsx:648 +#: src/view/com/composer/Composer.tsx:679 msgid "Discard draft?" msgstr "Faigh réidh leis an dréacht?" @@ -1856,7 +1869,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "Aimsigh sainfhothaí nua" -#: src/view/screens/Search/Explore.tsx:388 +#: src/view/screens/Search/Explore.tsx:390 msgid "Discover new feeds" msgstr "" @@ -1909,22 +1922,20 @@ msgstr "Fearann dearbhaithe!" #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesFollowingFeed.tsx:310 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Déanta" #: src/view/com/modals/EditImage.tsx:334 -#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" msgstr "Déanta" @@ -1933,7 +1944,7 @@ msgstr "Déanta" msgid "Done{extraText}" msgstr "Déanta{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319 msgid "Download Bluesky" msgstr "" @@ -2003,7 +2014,7 @@ msgctxt "action" msgid "Edit" msgstr "Eagar" -#: src/view/com/util/UserAvatar.tsx:325 +#: src/view/com/util/UserAvatar.tsx:337 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "Cuir an t-abhatár in eagar" @@ -2025,7 +2036,7 @@ msgstr "Athraigh mionsonraí an liosta" msgid "Edit Moderation List" msgstr "Athraigh liosta na modhnóireachta" -#: src/Navigation.tsx:274 +#: src/Navigation.tsx:282 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -2040,12 +2051,12 @@ msgstr "Athraigh mo phróifíl" msgid "Edit People" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "Athraigh an phróifíl" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "Athraigh an Phróifíl" @@ -2062,7 +2073,7 @@ msgstr "" msgid "Edit User List" msgstr "Athraigh an liosta d’úsáideoirí" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Edit who can reply" msgstr "" @@ -2074,7 +2085,7 @@ msgstr "Athraigh d’ainm taispeána" msgid "Edit your profile description" msgstr "Athraigh an cur síos ort sa phróifíl" -#: src/Navigation.tsx:343 +#: src/Navigation.tsx:356 msgid "Edit your starter pack" msgstr "" @@ -2113,7 +2124,7 @@ msgstr "Seoladh ríomhphoist uasdátaithe" msgid "Email verified" msgstr "Ríomhphost dearbhaithe" -#: src/view/screens/Settings/index.tsx:350 +#: src/view/screens/Settings/index.tsx:351 msgid "Email:" msgstr "Ríomhphost:" @@ -2122,8 +2133,8 @@ msgid "Embed HTML code" msgstr "Leabaigh an cód HTML" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:324 -#: src/view/com/util/forms/PostDropdownBtn.tsx:326 +#: src/view/com/util/forms/PostDropdownBtn.tsx:327 +#: src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "Leabaigh an phostáil" @@ -2152,11 +2163,16 @@ msgstr "Cuir ábhar do dhaoine fásta ar fáil" msgid "Enable external media" msgstr "Cuir meáin sheachtracha ar fáil" -#: src/view/screens/PreferencesExternalEmbeds.tsx:76 +#: src/view/screens/PreferencesExternalEmbeds.tsx:73 msgid "Enable media players for" msgstr "Cuir seinnteoirí na meán ar fáil le haghaidh" -#: src/view/screens/PreferencesFollowingFeed.tsx:146 +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 msgid "Enable this setting to only see replies between people you follow." msgstr "Cuir an socrú seo ar siúl le gan ach freagraí i measc na ndaoine a leanann tú a fheiceáil." @@ -2183,7 +2199,7 @@ msgstr "Deireadh an fhotha" msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:160 +#: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "Cuir isteach ainm don phasfhocal aipe seo" @@ -2251,7 +2267,7 @@ msgid "Everybody" msgstr "Chuile dhuine" #: src/components/WhoCanReply.tsx:69 -#: src/components/WhoCanReply.tsx:240 +#: src/components/WhoCanReply.tsx:241 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "Tig le chuile dhuine freagra a thabhairt" @@ -2287,8 +2303,8 @@ msgstr "Fágann sé seo próiseas laghdú an íomhá" msgid "Exits image view" msgstr "Fágann sé seo an radharc ar an íomhá" -#: src/view/com/modals/ListAddRemoveUsers.tsx:88 -#: src/view/shell/desktop/Search.tsx:215 +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +#: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "Fágann sé seo an cuardach" @@ -2296,7 +2312,7 @@ msgstr "Fágann sé seo an cuardach" msgid "Expand alt text" msgstr "Taispeáin an téacs malartach ina iomláine" -#: src/view/com/notifications/FeedItem.tsx:238 +#: src/view/com/notifications/FeedItem.tsx:239 msgid "Expand list of users" msgstr "Leathnaigh an liosta úsáideoirí" @@ -2305,6 +2321,10 @@ msgstr "Leathnaigh an liosta úsáideoirí" 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" +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." msgstr "Meáin is féidir a bheith gáirsiúil nó goilliúnach." @@ -2313,12 +2333,12 @@ msgstr "Meáin is féidir a bheith gáirsiúil nó goilliúnach." msgid "Explicit sexual images." msgstr "Íomhánna gnéasacha." -#: src/view/screens/Settings/index.tsx:787 +#: src/view/screens/Settings/index.tsx:788 msgid "Export my data" msgstr "Easpórtáil mo chuid sonraí" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:798 +#: src/view/screens/Settings/index.tsx:799 msgid "Export My Data" msgstr "Easpórtáil mo chuid sonraí" @@ -2328,17 +2348,17 @@ msgid "External Media" msgstr "Meáin sheachtracha" #: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/view/screens/PreferencesExternalEmbeds.tsx:64 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:293 +#: src/Navigation.tsx:301 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:680 +#: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" msgstr "Roghanna maidir le meáin sheachtracha" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "External media settings" msgstr "Socruithe maidir le meáin sheachtracha" @@ -2368,8 +2388,8 @@ msgstr "Teip ar scriosadh na postála. Déan iarracht eile." msgid "Failed to delete starter pack" msgstr "" -#: src/view/screens/Search/Explore.tsx:426 -#: src/view/screens/Search/Explore.tsx:454 +#: src/view/screens/Search/Explore.tsx:428 +#: src/view/screens/Search/Explore.tsx:456 msgid "Failed to load feeds preferences" msgstr "" @@ -2391,20 +2411,24 @@ msgstr "Teip ar theachtaireachtaí roimhe seo a lódáil" #~ msgid "Failed to load recommended feeds" #~ msgstr "Teip ar lódáil na bhfothaí molta" -#: src/view/screens/Search/Explore.tsx:419 -#: src/view/screens/Search/Explore.tsx:447 +#: src/view/screens/Search/Explore.tsx:421 +#: src/view/screens/Search/Explore.tsx:449 msgid "Failed to load suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:377 +#: src/view/screens/Search/Explore.tsx:379 msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:86 +#: src/view/com/lightbox/Lightbox.tsx:90 msgid "Failed to save image: {0}" msgstr "Níor sábháladh an íomhá: {0}" -#: src/components/dms/MessageItem.tsx:230 +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + +#: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "Teip ar sheoladh" @@ -2413,12 +2437,12 @@ msgstr "Teip ar sheoladh" #~ msgid "Failed to send message(s)." #~ msgstr "Teip ar theachtaireacht a scriosadh" -#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: src/components/moderation/LabelsOnMeDialog.tsx:244 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "Teip ar achomharc a dhéanamh, bain triail eile as, le do thoil." -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:181 msgid "Failed to toggle thread mute, please try again" msgstr "" @@ -2431,7 +2455,7 @@ msgstr "" msgid "Failed to update settings" msgstr "Teip ar shocruithe a uasdátú" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:217 msgid "Feed" msgstr "Fotha" @@ -2449,19 +2473,19 @@ msgid "Feed toggle" msgstr "" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:345 +#: src/view/shell/Drawer.tsx:332 msgid "Feedback" msgstr "Aiseolas" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:336 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 #: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:493 -#: src/view/shell/Drawer.tsx:494 +#: src/view/shell/Drawer.tsx:483 +#: src/view/shell/Drawer.tsx:484 msgid "Feeds" msgstr "Fothaí" @@ -2523,11 +2547,11 @@ msgstr "Aimsigh postálacha agus úsáideoirí ar Bluesky" #~ msgid "Finding similar accounts..." #~ msgstr "Cuntais eile atá cosúil leis seo á n-aimsiú..." -#: src/view/screens/PreferencesFollowingFeed.tsx:110 +#: src/view/screens/PreferencesFollowingFeed.tsx:108 msgid "Fine-tune the content you see on your Following feed." msgstr "Mionathraigh an t-ábhar a fheiceann tú ar an bhfotha Following." -#: src/view/screens/PreferencesThreads.tsx:60 +#: src/view/screens/PreferencesThreads.tsx:54 msgid "Fine-tune the discussion threads." msgstr "Mionathraigh na snáitheanna chomhrá" @@ -2557,7 +2581,7 @@ msgid "Flip vertically" msgstr "Iompaigh go hingearach é" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:341 +#: src/components/ProfileCard.tsx:343 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2602,7 +2626,7 @@ msgstr "" msgid "Follow Back" msgstr "Lean Ar Ais" -#: src/view/screens/Search/Explore.tsx:333 +#: src/view/screens/Search/Explore.tsx:335 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "" @@ -2619,22 +2643,22 @@ msgstr "" #~ msgstr "" #: src/view/com/profile/ProfileCard.tsx:190 -msgid "Followed by {0}" -msgstr "Leanta ag {0}" +#~ msgid "Followed by {0}" +#~ msgstr "Leanta ag {0}" -#: src/components/KnownFollowers.tsx:223 +#: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "" -#: src/components/KnownFollowers.tsx:209 +#: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "" -#: src/components/KnownFollowers.tsx:196 +#: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" msgstr "" -#: src/components/KnownFollowers.tsx:178 +#: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" @@ -2642,15 +2666,15 @@ msgstr "" msgid "Followed users" msgstr "Cuntais a leanann tú" -#: src/view/screens/PreferencesFollowingFeed.tsx:153 +#: src/view/screens/PreferencesFollowingFeed.tsx:152 msgid "Followed users only" msgstr "Cuntais a leanann tú amháin" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:198 msgid "followed you" msgstr "— lean sé/sí thú" -#: src/view/com/notifications/FeedItem.tsx:195 +#: src/view/com/notifications/FeedItem.tsx:196 msgid "followed you back" msgstr "" @@ -2659,7 +2683,7 @@ msgstr "" msgid "Followers" msgstr "Leantóirí" -#: src/Navigation.tsx:182 +#: src/Navigation.tsx:185 msgid "Followers of @{0} that you know" msgstr "" @@ -2669,7 +2693,7 @@ msgid "Followers you know" msgstr "" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:335 +#: src/components/ProfileCard.tsx:337 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2681,7 +2705,7 @@ msgstr "" msgid "Following" msgstr "Á leanúint" -#: src/components/ProfileCard.tsx:301 +#: src/components/ProfileCard.tsx:303 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Ag leanúint {0}" @@ -2690,13 +2714,13 @@ msgstr "Ag leanúint {0}" msgid "Following {name}" msgstr "Ag leanacht {name}" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Following feed preferences" msgstr "Roghanna le haghaidh an fhotha Following" -#: src/Navigation.tsx:280 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:583 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesFollowingFeed.tsx:105 +#: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "Roghanna don Fhotha Following" @@ -2721,7 +2745,7 @@ msgstr "Bia" msgid "For security reasons, we'll need to send a confirmation code to your email address." msgstr "Ar chúiseanna slándála, beidh orainn cód dearbhaithe a chur chuig do sheoladh ríomhphoist." -#: src/view/com/modals/AddAppPasswords.tsx:232 +#: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Ar chúiseanna slándála, ní bheidh tú in ann é seo a fheiceáil arís. Má chailleann tú an pasfhocal seo beidh ort ceann nua a chruthú." @@ -2746,7 +2770,7 @@ msgstr "Is minic a phostálann siad ábhar nach bhfuil de dhíth" msgid "From @{sanitizedAuthor}" msgstr "Ó @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:236 +#: src/view/com/posts/FeedItem.tsx:242 msgctxt "from-feed" msgid "From <0/>" msgstr "Ó <0/>" @@ -2759,6 +2783,10 @@ msgstr "Gailearaí" msgid "Generate a starter pack" msgstr "" +#: src/view/shell/Drawer.tsx:336 +msgid "Get help" +msgstr "" + #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" msgstr "Tús maith" @@ -2806,12 +2834,12 @@ msgid "Go Back" msgstr "Ar ais" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -msgid "Go back to previous screen" -msgstr "" +#~ msgid "Go back to previous screen" +#~ msgstr "" #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/components/ReportDialog/SubmitView.tsx:121 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 @@ -2875,7 +2903,7 @@ msgstr "Haptaic" msgid "Harassment, trolling, or intolerance" msgstr "Ciapadh, trolláil, nó éadulaingt" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:316 msgid "Hashtag" msgstr "Haischlib" @@ -2888,7 +2916,7 @@ msgid "Having trouble?" msgstr "Fadhb ort?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:355 +#: src/view/shell/Drawer.tsx:345 msgid "Help" msgstr "Cúnamh" @@ -2908,7 +2936,7 @@ msgstr "Tabhair le fios dúinn nach bot thú trí pictiúr a uaslódáil nó abh #~ msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." #~ msgstr "Seo cúpla fotha a phléann le rudaí a bhfuil suim agat iontu: {interestsText}. Is féidir leat an méid acu is mian leat a leanúint." -#: src/view/com/modals/AddAppPasswords.tsx:203 +#: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "Seo é do phasfhocal aipe." @@ -2919,17 +2947,17 @@ msgstr "Seo é do phasfhocal aipe." #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:445 msgid "Hide" msgstr "Cuir i bhfolach" -#: src/view/com/notifications/FeedItem.tsx:444 +#: src/view/com/notifications/FeedItem.tsx:447 msgctxt "action" msgid "Hide" msgstr "Cuir i bhfolach" -#: src/view/com/util/forms/PostDropdownBtn.tsx:387 -#: src/view/com/util/forms/PostDropdownBtn.tsx:389 +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 msgid "Hide post" msgstr "Cuir an phostáil seo i bhfolach" @@ -2938,11 +2966,11 @@ msgstr "Cuir an phostáil seo i bhfolach" msgid "Hide the content" msgstr "Cuir an t-ábhar seo i bhfolach" -#: src/view/com/util/forms/PostDropdownBtn.tsx:439 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide this post?" msgstr "An bhfuil fonn ort an phostáil seo a chur i bhfolach?" -#: src/view/com/notifications/FeedItem.tsx:435 +#: src/view/com/notifications/FeedItem.tsx:438 msgid "Hide user list" msgstr "Cuir liosta na gcuntas i bhfolach" @@ -2974,12 +3002,12 @@ 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/Navigation.tsx:519 -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:552 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:425 -#: src/view/shell/Drawer.tsx:426 +#: src/view/shell/Drawer.tsx:415 +#: src/view/shell/Drawer.tsx:416 msgid "Home" msgstr "Baile" @@ -3033,7 +3061,7 @@ msgstr "Ní duine fásta thú de réir dhlí do thíre, tá ar do thuismitheoir msgid "If you delete this list, you won't be able to recover it." msgstr "Má scriosann tú an liosta seo, ní bheidh tú in ann é a fháil ar ais." -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 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." @@ -3057,7 +3085,7 @@ msgstr "Íomhá" msgid "Image alt text" msgstr "Téacs malartach le híomhá" -#: src/components/StarterPack/ShareDialog.tsx:75 +#: src/components/StarterPack/ShareDialog.tsx:76 msgid "Image saved to your camera roll!" msgstr "" @@ -3077,7 +3105,7 @@ msgstr "Cuir isteach an cód a seoladh chuig do ríomhphost leis an bpasfhocal a msgid "Input confirmation code for account deletion" msgstr "Cuir isteach an cód dearbhaithe leis an gcuntas a scriosadh" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" msgstr "Cuir isteach an t-ainm le haghaidh phasfhocal na haipe" @@ -3150,7 +3178,7 @@ msgstr "Cóid chuiridh: {0} ar fáil" msgid "Invite codes: 1 available" msgstr "Cóid chuiridh: 1 ar fáil" -#: src/components/StarterPack/ShareDialog.tsx:96 +#: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" msgstr "" @@ -3174,8 +3202,8 @@ msgstr "" msgid "Jobs" msgstr "Jabanna" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:432 #: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" @@ -3214,11 +3242,11 @@ msgstr "Nótaí faoi úsáideoirí nó ábhar is ea lipéid. Is féidir úsáid #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "cuireadh lipéid ar an {labelTarget}" -#: src/components/moderation/LabelsOnMeDialog.tsx:79 +#: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "Lipéid ar do chuntas" -#: src/components/moderation/LabelsOnMeDialog.tsx:81 +#: src/components/moderation/LabelsOnMeDialog.tsx:82 msgid "Labels on your content" msgstr "Lipéid ar do chuid ábhair" @@ -3226,16 +3254,16 @@ msgstr "Lipéid ar do chuid ábhair" msgid "Language selection" msgstr "Rogha teanga" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Language settings" msgstr "Socruithe teanga" -#: src/Navigation.tsx:155 +#: src/Navigation.tsx:158 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Socruithe teanga" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Languages" msgstr "Teangacha" @@ -3295,7 +3323,7 @@ msgstr "Ag fágáil slán ag Bluesky" msgid "left to go." msgstr "le déanamh fós." -#: src/view/screens/Settings/index.tsx:309 +#: src/view/screens/Settings/index.tsx:310 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Stóráil oidhreachta scriosta, tá ort an aip a atosú anois." @@ -3313,7 +3341,7 @@ msgstr "Socraímis do phasfhocal arís!" msgid "Let's go!" msgstr "Ar aghaidh linn!" -#: src/view/screens/Settings/index.tsx:453 +#: src/view/screens/Settings/index.tsx:454 msgid "Light" msgstr "Sorcha" @@ -3331,13 +3359,13 @@ msgid "Like 10 posts to train the Discover feed" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Like this feed" msgstr "Mol an fotha seo" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:219 -#: src/Navigation.tsx:224 +#: src/Navigation.tsx:222 +#: src/Navigation.tsx:227 msgid "Liked by" msgstr "Molta ag" @@ -3359,11 +3387,11 @@ msgstr "Molta ag" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "Molta ag {likeCount} {0}" -#: src/view/com/notifications/FeedItem.tsx:201 +#: src/view/com/notifications/FeedItem.tsx:202 msgid "liked your custom feed" msgstr "a mhol do shainfhotha" -#: src/view/com/notifications/FeedItem.tsx:185 +#: src/view/com/notifications/FeedItem.tsx:186 msgid "liked your post" msgstr "a mhol do phostáil" @@ -3375,7 +3403,7 @@ msgstr "Moltaí" msgid "Likes on this post" msgstr "Moltaí don phostáil seo" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:191 msgid "List" msgstr "Liosta" @@ -3412,12 +3440,12 @@ msgstr "Liosta díbhlocáilte" msgid "List unmuted" msgstr "Liosta nach bhfuil balbhaithe níos mó" -#: src/Navigation.tsx:125 +#: src/Navigation.tsx:128 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 -#: src/view/shell/Drawer.tsx:509 -#: src/view/shell/Drawer.tsx:510 +#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:500 msgid "Lists" msgstr "Liostaí" @@ -3425,25 +3453,25 @@ msgstr "Liostaí" msgid "Lists blocking this user:" msgstr "Liostaí a bhlocálann an t-úsáideoir seo:" -#: src/view/screens/Search/Explore.tsx:130 +#: src/view/screens/Search/Explore.tsx:131 msgid "Load more" msgstr "" -#: src/view/screens/Search/Explore.tsx:218 +#: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:216 +#: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" msgstr "" -#: src/view/screens/Notifications.tsx:184 +#: src/view/screens/Notifications.tsx:219 msgid "Load new notifications" msgstr "Lódáil fógraí nua" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:494 +#: src/view/screens/ProfileFeed.tsx:495 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Lódáil postálacha nua" @@ -3452,7 +3480,7 @@ msgstr "Lódáil postálacha nua" msgid "Loading..." msgstr "Ag lódáil …" -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:247 msgid "Log" msgstr "Logleabhar" @@ -3523,7 +3551,7 @@ msgstr "Marcáil léite" msgid "Media" msgstr "Meáin" -#: src/components/WhoCanReply.tsx:275 +#: src/components/WhoCanReply.tsx:276 msgid "mentioned users" msgstr "úsáideoirí luaite" @@ -3545,7 +3573,7 @@ msgstr "Teachtaireacht {0}" msgid "Message deleted" msgstr "Scriosadh an teachtaireacht" -#: src/view/com/posts/FeedErrorMessage.tsx:200 +#: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "Teachtaireacht ón bhfreastalaí: {0}" @@ -3562,7 +3590,7 @@ msgstr "Tá an teachtaireacht rófhada" msgid "Message settings" msgstr "Socruithe teachtaireachta" -#: src/Navigation.tsx:534 +#: src/Navigation.tsx:547 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3578,9 +3606,9 @@ msgstr "Teachtaireachtaí" msgid "Misleading Account" msgstr "Cuntas atá Míthreorach" -#: src/Navigation.tsx:130 +#: src/Navigation.tsx:133 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:562 +#: src/view/screens/Settings/index.tsx:563 msgid "Moderation" msgstr "Modhnóireacht" @@ -3616,16 +3644,16 @@ msgstr "Liosta modhnóireachta uasdátaithe" msgid "Moderation lists" msgstr "Liostaí modhnóireachta" -#: src/Navigation.tsx:135 +#: src/Navigation.tsx:138 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Liostaí modhnóireachta" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Moderation settings" msgstr "Socruithe modhnóireachta" -#: src/Navigation.tsx:234 +#: src/Navigation.tsx:237 msgid "Moderation states" msgstr "Stádais modhnóireachta" @@ -3650,7 +3678,7 @@ msgstr "Tuilleadh fothaí" msgid "More options" msgstr "Tuilleadh roghanna" -#: src/view/screens/PreferencesThreads.tsx:82 +#: src/view/screens/PreferencesThreads.tsx:76 msgid "Most-liked replies first" msgstr "Freagraí a fuair an méid is mó moltaí ar dtús" @@ -3717,13 +3745,13 @@ msgstr "Cuir an focal seo i bhfolach i dtéacs postálacha agus i gclibeanna" msgid "Mute this word in tags only" msgstr "Ná cuir an focal seo i bhfolach ach i gclibeanna" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:371 msgid "Mute thread" msgstr "Cuir an snáithe seo i bhfolach" -#: src/view/com/util/forms/PostDropdownBtn.tsx:378 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 +#: src/view/com/util/forms/PostDropdownBtn.tsx:381 +#: src/view/com/util/forms/PostDropdownBtn.tsx:383 msgid "Mute words & tags" msgstr "Cuir focail ⁊ clibeanna i bhfolach" @@ -3735,7 +3763,7 @@ msgstr "Curtha i bhfolach" msgid "Muted accounts" msgstr "Cuntais a cuireadh i bhfolach" -#: src/Navigation.tsx:140 +#: src/Navigation.tsx:143 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Cuntais a Cuireadh i bhFolach" @@ -3769,15 +3797,15 @@ msgstr "Mo Chuid Fothaí" msgid "My Profile" msgstr "Mo Phróifíl" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "My saved feeds" msgstr "Na fothaí a shábháil mé" -#: src/view/screens/Settings/index.tsx:623 +#: src/view/screens/Settings/index.tsx:624 msgid "My Saved Feeds" msgstr "Na Fothaí a Shábháil Mé" -#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/AddAppPasswords.tsx:174 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Ainm" @@ -3812,7 +3840,7 @@ msgstr "" msgid "Navigates to the next screen" msgstr "Téann sé seo chuig an gcéad scáileán eile" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:78 msgid "Navigates to your profile" msgstr "Téann sé seo chuig do phróifíl" @@ -3841,7 +3869,7 @@ msgstr "Nua" msgid "New" msgstr "Nua" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" @@ -3869,9 +3897,9 @@ msgid "New post" msgstr "Postáil nua" #: src/view/screens/Feeds.tsx:581 -#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Notifications.tsx:228 #: src/view/screens/Profile.tsx:478 -#: src/view/screens/ProfileFeed.tsx:428 +#: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:278 @@ -3891,7 +3919,7 @@ msgstr "" msgid "New User List" msgstr "Liosta Nua d’Úsáideoirí" -#: src/view/screens/PreferencesThreads.tsx:79 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Newest replies first" msgstr "Na freagraí is déanaí ar dtús" @@ -3926,16 +3954,16 @@ msgstr "Ar aghaidh" msgid "Next image" msgstr "An chéad íomhá eile" -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:199 -#: src/view/screens/PreferencesFollowingFeed.tsx:234 -#: src/view/screens/PreferencesFollowingFeed.tsx:271 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:198 +#: src/view/screens/PreferencesFollowingFeed.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:270 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "No" msgstr "Níl" -#: src/view/screens/ProfileFeed.tsx:562 +#: src/view/screens/ProfileFeed.tsx:564 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Gan chur síos" @@ -3953,7 +3981,7 @@ msgstr "Níor aimsíodh GIFanna speisialta. D'fhéadfadh sé gur tharla fadhb le msgid "No feeds found. Try searching for something else." msgstr "" -#: src/components/ProfileCard.tsx:321 +#: src/components/ProfileCard.tsx:323 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "Ní leantar {0} níos mó" @@ -3970,7 +3998,7 @@ msgstr "Níl aon teachtaireacht ann fós" msgid "No more conversations to show" msgstr "Níl aon chomhráite eile le taispeáint" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:122 msgid "No notifications yet!" msgstr "Níl aon fhógra ann fós!" @@ -4002,7 +4030,7 @@ msgstr "Gan torthaí" msgid "No results found for \"{query}\"" msgstr "Gan torthaí ar “{query}”" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 @@ -4049,7 +4077,7 @@ msgstr "Lomnochtacht Neamhghnéasach" #~ msgid "Not Applicable." #~ msgstr "Ní bhaineann sé sin le hábhar." -#: src/Navigation.tsx:120 +#: src/Navigation.tsx:123 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Ní bhfuarthas é sin" @@ -4060,7 +4088,7 @@ msgid "Not right now" msgstr "Ní anois" #: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/forms/PostDropdownBtn.tsx:459 #: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "Nóta faoi roinnt" @@ -4073,6 +4101,19 @@ msgstr "Nod leat: is gréasán oscailte poiblí Bluesky. Ní chuireann an socrú msgid "Nothing here" msgstr "Tada anseo" +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:331 +#: src/view/screens/Notifications.tsx:119 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "" + #: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "Fuaimeanna fógra" @@ -4081,13 +4122,14 @@ msgstr "Fuaimeanna fógra" msgid "Notification Sounds" msgstr "Fuaimeanna Fógra" -#: src/Navigation.tsx:529 -#: src/view/screens/Notifications.tsx:132 -#: src/view/screens/Notifications.tsx:169 +#: src/Navigation.tsx:542 +#: src/view/screens/Notifications.tsx:145 +#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:203 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 -#: src/view/shell/Drawer.tsx:457 -#: src/view/shell/Drawer.tsx:458 +#: src/view/shell/Drawer.tsx:447 +#: src/view/shell/Drawer.tsx:448 msgid "Notifications" msgstr "Fógraí" @@ -4095,7 +4137,7 @@ msgstr "Fógraí" msgid "now" msgstr "" -#: src/components/dms/MessageItem.tsx:175 +#: src/components/dms/MessageItem.tsx:169 msgid "Now" msgstr "Anois" @@ -4125,7 +4167,7 @@ msgstr "Úps!" msgid "Oh no! Something went wrong." msgstr "Úps! Theip ar rud éigin." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 msgid "OK" msgstr "OK" @@ -4133,7 +4175,7 @@ msgstr "OK" msgid "Okay" msgstr "Maith go leor" -#: src/view/screens/PreferencesThreads.tsx:78 +#: src/view/screens/PreferencesThreads.tsx:72 msgid "Oldest replies first" msgstr "Na freagraí is sine ar dtús" @@ -4145,7 +4187,7 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:257 +#: src/view/screens/Settings/index.tsx:258 msgid "Onboarding reset" msgstr "Atosú an chláraithe" @@ -4153,7 +4195,7 @@ msgstr "Atosú an chláraithe" msgid "Onboarding tour step {0}: {1}" msgstr "" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:534 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." @@ -4161,7 +4203,7 @@ msgstr "Tá téacs malartach de dhíth ar íomhá amháin nó níos mó acu." msgid "Only .jpg and .png files are supported" msgstr "Ní oibríonn ach comhaid .jpg agus .png" -#: src/components/WhoCanReply.tsx:244 +#: src/components/WhoCanReply.tsx:245 msgid "Only {0} can reply" msgstr "" @@ -4181,6 +4223,7 @@ msgstr "Úps! Theip ar rud éigin!" #: src/components/StarterPack/ProfileStarterPacks.tsx:304 #: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/NotificationsSettings.tsx:45 #: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Úps!" @@ -4202,16 +4245,16 @@ msgstr "Oscail an cruthaitheoir abhatáir" msgid "Open conversation options" msgstr "Oscail na roghanna comhrá" -#: src/view/com/composer/Composer.tsx:632 -#: src/view/com/composer/Composer.tsx:633 +#: src/view/com/composer/Composer.tsx:663 +#: src/view/com/composer/Composer.tsx:664 msgid "Open emoji picker" msgstr "Oscail roghnóir na n-emoji" -#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileFeed.tsx:297 msgid "Open feed options menu" msgstr "Oscail roghchlár na bhfothaí" -#: src/view/screens/Settings/index.tsx:737 +#: src/view/screens/Settings/index.tsx:738 msgid "Open links with in-app browser" msgstr "Oscail nascanna leis an mbrabhsálaí san aip" @@ -4227,7 +4270,7 @@ msgstr "Oscail suíomhanna na gclibeanna agus na bhfocal a cuireadh i bhfolach" msgid "Open navigation" msgstr "Oscail an nascleanúint" -#: src/view/com/util/forms/PostDropdownBtn.tsx:247 +#: src/view/com/util/forms/PostDropdownBtn.tsx:250 msgid "Open post options menu" msgstr "Oscail roghchlár na bpostálacha" @@ -4235,12 +4278,12 @@ msgstr "Oscail roghchlár na bpostálacha" msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Open storybook page" msgstr "Oscail leathanach an Storybook" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Open system log" msgstr "Oscail logleabhar an chórais" @@ -4252,7 +4295,7 @@ msgstr "Osclaíonn sé seo {numItems} rogha" msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:511 +#: src/view/screens/Settings/index.tsx:512 msgid "Opens accessibility settings" msgstr "Osclaíonn sé seo na socruithe inrochtaineachta" @@ -4268,7 +4311,7 @@ msgstr "Osclaíonn sé seo tuilleadh sonraí le haghaidh iontráil dífhabhtaith msgid "Opens camera on device" msgstr "Osclaíonn sé seo an ceamara ar an ngléas" -#: src/view/screens/Settings/index.tsx:640 +#: src/view/screens/Settings/index.tsx:641 msgid "Opens chat settings" msgstr "Osclaíonn sé seo na socruithe comhrá" @@ -4276,7 +4319,7 @@ msgstr "Osclaíonn sé seo na socruithe comhrá" msgid "Opens composer" msgstr "Osclaíonn sé seo an t-eagarthóir" -#: src/view/screens/Settings/index.tsx:532 +#: src/view/screens/Settings/index.tsx:533 msgid "Opens configurable language settings" msgstr "Osclaíonn sé seo na socruithe teanga is féidir a dhéanamh" @@ -4284,7 +4327,7 @@ msgstr "Osclaíonn sé seo na socruithe teanga is féidir a dhéanamh" msgid "Opens device photo gallery" msgstr "Osclaíonn sé seo gailearaí na ngrianghraf ar an ngléas" -#: src/view/screens/Settings/index.tsx:672 +#: src/view/screens/Settings/index.tsx:673 msgid "Opens external embeds settings" msgstr "Osclaíonn sé seo na socruithe le haghaidh leabuithe seachtracha" @@ -4306,27 +4349,27 @@ msgstr "Osclaíonn sé seo fuinneog chun GIF a roghnú" msgid "Opens list of invite codes" msgstr "Osclaíonn sé seo liosta na gcód cuiridh" -#: src/view/screens/Settings/index.tsx:809 +#: src/view/screens/Settings/index.tsx:810 msgid "Opens modal for account deactivation confirmation" msgstr "Osclaíonn sé seo fuinneog chun díghníomhú an chuntais a dhearbhú" -#: src/view/screens/Settings/index.tsx:831 +#: src/view/screens/Settings/index.tsx:832 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "Osclaíonn sé seo an fhuinneog le scriosadh an chuntais a dhearbhú. Tá cód ríomhphoist riachtanach" -#: src/view/screens/Settings/index.tsx:766 +#: src/view/screens/Settings/index.tsx:767 msgid "Opens modal for changing your Bluesky password" msgstr "Osclaíonn sé seo an fhuinneog le do phasfhocal Bluesky a athrú" -#: src/view/screens/Settings/index.tsx:721 +#: src/view/screens/Settings/index.tsx:722 msgid "Opens modal for choosing a new Bluesky handle" msgstr "Osclaíonn sé seo an fhuinneog le leasainm nua Bluesky a roghnú" -#: src/view/screens/Settings/index.tsx:789 +#: src/view/screens/Settings/index.tsx:790 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Osclaíonn sé seo an fhuinneog le stór sonraí do chuntais Bluesky a íoslódáil" -#: src/view/screens/Settings/index.tsx:1009 +#: src/view/screens/Settings/index.tsx:1010 msgid "Opens modal for email verification" msgstr "Osclaíonn sé seo fuinneog le deimhniú an ríomhphoist" @@ -4334,7 +4377,7 @@ msgstr "Osclaíonn sé seo fuinneog le deimhniú an ríomhphoist" msgid "Opens modal for using custom domain" msgstr "Osclaíonn sé seo an fhuinneog le sainfhearann a úsáid" -#: src/view/screens/Settings/index.tsx:557 +#: src/view/screens/Settings/index.tsx:558 msgid "Opens moderation settings" msgstr "Osclaíonn sé seo socruithe na modhnóireachta" @@ -4346,15 +4389,15 @@ msgstr "Osclaíonn sé seo an fhoirm leis an bpasfhocal a athrú" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "Osclaíonn sé seo an scáileán leis na fothaí sábháilte a athrú" -#: src/view/screens/Settings/index.tsx:618 +#: src/view/screens/Settings/index.tsx:619 msgid "Opens screen with all saved feeds" msgstr "Osclaíonn sé seo an scáileán leis na fothaí sábháilte go léir" -#: src/view/screens/Settings/index.tsx:699 +#: src/view/screens/Settings/index.tsx:700 msgid "Opens the app password settings" msgstr "Osclaíonn sé seo an leathanach a bhfuil socruithe phasfhocal na haipe air" -#: src/view/screens/Settings/index.tsx:575 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens the Following feed preferences" msgstr "Osclaíonn sé seo roghanna don fhotha Following" @@ -4367,30 +4410,34 @@ msgstr "Osclaíonn sé seo an suíomh gréasáin atá nasctha" #~ msgid "Opens the message settings page" #~ msgstr "Osclaíonn sé seo logleabhar an chórais" -#: src/view/screens/Settings/index.tsx:862 -#: src/view/screens/Settings/index.tsx:872 +#: src/view/screens/Settings/index.tsx:863 +#: src/view/screens/Settings/index.tsx:873 msgid "Opens the storybook page" msgstr "Osclaíonn sé seo leathanach an Storybook" -#: src/view/screens/Settings/index.tsx:850 +#: src/view/screens/Settings/index.tsx:851 msgid "Opens the system log page" msgstr "Osclaíonn sé seo logleabhar an chórais" -#: src/view/screens/Settings/index.tsx:596 +#: src/view/screens/Settings/index.tsx:597 msgid "Opens the threads preferences" msgstr "Osclaíonn sé seo roghanna na snáitheanna" -#: src/view/com/notifications/FeedItem.tsx:524 -#: src/view/com/util/UserAvatar.tsx:422 +#: src/view/com/notifications/FeedItem.tsx:527 +#: src/view/com/util/UserAvatar.tsx:434 msgid "Opens this profile" msgstr "Osclaíonn sé an phróifíl seo" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:54 +msgid "Opens video picker" +msgstr "" + #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "Rogha {0} as {numItems}" #: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:162 +#: src/components/ReportDialog/SubmitView.tsx:179 msgid "Optionally provide additional information below:" msgstr "Is féidir tuilleadh eolais a chur ar fáil thíos:" @@ -4450,7 +4497,7 @@ msgstr "Pasfhocal uasdátaithe" msgid "Password updated!" msgstr "Pasfhocal uasdátaithe!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Pause" msgstr "Sos" @@ -4459,19 +4506,19 @@ msgstr "Sos" msgid "People" msgstr "Daoine" -#: src/Navigation.tsx:175 +#: src/Navigation.tsx:178 msgid "People followed by @{0}" msgstr "Na daoine atá leanta ag @{0}" -#: src/Navigation.tsx:168 +#: src/Navigation.tsx:171 msgid "People following @{0}" msgstr "Na leantóirí atá ag @{0}" -#: src/view/com/lightbox/Lightbox.tsx:69 +#: src/view/com/lightbox/Lightbox.tsx:70 msgid "Permission to access camera roll is required." msgstr "Tá cead de dhíth le rolla an cheamara a oscailt." -#: src/view/com/lightbox/Lightbox.tsx:75 +#: src/view/com/lightbox/Lightbox.tsx:78 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "Ní bhfuarthas cead le rolla an cheamara a oscailt. Athraigh socruithe an chórais len é seo a chur ar fáil, le do thoil." @@ -4492,12 +4539,12 @@ msgstr "" msgid "Pictures meant for adults." msgstr "Pictiúir le haghaidh daoine fásta." -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Greamaigh le baile" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 msgid "Pin to Home" msgstr "Greamaigh le Baile" @@ -4509,7 +4556,7 @@ msgstr "Fothaí greamaithe" msgid "Pinned to your feeds" msgstr "Greamaithe le do chuid fothaí" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Play" msgstr "Seinn" @@ -4522,7 +4569,7 @@ msgstr "Seinn {0}" #~ msgid "Play notification sounds" #~ msgstr "Fuaimeanna fógra" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 msgid "Play or pause the GIF" msgstr "Seinn nó stop an GIF" @@ -4556,7 +4603,7 @@ msgstr "Dearbhaigh do ríomhphost roimh é a athrú. Riachtanas sealadach é seo msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "Cuir isteach ainm le haghaidh phasfhocal na haipe, le do thoil. Ní cheadaítear spásanna gan aon rud eile ann." -#: src/view/com/modals/AddAppPasswords.tsx:150 +#: src/view/com/modals/AddAppPasswords.tsx:151 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "Cuir isteach ainm nach bhfuil in úsáid cheana féin le haghaidh Phasfhocal na hAipe nó bain úsáid as an gceann a chruthóidh muid go randamach." @@ -4577,7 +4624,7 @@ msgstr "" msgid "Please enter your password as well:" msgstr "Cuir isteach do phasfhocal freisin, le do thoil." -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:277 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" @@ -4594,7 +4641,7 @@ msgstr "Logáil isteach mar @{0}" msgid "Please Verify Your Email" msgstr "Dearbhaigh do ríomhphost, le do thoil." -#: src/view/com/composer/Composer.tsx:287 +#: src/view/com/composer/Composer.tsx:299 msgid "Please wait for your link card to finish loading" msgstr "Fan le lódáil ar fad do chárta naisc, le do thoil." @@ -4607,8 +4654,8 @@ msgstr "Polaitíocht" msgid "Porn" msgstr "Pornagrafaíocht" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:509 +#: src/view/com/composer/Composer.tsx:516 msgctxt "action" msgid "Post" msgstr "Postáil" @@ -4622,9 +4669,9 @@ msgstr "Postáil" msgid "Post by {0}" msgstr "Postáil ó {0}" -#: src/Navigation.tsx:194 -#: src/Navigation.tsx:201 -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:197 +#: src/Navigation.tsx:204 +#: src/Navigation.tsx:211 msgid "Post by @{0}" msgstr "Postáil ó @{0}" @@ -4680,6 +4727,10 @@ msgstr "Cuireadh na postálacha i bhfolach" msgid "Potentially Misleading Link" msgstr "Is féidir go bhfuil an nasc seo míthreorach." +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Brúigh le iarracht a thabhairt ar nascadh arís" @@ -4700,7 +4751,7 @@ msgstr "Brúigh le iarracht eile a dhéanamh" #~ msgid "Press to Retry" #~ msgstr "Brúigh le iarracht eile a dhéanamh" -#: src/components/KnownFollowers.tsx:116 +#: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "" @@ -4712,20 +4763,24 @@ msgstr "An íomhá roimhe seo" msgid "Primary Language" msgstr "Príomhtheanga" -#: src/view/screens/PreferencesThreads.tsx:97 +#: src/view/screens/PreferencesThreads.tsx:91 msgid "Prioritize Your Follows" msgstr "Tabhair Tosaíocht do Do Chuid Leantóirí" -#: src/view/screens/Settings/index.tsx:655 +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "" + +#: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Príobháideacht" -#: src/Navigation.tsx:249 +#: src/Navigation.tsx:257 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:958 -#: src/view/shell/Drawer.tsx:285 +#: src/view/screens/Settings/index.tsx:959 +#: src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "Polasaí príobháideachta" @@ -4744,9 +4799,9 @@ msgstr "próifíl" #: src/view/shell/bottom-bar/BottomBar.tsx:275 #: src/view/shell/desktop/LeftNav.tsx:393 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:542 -#: src/view/shell/Drawer.tsx:543 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:532 +#: src/view/shell/Drawer.tsx:533 msgid "Profile" msgstr "Próifíl" @@ -4754,7 +4809,7 @@ msgstr "Próifíl" msgid "Profile updated" msgstr "Próifíl uasdátaithe" -#: src/view/screens/Settings/index.tsx:1022 +#: src/view/screens/Settings/index.tsx:1023 msgid "Protect your account by verifying your email." msgstr "Dearbhaigh do ríomhphost le do chuntas a chosaint." @@ -4770,23 +4825,23 @@ msgstr "Liostaí poiblí agus inroinnte d’úsáideoirí le cur i bhfolach nó msgid "Public, shareable lists which can drive feeds." msgstr "Liostaí poiblí agus inroinnte atá in ann fothaí a bheathú" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish post" msgstr "Foilsigh an phostáil" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish reply" msgstr "Foilsigh an freagra" -#: src/components/StarterPack/QrCodeDialog.tsx:125 +#: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:103 +#: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:104 +#: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "" @@ -4811,7 +4866,7 @@ msgstr "Postáil athluaite" #~ msgid "Quote Post" #~ msgstr "Luaigh an phostáil seo" -#: src/view/screens/PreferencesThreads.tsx:86 +#: src/view/screens/PreferencesThreads.tsx:80 msgid "Random (aka \"Poster's Roulette\")" msgstr "Randamach" @@ -4848,19 +4903,23 @@ msgstr "Cuardaigh a Rinneadh le Déanaí" msgid "Reconnect" msgstr "Athnasc" +#: src/view/screens/Notifications.tsx:146 +msgid "Refresh notifications" +msgstr "" + #: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "Athlódáil comhráite" #: src/components/dialogs/MutedWords.tsx:286 #: src/components/FeedCard.tsx:309 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:212 +#: src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "Scrios" @@ -4872,7 +4931,7 @@ msgstr "" msgid "Remove account" msgstr "Bain an cuntas de" -#: src/view/com/util/UserAvatar.tsx:384 +#: src/view/com/util/UserAvatar.tsx:396 msgid "Remove Avatar" msgstr "Bain an tAbhatár Amach" @@ -4884,20 +4943,20 @@ msgstr "Bain an Fógra Meirge Amach" msgid "Remove embed" msgstr "Bain an leabú" -#: src/view/com/posts/FeedErrorMessage.tsx:168 -#: src/view/com/posts/FeedShutdownMsg.tsx:113 -#: src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:115 +#: src/view/com/posts/FeedShutdownMsg.tsx:119 msgid "Remove feed" msgstr "Bain an fotha de" -#: src/view/com/posts/FeedErrorMessage.tsx:209 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" msgstr "An bhfuil fonn ort an fotha a bhaint?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Bain de mo chuid fothaí" @@ -4911,7 +4970,7 @@ msgstr "É sin a bhaint de mo chuid fothaí?" msgid "Remove image" msgstr "Bain an íomhá de" -#: src/view/com/composer/ExternalEmbed.tsx:87 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 msgid "Remove image preview" msgstr "Bain réamhléiriú den íomhá" @@ -4936,11 +4995,11 @@ msgstr "Bain an t-athfhriotal de" msgid "Remove repost" msgstr "Scrios an athphostáil" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "Bain an fotha seo de do chuid fothaí sábháilte" -#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "Baineadh den liosta é" @@ -4956,15 +5015,19 @@ msgid "Removed from your feeds" msgstr "Baineadh de do chuid fothaí é" #: src/view/com/composer/ExternalEmbed.tsx:88 -msgid "Removes default thumbnail from {0}" -msgstr "Baineann sé seo an mhionsamhail réamhshocraithe de {0}" +#~ msgid "Removes default thumbnail from {0}" +#~ msgstr "Baineann sé seo an mhionsamhail réamhshocraithe de {0}" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" msgstr "Baineann sé seo an t-athfhriotal" -#: src/view/com/posts/FeedShutdownMsg.tsx:126 -#: src/view/com/posts/FeedShutdownMsg.tsx:130 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the image preview" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:128 +#: src/view/com/posts/FeedShutdownMsg.tsx:132 msgid "Replace with Discover" msgstr "Cuir an fotha Discover ina áit" @@ -4980,16 +5043,16 @@ msgstr "" #~ msgid "Replies on this thread are disabled" #~ msgstr "" -#: src/components/WhoCanReply.tsx:242 +#: src/components/WhoCanReply.tsx:243 msgid "Replies to this thread are disabled" msgstr "Ní féidir freagraí a thabhairt ar an gcomhrá seo" -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:507 msgctxt "action" msgid "Reply" msgstr "Freagair" -#: src/view/screens/PreferencesFollowingFeed.tsx:143 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 msgid "Reply Filters" msgstr "Scagairí freagra" @@ -4998,17 +5061,23 @@ msgstr "Scagairí freagra" #~ msgid "Reply to <0/>" #~ msgstr "Freagra ar <0/>" -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:439 +#: src/view/com/post/Post.tsx:197 +#: src/view/com/posts/FeedItem.tsx:458 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Freagra ar <0><1/>" -#: src/view/com/posts/FeedItem.tsx:437 +#: src/view/com/posts/FeedItem.tsx:456 msgctxt "description" msgid "Reply to a blocked post" msgstr "" +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:454 +msgctxt "description" +msgid "Reply to you" +msgstr "" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -5035,8 +5104,8 @@ msgstr "Tuairiscigh an comhrá seo" msgid "Report dialog" msgstr "Tuairiscigh comhrá" -#: src/view/screens/ProfileFeed.tsx:349 -#: src/view/screens/ProfileFeed.tsx:351 +#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:352 msgid "Report feed" msgstr "Déan gearán faoi fhotha" @@ -5048,8 +5117,8 @@ msgstr "Déan gearán faoi liosta" msgid "Report message" msgstr "Tuairiscigh an teachtaireacht seo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:407 +#: src/view/com/util/forms/PostDropdownBtn.tsx:409 msgid "Report post" msgstr "Déan gearán faoi phostáil" @@ -5111,7 +5180,7 @@ msgstr "Athphostáil nó luaigh postáil" msgid "Reposted By" msgstr "Athphostáilte ag" -#: src/view/com/posts/FeedItem.tsx:254 +#: src/view/com/posts/FeedItem.tsx:263 msgid "Reposted by {0}" msgstr "Athphostáilte ag {0}" @@ -5119,11 +5188,16 @@ msgstr "Athphostáilte ag {0}" #~ msgid "Reposted by <0/>" #~ msgstr "Athphostáilte ag <0/>" -#: src/view/com/posts/FeedItem.tsx:269 +#: src/view/com/posts/FeedItem.tsx:282 msgid "Reposted by <0><1/>" msgstr "Athphostáilte ag <0><1/>" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/posts/FeedItem.tsx:261 +#: src/view/com/posts/FeedItem.tsx:280 +msgid "Reposted by you" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:188 msgid "reposted your post" msgstr "— d'athphostáil sé/sí do phostáil" @@ -5166,8 +5240,8 @@ msgstr "Cód athshocraithe" msgid "Reset Code" msgstr "Cód Athshocraithe" -#: src/view/screens/Settings/index.tsx:901 -#: src/view/screens/Settings/index.tsx:904 +#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:905 msgid "Reset onboarding state" msgstr "Athshocraigh an próiseas cláraithe" @@ -5175,16 +5249,16 @@ msgstr "Athshocraigh an próiseas cláraithe" msgid "Reset password" msgstr "Athshocraigh an pasfhocal" -#: src/view/screens/Settings/index.tsx:881 -#: src/view/screens/Settings/index.tsx:884 +#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:885 msgid "Reset preferences state" msgstr "Athshocraigh na roghanna" -#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:903 msgid "Resets the onboarding state" msgstr "Athshocraíonn sé seo an clárú" -#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:883 msgid "Resets the preferences state" msgstr "Athshocraíonn sé seo na roghanna" @@ -5197,7 +5271,7 @@ msgstr "Baineann sé seo triail eile as an logáil isteach" msgid "Retries the last action, which errored out" msgstr "Baineann sé seo triail eile as an ngníomh is déanaí, ar theip air" -#: src/components/dms/MessageItem.tsx:241 +#: src/components/dms/MessageItem.tsx:235 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 @@ -5234,7 +5308,7 @@ msgstr "Filleann sé seo ar an leathanach roimhe seo" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/dialogs/ThreadgateEditor.tsx:88 -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:187 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5243,7 +5317,7 @@ msgstr "Filleann sé seo ar an leathanach roimhe seo" msgid "Save" msgstr "Sábháil" -#: src/view/com/lightbox/Lightbox.tsx:135 +#: src/view/com/lightbox/Lightbox.tsx:139 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5265,8 +5339,8 @@ msgstr "Sábháil na hathruithe" msgid "Save handle change" msgstr "Sábháil an leasainm nua" -#: src/components/StarterPack/ShareDialog.tsx:150 -#: src/components/StarterPack/ShareDialog.tsx:157 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "" @@ -5274,12 +5348,12 @@ msgstr "" msgid "Save image crop" msgstr "Sábháil an pictiúr bearrtha" -#: src/components/StarterPack/QrCodeDialog.tsx:178 +#: src/components/StarterPack/QrCodeDialog.tsx:181 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 +#: src/view/screens/ProfileFeed.tsx:334 +#: src/view/screens/ProfileFeed.tsx:340 msgid "Save to my feeds" msgstr "Sábháil i mo chuid fothaí" @@ -5287,7 +5361,7 @@ msgstr "Sábháil i mo chuid fothaí" msgid "Saved Feeds" msgstr "Fothaí Sábháilte" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:88 msgid "Saved to your camera roll" msgstr "Sábháladh i do rolla ceamara é" @@ -5314,8 +5388,8 @@ msgstr "Sábhálann sé seo na socruithe le haghaidh íomhánna a laghdú" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:383 -#: src/view/com/notifications/FeedItem.tsx:408 +#: src/view/com/notifications/FeedItem.tsx:386 +#: src/view/com/notifications/FeedItem.tsx:411 msgid "Say hello!" msgstr "Abair heileo!" @@ -5329,9 +5403,9 @@ msgid "Scroll to top" msgstr "Fill ar an mbarr" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:524 +#: src/Navigation.tsx:537 #: src/view/com/auth/LoggedOut.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 @@ -5339,14 +5413,14 @@ msgstr "Fill ar an mbarr" #: src/view/screens/Search/Search.tsx:813 #: src/view/shell/bottom-bar/BottomBar.tsx:182 #: src/view/shell/desktop/LeftNav.tsx:354 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:394 -#: src/view/shell/Drawer.tsx:395 +#: src/view/shell/desktop/Search.tsx:195 +#: src/view/shell/desktop/Search.tsx:204 +#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:385 msgid "Search" msgstr "Cuardaigh" -#: src/view/shell/desktop/Search.tsx:235 +#: src/view/shell/desktop/Search.tsx:236 msgid "Search for \"{query}\"" msgstr "Déan cuardach ar “{query}”" @@ -5372,7 +5446,7 @@ msgstr "" #: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/auth/LoggedOut.tsx:107 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "Cuardaigh úsáideoirí" @@ -5475,7 +5549,7 @@ msgstr "Roghnaigh rogha {i} as {numItems}" msgid "Select the {emojiName} emoji as your avatar" msgstr "Roghnaigh an emoji {emojiName} mar abhatár" -#: src/components/ReportDialog/SubmitView.tsx:135 +#: src/components/ReportDialog/SubmitView.tsx:152 msgid "Select the moderation service(s) to report to" msgstr "Roghnaigh na seirbhísí modhnóireachta le tuairisciú chuige" @@ -5487,6 +5561,10 @@ msgstr "Roghnaigh an tseirbhís a óstálann do chuid sonraí." #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "Roghnaigh fothaí le leanúint ón liosta thíos" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:53 +msgid "Select video" +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:63 #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "Roghnaigh na rudaí ba mhaith leat a fheiceáil (nó gan a fheiceáil), agus leanfaimid ar aghaidh as sin" @@ -5537,8 +5615,7 @@ msgctxt "action" msgid "Send Email" msgstr "Seol ríomhphost" -#: src/view/shell/Drawer.tsx:329 -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:325 msgid "Send feedback" msgstr "Seol aiseolas" @@ -5547,14 +5624,14 @@ msgstr "Seol aiseolas" msgid "Send message" msgstr "Seol teachtaireacht" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 msgid "Send post to..." msgstr "Seol an phostáil seo chuig..." #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:215 -#: src/components/ReportDialog/SubmitView.tsx:219 +#: src/components/ReportDialog/SubmitView.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:236 msgid "Send report" msgstr "Seol an tuairisc" @@ -5567,8 +5644,8 @@ msgstr "Seol an tuairisc chuig {0}" msgid "Send verification email" msgstr "Seol ríomhphost dearbhaithe" -#: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 +#: src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" msgstr "Seol mar theachtaireacht dhíreach" @@ -5588,23 +5665,23 @@ msgstr "Socraigh do bhreithlá" msgid "Set new password" msgstr "Socraigh pasfhocal nua" -#: src/view/screens/PreferencesFollowingFeed.tsx:224 +#: src/view/screens/PreferencesFollowingFeed.tsx:223 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Roghnaigh “Níl” chun postálacha athluaite a chur i bhfolach i d'fhotha. Feicfidh tú athphostálacha fós." -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:120 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Roghnaigh “Níl” chun freagraí a chur i bhfolach i d'fhotha." -#: src/view/screens/PreferencesFollowingFeed.tsx:190 +#: src/view/screens/PreferencesFollowingFeed.tsx:189 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Roghnaigh “Níl” chun athphostálacha a chur i bhfolach i d'fhotha." -#: src/view/screens/PreferencesThreads.tsx:122 +#: src/view/screens/PreferencesThreads.tsx:116 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Roghnaigh “Tá” le freagraí a thaispeáint i snáitheanna. Is gné thurgnamhach é seo." -#: src/view/screens/PreferencesFollowingFeed.tsx:260 +#: src/view/screens/PreferencesFollowingFeed.tsx:259 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Roghnaigh “Tá” le samplaí ó do chuid fothaí sábháilte a thaispeáint in ”Á Leanúint”. Is gné thurgnamhach é seo." @@ -5616,23 +5693,23 @@ msgstr "Socraigh do chuntas" msgid "Sets Bluesky username" msgstr "Socraíonn sé seo d'ainm úsáideora ar Bluesky" -#: src/view/screens/Settings/index.tsx:462 +#: src/view/screens/Settings/index.tsx:463 msgid "Sets color theme to dark" msgstr "Roghnaíonn sé seo an modh dorcha" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Sets color theme to light" msgstr "Roghnaíonn sé seo an modh sorcha" -#: src/view/screens/Settings/index.tsx:449 +#: src/view/screens/Settings/index.tsx:450 msgid "Sets color theme to system setting" msgstr "Roghnaíonn sé seo scéim dathanna an chórais" -#: src/view/screens/Settings/index.tsx:488 +#: src/view/screens/Settings/index.tsx:489 msgid "Sets dark theme to the dark theme" msgstr "Úsáideann sé seo an téama dorcha mar théama dorcha" -#: src/view/screens/Settings/index.tsx:481 +#: src/view/screens/Settings/index.tsx:482 msgid "Sets dark theme to the dim theme" msgstr "Úsáideann sé seo an téama breacdhorcha mar théama dorcha" @@ -5652,11 +5729,11 @@ msgstr "Socraíonn sé seo cóimheas treoíochta na híomhá go hard" msgid "Sets image aspect ratio to wide" msgstr "Socraíonn sé seo cóimheas treoíochta na híomhá go leathan" -#: src/Navigation.tsx:150 -#: src/view/screens/Settings/index.tsx:333 +#: src/Navigation.tsx:153 +#: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:559 -#: src/view/shell/Drawer.tsx:560 +#: src/view/shell/Drawer.tsx:549 +#: src/view/shell/Drawer.tsx:550 msgid "Settings" msgstr "Socruithe" @@ -5668,19 +5745,19 @@ msgstr "Gníomhaíocht ghnéasach nó lomnochtacht gháirsiúil." msgid "Sexually Suggestive" msgstr "Graosta" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:177 #: src/screens/StarterPack/StarterPackScreen.tsx:400 #: src/screens/StarterPack/StarterPackScreen.tsx:571 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 #: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Comhroinn" -#: src/view/com/lightbox/Lightbox.tsx:144 +#: src/view/com/lightbox/Lightbox.tsx:148 msgctxt "action" msgid "Share" msgstr "Comhroinn" @@ -5694,18 +5771,18 @@ msgid "Share a fun fact!" msgstr "Roinn rud éigin fútsa féin!" #: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:464 #: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "Comhroinn mar sin féin" -#: src/view/screens/ProfileFeed.tsx:359 -#: src/view/screens/ProfileFeed.tsx:361 +#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:362 msgid "Share feed" msgstr "Comhroinn an fotha" -#: src/components/StarterPack/ShareDialog.tsx:123 -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 #: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -5715,12 +5792,12 @@ msgstr "" msgid "Share Link" msgstr "Comhroinn Nasc" -#: src/components/StarterPack/ShareDialog.tsx:87 +#: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:134 -#: src/components/StarterPack/ShareDialog.tsx:145 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "" @@ -5728,7 +5805,7 @@ msgstr "" msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:99 +#: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5736,6 +5813,10 @@ msgstr "" msgid "Share your favorite feed!" msgstr "Roinn an fotha is fearr leat!" +#: src/Navigation.tsx:242 +msgid "Shared Preferences Tester" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" msgstr "Roinneann sé seo na suíomh gréasáin atá nasctha" @@ -5743,7 +5824,7 @@ msgstr "Roinneann sé seo na suíomh gréasáin atá nasctha" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:382 +#: src/view/screens/Settings/index.tsx:383 msgid "Show" msgstr "Taispeáin" @@ -5751,7 +5832,7 @@ msgstr "Taispeáin" #~ msgid "Show all replies" #~ msgstr "Taispeáin gach freagra" -#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +#: src/view/com/util/post-embeds/GifEmbed.tsx:175 msgid "Show alt text" msgstr "Taispeáin an téacs malartach" @@ -5777,19 +5858,19 @@ msgstr "Taispeáin cuntais cosúil le {0}" msgid "Show hidden replies" msgstr "Taispeáin freagraí i bhfolach" -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#: src/view/com/util/forms/PostDropdownBtn.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:349 +#: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" msgstr "Níos lú den sórt seo" #: src/view/com/post-thread/PostThreadItem.tsx:530 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:396 +#: src/view/com/post/Post.tsx:235 +#: src/view/com/posts/FeedItem.tsx:410 msgid "Show More" msgstr "Tuilleadh" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 -#: src/view/com/util/forms/PostDropdownBtn.tsx:340 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:343 msgid "Show more like this" msgstr "Níos mó den sórt seo" @@ -5797,11 +5878,11 @@ msgstr "Níos mó den sórt seo" msgid "Show muted replies" msgstr "Taispeáin freagraí balbhaithe" -#: src/view/screens/PreferencesFollowingFeed.tsx:257 +#: src/view/screens/PreferencesFollowingFeed.tsx:256 msgid "Show Posts from My Feeds" msgstr "Taispeáin postálacha ó mo chuid fothaí" -#: src/view/screens/PreferencesFollowingFeed.tsx:221 +#: src/view/screens/PreferencesFollowingFeed.tsx:220 msgid "Show Quote Posts" msgstr "Taispeáin postálacha athluaite" @@ -5817,11 +5898,11 @@ msgstr "Taispeáin postálacha athluaite" #~ msgid "Show re-posts in Following feed" #~ msgstr "Taispeáin athphostálacha san fhotha “Á Leanúint”" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:117 msgid "Show Replies" msgstr "Taispeáin freagraí" -#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:94 msgid "Show replies by people you follow before all other replies." msgstr "Taispeáin freagraí ó na daoine a leanann tú roimh aon fhreagra eile." @@ -5837,7 +5918,7 @@ msgstr "Taispeáin freagraí ó na daoine a leanann tú roimh aon fhreagra eile. #~ msgid "Show replies with at least {value} {0}" #~ msgstr "Taispeáin freagraí a bhfuil ar a laghad {value} {0} acu" -#: src/view/screens/PreferencesFollowingFeed.tsx:187 +#: src/view/screens/PreferencesFollowingFeed.tsx:186 msgid "Show Reposts" msgstr "Taispeáin athphostálacha" @@ -5903,8 +5984,8 @@ msgstr "Logáil isteach nó cláraigh chun páirt a ghlacadh sa chomhrá!" msgid "Sign into Bluesky or create a new account" msgstr "Logáil isteach i Bluesky nó cruthaigh cuntas nua" -#: src/view/screens/Settings/index.tsx:129 -#: src/view/screens/Settings/index.tsx:133 +#: src/view/screens/Settings/index.tsx:130 +#: src/view/screens/Settings/index.tsx:134 msgid "Sign out" msgstr "Logáil amach" @@ -5929,7 +6010,7 @@ msgstr "Cláraigh nó logáil isteach chun páirt a ghlacadh sa chomhrá" msgid "Sign-in Required" msgstr "Caithfidh tú logáil isteach" -#: src/view/screens/Settings/index.tsx:392 +#: src/view/screens/Settings/index.tsx:393 msgid "Signed in as" msgstr "Logáilte isteach mar" @@ -5938,12 +6019,12 @@ msgstr "Logáilte isteach mar" msgid "Signed in as @{0}" msgstr "Logáilte isteach mar @{0}" -#: src/view/com/notifications/FeedItem.tsx:208 +#: src/view/com/notifications/FeedItem.tsx:209 msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 msgid "Signup without a starter pack" msgstr "" @@ -5961,7 +6042,7 @@ msgstr "Ná bac leis an bpróiseas seo" msgid "Software Dev" msgstr "Forbairt Bogearraí" -#: src/components/FeedInterstitials.tsx:378 +#: src/components/FeedInterstitials.tsx:382 msgid "Some other feeds you might like" msgstr "" @@ -5989,16 +6070,21 @@ msgstr "Chuaigh rud éigin amú, bain triail eile as" msgid "Something went wrong, please try again." msgstr "Chuaigh rud éigin ó rath. Bain triail eile as." -#: src/App.native.tsx:98 -#: src/App.web.tsx:80 +#: src/components/Lists.tsx:192 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "" + +#: src/App.native.tsx:99 +#: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "Ár leithscéal. Chuaigh do sheisiún i léig. Ní mór duit logáil isteach arís." -#: src/view/screens/PreferencesThreads.tsx:69 +#: src/view/screens/PreferencesThreads.tsx:63 msgid "Sort Replies" msgstr "Sórtáil freagraí" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:66 msgid "Sort replies to the same post by:" msgstr "Sórtáil freagraí ar an bpostáil chéanna de réir:" @@ -6006,7 +6092,7 @@ msgstr "Sórtáil freagraí ar an bpostáil chéanna de réir:" #~ msgid "Source:" #~ msgstr "Foinse:" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" msgstr "Foinse: <0>{0}" @@ -6028,7 +6114,7 @@ msgstr "Spórt" msgid "Square" msgstr "Cearnóg" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:63 msgid "Start a new chat" msgstr "Tosaigh comhrá nua" @@ -6045,8 +6131,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:328 -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:341 +#: src/Navigation.tsx:346 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -6071,7 +6157,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Leathanach stádais" -#: src/view/screens/Settings/index.tsx:964 +#: src/view/screens/Settings/index.tsx:965 msgid "Status Page" msgstr "Leathanach Stádais" @@ -6083,17 +6169,17 @@ msgstr "Leathanach Stádais" msgid "Step {0} of {1}" msgstr "Céim {0} as {1}" -#: src/view/screens/Settings/index.tsx:305 +#: src/view/screens/Settings/index.tsx:306 msgid "Storage cleared, you need to restart the app now." msgstr "Stóráil scriosta, tá ort an aip a atosú anois." -#: src/Navigation.tsx:229 -#: src/view/screens/Settings/index.tsx:864 +#: src/Navigation.tsx:232 +#: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:290 -#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/components/moderation/LabelsOnMeDialog.tsx:311 +#: src/components/moderation/LabelsOnMeDialog.tsx:312 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -6115,7 +6201,7 @@ msgstr "Glac síntiús le lipéadóir" #~ msgid "Subscribe to the {0} feed" #~ msgstr "Liostáil leis an bhfotha {0}" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 msgid "Subscribe to this labeler" msgstr "Glac síntiús leis an lipéadóir seo" @@ -6123,7 +6209,7 @@ msgstr "Glac síntiús leis an lipéadóir seo" msgid "Subscribe to this list" msgstr "Liostáil leis an liosta seo" -#: src/view/screens/Search/Explore.tsx:331 +#: src/view/screens/Search/Explore.tsx:333 msgid "Suggested accounts" msgstr "" @@ -6131,7 +6217,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "Cuntais le leanúint" -#: src/components/FeedInterstitials.tsx:246 +#: src/components/FeedInterstitials.tsx:250 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Molta duit" @@ -6140,7 +6226,7 @@ msgstr "Molta duit" msgid "Suggestive" msgstr "Gáirsiúil" -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:252 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6155,19 +6241,19 @@ msgstr "Athraigh an cuntas" msgid "Switch between feeds to control your experience." msgstr "" -#: src/view/screens/Settings/index.tsx:160 +#: src/view/screens/Settings/index.tsx:161 msgid "Switch to {0}" msgstr "Athraigh go {0}" -#: src/view/screens/Settings/index.tsx:161 +#: src/view/screens/Settings/index.tsx:162 msgid "Switches the account you are logged in to" msgstr "Athraíonn sé seo an cuntas beo" -#: src/view/screens/Settings/index.tsx:446 +#: src/view/screens/Settings/index.tsx:447 msgid "System" msgstr "Córas" -#: src/view/screens/Settings/index.tsx:852 +#: src/view/screens/Settings/index.tsx:853 msgid "System log" msgstr "Logleabhar an chórais" @@ -6216,11 +6302,11 @@ msgstr "" msgid "Terms" msgstr "Téarmaí" -#: src/Navigation.tsx:254 +#: src/Navigation.tsx:262 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:952 +#: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:279 +#: src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "Téarmaí Seirbhíse" @@ -6235,13 +6321,13 @@ msgstr "Sárú ar chaighdeáin an phobail atá sna téarmaí a úsáideadh" msgid "text" msgstr "téacs" -#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/components/moderation/LabelsOnMeDialog.tsx:275 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Réimse téacs" #: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:93 msgid "Thank you. Your report has been sent." msgstr "Go raibh maith agat. Seoladh do thuairisc." @@ -6284,19 +6370,19 @@ msgstr "Bogadh an Polasaí Cóipchirt go dtí <0/>" msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322 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:66 +#: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." msgstr "Tá Discover curtha in áit an fhotha seo." -#: src/components/moderation/LabelsOnMeDialog.tsx:65 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your account." msgstr "Cuireadh na lipéid seo a leanas le do chuntas." -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:67 msgid "The following labels were applied to your content." msgstr "Cuireadh na lipéid seo a leanas le do chuid ábhair." @@ -6333,8 +6419,8 @@ msgstr "Bogadh ár dTéarmaí Seirbhíse go dtí" msgid "There is no time limit for account deactivation, come back any time." msgstr "Níl srian ama le díghníomhú cuntais, fill uair ar bith." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 -#: src/view/screens/ProfileFeed.tsx:544 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 +#: src/view/screens/ProfileFeed.tsx:545 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Bhí fadhb ann maidir le dul i dteagmháil leis an bhfreastalaí. Seiceáil do cheangal leis an idirlíon agus bain triail eile as, le do thoil." @@ -6343,7 +6429,7 @@ msgid "There was an an issue removing this feed. Please check your internet conn msgstr "Bhí fadhb ann maidir leis an bhfotha seo a bhaint. Seiceáil do cheangal leis an idirlíon agus bain triail eile as, le do thoil." #: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Bhí fadhb ann maidir le huasdátú do chuid fothaí. Seiceáil do cheangal leis an idirlíon agus bain triail eile as, le do thoil." @@ -6358,7 +6444,7 @@ msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh le Tenor." #~ msgid "There was an issue connecting to the chat." #~ msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh le Tenor." -#: src/view/screens/ProfileFeed.tsx:234 +#: src/view/screens/ProfileFeed.tsx:235 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6372,7 +6458,7 @@ msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh leis an bhfreastalaí" msgid "There was an issue contacting your server" msgstr "Bhí fadhb ann maidir le teagmháil a dhéanamh le do fhreastálaí" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:130 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." @@ -6390,7 +6476,7 @@ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Bhí fadhb ann maidir le do chuid liostaí a fháil. Tapáil anseo le triail eile a bhaint as." #: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:82 +#: src/components/ReportDialog/SubmitView.tsx:98 msgid "There was an issue sending your report. Please check your internet connection." msgstr "Níor seoladh do thuairisc. Seiceáil do nasc leis an idirlíon, le do thoil." @@ -6450,7 +6536,7 @@ msgstr "Ní mór duit logáil isteach le próifíl an chuntais seo a fheiceáil. 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 "Tá an cuntas seo blocáilte i liosta modhnóireachta amháin ar a laghad de do chuid. Chun é a díbhlocáil bain an t-úsáideoir de na liostaí sin." -#: src/components/moderation/LabelsOnMeDialog.tsx:239 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 msgid "This appeal will be sent to <0>{0}." msgstr "Cuirfear an t-achomharc seo chuig <0>{0}." @@ -6509,12 +6595,12 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Tá an fotha seo folamh! Is féidir go mbeidh ort tuilleadh úsáideoirí a leanúint nó do shocruithe teanga a athrú." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:473 +#: src/view/screens/ProfileFeed.tsx:474 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" -#: src/view/com/posts/FeedShutdownMsg.tsx:97 +#: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Níl an fotha seo ar líne níos mó. Tá <0>Discover á thaispeáint againn ina ionad." @@ -6543,7 +6629,7 @@ msgstr "Chuir an t-údar an lipéad seo leis." #~ msgid "This label was applied by you" #~ msgstr "Chuir tusa an lipéad seo leis." -#: src/components/moderation/LabelsOnMeDialog.tsx:166 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." msgstr "Chuir tusa an lipéad seo leis." @@ -6571,12 +6657,12 @@ msgstr "Tá an t-ainm seo in úsáid cheana féin" msgid "This post has been deleted." msgstr "Scriosadh an phostáil seo." -#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 #: src/view/com/util/post-ctrls/PostCtrls.tsx:324 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Níl an phostáil seo le feiceáil ach ag úsáideoirí atá logáilte isteach. Ní bheidh daoine nach bhfuil logáilte isteach in ann í a fheiceáil." -#: src/view/com/util/forms/PostDropdownBtn.tsx:440 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "This post will be hidden from feeds." msgstr "Ní bheidh an phostáil seo le feiceáil ar do chuid fothaí." @@ -6633,12 +6719,12 @@ msgstr "Níl éinne á leanúint ag an úsáideoir seo." msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "Bainfidh sé seo {0} de do chuid focal i bhfolach. Tig leat é a chur ar ais níos déanaí." -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Thread preferences" msgstr "Roghanna snáitheanna" -#: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/PreferencesThreads.tsx:51 +#: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "Roghanna Snáitheanna" @@ -6646,11 +6732,11 @@ msgstr "Roghanna Snáitheanna" msgid "Thread settings updated" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:119 +#: src/view/screens/PreferencesThreads.tsx:113 msgid "Threaded Mode" msgstr "Modh Snáithithe" -#: src/Navigation.tsx:287 +#: src/Navigation.tsx:295 msgid "Threads Preferences" msgstr "Roghanna Snáitheanna" @@ -6691,8 +6777,8 @@ msgstr "Trasfhoirmithe" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:676 #: src/view/com/post-thread/PostThreadItem.tsx:678 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 -#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "Aistrigh" @@ -6705,7 +6791,7 @@ msgstr "Bain triail eile as" msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:746 +#: src/view/screens/Settings/index.tsx:747 msgid "Two-factor authentication" msgstr "Fíordheimhniú déshraithe (2FA)" @@ -6797,7 +6883,7 @@ msgstr "Dílean an cuntas seo" #~ msgid "Unlike" #~ msgstr "Dímhol" -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Unlike this feed" msgstr "Dímhol an fotha seo" @@ -6828,17 +6914,17 @@ msgstr "Díbhalbhaigh an comhrá seo" #~ msgid "Unmute notifications" #~ msgstr "Lódáil fógraí nua" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:367 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Unmute thread" msgstr "Ná coinnigh an snáithe seo i bhfolach níos mó" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Díghreamaigh" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 msgid "Unpin from home" msgstr "Díghreamaigh ón mbaile" @@ -6854,7 +6940,7 @@ msgstr "Díghreamaithe ó do chuid fothaí" msgid "Unsubscribe" msgstr "Díliostáil" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Unsubscribe from this labeler" msgstr "Díliostáil ón lipéadóir seo" @@ -6888,20 +6974,20 @@ 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:352 -#: src/view/com/util/UserAvatar.tsx:355 +#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Uaslódáil ó Cheamara" -#: src/view/com/util/UserAvatar.tsx:369 +#: src/view/com/util/UserAvatar.tsx:381 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Uaslódáil ó Chomhaid" -#: src/view/com/util/UserAvatar.tsx:363 -#: src/view/com/util/UserAvatar.tsx:367 +#: src/view/com/util/UserAvatar.tsx:375 +#: src/view/com/util/UserAvatar.tsx:379 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -6941,7 +7027,7 @@ msgstr "Úsáid an ceann molta" msgid "Use the DNS panel" msgstr "Bain feidhm as an bpainéal DNS" -#: src/view/com/modals/AddAppPasswords.tsx:205 +#: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." msgstr "Úsáid é seo le logáil isteach ar an aip eile in éindí le do leasainm." @@ -7009,7 +7095,7 @@ msgstr "Ainm úsáideora nó ríomhphost" msgid "Users" msgstr "Úsáideoirí" -#: src/components/WhoCanReply.tsx:279 +#: src/components/WhoCanReply.tsx:280 msgid "users followed by <0/>" msgstr "Úsáideoirí a bhfuil <0/> á leanúint" @@ -7040,15 +7126,15 @@ msgstr "Luach:" msgid "Verify DNS Record" msgstr "Dearbhaigh taifead DNS" -#: src/view/screens/Settings/index.tsx:983 +#: src/view/screens/Settings/index.tsx:984 msgid "Verify email" msgstr "Dearbhaigh ríomhphost" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Verify my email" msgstr "Dearbhaigh mo ríomhphost" -#: src/view/screens/Settings/index.tsx:1017 +#: src/view/screens/Settings/index.tsx:1018 msgid "Verify My Email" msgstr "Dearbhaigh Mo Ríomhphost" @@ -7069,7 +7155,7 @@ msgstr "Dearbhaigh Do Ríomhphost" #~ msgid "Version {0}" #~ msgstr "Leagan {0}" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Version {appVersion} {bundleInfo}" msgstr "Leagan {appVersion} {bundleInfo}" @@ -7078,11 +7164,15 @@ msgstr "Leagan {appVersion} {bundleInfo}" msgid "Video Games" msgstr "Físchluichí" +#: src/view/com/composer/videos/state.ts:27 +msgid "Videos cannot be larger than 100MB" +msgstr "" + #: src/screens/Profile/Header/Shell.tsx:113 msgid "View {0}'s avatar" msgstr "Féach ar an abhatár atá ag {0}" -#: src/view/com/notifications/FeedItem.tsx:245 +#: src/view/com/notifications/FeedItem.tsx:246 msgid "View {0}'s profile" msgstr "Amharc ar phróifíl {0}" @@ -7114,7 +7204,7 @@ msgstr "Féach ar eolas faoi na lipéid seo" #: src/components/ProfileHoverCard/index.web.tsx:436 #: src/components/ProfileHoverCard/index.web.tsx:463 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "Féach ar an bpróifíl" @@ -7126,7 +7216,7 @@ msgstr "Féach ar an abhatár" msgid "View the labeling service provided by @{0}" msgstr "Féach ar an tseirbhís lipéadaithe atá curtha ar fáil ag @{0}" -#: src/view/screens/ProfileFeed.tsx:585 +#: src/view/screens/ProfileFeed.tsx:587 msgid "View users who like this feed" msgstr "Féach ar úsáideoirí ar thaitin an fotha seo leo" @@ -7222,7 +7312,7 @@ msgstr "Tá brón orainn, ach theip orainn na focail a chuir tú i bhfolach a l msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Ár leithscéal, ach níorbh fhéidir linn do chuardach a chur i gcrích. Bain triail eile as i gceann cúpla nóiméad." -#: src/view/com/composer/Composer.tsx:335 +#: src/view/com/composer/Composer.tsx:347 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -7235,7 +7325,7 @@ msgstr "Ár leithscéal, ach ní féidir linn an leathanach atá tú ag lorg a a #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "Tá brón orainn! Ní féidir síntiúis a ghlacadh ach le deich lipéadóir, tá an teorainn sin sroichte agat." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "" @@ -7261,7 +7351,7 @@ msgstr "" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:376 +#: src/view/com/composer/Composer.tsx:388 msgid "What's up?" msgstr "Aon scéal?" @@ -7278,15 +7368,15 @@ msgstr "Cad iad na teangacha ba mhaith leat a fheiceáil i do chuid fothaí alga msgid "Who can message you?" msgstr "Cé ar féidir leo teachtaireacht a sheoladh chugat?" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Who can reply" msgstr "Cé atá in ann freagra a thabhairt" -#: src/components/WhoCanReply.tsx:211 +#: src/components/WhoCanReply.tsx:212 msgid "Who can reply dialog" msgstr "" -#: src/components/WhoCanReply.tsx:215 +#: src/components/WhoCanReply.tsx:216 msgid "Who can reply?" msgstr "" @@ -7332,11 +7422,11 @@ msgstr "Leathan" msgid "Write a message" msgstr "Scríobh teachtaireacht" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:580 msgid "Write post" msgstr "Scríobh postáil" -#: src/view/com/composer/Composer.tsx:375 +#: src/view/com/composer/Composer.tsx:387 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Scríobh freagra" @@ -7347,12 +7437,12 @@ msgid "Writers" msgstr "Scríbhneoirí" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:200 -#: src/view/screens/PreferencesFollowingFeed.tsx:235 -#: src/view/screens/PreferencesFollowingFeed.tsx:270 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:199 +#: src/view/screens/PreferencesFollowingFeed.tsx:234 +#: src/view/screens/PreferencesFollowingFeed.tsx:269 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "Yes" msgstr "Tá" @@ -7369,7 +7459,7 @@ msgstr "" msgid "Yes, reactivate my account" msgstr "Tá, athghníomhaigh mo chuntas" -#: src/components/dms/MessageItem.tsx:188 +#: src/components/dms/MessageItem.tsx:182 msgid "Yesterday, {time}" msgstr "Inné, {time}" @@ -7523,19 +7613,19 @@ msgstr "" msgid "You haven't muted any words or tags yet" msgstr "Níor chuir tú aon fhocal ná clib i bhfolach fós" -#: src/components/moderation/LabelsOnMeDialog.tsx:86 +#: src/components/moderation/LabelsOnMeDialog.tsx:87 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Is féidir leat achomharc a dhéanamh maidir le lipéid nár chuir tú féin má shíleann tú iad a bheith in earráid." -#: src/components/moderation/LabelsOnMeDialog.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:92 msgid "You may appeal these labels if you feel they were placed in error." msgstr "Is féidir leat achomharc a dhéanamh maidir leis na lipéad seo má shíleann tú gur cuireadh in earráid iad." -#: src/screens/StarterPack/Wizard/State.tsx:92 +#: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 50 feeds" msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:77 +#: src/screens/StarterPack/Wizard/State.tsx:78 msgid "You may only add up to 50 profiles" msgstr "" @@ -7559,7 +7649,7 @@ msgstr "" msgid "You must grant access to your photo library to save the image." msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:205 +#: src/components/ReportDialog/SubmitView.tsx:222 msgid "You must select at least one labeler for a report" msgstr "Caithfidh tú ar a laghad lipéadóir amháin a roghnú do thuairisc" @@ -7599,15 +7689,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272 msgid "You'll stay updated with these feeds" msgstr "" @@ -7706,7 +7796,7 @@ msgstr "Na focail a chuir tú i bhfolach" msgid "Your password has been changed successfully!" msgstr "Athraíodh do phasfhocal!" -#: src/view/com/composer/Composer.tsx:366 +#: src/view/com/composer/Composer.tsx:378 msgid "Your post has been published" msgstr "Foilsíodh do phostáil" @@ -7714,7 +7804,7 @@ msgstr "Foilsíodh do phostáil" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Tá do chuid postálacha, moltaí, agus blocálacha poiblí. Is príobháideach iad na cuntais a chuireann tú i bhfolach." -#: src/view/screens/Settings/index.tsx:148 +#: src/view/screens/Settings/index.tsx:149 msgid "Your profile" msgstr "Do phróifíl" @@ -7722,7 +7812,7 @@ msgstr "Do phróifíl" 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:365 +#: src/view/com/composer/Composer.tsx:377 msgid "Your reply has been published" msgstr "Foilsíodh do fhreagra" diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po index 927c452b6b..413ff8f5d8 100644 --- a/src/locale/locales/hi/messages.po +++ b/src/locale/locales/hi/messages.po @@ -21,7 +21,7 @@ msgstr "" msgid "(no email)" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:294 +#: src/view/com/notifications/FeedItem.tsx:297 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -92,7 +92,7 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "" @@ -104,7 +104,7 @@ msgstr "" #~ msgid "{0} your feeds" #~ msgstr "" -#: src/view/com/util/UserAvatar.tsx:419 +#: src/view/com/util/UserAvatar.tsx:431 msgid "{0}'s avatar" msgstr "" @@ -152,7 +152,7 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:504 +#: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "" @@ -177,11 +177,11 @@ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:588 +#: src/view/screens/ProfileFeed.tsx:590 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:462 +#: src/view/shell/Drawer.tsx:452 msgid "{numUnreadNotifications} unread" msgstr "" @@ -197,7 +197,7 @@ msgstr "" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "" -#: src/components/WhoCanReply.tsx:295 +#: src/components/WhoCanReply.tsx:296 msgid "<0/> members" msgstr "" @@ -219,11 +219,11 @@ msgstr "" #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "" -#: src/view/shell/Drawer.tsx:101 +#: src/view/shell/Drawer.tsx:100 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" -#: src/view/shell/Drawer.tsx:112 +#: src/view/shell/Drawer.tsx:111 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" @@ -302,15 +302,15 @@ msgid "Access profile and other navigation links" msgstr "" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:519 +#: src/view/screens/Settings/index.tsx:520 msgid "Accessibility" msgstr "प्रवेर्शयोग्यता" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:301 +#: src/Navigation.tsx:309 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "" @@ -320,8 +320,8 @@ msgstr "" #~ msgstr "" #: src/screens/Login/LoginForm.tsx:190 -#: src/view/screens/Settings/index.tsx:346 -#: src/view/screens/Settings/index.tsx:753 +#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:754 msgid "Account" msgstr "अकाउंट" @@ -368,7 +368,7 @@ msgid "Account unmuted" msgstr "" #: src/components/dialogs/MutedWords.tsx:164 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 msgid "Add" @@ -392,8 +392,8 @@ msgstr "इस सूची में किसी को जोड़ें" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:423 -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:433 msgid "Add account" msgstr "अकाउंट जोड़ें" @@ -478,7 +478,7 @@ msgstr "इस फ़ीड को सहेजें" #~ msgid "Added" #~ msgstr "" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "" @@ -487,7 +487,7 @@ msgstr "" msgid "Added to my feeds" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:172 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "पसंद की संख्या को समायोजित करें उत्तर को आपके फ़ीड में दिखाया जाना चाहिए।।" @@ -509,7 +509,7 @@ msgid "Adult content is disabled." msgstr "" #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:687 +#: src/view/screens/Settings/index.tsx:688 msgid "Advanced" msgstr "विकसित" @@ -525,8 +525,8 @@ msgstr "" msgid "All the feeds you've saved, right in one place." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:187 -#: src/view/com/modals/AddAppPasswords.tsx:194 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "" @@ -551,7 +551,7 @@ msgstr "" #: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "ALT" msgstr "ALT" @@ -561,7 +561,7 @@ msgstr "ALT" msgid "Alt text" msgstr "वैकल्पिक पाठ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:180 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Alt Text" msgstr "" @@ -590,8 +590,8 @@ msgstr "" #~ msgid "An error occurred while saving the image." #~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:70 -#: src/components/StarterPack/ShareDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the QR code!" msgstr "" @@ -607,10 +607,18 @@ msgstr "" msgid "An issue not included in these options" msgstr "" +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +msgid "An issue occurred while trying to open the chat" +msgstr "" + #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:309 -#: src/components/ProfileCard.tsx:329 +#: src/components/ProfileCard.tsx:311 +#: src/components/ProfileCard.tsx:331 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -622,8 +630,8 @@ msgstr "" msgid "an unknown error occurred" msgstr "" -#: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:291 +#: src/components/WhoCanReply.tsx:317 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "और" @@ -632,7 +640,7 @@ msgstr "और" msgid "Animals" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:146 +#: src/view/com/util/post-embeds/GifEmbed.tsx:155 msgid "Animated GIF" msgstr "" @@ -656,7 +664,7 @@ msgstr "" msgid "App Password names must be at least 4 characters long." msgstr "" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "App password settings" msgstr "" @@ -664,18 +672,18 @@ msgstr "" #~ msgid "App passwords" #~ msgstr "ऐप पासवर्ड" -#: src/Navigation.tsx:269 +#: src/Navigation.tsx:277 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:707 +#: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" msgstr "ऐप पासवर्ड" -#: src/components/moderation/LabelsOnMeDialog.tsx:151 -#: src/components/moderation/LabelsOnMeDialog.tsx:154 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:236 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Appeal \"{0}\" label" msgstr "" @@ -688,7 +696,7 @@ msgstr "" #~ msgid "Appeal Content Warning" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/components/moderation/LabelsOnMeDialog.tsx:248 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "" @@ -708,7 +716,7 @@ msgstr "" #~ msgid "Appeal this decision." #~ msgstr "" -#: src/view/screens/Settings/index.tsx:440 +#: src/view/screens/Settings/index.tsx:441 msgid "Appearance" msgstr "दिखावट" @@ -718,8 +726,8 @@ msgid "Apply default recommended feeds" msgstr "" #: src/screens/StarterPack/StarterPackScreen.tsx:610 -msgid "Are you sure you want delete this starter pack?" -msgstr "" +#~ msgid "Are you sure you want delete this starter pack?" +#~ msgstr "" #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" @@ -733,6 +741,10 @@ msgstr "क्या आप वाकई ऐप पासवर्ड \"{name}\" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:189 #~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." #~ msgstr "" @@ -749,7 +761,7 @@ msgstr "" msgid "Are you sure you want to remove this from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:649 +#: src/view/com/composer/Composer.tsx:680 msgid "Are you sure you'd like to discard this draft?" msgstr "क्या आप वाकई इस ड्राफ्ट को हटाना करना चाहेंगे?" @@ -779,8 +791,8 @@ msgid "At least 3 characters" msgstr "" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:281 -#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/components/moderation/LabelsOnMeDialog.tsx:302 +#: src/components/moderation/LabelsOnMeDialog.tsx:303 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -793,7 +805,6 @@ msgstr "" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" @@ -808,7 +819,7 @@ msgstr "वापस" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Basics" msgstr "मूल बातें" @@ -816,7 +827,7 @@ msgstr "मूल बातें" msgid "Birthday" msgstr "जन्मदिन" -#: src/view/screens/Settings/index.tsx:378 +#: src/view/screens/Settings/index.tsx:379 msgid "Birthday:" msgstr "जन्मदिन:" @@ -864,7 +875,7 @@ msgstr "" msgid "Blocked accounts" msgstr "ब्लॉक किए गए खाते" -#: src/Navigation.tsx:145 +#: src/Navigation.tsx:148 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "ब्लॉक किए गए खाते" @@ -954,21 +965,21 @@ msgstr "" msgid "Books" msgstr "" -#: src/components/FeedInterstitials.tsx:281 +#: src/components/FeedInterstitials.tsx:285 msgid "Browse more accounts on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:411 +#: src/components/FeedInterstitials.tsx:415 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:266 -#: src/components/FeedInterstitials.tsx:396 +#: src/components/FeedInterstitials.tsx:270 +#: src/components/FeedInterstitials.tsx:400 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:289 -#: src/components/FeedInterstitials.tsx:420 +#: src/components/FeedInterstitials.tsx:293 +#: src/components/FeedInterstitials.tsx:424 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -1021,7 +1032,7 @@ msgstr "" msgid "Camera" msgstr "कैमरा" -#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "केवल अक्षर, संख्या, रिक्त स्थान, डैश और अंडरस्कोर हो सकते हैं। कम से कम 4 अक्षर लंबा होना चाहिए, लेकिन 32 अक्षरों से अधिक लंबा नहीं होना चाहिए।।" @@ -1030,8 +1041,8 @@ msgstr "केवल अक्षर, संख्या, रिक्त स् #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:451 -#: src/view/com/composer/Composer.tsx:457 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -1049,7 +1060,7 @@ msgstr "केवल अक्षर, संख्या, रिक्त स् #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:139 #: src/view/screens/Search/Search.tsx:704 -#: src/view/shell/desktop/Search.tsx:218 +#: src/view/shell/desktop/Search.tsx:219 msgid "Cancel" msgstr "कैंसिल" @@ -1085,8 +1096,8 @@ msgstr "कोटे पोस्ट मत करो" msgid "Cancel reactivation and log out" msgstr "" -#: src/view/com/modals/ListAddRemoveUsers.tsx:87 -#: src/view/shell/desktop/Search.tsx:214 +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "खोज मत करो" @@ -1102,17 +1113,17 @@ msgstr "" msgid "Change" msgstr "" -#: src/view/screens/Settings/index.tsx:372 +#: src/view/screens/Settings/index.tsx:373 msgctxt "action" msgid "Change" msgstr "परिवर्तन" -#: src/view/screens/Settings/index.tsx:719 +#: src/view/screens/Settings/index.tsx:720 msgid "Change handle" msgstr "हैंडल बदलें" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:730 +#: src/view/screens/Settings/index.tsx:731 msgid "Change Handle" msgstr "हैंडल बदलें" @@ -1120,12 +1131,12 @@ msgstr "हैंडल बदलें" msgid "Change my email" msgstr "मेरा ईमेल बदलें" -#: src/view/screens/Settings/index.tsx:764 +#: src/view/screens/Settings/index.tsx:765 msgid "Change password" msgstr "" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:775 +#: src/view/screens/Settings/index.tsx:776 msgid "Change Password" msgstr "" @@ -1141,7 +1152,7 @@ msgstr "" msgid "Change Your Email" msgstr "मेरा ईमेल बदलें" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:321 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -1153,14 +1164,14 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:326 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" msgstr "" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:648 +#: src/view/screens/Settings/index.tsx:649 msgid "Chat Settings" msgstr "" @@ -1255,19 +1266,19 @@ msgstr "" msgid "Choose your password" msgstr "अपना पासवर्ड चुनें" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clear all legacy storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:914 +#: src/view/screens/Settings/index.tsx:915 msgid "Clear all legacy storage data (restart after this)" msgstr "" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clear all storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:926 +#: src/view/screens/Settings/index.tsx:927 msgid "Clear all storage data (restart after this)" msgstr "" @@ -1276,11 +1287,11 @@ msgstr "" msgid "Clear search query" msgstr "खोज क्वेरी साफ़ करें" -#: src/view/screens/Settings/index.tsx:912 +#: src/view/screens/Settings/index.tsx:913 msgid "Clears all legacy storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:924 +#: src/view/screens/Settings/index.tsx:925 msgid "Clears all storage data" msgstr "" @@ -1308,7 +1319,7 @@ msgstr "" #~ msgid "Click here to open tag menu for #{tag}" #~ msgstr "" -#: src/components/dms/MessageItem.tsx:237 +#: src/components/dms/MessageItem.tsx:231 msgid "Click to retry failed message" msgstr "" @@ -1329,7 +1340,7 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/util/post-embeds/GifEmbed.tsx:195 msgid "Close" msgstr "" @@ -1384,7 +1395,7 @@ msgstr "" msgid "Closes password update alert" msgstr "" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:472 msgid "Closes post composer and discards post draft" msgstr "" @@ -1392,11 +1403,11 @@ msgstr "" msgid "Closes viewer for header image" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:237 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:440 msgid "Collapses list of users for a given notification" msgstr "" @@ -1410,7 +1421,7 @@ msgstr "" msgid "Comics" msgstr "" -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:267 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "समुदाय दिशानिर्देश" @@ -1423,7 +1434,7 @@ msgstr "" msgid "Complete the challenge" msgstr "" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:582 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "" @@ -1448,8 +1459,6 @@ msgstr "" #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/PreferencesFollowingFeed.tsx:307 -#: src/view/screens/PreferencesThreads.tsx:159 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 msgid "Confirm" @@ -1588,12 +1597,12 @@ msgstr "" msgid "Cooking" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "कॉपी कर ली" -#: src/view/screens/Settings/index.tsx:264 +#: src/view/screens/Settings/index.tsx:265 msgid "Copied build version to clipboard" msgstr "" @@ -1601,7 +1610,7 @@ msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:80 #: src/view/com/modals/ChangeHandle.tsx:320 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:189 +#: src/view/com/util/forms/PostDropdownBtn.tsx:192 #: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "" @@ -1610,12 +1619,12 @@ msgstr "" msgid "Copied!" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/view/com/modals/AddAppPasswords.tsx:213 +#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "कॉपी" @@ -1628,11 +1637,11 @@ msgstr "" msgid "Copy code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" msgstr "" @@ -1640,8 +1649,8 @@ msgstr "" msgid "Copy link to list" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 msgid "Copy link to post" msgstr "" @@ -1654,20 +1663,24 @@ msgstr "" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:285 -#: src/view/com/util/forms/PostDropdownBtn.tsx:287 +#: src/view/com/util/forms/PostDropdownBtn.tsx:288 +#: src/view/com/util/forms/PostDropdownBtn.tsx:290 msgid "Copy post text" msgstr "पोस्ट टेक्स्ट कॉपी करें" -#: src/components/StarterPack/QrCodeDialog.tsx:168 +#: src/components/StarterPack/QrCodeDialog.tsx:171 msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:272 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "कॉपीराइट नीति" +#: src/view/com/composer/videos/state.ts:31 +msgid "Could not compress video" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "" @@ -1705,17 +1718,17 @@ msgstr "" msgid "Create a new account" msgstr "नया खाता बनाएं" -#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:425 msgid "Create a new Bluesky account" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:151 +#: src/components/StarterPack/QrCodeDialog.tsx:154 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:351 msgid "Create a starter pack" msgstr "" @@ -1740,7 +1753,7 @@ msgstr "" msgid "Create another" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" msgstr "" @@ -1788,7 +1801,7 @@ msgid "Custom domain" msgstr "कस्टम डोमेन" #: src/view/screens/Feeds.tsx:760 -#: src/view/screens/Search/Explore.tsx:390 +#: src/view/screens/Search/Explore.tsx:392 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" @@ -1800,8 +1813,8 @@ msgstr "" #~ msgid "Danger Zone" #~ msgstr "खतरा क्षेत्र" -#: src/view/screens/Settings/index.tsx:459 -#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:460 +#: src/view/screens/Settings/index.tsx:486 msgid "Dark" msgstr "डार्क मोड" @@ -1809,7 +1822,7 @@ msgstr "डार्क मोड" msgid "Dark mode" msgstr "" -#: src/view/screens/Settings/index.tsx:472 +#: src/view/screens/Settings/index.tsx:473 msgid "Dark Theme" msgstr "" @@ -1818,15 +1831,15 @@ msgid "Date of birth" msgstr "" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:807 +#: src/view/screens/Settings/index.tsx:808 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:819 +#: src/view/screens/Settings/index.tsx:820 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:874 +#: src/view/screens/Settings/index.tsx:875 msgid "Debug Moderation" msgstr "" @@ -1838,13 +1851,13 @@ msgstr "" #: src/screens/StarterPack/StarterPackScreen.tsx:562 #: src/screens/StarterPack/StarterPackScreen.tsx:641 #: src/screens/StarterPack/StarterPackScreen.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "" -#: src/view/screens/Settings/index.tsx:829 +#: src/view/screens/Settings/index.tsx:830 msgid "Delete account" msgstr "खाता हटाएं" @@ -1864,8 +1877,8 @@ msgstr "अप्प पासवर्ड हटाएं" msgid "Delete app password?" msgstr "" -#: src/view/screens/Settings/index.tsx:891 -#: src/view/screens/Settings/index.tsx:894 +#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:895 msgid "Delete chat declaration record" msgstr "" @@ -1893,12 +1906,12 @@ msgstr "मेरा खाता हटाएं" #~ msgid "Delete my account…" #~ msgstr "मेरा खाता हटाएं…" -#: src/view/screens/Settings/index.tsx:841 +#: src/view/screens/Settings/index.tsx:842 msgid "Delete My Account…" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:414 -#: src/view/com/util/forms/PostDropdownBtn.tsx:416 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 +#: src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "पोस्ट को हटाएं" @@ -1915,7 +1928,7 @@ msgstr "" msgid "Delete this list?" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:428 +#: src/view/com/util/forms/PostDropdownBtn.tsx:431 msgid "Delete this post?" msgstr "इस पोस्ट को डीलीट करें?" @@ -1927,7 +1940,7 @@ msgstr "" msgid "Deleted post." msgstr "यह पोस्ट मिटाई जा चुकी है" -#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:893 msgid "Deletes the chat declaration record" msgstr "" @@ -1946,11 +1959,11 @@ msgstr "" #~ msgid "Developer Tools" #~ msgstr "डेवलपर उपकरण" -#: src/view/com/composer/Composer.tsx:283 +#: src/view/com/composer/Composer.tsx:295 msgid "Did you want to say anything?" msgstr "" -#: src/view/screens/Settings/index.tsx:478 +#: src/view/screens/Settings/index.tsx:479 msgid "Dim" msgstr "" @@ -1987,7 +2000,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:682 msgid "Discard" msgstr "" @@ -1995,7 +2008,7 @@ msgstr "" #~ msgid "Discard draft" #~ msgstr "ड्राफ्ट हटाएं" -#: src/view/com/composer/Composer.tsx:648 +#: src/view/com/composer/Composer.tsx:679 msgid "Discard draft?" msgstr "" @@ -2013,7 +2026,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:388 +#: src/view/screens/Search/Explore.tsx:390 msgid "Discover new feeds" msgstr "नए फ़ीड की खोज करें" @@ -2070,22 +2083,20 @@ msgstr "डोमेन सत्यापित!" #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesFollowingFeed.tsx:310 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "खत्म" #: src/view/com/modals/EditImage.tsx:334 -#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" msgstr "" @@ -2098,7 +2109,7 @@ msgstr "खत्म {extraText}" #~ msgid "Double tap to sign in" #~ msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319 msgid "Download Bluesky" msgstr "" @@ -2172,7 +2183,7 @@ msgctxt "action" msgid "Edit" msgstr "" -#: src/view/com/util/UserAvatar.tsx:325 +#: src/view/com/util/UserAvatar.tsx:337 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "" @@ -2194,7 +2205,7 @@ msgstr "सूची विवरण संपादित करें" msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:274 +#: src/Navigation.tsx:282 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -2209,12 +2220,12 @@ msgstr "मेरी प्रोफ़ाइल संपादित करे msgid "Edit People" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "मेरी प्रोफ़ाइल संपादित करें" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "मेरी प्रोफ़ाइल संपादित करें" @@ -2232,7 +2243,7 @@ msgstr "" msgid "Edit User List" msgstr "" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Edit who can reply" msgstr "" @@ -2244,7 +2255,7 @@ msgstr "" msgid "Edit your profile description" msgstr "" -#: src/Navigation.tsx:343 +#: src/Navigation.tsx:356 msgid "Edit your starter pack" msgstr "" @@ -2283,7 +2294,7 @@ msgstr "ईमेल अपडेट किया गया" msgid "Email verified" msgstr "" -#: src/view/screens/Settings/index.tsx:350 +#: src/view/screens/Settings/index.tsx:351 msgid "Email:" msgstr "ईमेल:" @@ -2292,8 +2303,8 @@ msgid "Embed HTML code" msgstr "" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:324 -#: src/view/com/util/forms/PostDropdownBtn.tsx:326 +#: src/view/com/util/forms/PostDropdownBtn.tsx:327 +#: src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "" @@ -2327,11 +2338,16 @@ msgstr "" #~ msgid "Enable External Media" #~ msgstr "" -#: src/view/screens/PreferencesExternalEmbeds.tsx:76 +#: src/view/screens/PreferencesExternalEmbeds.tsx:73 msgid "Enable media players for" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:146 +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 msgid "Enable this setting to only see replies between people you follow." msgstr "इस सेटिंग को केवल उन लोगों के बीच जवाब देखने में सक्षम करें जिन्हें आप फॉलो करते हैं।।" @@ -2357,7 +2373,7 @@ msgstr "" msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:160 +#: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "" @@ -2433,7 +2449,7 @@ msgid "Everybody" msgstr "" #: src/components/WhoCanReply.tsx:69 -#: src/components/WhoCanReply.tsx:240 +#: src/components/WhoCanReply.tsx:241 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "" @@ -2469,8 +2485,8 @@ msgstr "" msgid "Exits image view" msgstr "" -#: src/view/com/modals/ListAddRemoveUsers.tsx:88 -#: src/view/shell/desktop/Search.tsx:215 +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +#: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "" @@ -2482,7 +2498,7 @@ msgstr "" msgid "Expand alt text" msgstr "ऑल्ट टेक्स्ट" -#: src/view/com/notifications/FeedItem.tsx:238 +#: src/view/com/notifications/FeedItem.tsx:239 msgid "Expand list of users" msgstr "" @@ -2491,6 +2507,10 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "" +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." msgstr "" @@ -2499,12 +2519,12 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/view/screens/Settings/index.tsx:787 +#: src/view/screens/Settings/index.tsx:788 msgid "Export my data" msgstr "" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:798 +#: src/view/screens/Settings/index.tsx:799 msgid "Export My Data" msgstr "" @@ -2514,17 +2534,17 @@ msgid "External Media" msgstr "" #: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/view/screens/PreferencesExternalEmbeds.tsx:64 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:293 +#: src/Navigation.tsx:301 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:680 +#: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" msgstr "" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "External media settings" msgstr "" @@ -2554,8 +2574,8 @@ msgstr "" msgid "Failed to delete starter pack" msgstr "" -#: src/view/screens/Search/Explore.tsx:426 -#: src/view/screens/Search/Explore.tsx:454 +#: src/view/screens/Search/Explore.tsx:428 +#: src/view/screens/Search/Explore.tsx:456 msgid "Failed to load feeds preferences" msgstr "" @@ -2577,20 +2597,24 @@ msgstr "" #~ msgid "Failed to load recommended feeds" #~ msgstr "अनुशंसित फ़ीड लोड करने में विफल" -#: src/view/screens/Search/Explore.tsx:419 -#: src/view/screens/Search/Explore.tsx:447 +#: src/view/screens/Search/Explore.tsx:421 +#: src/view/screens/Search/Explore.tsx:449 msgid "Failed to load suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:377 +#: src/view/screens/Search/Explore.tsx:379 msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:86 +#: src/view/com/lightbox/Lightbox.tsx:90 msgid "Failed to save image: {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:230 +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + +#: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "" @@ -2598,12 +2622,12 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: src/components/moderation/LabelsOnMeDialog.tsx:244 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:181 msgid "Failed to toggle thread mute, please try again" msgstr "" @@ -2616,7 +2640,7 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:217 msgid "Feed" msgstr "" @@ -2638,19 +2662,19 @@ msgid "Feed toggle" msgstr "" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:345 +#: src/view/shell/Drawer.tsx:332 msgid "Feedback" msgstr "प्रतिक्रिया" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:336 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 #: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:493 -#: src/view/shell/Drawer.tsx:494 +#: src/view/shell/Drawer.tsx:483 +#: src/view/shell/Drawer.tsx:484 msgid "Feeds" msgstr "सभी फ़ीड" @@ -2720,7 +2744,7 @@ msgstr "" #~ msgid "Finding similar accounts..." #~ msgstr "मिलते-जुलते खाते ढूँढना" -#: src/view/screens/PreferencesFollowingFeed.tsx:110 +#: src/view/screens/PreferencesFollowingFeed.tsx:108 msgid "Fine-tune the content you see on your Following feed." msgstr "" @@ -2728,7 +2752,7 @@ msgstr "" #~ msgid "Fine-tune the content you see on your home screen." #~ msgstr "अपने मुख्य फ़ीड की स्क्रीन पर दिखाई देने वाली सामग्री को ठीक करें।।" -#: src/view/screens/PreferencesThreads.tsx:60 +#: src/view/screens/PreferencesThreads.tsx:54 msgid "Fine-tune the discussion threads." msgstr "चर्चा धागे को ठीक-ट्यून करें।।" @@ -2758,7 +2782,7 @@ msgid "Flip vertically" msgstr "" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:341 +#: src/components/ProfileCard.tsx:343 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2803,7 +2827,7 @@ msgstr "" msgid "Follow Back" msgstr "" -#: src/view/screens/Search/Explore.tsx:333 +#: src/view/screens/Search/Explore.tsx:335 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "" @@ -2820,22 +2844,22 @@ msgstr "" #~ msgstr "" #: src/view/com/profile/ProfileCard.tsx:190 -msgid "Followed by {0}" -msgstr "" +#~ msgid "Followed by {0}" +#~ msgstr "" -#: src/components/KnownFollowers.tsx:223 +#: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "" -#: src/components/KnownFollowers.tsx:209 +#: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "" -#: src/components/KnownFollowers.tsx:196 +#: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" msgstr "" -#: src/components/KnownFollowers.tsx:178 +#: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" @@ -2843,15 +2867,15 @@ msgstr "" msgid "Followed users" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:153 +#: src/view/screens/PreferencesFollowingFeed.tsx:152 msgid "Followed users only" msgstr "केवल वे यूजर को फ़ॉलो किया गया" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:198 msgid "followed you" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:195 +#: src/view/com/notifications/FeedItem.tsx:196 msgid "followed you back" msgstr "" @@ -2860,7 +2884,7 @@ msgstr "" msgid "Followers" msgstr "यह यूजर आपका फ़ोलो करता है" -#: src/Navigation.tsx:182 +#: src/Navigation.tsx:185 msgid "Followers of @{0} that you know" msgstr "" @@ -2870,7 +2894,7 @@ msgid "Followers you know" msgstr "" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:335 +#: src/components/ProfileCard.tsx:337 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2882,7 +2906,7 @@ msgstr "" msgid "Following" msgstr "फोल्लोविंग" -#: src/components/ProfileCard.tsx:301 +#: src/components/ProfileCard.tsx:303 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "" @@ -2891,13 +2915,13 @@ msgstr "" msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:280 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:583 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesFollowingFeed.tsx:105 +#: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "" @@ -2922,7 +2946,7 @@ msgstr "" msgid "For security reasons, we'll need to send a confirmation code to your email address." msgstr "सुरक्षा कारणों के लिए, हमें आपके ईमेल पते पर एक OTP कोड भेजने की आवश्यकता होगी।।" -#: src/view/com/modals/AddAppPasswords.tsx:232 +#: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "सुरक्षा कारणों के लिए, आप इसे फिर से देखने में सक्षम नहीं होंगे। यदि आप इस पासवर्ड को खो देते हैं, तो आपको एक नया उत्पन्न करना होगा।।" @@ -2955,7 +2979,7 @@ msgstr "" msgid "From @{sanitizedAuthor}" msgstr "" -#: src/view/com/posts/FeedItem.tsx:236 +#: src/view/com/posts/FeedItem.tsx:242 msgctxt "from-feed" msgid "From <0/>" msgstr "" @@ -2968,6 +2992,10 @@ msgstr "गैलरी" msgid "Generate a starter pack" msgstr "" +#: src/view/shell/Drawer.tsx:336 +msgid "Get help" +msgstr "" + #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" msgstr "" @@ -3015,12 +3043,12 @@ msgid "Go Back" msgstr "वापस जाओ" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -msgid "Go back to previous screen" -msgstr "" +#~ msgid "Go back to previous screen" +#~ msgstr "" #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/components/ReportDialog/SubmitView.tsx:121 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 @@ -3085,7 +3113,7 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:316 msgid "Hashtag" msgstr "" @@ -3102,7 +3130,7 @@ msgid "Having trouble?" msgstr "" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:355 +#: src/view/shell/Drawer.tsx:345 msgid "Help" msgstr "सहायता" @@ -3122,7 +3150,7 @@ msgstr "" #~ msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:203 +#: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "यहां आपका ऐप पासवर्ड है." @@ -3133,17 +3161,17 @@ msgstr "यहां आपका ऐप पासवर्ड है." #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:445 msgid "Hide" msgstr "इसे छिपाएं" -#: src/view/com/notifications/FeedItem.tsx:444 +#: src/view/com/notifications/FeedItem.tsx:447 msgctxt "action" msgid "Hide" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:387 -#: src/view/com/util/forms/PostDropdownBtn.tsx:389 +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 msgid "Hide post" msgstr "" @@ -3152,11 +3180,11 @@ msgstr "" msgid "Hide the content" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:439 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide this post?" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:435 +#: src/view/com/notifications/FeedItem.tsx:438 msgid "Hide user list" msgstr "उपयोगकर्ता सूची छुपाएँ" @@ -3192,12 +3220,12 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/Navigation.tsx:519 -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:552 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:425 -#: src/view/shell/Drawer.tsx:426 +#: src/view/shell/Drawer.tsx:415 +#: src/view/shell/Drawer.tsx:416 msgid "Home" msgstr "होम फीड" @@ -3258,7 +3286,7 @@ msgstr "" msgid "If you delete this list, you won't be able to recover it." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 msgid "If you remove this post, you won't be able to recover it." msgstr "" @@ -3287,7 +3315,7 @@ msgstr "छवि alt पाठ" #~ msgid "Image options" #~ msgstr "छवि विकल्प" -#: src/components/StarterPack/ShareDialog.tsx:75 +#: src/components/StarterPack/ShareDialog.tsx:76 msgid "Image saved to your camera roll!" msgstr "" @@ -3315,7 +3343,7 @@ msgstr "" #~ msgid "Input invite code to proceed" #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" msgstr "" @@ -3408,7 +3436,7 @@ msgstr "" msgid "Invite codes: 1 available" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:96 +#: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" msgstr "" @@ -3432,8 +3460,8 @@ msgstr "" msgid "Jobs" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:432 #: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" @@ -3485,11 +3513,11 @@ msgstr "" #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:79 +#: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:81 +#: src/components/moderation/LabelsOnMeDialog.tsx:82 msgid "Labels on your content" msgstr "" @@ -3497,16 +3525,16 @@ msgstr "" msgid "Language selection" msgstr "अपनी भाषा चुने" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Language settings" msgstr "" -#: src/Navigation.tsx:155 +#: src/Navigation.tsx:158 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "भाषा सेटिंग्स" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Languages" msgstr "भाषा" @@ -3574,7 +3602,7 @@ msgstr "लीविंग Bluesky" msgid "left to go." msgstr "" -#: src/view/screens/Settings/index.tsx:309 +#: src/view/screens/Settings/index.tsx:310 msgid "Legacy storage cleared, you need to restart the app now." msgstr "" @@ -3597,7 +3625,7 @@ msgstr "" #~ msgid "Library" #~ msgstr "चित्र पुस्तकालय" -#: src/view/screens/Settings/index.tsx:453 +#: src/view/screens/Settings/index.tsx:454 msgid "Light" msgstr "लाइट मोड" @@ -3615,13 +3643,13 @@ msgid "Like 10 posts to train the Discover feed" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Like this feed" msgstr "इस फ़ीड को लाइक करो" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:219 -#: src/Navigation.tsx:224 +#: src/Navigation.tsx:222 +#: src/Navigation.tsx:227 msgid "Liked by" msgstr "इन यूजर ने लाइक किया है" @@ -3645,11 +3673,11 @@ msgstr "" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "" -#: src/view/com/notifications/FeedItem.tsx:201 +#: src/view/com/notifications/FeedItem.tsx:202 msgid "liked your custom feed" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:185 +#: src/view/com/notifications/FeedItem.tsx:186 msgid "liked your post" msgstr "" @@ -3661,7 +3689,7 @@ msgstr "" msgid "Likes on this post" msgstr "" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:191 msgid "List" msgstr "" @@ -3698,12 +3726,12 @@ msgstr "" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:125 +#: src/Navigation.tsx:128 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 -#: src/view/shell/Drawer.tsx:509 -#: src/view/shell/Drawer.tsx:510 +#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:500 msgid "Lists" msgstr "सूची" @@ -3711,7 +3739,7 @@ msgstr "सूची" msgid "Lists blocking this user:" msgstr "" -#: src/view/screens/Search/Explore.tsx:130 +#: src/view/screens/Search/Explore.tsx:131 msgid "Load more" msgstr "" @@ -3720,21 +3748,21 @@ msgstr "" #~ msgid "Load more posts" #~ msgstr "अधिक पोस्ट लोड करें" -#: src/view/screens/Search/Explore.tsx:218 +#: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:216 +#: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" msgstr "" -#: src/view/screens/Notifications.tsx:184 +#: src/view/screens/Notifications.tsx:219 msgid "Load new notifications" msgstr "नई सूचनाएं लोड करें" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:494 +#: src/view/screens/ProfileFeed.tsx:495 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "नई पोस्ट लोड करें" @@ -3747,7 +3775,7 @@ msgstr "" #~ msgid "Local dev server" #~ msgstr "स्थानीय देव सर्वर" -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:247 msgid "Log" msgstr "" @@ -3825,7 +3853,7 @@ msgstr "" msgid "Media" msgstr "" -#: src/components/WhoCanReply.tsx:275 +#: src/components/WhoCanReply.tsx:276 msgid "mentioned users" msgstr "" @@ -3847,7 +3875,7 @@ msgstr "" msgid "Message deleted" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:200 +#: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "" @@ -3864,7 +3892,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:534 +#: src/Navigation.tsx:547 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3879,9 +3907,9 @@ msgstr "" msgid "Misleading Account" msgstr "" -#: src/Navigation.tsx:130 +#: src/Navigation.tsx:133 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:562 +#: src/view/screens/Settings/index.tsx:563 msgid "Moderation" msgstr "मॉडरेशन" @@ -3917,16 +3945,16 @@ msgstr "" msgid "Moderation lists" msgstr "मॉडरेशन सूचियाँ" -#: src/Navigation.tsx:135 +#: src/Navigation.tsx:138 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Moderation settings" msgstr "" -#: src/Navigation.tsx:234 +#: src/Navigation.tsx:237 msgid "Moderation states" msgstr "" @@ -3955,7 +3983,7 @@ msgstr "अधिक विकल्प" #~ msgid "More post options" #~ msgstr "पोस्ट विकल्प" -#: src/view/screens/PreferencesThreads.tsx:82 +#: src/view/screens/PreferencesThreads.tsx:76 msgid "Most-liked replies first" msgstr "" @@ -4034,13 +4062,13 @@ msgstr "" msgid "Mute this word in tags only" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:371 msgid "Mute thread" msgstr "थ्रेड म्यूट करें" -#: src/view/com/util/forms/PostDropdownBtn.tsx:378 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 +#: src/view/com/util/forms/PostDropdownBtn.tsx:381 +#: src/view/com/util/forms/PostDropdownBtn.tsx:383 msgid "Mute words & tags" msgstr "" @@ -4052,7 +4080,7 @@ msgstr "" msgid "Muted accounts" msgstr "म्यूट किए गए खाते" -#: src/Navigation.tsx:140 +#: src/Navigation.tsx:143 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "म्यूट किए गए खाते" @@ -4086,11 +4114,11 @@ msgstr "मेरी फ़ीड" msgid "My Profile" msgstr "मेरी प्रोफाइल" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "My saved feeds" msgstr "" -#: src/view/screens/Settings/index.tsx:623 +#: src/view/screens/Settings/index.tsx:624 msgid "My Saved Feeds" msgstr "मेरी फ़ीड" @@ -4098,7 +4126,7 @@ msgstr "मेरी फ़ीड" #~ msgid "my-server.com" #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/AddAppPasswords.tsx:174 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "नाम" @@ -4133,7 +4161,7 @@ msgstr "" msgid "Navigates to the next screen" msgstr "" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:78 msgid "Navigates to your profile" msgstr "" @@ -4172,7 +4200,7 @@ msgstr "" msgid "New" msgstr "नया" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" @@ -4200,9 +4228,9 @@ msgid "New post" msgstr "" #: src/view/screens/Feeds.tsx:581 -#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Notifications.tsx:228 #: src/view/screens/Profile.tsx:478 -#: src/view/screens/ProfileFeed.tsx:428 +#: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:278 @@ -4222,7 +4250,7 @@ msgstr "" msgid "New User List" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:79 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Newest replies first" msgstr "" @@ -4257,16 +4285,16 @@ msgstr "अगला" msgid "Next image" msgstr "अगली फोटो" -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:199 -#: src/view/screens/PreferencesFollowingFeed.tsx:234 -#: src/view/screens/PreferencesFollowingFeed.tsx:271 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:198 +#: src/view/screens/PreferencesFollowingFeed.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:270 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "No" msgstr "नहीं" -#: src/view/screens/ProfileFeed.tsx:562 +#: src/view/screens/ProfileFeed.tsx:564 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "कोई विवरण नहीं" @@ -4284,7 +4312,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/components/ProfileCard.tsx:321 +#: src/components/ProfileCard.tsx:323 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "" @@ -4301,7 +4329,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:122 msgid "No notifications yet!" msgstr "" @@ -4333,7 +4361,7 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "\"{query}\" के लिए कोई परिणाम नहीं मिला" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 @@ -4379,7 +4407,7 @@ msgstr "" #~ msgid "Not Applicable." #~ msgstr "लागू नहीं।" -#: src/Navigation.tsx:120 +#: src/Navigation.tsx:123 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "" @@ -4390,7 +4418,7 @@ msgid "Not right now" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/forms/PostDropdownBtn.tsx:459 #: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "" @@ -4403,6 +4431,19 @@ msgstr "" msgid "Nothing here" msgstr "" +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:331 +#: src/view/screens/Notifications.tsx:119 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "" + #: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "" @@ -4411,13 +4452,14 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:529 -#: src/view/screens/Notifications.tsx:132 -#: src/view/screens/Notifications.tsx:169 +#: src/Navigation.tsx:542 +#: src/view/screens/Notifications.tsx:145 +#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:203 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 -#: src/view/shell/Drawer.tsx:457 -#: src/view/shell/Drawer.tsx:458 +#: src/view/shell/Drawer.tsx:447 +#: src/view/shell/Drawer.tsx:448 msgid "Notifications" msgstr "सूचनाएं" @@ -4425,7 +4467,7 @@ msgstr "सूचनाएं" msgid "now" msgstr "" -#: src/components/dms/MessageItem.tsx:175 +#: src/components/dms/MessageItem.tsx:169 msgid "Now" msgstr "" @@ -4459,7 +4501,7 @@ msgstr "अरे नहीं!" msgid "Oh no! Something went wrong." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 msgid "OK" msgstr "" @@ -4467,7 +4509,7 @@ msgstr "" msgid "Okay" msgstr "ठीक है" -#: src/view/screens/PreferencesThreads.tsx:78 +#: src/view/screens/PreferencesThreads.tsx:72 msgid "Oldest replies first" msgstr "" @@ -4479,7 +4521,7 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:257 +#: src/view/screens/Settings/index.tsx:258 msgid "Onboarding reset" msgstr "" @@ -4487,7 +4529,7 @@ msgstr "" msgid "Onboarding tour step {0}: {1}" msgstr "" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:534 msgid "One or more images is missing alt text." msgstr "एक या अधिक छवियाँ alt पाठ याद आती हैं।।" @@ -4495,7 +4537,7 @@ msgstr "एक या अधिक छवियाँ alt पाठ याद msgid "Only .jpg and .png files are supported" msgstr "" -#: src/components/WhoCanReply.tsx:244 +#: src/components/WhoCanReply.tsx:245 msgid "Only {0} can reply" msgstr "" @@ -4515,6 +4557,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:304 #: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/NotificationsSettings.tsx:45 #: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "" @@ -4540,16 +4583,16 @@ msgstr "" msgid "Open conversation options" msgstr "" -#: src/view/com/composer/Composer.tsx:632 -#: src/view/com/composer/Composer.tsx:633 +#: src/view/com/composer/Composer.tsx:663 +#: src/view/com/composer/Composer.tsx:664 msgid "Open emoji picker" msgstr "" -#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileFeed.tsx:297 msgid "Open feed options menu" msgstr "" -#: src/view/screens/Settings/index.tsx:737 +#: src/view/screens/Settings/index.tsx:738 msgid "Open links with in-app browser" msgstr "" @@ -4569,7 +4612,7 @@ msgstr "" msgid "Open navigation" msgstr "ओपन नेविगेशन" -#: src/view/com/util/forms/PostDropdownBtn.tsx:247 +#: src/view/com/util/forms/PostDropdownBtn.tsx:250 msgid "Open post options menu" msgstr "" @@ -4577,12 +4620,12 @@ msgstr "" msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Open storybook page" msgstr "" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Open system log" msgstr "" @@ -4594,7 +4637,7 @@ msgstr "" msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:511 +#: src/view/screens/Settings/index.tsx:512 msgid "Opens accessibility settings" msgstr "" @@ -4610,7 +4653,7 @@ msgstr "" msgid "Opens camera on device" msgstr "" -#: src/view/screens/Settings/index.tsx:640 +#: src/view/screens/Settings/index.tsx:641 msgid "Opens chat settings" msgstr "" @@ -4618,7 +4661,7 @@ msgstr "" msgid "Opens composer" msgstr "" -#: src/view/screens/Settings/index.tsx:532 +#: src/view/screens/Settings/index.tsx:533 msgid "Opens configurable language settings" msgstr "भाषा सेटिंग्स खोलें" @@ -4630,7 +4673,7 @@ msgstr "" #~ msgid "Opens editor for profile display name, avatar, background image, and description" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:672 +#: src/view/screens/Settings/index.tsx:673 msgid "Opens external embeds settings" msgstr "" @@ -4664,11 +4707,11 @@ msgstr "" msgid "Opens list of invite codes" msgstr "" -#: src/view/screens/Settings/index.tsx:809 +#: src/view/screens/Settings/index.tsx:810 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:831 +#: src/view/screens/Settings/index.tsx:832 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "" @@ -4676,19 +4719,19 @@ msgstr "" #~ msgid "Opens modal for account deletion confirmation. Requires email code." #~ msgstr "" -#: src/view/screens/Settings/index.tsx:766 +#: src/view/screens/Settings/index.tsx:767 msgid "Opens modal for changing your Bluesky password" msgstr "" -#: src/view/screens/Settings/index.tsx:721 +#: src/view/screens/Settings/index.tsx:722 msgid "Opens modal for choosing a new Bluesky handle" msgstr "" -#: src/view/screens/Settings/index.tsx:789 +#: src/view/screens/Settings/index.tsx:790 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "" -#: src/view/screens/Settings/index.tsx:1009 +#: src/view/screens/Settings/index.tsx:1010 msgid "Opens modal for email verification" msgstr "" @@ -4696,7 +4739,7 @@ msgstr "" msgid "Opens modal for using custom domain" msgstr "कस्टम डोमेन का उपयोग करने के लिए मोडल खोलें" -#: src/view/screens/Settings/index.tsx:557 +#: src/view/screens/Settings/index.tsx:558 msgid "Opens moderation settings" msgstr "मॉडरेशन सेटिंग्स खोलें" @@ -4709,11 +4752,11 @@ msgstr "" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:618 +#: src/view/screens/Settings/index.tsx:619 msgid "Opens screen with all saved feeds" msgstr "सभी बचाया फ़ीड के साथ स्क्रीन खोलें" -#: src/view/screens/Settings/index.tsx:699 +#: src/view/screens/Settings/index.tsx:700 msgid "Opens the app password settings" msgstr "" @@ -4721,7 +4764,7 @@ msgstr "" #~ msgid "Opens the app password settings page" #~ msgstr "ऐप पासवर्ड सेटिंग पेज खोलें" -#: src/view/screens/Settings/index.tsx:575 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens the Following feed preferences" msgstr "" @@ -4737,30 +4780,34 @@ msgstr "" #~ msgid "Opens the message settings page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:862 -#: src/view/screens/Settings/index.tsx:872 +#: src/view/screens/Settings/index.tsx:863 +#: src/view/screens/Settings/index.tsx:873 msgid "Opens the storybook page" msgstr "स्टोरीबुक पेज खोलें" -#: src/view/screens/Settings/index.tsx:850 +#: src/view/screens/Settings/index.tsx:851 msgid "Opens the system log page" msgstr "सिस्टम लॉग पेज खोलें" -#: src/view/screens/Settings/index.tsx:596 +#: src/view/screens/Settings/index.tsx:597 msgid "Opens the threads preferences" msgstr "धागे वरीयताओं को खोलता है" -#: src/view/com/notifications/FeedItem.tsx:524 -#: src/view/com/util/UserAvatar.tsx:422 +#: src/view/com/notifications/FeedItem.tsx:527 +#: src/view/com/util/UserAvatar.tsx:434 msgid "Opens this profile" msgstr "" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:54 +msgid "Opens video picker" +msgstr "" + #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "" #: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:162 +#: src/components/ReportDialog/SubmitView.tsx:179 msgid "Optionally provide additional information below:" msgstr "" @@ -4828,7 +4875,7 @@ msgstr "" msgid "Password updated!" msgstr "पासवर्ड अद्यतन!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Pause" msgstr "" @@ -4837,19 +4884,19 @@ msgstr "" msgid "People" msgstr "" -#: src/Navigation.tsx:175 +#: src/Navigation.tsx:178 msgid "People followed by @{0}" msgstr "" -#: src/Navigation.tsx:168 +#: src/Navigation.tsx:171 msgid "People following @{0}" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:69 +#: src/view/com/lightbox/Lightbox.tsx:70 msgid "Permission to access camera roll is required." msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:75 +#: src/view/com/lightbox/Lightbox.tsx:78 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "" @@ -4874,12 +4921,12 @@ msgstr "" msgid "Pictures meant for adults." msgstr "चित्र वयस्कों के लिए थे।।" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 msgid "Pin to Home" msgstr "" @@ -4891,7 +4938,7 @@ msgstr "पिन किया गया फ़ीड" msgid "Pinned to your feeds" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Play" msgstr "" @@ -4904,7 +4951,7 @@ msgstr "" #~ msgid "Play notification sounds" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 msgid "Play or pause the GIF" msgstr "" @@ -4942,7 +4989,7 @@ msgstr "" #~ msgid "Please enter a phone number that can receive SMS text messages." #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:150 +#: src/view/com/modals/AddAppPasswords.tsx:151 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "कृपया इस ऐप पासवर्ड के लिए एक अद्वितीय नाम दर्ज करें या हमारे यादृच्छिक रूप से उत्पन्न एक का उपयोग करें।।" @@ -4971,7 +5018,7 @@ msgstr "" msgid "Please enter your password as well:" msgstr "कृपया अपना पासवर्ड भी दर्ज करें:" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:277 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" @@ -4993,7 +5040,7 @@ msgstr "" msgid "Please Verify Your Email" msgstr "" -#: src/view/com/composer/Composer.tsx:287 +#: src/view/com/composer/Composer.tsx:299 msgid "Please wait for your link card to finish loading" msgstr "" @@ -5010,8 +5057,8 @@ msgstr "" #~ msgid "Pornography" #~ msgstr "" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:509 +#: src/view/com/composer/Composer.tsx:516 msgctxt "action" msgid "Post" msgstr "" @@ -5025,9 +5072,9 @@ msgstr "पोस्ट" msgid "Post by {0}" msgstr "" -#: src/Navigation.tsx:194 -#: src/Navigation.tsx:201 -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:197 +#: src/Navigation.tsx:204 +#: src/Navigation.tsx:211 msgid "Post by @{0}" msgstr "" @@ -5083,6 +5130,10 @@ msgstr "" msgid "Potentially Misleading Link" msgstr "शायद एक भ्रामक लिंक" +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "" @@ -5103,7 +5154,7 @@ msgstr "" #~ msgid "Press to Retry" #~ msgstr "" -#: src/components/KnownFollowers.tsx:116 +#: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "" @@ -5115,20 +5166,24 @@ msgstr "पिछली छवि" msgid "Primary Language" msgstr "प्राथमिक भाषा" -#: src/view/screens/PreferencesThreads.tsx:97 +#: src/view/screens/PreferencesThreads.tsx:91 msgid "Prioritize Your Follows" msgstr "अपने फ़ॉलोअर्स को प्राथमिकता दें" -#: src/view/screens/Settings/index.tsx:655 +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "" + +#: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "गोपनीयता" -#: src/Navigation.tsx:249 +#: src/Navigation.tsx:257 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:958 -#: src/view/shell/Drawer.tsx:285 +#: src/view/screens/Settings/index.tsx:959 +#: src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "गोपनीयता नीति" @@ -5147,9 +5202,9 @@ msgstr "" #: src/view/shell/bottom-bar/BottomBar.tsx:275 #: src/view/shell/desktop/LeftNav.tsx:393 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:542 -#: src/view/shell/Drawer.tsx:543 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:532 +#: src/view/shell/Drawer.tsx:533 msgid "Profile" msgstr "प्रोफ़ाइल" @@ -5157,7 +5212,7 @@ msgstr "प्रोफ़ाइल" msgid "Profile updated" msgstr "" -#: src/view/screens/Settings/index.tsx:1022 +#: src/view/screens/Settings/index.tsx:1023 msgid "Protect your account by verifying your email." msgstr "अपने ईमेल को सत्यापित करके अपने खाते को सुरक्षित रखें।।" @@ -5173,23 +5228,23 @@ msgstr "" msgid "Public, shareable lists which can drive feeds." msgstr "सार्वजनिक, साझा करने योग्य सूचियाँ जो फ़ीड चला सकती हैं।" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish post" msgstr "" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish reply" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:125 +#: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:103 +#: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:104 +#: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "" @@ -5214,7 +5269,7 @@ msgstr "कोटे पोस्ट" #~ msgid "Quote Post" #~ msgstr "कोटे पोस्ट" -#: src/view/screens/PreferencesThreads.tsx:86 +#: src/view/screens/PreferencesThreads.tsx:80 msgid "Random (aka \"Poster's Roulette\")" msgstr "" @@ -5250,19 +5305,23 @@ msgstr "" msgid "Reconnect" msgstr "" +#: src/view/screens/Notifications.tsx:146 +msgid "Refresh notifications" +msgstr "" + #: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 #: src/components/FeedCard.tsx:309 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:212 +#: src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "निकालें" @@ -5278,7 +5337,7 @@ msgstr "" msgid "Remove account" msgstr "खाता हटाएं" -#: src/view/com/util/UserAvatar.tsx:384 +#: src/view/com/util/UserAvatar.tsx:396 msgid "Remove Avatar" msgstr "" @@ -5290,20 +5349,20 @@ msgstr "" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:168 -#: src/view/com/posts/FeedShutdownMsg.tsx:113 -#: src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:115 +#: src/view/com/posts/FeedShutdownMsg.tsx:119 msgid "Remove feed" msgstr "फ़ीड हटाएँ" -#: src/view/com/posts/FeedErrorMessage.tsx:209 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" msgstr "" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "मेरे फ़ीड से हटाएँ" @@ -5317,7 +5376,7 @@ msgstr "" msgid "Remove image" msgstr "छवि निकालें" -#: src/view/com/composer/ExternalEmbed.tsx:87 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 msgid "Remove image preview" msgstr "छवि पूर्वावलोकन निकालें" @@ -5346,7 +5405,7 @@ msgstr "" #~ msgid "Remove this feed from my feeds?" #~ msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "" @@ -5354,7 +5413,7 @@ msgstr "" #~ msgid "Remove this feed from your saved feeds?" #~ msgstr "इस फ़ीड को सहेजे गए फ़ीड से हटा दें?" -#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "" @@ -5370,15 +5429,19 @@ msgid "Removed from your feeds" msgstr "" #: src/view/com/composer/ExternalEmbed.tsx:88 -msgid "Removes default thumbnail from {0}" -msgstr "" +#~ msgid "Removes default thumbnail from {0}" +#~ msgstr "" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" msgstr "" -#: src/view/com/posts/FeedShutdownMsg.tsx:126 -#: src/view/com/posts/FeedShutdownMsg.tsx:130 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the image preview" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:128 +#: src/view/com/posts/FeedShutdownMsg.tsx:132 msgid "Replace with Discover" msgstr "" @@ -5394,16 +5457,16 @@ msgstr "" #~ msgid "Replies on this thread are disabled" #~ msgstr "" -#: src/components/WhoCanReply.tsx:242 +#: src/components/WhoCanReply.tsx:243 msgid "Replies to this thread are disabled" msgstr "" -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:507 msgctxt "action" msgid "Reply" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:143 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 msgid "Reply Filters" msgstr "फिल्टर" @@ -5413,17 +5476,23 @@ msgstr "फिल्टर" #~ msgid "Reply to <0/>" #~ msgstr "" -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:439 +#: src/view/com/post/Post.tsx:197 +#: src/view/com/posts/FeedItem.tsx:458 msgctxt "description" msgid "Reply to <0><1/>" msgstr "" -#: src/view/com/posts/FeedItem.tsx:437 +#: src/view/com/posts/FeedItem.tsx:456 msgctxt "description" msgid "Reply to a blocked post" msgstr "" +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:454 +msgctxt "description" +msgid "Reply to you" +msgstr "" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -5454,8 +5523,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/view/screens/ProfileFeed.tsx:349 -#: src/view/screens/ProfileFeed.tsx:351 +#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:352 msgid "Report feed" msgstr "रिपोर्ट फ़ीड" @@ -5467,8 +5536,8 @@ msgstr "रिपोर्ट सूची" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:407 +#: src/view/com/util/forms/PostDropdownBtn.tsx:409 msgid "Report post" msgstr "रिपोर्ट पोस्ट" @@ -5530,7 +5599,7 @@ msgstr "पोस्ट दोबारा पोस्ट करें या msgid "Reposted By" msgstr "द्वारा दोबारा पोस्ट किया गया" -#: src/view/com/posts/FeedItem.tsx:254 +#: src/view/com/posts/FeedItem.tsx:263 msgid "Reposted by {0}" msgstr "" @@ -5538,11 +5607,16 @@ msgstr "" #~ msgid "Reposted by <0/>" #~ msgstr "" -#: src/view/com/posts/FeedItem.tsx:269 +#: src/view/com/posts/FeedItem.tsx:282 msgid "Reposted by <0><1/>" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/posts/FeedItem.tsx:261 +#: src/view/com/posts/FeedItem.tsx:280 +msgid "Reposted by you" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:188 msgid "reposted your post" msgstr "" @@ -5593,8 +5667,8 @@ msgstr "" #~ msgid "Reset onboarding" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:901 -#: src/view/screens/Settings/index.tsx:904 +#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:905 msgid "Reset onboarding state" msgstr "ऑनबोर्डिंग स्टेट को रीसेट करें" @@ -5606,16 +5680,16 @@ msgstr "पासवर्ड रीसेट" #~ msgid "Reset preferences" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:881 -#: src/view/screens/Settings/index.tsx:884 +#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:885 msgid "Reset preferences state" msgstr "प्राथमिकताओं को रीसेट करें" -#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:903 msgid "Resets the onboarding state" msgstr "ऑनबोर्डिंग स्टेट को रीसेट करें" -#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:883 msgid "Resets the preferences state" msgstr "प्राथमिकताओं की स्थिति को रीसेट करें" @@ -5628,7 +5702,7 @@ msgstr "" msgid "Retries the last action, which errored out" msgstr "" -#: src/components/dms/MessageItem.tsx:241 +#: src/components/dms/MessageItem.tsx:235 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 @@ -5668,7 +5742,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/dialogs/ThreadgateEditor.tsx:88 -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:187 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5677,7 +5751,7 @@ msgstr "" msgid "Save" msgstr "सेव करो" -#: src/view/com/lightbox/Lightbox.tsx:135 +#: src/view/com/lightbox/Lightbox.tsx:139 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5699,8 +5773,8 @@ msgstr "बदलाव सेव करो" msgid "Save handle change" msgstr "बदलाव सेव करो" -#: src/components/StarterPack/ShareDialog.tsx:150 -#: src/components/StarterPack/ShareDialog.tsx:157 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "" @@ -5708,12 +5782,12 @@ msgstr "" msgid "Save image crop" msgstr "फोटो बदलाव सेव करो" -#: src/components/StarterPack/QrCodeDialog.tsx:178 +#: src/components/StarterPack/QrCodeDialog.tsx:181 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 +#: src/view/screens/ProfileFeed.tsx:334 +#: src/view/screens/ProfileFeed.tsx:340 msgid "Save to my feeds" msgstr "" @@ -5721,7 +5795,7 @@ msgstr "" msgid "Saved Feeds" msgstr "सहेजे गए फ़ीड" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:88 msgid "Saved to your camera roll" msgstr "" @@ -5748,8 +5822,8 @@ msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:383 -#: src/view/com/notifications/FeedItem.tsx:408 +#: src/view/com/notifications/FeedItem.tsx:386 +#: src/view/com/notifications/FeedItem.tsx:411 msgid "Say hello!" msgstr "" @@ -5763,9 +5837,9 @@ msgid "Scroll to top" msgstr "" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:524 +#: src/Navigation.tsx:537 #: src/view/com/auth/LoggedOut.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 @@ -5773,14 +5847,14 @@ msgstr "" #: src/view/screens/Search/Search.tsx:813 #: src/view/shell/bottom-bar/BottomBar.tsx:182 #: src/view/shell/desktop/LeftNav.tsx:354 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:394 -#: src/view/shell/Drawer.tsx:395 +#: src/view/shell/desktop/Search.tsx:195 +#: src/view/shell/desktop/Search.tsx:204 +#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:385 msgid "Search" msgstr "खोज" -#: src/view/shell/desktop/Search.tsx:235 +#: src/view/shell/desktop/Search.tsx:236 msgid "Search for \"{query}\"" msgstr "" @@ -5814,7 +5888,7 @@ msgstr "" #: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/auth/LoggedOut.tsx:107 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "" @@ -5935,7 +6009,7 @@ msgstr "" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:135 +#: src/components/ReportDialog/SubmitView.tsx:152 msgid "Select the moderation service(s) to report to" msgstr "" @@ -5951,6 +6025,10 @@ msgstr "" #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:53 +msgid "Select video" +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:63 #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "" @@ -6009,8 +6087,7 @@ msgctxt "action" msgid "Send Email" msgstr "ईमेल भेजें" -#: src/view/shell/Drawer.tsx:329 -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:325 msgid "Send feedback" msgstr "प्रतिक्रिया भेजें" @@ -6019,14 +6096,14 @@ msgstr "प्रतिक्रिया भेजें" msgid "Send message" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 msgid "Send post to..." msgstr "" #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:215 -#: src/components/ReportDialog/SubmitView.tsx:219 +#: src/components/ReportDialog/SubmitView.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:236 msgid "Send report" msgstr "" @@ -6043,8 +6120,8 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 +#: src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" msgstr "" @@ -6098,19 +6175,19 @@ msgstr "नया पासवर्ड सेट करें" #~ msgid "Set password" #~ msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:224 +#: src/view/screens/PreferencesFollowingFeed.tsx:223 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "अपने फ़ीड से सभी उद्धरण पदों को छिपाने के लिए इस सेटिंग को \"नहीं\" में सेट करें। Reposts अभी भी दिखाई देगा।।" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:120 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "इस सेटिंग को अपने फ़ीड से सभी उत्तरों को छिपाने के लिए \"नहीं\" पर सेट करें।।" -#: src/view/screens/PreferencesFollowingFeed.tsx:190 +#: src/view/screens/PreferencesFollowingFeed.tsx:189 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "इस सेटिंग को अपने फ़ीड से सभी पोस्ट छिपाने के लिए \"नहीं\" करने के लिए सेट करें।।" -#: src/view/screens/PreferencesThreads.tsx:122 +#: src/view/screens/PreferencesThreads.tsx:116 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "इस सेटिंग को \"हाँ\" में सेट करने के लिए एक थ्रेडेड व्यू में जवाब दिखाने के लिए। यह एक प्रयोगात्मक विशेषता है।।" @@ -6118,7 +6195,7 @@ msgstr "इस सेटिंग को \"हाँ\" में सेट क #~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." #~ msgstr "इस सेटिंग को अपने निम्नलिखित फ़ीड में अपने सहेजे गए फ़ीड के नमूने दिखाने के लिए \"हाँ\" पर सेट करें। यह एक प्रयोगात्मक विशेषता है।।" -#: src/view/screens/PreferencesFollowingFeed.tsx:260 +#: src/view/screens/PreferencesFollowingFeed.tsx:259 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "" @@ -6130,23 +6207,23 @@ msgstr "" msgid "Sets Bluesky username" msgstr "" -#: src/view/screens/Settings/index.tsx:462 +#: src/view/screens/Settings/index.tsx:463 msgid "Sets color theme to dark" msgstr "" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Sets color theme to light" msgstr "" -#: src/view/screens/Settings/index.tsx:449 +#: src/view/screens/Settings/index.tsx:450 msgid "Sets color theme to system setting" msgstr "" -#: src/view/screens/Settings/index.tsx:488 +#: src/view/screens/Settings/index.tsx:489 msgid "Sets dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings/index.tsx:481 +#: src/view/screens/Settings/index.tsx:482 msgid "Sets dark theme to the dim theme" msgstr "" @@ -6175,11 +6252,11 @@ msgstr "" #~ msgid "Sets server for the Bluesky client" #~ msgstr "" -#: src/Navigation.tsx:150 -#: src/view/screens/Settings/index.tsx:333 +#: src/Navigation.tsx:153 +#: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:559 -#: src/view/shell/Drawer.tsx:560 +#: src/view/shell/Drawer.tsx:549 +#: src/view/shell/Drawer.tsx:550 msgid "Settings" msgstr "सेटिंग्स" @@ -6191,19 +6268,19 @@ msgstr "यौन गतिविधि या कामुक नग्नत msgid "Sexually Suggestive" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:177 #: src/screens/StarterPack/StarterPackScreen.tsx:400 #: src/screens/StarterPack/StarterPackScreen.tsx:571 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 #: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "शेयर" -#: src/view/com/lightbox/Lightbox.tsx:144 +#: src/view/com/lightbox/Lightbox.tsx:148 msgctxt "action" msgid "Share" msgstr "" @@ -6217,18 +6294,18 @@ msgid "Share a fun fact!" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:464 #: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "" -#: src/view/screens/ProfileFeed.tsx:359 -#: src/view/screens/ProfileFeed.tsx:361 +#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:362 msgid "Share feed" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:123 -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 #: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -6238,12 +6315,12 @@ msgstr "" msgid "Share Link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:87 +#: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:134 -#: src/components/StarterPack/ShareDialog.tsx:145 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "" @@ -6251,7 +6328,7 @@ msgstr "" msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:99 +#: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -6259,6 +6336,10 @@ msgstr "" msgid "Share your favorite feed!" msgstr "" +#: src/Navigation.tsx:242 +msgid "Shared Preferences Tester" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" msgstr "" @@ -6266,7 +6347,7 @@ msgstr "" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:382 +#: src/view/screens/Settings/index.tsx:383 msgid "Show" msgstr "दिखाओ" @@ -6274,7 +6355,7 @@ msgstr "दिखाओ" #~ msgid "Show all replies" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +#: src/view/com/util/post-embeds/GifEmbed.tsx:175 msgid "Show alt text" msgstr "" @@ -6304,19 +6385,19 @@ msgstr "" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#: src/view/com/util/forms/PostDropdownBtn.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:349 +#: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" msgstr "" #: src/view/com/post-thread/PostThreadItem.tsx:530 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:396 +#: src/view/com/post/Post.tsx:235 +#: src/view/com/posts/FeedItem.tsx:410 msgid "Show More" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 -#: src/view/com/util/forms/PostDropdownBtn.tsx:340 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:343 msgid "Show more like this" msgstr "" @@ -6324,11 +6405,11 @@ msgstr "" msgid "Show muted replies" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:257 +#: src/view/screens/PreferencesFollowingFeed.tsx:256 msgid "Show Posts from My Feeds" msgstr "मेरी फीड से पोस्ट दिखाएं" -#: src/view/screens/PreferencesFollowingFeed.tsx:221 +#: src/view/screens/PreferencesFollowingFeed.tsx:220 msgid "Show Quote Posts" msgstr "उद्धरण पोस्ट दिखाओ" @@ -6344,11 +6425,11 @@ msgstr "उद्धरण पोस्ट दिखाओ" #~ msgid "Show re-posts in Following feed" #~ msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:117 msgid "Show Replies" msgstr "उत्तर दिखाएँ" -#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:94 msgid "Show replies by people you follow before all other replies." msgstr "अन्य सभी उत्तरों से पहले उन लोगों के उत्तर दिखाएं जिन्हें आप फ़ॉलो करते हैं।" @@ -6364,7 +6445,7 @@ msgstr "अन्य सभी उत्तरों से पहले उन #~ msgid "Show replies with at least {value} {0}" #~ msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:187 +#: src/view/screens/PreferencesFollowingFeed.tsx:186 msgid "Show Reposts" msgstr "रीपोस्ट दिखाएँ" @@ -6444,8 +6525,8 @@ msgstr "" msgid "Sign into Bluesky or create a new account" msgstr "" -#: src/view/screens/Settings/index.tsx:129 -#: src/view/screens/Settings/index.tsx:133 +#: src/view/screens/Settings/index.tsx:130 +#: src/view/screens/Settings/index.tsx:134 msgid "Sign out" msgstr "साइन आउट" @@ -6470,7 +6551,7 @@ msgstr "" msgid "Sign-in Required" msgstr "" -#: src/view/screens/Settings/index.tsx:392 +#: src/view/screens/Settings/index.tsx:393 msgid "Signed in as" msgstr "आपने इस रूप में साइन इन करा है:" @@ -6479,7 +6560,7 @@ msgstr "आपने इस रूप में साइन इन करा msgid "Signed in as @{0}" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:208 +#: src/view/com/notifications/FeedItem.tsx:209 msgid "signed up with your starter pack" msgstr "" @@ -6487,8 +6568,8 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 msgid "Signup without a starter pack" msgstr "" @@ -6510,7 +6591,7 @@ msgstr "" msgid "Software Dev" msgstr "" -#: src/components/FeedInterstitials.tsx:378 +#: src/components/FeedInterstitials.tsx:382 msgid "Some other feeds you might like" msgstr "" @@ -6542,24 +6623,25 @@ msgstr "" msgid "Something went wrong, please try again." msgstr "" -#: src/components/Lists.tsx:203 -#~ msgid "Something went wrong!" -#~ msgstr "" +#: src/components/Lists.tsx:192 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "" #: src/view/com/modals/Waitlist.tsx:51 #~ msgid "Something went wrong. Check your email and try again." #~ msgstr "" -#: src/App.native.tsx:98 -#: src/App.web.tsx:80 +#: src/App.native.tsx:99 +#: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "" -#: src/view/screens/PreferencesThreads.tsx:69 +#: src/view/screens/PreferencesThreads.tsx:63 msgid "Sort Replies" msgstr "उत्तर क्रमबद्ध करें" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:66 msgid "Sort replies to the same post by:" msgstr "उसी पोस्ट के उत्तरों को इस प्रकार क्रमबद्ध करें:" @@ -6567,7 +6649,7 @@ msgstr "उसी पोस्ट के उत्तरों को इस प #~ msgid "Source:" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" msgstr "" @@ -6593,7 +6675,7 @@ msgstr "स्क्वायर" #~ msgid "Staging" #~ msgstr "स्टेजिंग" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:63 msgid "Start a new chat" msgstr "" @@ -6610,8 +6692,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:328 -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:341 +#: src/Navigation.tsx:346 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -6636,7 +6718,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "स्थिति पृष्ठ" -#: src/view/screens/Settings/index.tsx:964 +#: src/view/screens/Settings/index.tsx:965 msgid "Status Page" msgstr "" @@ -6652,17 +6734,17 @@ msgstr "" #~ msgid "Step {0} of {numSteps}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:305 +#: src/view/screens/Settings/index.tsx:306 msgid "Storage cleared, you need to restart the app now." msgstr "" -#: src/Navigation.tsx:229 -#: src/view/screens/Settings/index.tsx:864 +#: src/Navigation.tsx:232 +#: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:290 -#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/components/moderation/LabelsOnMeDialog.tsx:311 +#: src/components/moderation/LabelsOnMeDialog.tsx:312 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -6685,7 +6767,7 @@ msgstr "" #~ msgid "Subscribe to the {0} feed" #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 msgid "Subscribe to this labeler" msgstr "" @@ -6693,7 +6775,7 @@ msgstr "" msgid "Subscribe to this list" msgstr "इस सूची को सब्सक्राइब करें" -#: src/view/screens/Search/Explore.tsx:331 +#: src/view/screens/Search/Explore.tsx:333 msgid "Suggested accounts" msgstr "" @@ -6701,7 +6783,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "अनुशंसित लोग" -#: src/components/FeedInterstitials.tsx:246 +#: src/components/FeedInterstitials.tsx:250 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "" @@ -6710,7 +6792,7 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:252 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6729,19 +6811,19 @@ msgstr "खाते बदलें" msgid "Switch between feeds to control your experience." msgstr "" -#: src/view/screens/Settings/index.tsx:160 +#: src/view/screens/Settings/index.tsx:161 msgid "Switch to {0}" msgstr "" -#: src/view/screens/Settings/index.tsx:161 +#: src/view/screens/Settings/index.tsx:162 msgid "Switches the account you are logged in to" msgstr "" -#: src/view/screens/Settings/index.tsx:446 +#: src/view/screens/Settings/index.tsx:447 msgid "System" msgstr "प्रणाली" -#: src/view/screens/Settings/index.tsx:852 +#: src/view/screens/Settings/index.tsx:853 msgid "System log" msgstr "सिस्टम लॉग" @@ -6794,11 +6876,11 @@ msgstr "" msgid "Terms" msgstr "शर्तें" -#: src/Navigation.tsx:254 +#: src/Navigation.tsx:262 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:952 +#: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:279 +#: src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "सेवा की शर्तें" @@ -6813,13 +6895,13 @@ msgstr "" msgid "text" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/components/moderation/LabelsOnMeDialog.tsx:275 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "पाठ इनपुट फ़ील्ड" #: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:93 msgid "Thank you. Your report has been sent." msgstr "" @@ -6862,19 +6944,19 @@ msgstr "कॉपीराइट नीति को <0/> पर स्थान msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322 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:66 +#: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:65 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your account." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:67 msgid "The following labels were applied to your content." msgstr "" @@ -6911,8 +6993,8 @@ msgstr "सेवा की शर्तों को स्थानांत msgid "There is no time limit for account deactivation, come back any time." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 -#: src/view/screens/ProfileFeed.tsx:544 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 +#: src/view/screens/ProfileFeed.tsx:545 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -6921,7 +7003,7 @@ msgid "There was an an issue removing this feed. Please check your internet conn msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "" @@ -6935,7 +7017,7 @@ msgstr "" #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:234 +#: src/view/screens/ProfileFeed.tsx:235 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6949,7 +7031,7 @@ msgstr "" msgid "There was an issue contacting your server" msgstr "" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" @@ -6967,7 +7049,7 @@ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "" #: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:82 +#: src/components/ReportDialog/SubmitView.tsx:98 msgid "There was an issue sending your report. Please check your internet connection." msgstr "" @@ -7031,7 +7113,7 @@ msgstr "" 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/moderation/LabelsOnMeDialog.tsx:239 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 msgid "This appeal will be sent to <0>{0}." msgstr "" @@ -7095,12 +7177,12 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "" #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:473 +#: src/view/screens/ProfileFeed.tsx:474 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" -#: src/view/com/posts/FeedShutdownMsg.tsx:97 +#: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" @@ -7128,7 +7210,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:166 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." msgstr "" @@ -7156,12 +7238,12 @@ msgstr "" msgid "This post has been deleted." msgstr "इस पोस्ट को हटा दिया गया है।।" -#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 #: src/view/com/util/post-ctrls/PostCtrls.tsx:324 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:440 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "This post will be hidden from feeds." msgstr "" @@ -7234,12 +7316,12 @@ msgstr "" #~ msgid "This will hide this post from your feeds." #~ msgstr "" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Thread preferences" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/PreferencesThreads.tsx:51 +#: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "थ्रेड प्राथमिकता" @@ -7247,11 +7329,11 @@ msgstr "थ्रेड प्राथमिकता" msgid "Thread settings updated" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:119 +#: src/view/screens/PreferencesThreads.tsx:113 msgid "Threaded Mode" msgstr "थ्रेड मोड" -#: src/Navigation.tsx:287 +#: src/Navigation.tsx:295 msgid "Threads Preferences" msgstr "" @@ -7292,8 +7374,8 @@ msgstr "परिवर्तन" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:676 #: src/view/com/post-thread/PostThreadItem.tsx:678 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 -#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "अनुवाद" @@ -7306,7 +7388,7 @@ msgstr "फिर से कोशिश करो" msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:746 +#: src/view/screens/Settings/index.tsx:747 msgid "Two-factor authentication" msgstr "" @@ -7402,7 +7484,7 @@ msgstr "" #~ msgid "Unlike" #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Unlike this feed" msgstr "" @@ -7436,17 +7518,17 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:367 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Unmute thread" msgstr "थ्रेड को अनम्यूट करें" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 msgid "Unpin from home" msgstr "" @@ -7466,7 +7548,7 @@ msgstr "" msgid "Unsubscribe" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Unsubscribe from this labeler" msgstr "" @@ -7503,20 +7585,20 @@ msgstr "" msgid "Upload a text file to:" msgstr "एक पाठ फ़ाइल अपलोड करने के लिए:" -#: src/view/com/util/UserAvatar.tsx:352 -#: src/view/com/util/UserAvatar.tsx:355 +#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "" -#: src/view/com/util/UserAvatar.tsx:369 +#: src/view/com/util/UserAvatar.tsx:381 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "" -#: src/view/com/util/UserAvatar.tsx:363 -#: src/view/com/util/UserAvatar.tsx:367 +#: src/view/com/util/UserAvatar.tsx:375 +#: src/view/com/util/UserAvatar.tsx:379 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -7556,7 +7638,7 @@ msgstr "" msgid "Use the DNS panel" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:205 +#: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." msgstr "अपने हैंडल के साथ दूसरे ऐप में साइन इन करने के लिए इसका उपयोग करें।" @@ -7632,7 +7714,7 @@ msgstr "यूजर नाम या ईमेल पता" msgid "Users" msgstr "यूजर लोग" -#: src/components/WhoCanReply.tsx:279 +#: src/components/WhoCanReply.tsx:280 msgid "users followed by <0/>" msgstr "" @@ -7667,15 +7749,15 @@ msgstr "" msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:983 +#: src/view/screens/Settings/index.tsx:984 msgid "Verify email" msgstr "ईमेल सत्यापित करें" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Verify my email" msgstr "मेरी ईमेल सत्यापित करें" -#: src/view/screens/Settings/index.tsx:1017 +#: src/view/screens/Settings/index.tsx:1018 msgid "Verify My Email" msgstr "मेरी ईमेल सत्यापित करें" @@ -7696,7 +7778,7 @@ msgstr "" #~ msgid "Version {0}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Version {appVersion} {bundleInfo}" msgstr "" @@ -7705,11 +7787,15 @@ msgstr "" msgid "Video Games" msgstr "" +#: src/view/com/composer/videos/state.ts:27 +msgid "Videos cannot be larger than 100MB" +msgstr "" + #: src/screens/Profile/Header/Shell.tsx:113 msgid "View {0}'s avatar" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:245 +#: src/view/com/notifications/FeedItem.tsx:246 msgid "View {0}'s profile" msgstr "" @@ -7741,7 +7827,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:436 #: src/components/ProfileHoverCard/index.web.tsx:463 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "" @@ -7753,7 +7839,7 @@ msgstr "अवतार देखें" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/view/screens/ProfileFeed.tsx:585 +#: src/view/screens/ProfileFeed.tsx:587 msgid "View users who like this feed" msgstr "" @@ -7861,7 +7947,7 @@ msgstr "" msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "" -#: src/view/com/composer/Composer.tsx:335 +#: src/view/com/composer/Composer.tsx:347 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -7874,7 +7960,7 @@ msgstr "हम क्षमा चाहते हैं! हमें वह #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "" @@ -7904,7 +7990,7 @@ msgstr "" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:376 +#: src/view/com/composer/Composer.tsx:388 msgid "What's up?" msgstr "" @@ -7921,15 +8007,15 @@ msgstr "कौन से भाषाएं आपको अपने एल् msgid "Who can message you?" msgstr "" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Who can reply" msgstr "" -#: src/components/WhoCanReply.tsx:211 +#: src/components/WhoCanReply.tsx:212 msgid "Who can reply dialog" msgstr "" -#: src/components/WhoCanReply.tsx:215 +#: src/components/WhoCanReply.tsx:216 msgid "Who can reply?" msgstr "" @@ -7975,11 +8061,11 @@ msgstr "चौड़ा" msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:580 msgid "Write post" msgstr "पोस्ट लिखो" -#: src/view/com/composer/Composer.tsx:375 +#: src/view/com/composer/Composer.tsx:387 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "अपना जवाब दें" @@ -7994,12 +8080,12 @@ msgstr "" #~ msgstr "" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:200 -#: src/view/screens/PreferencesFollowingFeed.tsx:235 -#: src/view/screens/PreferencesFollowingFeed.tsx:270 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:199 +#: src/view/screens/PreferencesFollowingFeed.tsx:234 +#: src/view/screens/PreferencesFollowingFeed.tsx:269 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "Yes" msgstr "हाँ" @@ -8016,7 +8102,7 @@ msgstr "" msgid "Yes, reactivate my account" msgstr "" -#: src/components/dms/MessageItem.tsx:188 +#: src/components/dms/MessageItem.tsx:182 msgid "Yesterday, {time}" msgstr "" @@ -8189,19 +8275,19 @@ msgstr "" msgid "You haven't muted any words or tags yet" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:86 +#: src/components/moderation/LabelsOnMeDialog.tsx:87 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:92 msgid "You may appeal these labels if you feel they were placed in error." msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:92 +#: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 50 feeds" msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:77 +#: src/screens/StarterPack/Wizard/State.tsx:78 msgid "You may only add up to 50 profiles" msgstr "" @@ -8229,7 +8315,7 @@ msgstr "" msgid "You must grant access to your photo library to save the image." msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:205 +#: src/components/ReportDialog/SubmitView.tsx:222 msgid "You must select at least one labeler for a report" msgstr "" @@ -8269,15 +8355,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272 msgid "You'll stay updated with these feeds" msgstr "" @@ -8386,7 +8472,7 @@ msgstr "" msgid "Your password has been changed successfully!" msgstr "" -#: src/view/com/composer/Composer.tsx:366 +#: src/view/com/composer/Composer.tsx:378 msgid "Your post has been published" msgstr "" @@ -8394,7 +8480,7 @@ msgstr "" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "आपकी पोस्ट, पसंद और ब्लॉक सार्वजनिक हैं। म्यूट निजी हैं।।" -#: src/view/screens/Settings/index.tsx:148 +#: src/view/screens/Settings/index.tsx:149 msgid "Your profile" msgstr "आपकी प्रोफ़ाइल" @@ -8402,7 +8488,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:365 +#: src/view/com/composer/Composer.tsx:377 msgid "Your reply has been published" msgstr "" diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po index a5c7873f80..30e9bba3fa 100644 --- a/src/locale/locales/id/messages.po +++ b/src/locale/locales/id/messages.po @@ -26,7 +26,7 @@ msgstr "(berisi konten yang disisipkan)" msgid "(no email)" msgstr "(tidak ada email)" -#: src/view/com/notifications/FeedItem.tsx:294 +#: src/view/com/notifications/FeedItem.tsx:297 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, other {{formattedCount} lainnya}}" @@ -93,7 +93,7 @@ msgstr "{0, plural, other {posting ulang}}" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, other {Batal suka (# menyukai)}}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "{0} telah bergabung minggu ini" @@ -105,7 +105,7 @@ msgstr "{0} orang telah menggunakan paket pemula ini!" #~ msgid "{0} your feeds" #~ msgstr "" -#: src/view/com/util/UserAvatar.tsx:419 +#: src/view/com/util/UserAvatar.tsx:431 msgid "{0}'s avatar" msgstr "Avatar {0}" @@ -153,7 +153,7 @@ msgstr "{estimatedTimeHrs, plural, other {jam}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, other {menit}}" -#: src/components/ProfileHoverCard/index.web.tsx:504 +#: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} mengikuti" @@ -164,11 +164,11 @@ msgstr "{handle} tidak dapat dikirimi pesan" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:588 +#: src/view/screens/ProfileFeed.tsx:590 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, other {Disukai oleh # pengguna}}" -#: src/view/shell/Drawer.tsx:462 +#: src/view/shell/Drawer.tsx:452 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} belum dibaca" @@ -184,7 +184,7 @@ msgstr "{profileName} bergabung di Bluesky menggunakan paket pemula {0} yang lal msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "{value, plural, =0 {Tampilkan semua balasan} other {Tampilkan balasan dengan minimal # suka}}" -#: src/components/WhoCanReply.tsx:295 +#: src/components/WhoCanReply.tsx:296 msgid "<0/> members" msgstr "anggota <0/>" @@ -206,11 +206,11 @@ msgstr "<0>{0}, <1>{1}, dan {2, plural, other {# lainnya}} sudah diserta #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "" -#: src/view/shell/Drawer.tsx:101 +#: src/view/shell/Drawer.tsx:100 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, other {pengikut}}" -#: src/view/shell/Drawer.tsx:112 +#: src/view/shell/Drawer.tsx:111 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, other {mengikuti}}" @@ -277,15 +277,15 @@ msgid "Access profile and other navigation links" msgstr "Akses profil dan tautan navigasi lain" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:519 +#: src/view/screens/Settings/index.tsx:520 msgid "Accessibility" msgstr "Aksesibilitas" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Accessibility settings" msgstr "Pengaturan aksesibilitas" -#: src/Navigation.tsx:301 +#: src/Navigation.tsx:309 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "Pengaturan Aksesibilitas" @@ -295,8 +295,8 @@ msgstr "Pengaturan Aksesibilitas" #~ msgstr "" #: src/screens/Login/LoginForm.tsx:190 -#: src/view/screens/Settings/index.tsx:346 -#: src/view/screens/Settings/index.tsx:753 +#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:754 msgid "Account" msgstr "Akun" @@ -343,7 +343,7 @@ msgid "Account unmuted" msgstr "Akun batal dibisukan" #: src/components/dialogs/MutedWords.tsx:164 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 msgid "Add" @@ -367,8 +367,8 @@ msgstr "Tambahkan pengguna ke daftar ini" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:423 -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:433 msgid "Add account" msgstr "Tambahkan akun" @@ -444,7 +444,7 @@ msgstr "Tambahkan ke daftar feed saya" #~ msgid "Added" #~ msgstr "" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "Ditambahkan ke daftar" @@ -453,7 +453,7 @@ msgstr "Ditambahkan ke daftar" msgid "Added to my feeds" msgstr "Ditambahkan ke daftar feed saya" -#: src/view/screens/PreferencesFollowingFeed.tsx:172 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Sesuaikan jumlah suka yang harus dimiliki oleh balasan agar ditampilkan di feed Anda." @@ -471,7 +471,7 @@ msgid "Adult content is disabled." msgstr "Konten dewasa dinonaktifkan." #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:687 +#: src/view/screens/Settings/index.tsx:688 msgid "Advanced" msgstr "Lanjutan" @@ -487,8 +487,8 @@ msgstr "Semua akun telah diikuti!" msgid "All the feeds you've saved, right in one place." msgstr "Berisi semua feed yang telah Anda simpan dalam satu tempat." -#: src/view/com/modals/AddAppPasswords.tsx:187 -#: src/view/com/modals/AddAppPasswords.tsx:194 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "Izinkan akses ke pesan langsung Anda" @@ -513,7 +513,7 @@ msgstr "Sudah masuk sebagai @{0}" #: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "ALT" msgstr "ALT" @@ -523,7 +523,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Teks alt" -#: src/view/com/util/post-embeds/GifEmbed.tsx:180 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Alt Text" msgstr "Teks Alt" @@ -552,8 +552,8 @@ msgstr "Terjadi kesalahan saat membuat paket pemula. Coba lagi?" #~ msgid "An error occurred while saving the image." #~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:70 -#: src/components/StarterPack/ShareDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the QR code!" msgstr "Terjadi kesalahan saat menyimpan kode QR!" @@ -569,10 +569,18 @@ msgstr "Terjadi kesalahan saat mencoba mengikuti semua" msgid "An issue not included in these options" msgstr "Masalah lain yang tidak termasuk dalam pilihan" +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +msgid "An issue occurred while trying to open the chat" +msgstr "" + #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:309 -#: src/components/ProfileCard.tsx:329 +#: src/components/ProfileCard.tsx:311 +#: src/components/ProfileCard.tsx:331 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -584,8 +592,8 @@ msgstr "Terjadi masalah, silakan coba lagi." msgid "an unknown error occurred" msgstr "terjadi kesalahan yang tidak diketahui" -#: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:291 +#: src/components/WhoCanReply.tsx:317 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "dan" @@ -594,7 +602,7 @@ msgstr "dan" msgid "Animals" msgstr "Hewan" -#: src/view/com/util/post-embeds/GifEmbed.tsx:146 +#: src/view/com/util/post-embeds/GifEmbed.tsx:155 msgid "Animated GIF" msgstr "Animasi GIF" @@ -618,26 +626,26 @@ msgstr "Nama Kata Sandi Aplikasi hanya boleh terdiri dari huruf, angka, spasi, t msgid "App Password names must be at least 4 characters long." msgstr "Nama Kata Sandi Aplikasi harus terdiri dari minimal 4 karakter." -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "App password settings" msgstr "Pengaturan kata sandi aplikasi" -#: src/Navigation.tsx:269 +#: src/Navigation.tsx:277 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:707 +#: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" msgstr "Kata Sandi Aplikasi" -#: src/components/moderation/LabelsOnMeDialog.tsx:151 -#: src/components/moderation/LabelsOnMeDialog.tsx:154 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "Ajukan Banding" -#: src/components/moderation/LabelsOnMeDialog.tsx:236 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Appeal \"{0}\" label" msgstr "Banding label \"{0}\"" -#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/components/moderation/LabelsOnMeDialog.tsx:248 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Banding diajukan" @@ -653,7 +661,7 @@ msgstr "Banding diajukan" msgid "Appeal this decision" msgstr "Ajukan banding atas keputusan ini" -#: src/view/screens/Settings/index.tsx:440 +#: src/view/screens/Settings/index.tsx:441 msgid "Appearance" msgstr "Tampilan" @@ -663,8 +671,8 @@ msgid "Apply default recommended feeds" msgstr "Tambahkan feed bawaan yang direkomendasikan" #: src/screens/StarterPack/StarterPackScreen.tsx:610 -msgid "Are you sure you want delete this starter pack?" -msgstr "Apakah Anda yakin ingin menghapus paket pemula ini?" +#~ msgid "Are you sure you want delete this starter pack?" +#~ msgstr "Apakah Anda yakin ingin menghapus paket pemula ini?" #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" @@ -678,6 +686,10 @@ msgstr "Apakah Anda yakin ingin menghapus sandi aplikasi \"{name}\"?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Anda yakin ingin menghapus pesan ini? Pesan akan dihapus untuk Anda, tetapi tidak untuk partisipan lainnya." +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:189 #~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." #~ msgstr "" @@ -694,7 +706,7 @@ msgstr "Apakah Anda yakin ingin menghapus {0} dari daftar feed Anda?" msgid "Are you sure you want to remove this from your feeds?" msgstr "Apakah Anda yakin ingin menghapus ini dari daftar feed Anda?" -#: src/view/com/composer/Composer.tsx:649 +#: src/view/com/composer/Composer.tsx:680 msgid "Are you sure you'd like to discard this draft?" msgstr "Anda yakin untuk membuang draf ini?" @@ -720,8 +732,8 @@ msgid "At least 3 characters" msgstr "Minimal 3 karakter" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:281 -#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/components/moderation/LabelsOnMeDialog.tsx:302 +#: src/components/moderation/LabelsOnMeDialog.tsx:303 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -734,7 +746,6 @@ msgstr "Minimal 3 karakter" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" @@ -744,7 +755,7 @@ msgstr "Kembali" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Basics" msgstr "Dasar" @@ -752,7 +763,7 @@ msgstr "Dasar" msgid "Birthday" msgstr "Tanggal lahir" -#: src/view/screens/Settings/index.tsx:378 +#: src/view/screens/Settings/index.tsx:379 msgid "Birthday:" msgstr "Tanggal lahir:" @@ -796,7 +807,7 @@ msgstr "Diblokir" msgid "Blocked accounts" msgstr "Akun yang diblokir" -#: src/Navigation.tsx:145 +#: src/Navigation.tsx:148 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Akun yang diblokir" @@ -878,21 +889,21 @@ msgstr "Buramkan gambar dan saring dari feed" msgid "Books" msgstr "Buku" -#: src/components/FeedInterstitials.tsx:281 +#: src/components/FeedInterstitials.tsx:285 msgid "Browse more accounts on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:411 +#: src/components/FeedInterstitials.tsx:415 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:266 -#: src/components/FeedInterstitials.tsx:396 +#: src/components/FeedInterstitials.tsx:270 +#: src/components/FeedInterstitials.tsx:400 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:289 -#: src/components/FeedInterstitials.tsx:420 +#: src/components/FeedInterstitials.tsx:293 +#: src/components/FeedInterstitials.tsx:424 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -937,7 +948,7 @@ msgstr "oleh Anda" msgid "Camera" msgstr "Kamera" -#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Hanya dapat terdiri dari huruf, angka, spasi, tanda hubung dan garis bawah. Minimal 4 karakter, namun tidak boleh lebih dari 32 karakter." @@ -946,8 +957,8 @@ msgstr "Hanya dapat terdiri dari huruf, angka, spasi, tanda hubung dan garis baw #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:451 -#: src/view/com/composer/Composer.tsx:457 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -965,7 +976,7 @@ msgstr "Hanya dapat terdiri dari huruf, angka, spasi, tanda hubung dan garis baw #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:139 #: src/view/screens/Search/Search.tsx:704 -#: src/view/shell/desktop/Search.tsx:218 +#: src/view/shell/desktop/Search.tsx:219 msgid "Cancel" msgstr "Batal" @@ -1001,8 +1012,8 @@ msgstr "Batal mengutip postingan" msgid "Cancel reactivation and log out" msgstr "Batalkan pengaktifan kembali dan keluar" -#: src/view/com/modals/ListAddRemoveUsers.tsx:87 -#: src/view/shell/desktop/Search.tsx:214 +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "Batal mencari" @@ -1014,17 +1025,17 @@ msgstr "Membatalkan membuka situs web tertaut" msgid "Change" msgstr "Ubah" -#: src/view/screens/Settings/index.tsx:372 +#: src/view/screens/Settings/index.tsx:373 msgctxt "action" msgid "Change" msgstr "Ubah" -#: src/view/screens/Settings/index.tsx:719 +#: src/view/screens/Settings/index.tsx:720 msgid "Change handle" msgstr "Ubah panggilan" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:730 +#: src/view/screens/Settings/index.tsx:731 msgid "Change Handle" msgstr "Ubah Panggilan" @@ -1032,12 +1043,12 @@ msgstr "Ubah Panggilan" msgid "Change my email" msgstr "Ubah email saya" -#: src/view/screens/Settings/index.tsx:764 +#: src/view/screens/Settings/index.tsx:765 msgid "Change password" msgstr "Ubah kata sandi" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:775 +#: src/view/screens/Settings/index.tsx:776 msgid "Change Password" msgstr "Ubah Kata Sandi" @@ -1049,7 +1060,7 @@ msgstr "Ubah bahasa postingan menjadi {0}" msgid "Change Your Email" msgstr "Ubah Email Anda" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:321 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -1061,14 +1072,14 @@ msgstr "Obrolan dibisukan" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:326 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" msgstr "Pengaturan obrolan" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:648 +#: src/view/screens/Settings/index.tsx:649 msgid "Chat Settings" msgstr "Pengaturan Obrolan" @@ -1155,19 +1166,19 @@ msgstr "Pilih siapa yang dapat membalas" msgid "Choose your password" msgstr "Pilih kata sandi Anda" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clear all legacy storage data" msgstr "Hapus semua data penyimpanan lama" -#: src/view/screens/Settings/index.tsx:914 +#: src/view/screens/Settings/index.tsx:915 msgid "Clear all legacy storage data (restart after this)" msgstr "Hapus semua data penyimpanan lama (mulai ulang setelah ini)" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clear all storage data" msgstr "Hapus semua data penyimpanan" -#: src/view/screens/Settings/index.tsx:926 +#: src/view/screens/Settings/index.tsx:927 msgid "Clear all storage data (restart after this)" msgstr "Hapus semua data penyimpanan (mulai ulang setelah ini)" @@ -1176,11 +1187,11 @@ msgstr "Hapus semua data penyimpanan (mulai ulang setelah ini)" msgid "Clear search query" msgstr "Hapus kueri pencarian" -#: src/view/screens/Settings/index.tsx:912 +#: src/view/screens/Settings/index.tsx:913 msgid "Clears all legacy storage data" msgstr "Bersihkan semua penyimpanan data lama" -#: src/view/screens/Settings/index.tsx:924 +#: src/view/screens/Settings/index.tsx:925 msgid "Clears all storage data" msgstr "Hapus semua data penyimpanan" @@ -1208,7 +1219,7 @@ msgstr "Klik di sini untuk membuka menu tagar dari {tag}" #~ msgid "Click here to open tag menu for #{tag}" #~ msgstr "" -#: src/components/dms/MessageItem.tsx:237 +#: src/components/dms/MessageItem.tsx:231 msgid "Click to retry failed message" msgstr "Ketuk untuk mengirim ulang pesan yang gagal" @@ -1229,7 +1240,7 @@ msgstr "Keletak 🐴 keletuk 🐴" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/util/post-embeds/GifEmbed.tsx:195 msgid "Close" msgstr "Tutup" @@ -1284,7 +1295,7 @@ msgstr "Menutup bilah navigasi bawah" msgid "Closes password update alert" msgstr "Menutup peringatan pembaruan kata sandi" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:472 msgid "Closes post composer and discards post draft" msgstr "Menutup penyusun postingan dan membuang draf" @@ -1292,11 +1303,11 @@ msgstr "Menutup penyusun postingan dan membuang draf" msgid "Closes viewer for header image" msgstr "Menutup penampil untuk gambar header" -#: src/view/com/notifications/FeedItem.tsx:237 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Collapse list of users" msgstr "Ciutkan daftar pengguna" -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:440 msgid "Collapses list of users for a given notification" msgstr "Menciutkan daftar pengguna untuk notifikasi tertentu" @@ -1310,7 +1321,7 @@ msgstr "Komedi" msgid "Comics" msgstr "Komik" -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:267 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Panduan Komunitas" @@ -1323,7 +1334,7 @@ msgstr "Selesaikan onboarding dan mulai menggunakan akun Anda" msgid "Complete the challenge" msgstr "Selesaikan tantangan" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:582 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Buat postingan dengan panjang hingga {MAX_GRAPHEME_LENGTH} karakter" @@ -1348,8 +1359,6 @@ msgstr "Diatur pada <0>pengaturan moderasi." #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/PreferencesFollowingFeed.tsx:307 -#: src/view/screens/PreferencesThreads.tsx:159 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 msgid "Confirm" @@ -1466,12 +1475,12 @@ msgstr "Percakapan dihapus" msgid "Cooking" msgstr "Memasak" -#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Disalin" -#: src/view/screens/Settings/index.tsx:264 +#: src/view/screens/Settings/index.tsx:265 msgid "Copied build version to clipboard" msgstr "Menyalin versi build ke papan klip" @@ -1479,7 +1488,7 @@ msgstr "Menyalin versi build ke papan klip" #: src/view/com/modals/AddAppPasswords.tsx:80 #: src/view/com/modals/ChangeHandle.tsx:320 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:189 +#: src/view/com/util/forms/PostDropdownBtn.tsx:192 #: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Disalin ke papan klip" @@ -1488,12 +1497,12 @@ msgstr "Disalin ke papan klip" msgid "Copied!" msgstr "Tersalin!" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" msgstr "Menyalin kata sandi aplikasi" -#: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/view/com/modals/AddAppPasswords.tsx:213 +#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Salin" @@ -1506,11 +1515,11 @@ msgstr "Salin {0}" msgid "Copy code" msgstr "Salin kode" -#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" msgstr "Salin tautan" -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" msgstr "Salin Tautan" @@ -1518,8 +1527,8 @@ msgstr "Salin Tautan" msgid "Copy link to list" msgstr "Salin tautan daftar" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 msgid "Copy link to post" msgstr "Salin tautan postingan" @@ -1528,20 +1537,24 @@ msgstr "Salin tautan postingan" msgid "Copy message text" msgstr "Salin teks pesan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:285 -#: src/view/com/util/forms/PostDropdownBtn.tsx:287 +#: src/view/com/util/forms/PostDropdownBtn.tsx:288 +#: src/view/com/util/forms/PostDropdownBtn.tsx:290 msgid "Copy post text" msgstr "Salin teks postingan" -#: src/components/StarterPack/QrCodeDialog.tsx:168 +#: src/components/StarterPack/QrCodeDialog.tsx:171 msgid "Copy QR code" msgstr "Salin kode QR" -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:272 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Kebijakan Hak Cipta" +#: src/view/com/composer/videos/state.ts:31 +msgid "Could not compress video" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "Tidak dapat meninggalkan obrolan" @@ -1575,17 +1588,17 @@ msgstr "Buat" msgid "Create a new account" msgstr "Buat akun baru" -#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:425 msgid "Create a new Bluesky account" msgstr "Buat akun Bluesky baru" -#: src/components/StarterPack/QrCodeDialog.tsx:151 +#: src/components/StarterPack/QrCodeDialog.tsx:154 msgid "Create a QR code for a starter pack" msgstr "Buat kode QR untuk paket pemula" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:351 msgid "Create a starter pack" msgstr "Buat paket pemula" @@ -1610,7 +1623,7 @@ msgstr "Buat avatar saja" msgid "Create another" msgstr "Buat paket lain" -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" msgstr "Buat Kata Sandi Aplikasi" @@ -1650,7 +1663,7 @@ msgid "Custom domain" msgstr "Domain kustom" #: src/view/screens/Feeds.tsx:760 -#: src/view/screens/Search/Explore.tsx:390 +#: src/view/screens/Search/Explore.tsx:392 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Feed kustom yang dibangun oleh komunitas memberikan pengalaman baru dan membantu Anda menemukan konten yang Anda sukai." @@ -1658,8 +1671,8 @@ msgstr "Feed kustom yang dibangun oleh komunitas memberikan pengalaman baru dan msgid "Customize media from external sites." msgstr "Sesuaikan media dari situs eksternal." -#: src/view/screens/Settings/index.tsx:459 -#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:460 +#: src/view/screens/Settings/index.tsx:486 msgid "Dark" msgstr "Gelap" @@ -1667,7 +1680,7 @@ msgstr "Gelap" msgid "Dark mode" msgstr "Mode gelap" -#: src/view/screens/Settings/index.tsx:472 +#: src/view/screens/Settings/index.tsx:473 msgid "Dark Theme" msgstr "Tema Gelap" @@ -1676,15 +1689,15 @@ msgid "Date of birth" msgstr "Tanggal lahir" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:807 +#: src/view/screens/Settings/index.tsx:808 msgid "Deactivate account" msgstr "Nonaktifkan akun" -#: src/view/screens/Settings/index.tsx:819 +#: src/view/screens/Settings/index.tsx:820 msgid "Deactivate my account" msgstr "Nonaktifkan akun saya" -#: src/view/screens/Settings/index.tsx:874 +#: src/view/screens/Settings/index.tsx:875 msgid "Debug Moderation" msgstr "Debug Moderasi" @@ -1696,13 +1709,13 @@ msgstr "Panel awakutu" #: src/screens/StarterPack/StarterPackScreen.tsx:562 #: src/screens/StarterPack/StarterPackScreen.tsx:641 #: src/screens/StarterPack/StarterPackScreen.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Hapus" -#: src/view/screens/Settings/index.tsx:829 +#: src/view/screens/Settings/index.tsx:830 msgid "Delete account" msgstr "Hapus akun" @@ -1722,8 +1735,8 @@ msgstr "Hapus kata sandi aplikasi" msgid "Delete app password?" msgstr "Hapus kata sandi aplikasi?" -#: src/view/screens/Settings/index.tsx:891 -#: src/view/screens/Settings/index.tsx:894 +#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:895 msgid "Delete chat declaration record" msgstr "Hapus catatan deklarasi obrolan" @@ -1747,12 +1760,12 @@ msgstr "Hapus pesan untuk saya" msgid "Delete my account" msgstr "Hapus akun saya" -#: src/view/screens/Settings/index.tsx:841 +#: src/view/screens/Settings/index.tsx:842 msgid "Delete My Account…" msgstr "Hapus Akun Saya…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:414 -#: src/view/com/util/forms/PostDropdownBtn.tsx:416 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 +#: src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "Hapus postingan" @@ -1769,7 +1782,7 @@ msgstr "Hapus paket pemula?" msgid "Delete this list?" msgstr "Hapus daftar ini?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:428 +#: src/view/com/util/forms/PostDropdownBtn.tsx:431 msgid "Delete this post?" msgstr "Hapus postingan ini?" @@ -1781,7 +1794,7 @@ msgstr "Dihapus" msgid "Deleted post." msgstr "Postingan dihapus." -#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:893 msgid "Deletes the chat declaration record" msgstr "Menghapus catatan deklarasi obrolan" @@ -1796,11 +1809,11 @@ msgstr "Deskripsi" msgid "Descriptive alt text" msgstr "Teks alt deskriptif" -#: src/view/com/composer/Composer.tsx:283 +#: src/view/com/composer/Composer.tsx:295 msgid "Did you want to say anything?" msgstr "Apakah Anda ingin mengatakan sesuatu?" -#: src/view/screens/Settings/index.tsx:478 +#: src/view/screens/Settings/index.tsx:479 msgid "Dim" msgstr "Redup" @@ -1837,11 +1850,11 @@ msgstr "Matikan respons haptik" msgid "Disabled" msgstr "Dinonaktifkan" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:682 msgid "Discard" msgstr "Buang" -#: src/view/com/composer/Composer.tsx:648 +#: src/view/com/composer/Composer.tsx:679 msgid "Discard draft?" msgstr "Buang draf?" @@ -1859,7 +1872,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "Temukan feed kustom baru" -#: src/view/screens/Search/Explore.tsx:388 +#: src/view/screens/Search/Explore.tsx:390 msgid "Discover new feeds" msgstr "Temukan feed baru" @@ -1912,22 +1925,20 @@ msgstr "Domain terverifikasi!" #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesFollowingFeed.tsx:310 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Selesai" #: src/view/com/modals/EditImage.tsx:334 -#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" msgstr "Selesai" @@ -1936,7 +1947,7 @@ msgstr "Selesai" msgid "Done{extraText}" msgstr "Selesai{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319 msgid "Download Bluesky" msgstr "Unduh Bluesky" @@ -2006,7 +2017,7 @@ msgctxt "action" msgid "Edit" msgstr "Ubah" -#: src/view/com/util/UserAvatar.tsx:325 +#: src/view/com/util/UserAvatar.tsx:337 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "Ubah avatar" @@ -2028,7 +2039,7 @@ msgstr "Ubah rincian daftar" msgid "Edit Moderation List" msgstr "Ubah Daftar Moderasi" -#: src/Navigation.tsx:274 +#: src/Navigation.tsx:282 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -2043,12 +2054,12 @@ msgstr "Edit profil saya" msgid "Edit People" msgstr "Ubah Daftar Pengguna" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "Edit profil" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "Edit Profil" @@ -2066,7 +2077,7 @@ msgstr "Ubah paket pemula" msgid "Edit User List" msgstr "Ubah Daftar Pengguna" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Edit who can reply" msgstr "Ubah siapa yang dapat membalas" @@ -2078,7 +2089,7 @@ msgstr "Ubah nama tampilan Anda" msgid "Edit your profile description" msgstr "Sunting deskripsi profil Anda" -#: src/Navigation.tsx:343 +#: src/Navigation.tsx:356 msgid "Edit your starter pack" msgstr "Ubah paket pemula Anda" @@ -2117,7 +2128,7 @@ msgstr "Email Diperbarui" msgid "Email verified" msgstr "Email terverifikasi" -#: src/view/screens/Settings/index.tsx:350 +#: src/view/screens/Settings/index.tsx:351 msgid "Email:" msgstr "Email:" @@ -2126,8 +2137,8 @@ msgid "Embed HTML code" msgstr "Sisipkan kode HTML" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:324 -#: src/view/com/util/forms/PostDropdownBtn.tsx:326 +#: src/view/com/util/forms/PostDropdownBtn.tsx:327 +#: src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "Sisipkan postingan" @@ -2157,11 +2168,16 @@ msgstr "Aktifkan konten dewasa" msgid "Enable external media" msgstr "Aktifkan media eksternal" -#: src/view/screens/PreferencesExternalEmbeds.tsx:76 +#: src/view/screens/PreferencesExternalEmbeds.tsx:73 msgid "Enable media players for" msgstr "Aktifkan pemutar media untuk" -#: src/view/screens/PreferencesFollowingFeed.tsx:146 +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 msgid "Enable this setting to only see replies between people you follow." msgstr "Aktifkan opsi ini untuk menampilkan balasan hanya dari pengguna yang Anda ikuti." @@ -2187,7 +2203,7 @@ msgstr "Akhir feed" msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:160 +#: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "Masukkan nama untuk Sandi Aplikasi ini" @@ -2255,7 +2271,7 @@ msgid "Everybody" msgstr "Semua orang" #: src/components/WhoCanReply.tsx:69 -#: src/components/WhoCanReply.tsx:240 +#: src/components/WhoCanReply.tsx:241 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "Semua orang dapat membalas" @@ -2291,8 +2307,8 @@ msgstr "Keluar dari proses pemotongan gambar" msgid "Exits image view" msgstr "Keluar dari tampilan gambar" -#: src/view/com/modals/ListAddRemoveUsers.tsx:88 -#: src/view/shell/desktop/Search.tsx:215 +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +#: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "Keluar dari memasukkan permintaan pencarian" @@ -2300,7 +2316,7 @@ msgstr "Keluar dari memasukkan permintaan pencarian" msgid "Expand alt text" msgstr "Bentangkan teks alt" -#: src/view/com/notifications/FeedItem.tsx:238 +#: src/view/com/notifications/FeedItem.tsx:239 msgid "Expand list of users" msgstr "Bentangkan daftar pengguna" @@ -2309,6 +2325,10 @@ msgstr "Bentangkan daftar pengguna" msgid "Expand or collapse the full post you are replying to" msgstr "Bentangkan atau ciutkan postingan lengkap yang Anda balas" +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." msgstr "Media eksplisit atau berpotensi mengganggu." @@ -2317,12 +2337,12 @@ msgstr "Media eksplisit atau berpotensi mengganggu." msgid "Explicit sexual images." msgstr "Gambar seksual eksplisit." -#: src/view/screens/Settings/index.tsx:787 +#: src/view/screens/Settings/index.tsx:788 msgid "Export my data" msgstr "Ekspor data saya" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:798 +#: src/view/screens/Settings/index.tsx:799 msgid "Export My Data" msgstr "Ekspor Data Saya" @@ -2332,17 +2352,17 @@ msgid "External Media" msgstr "Media Eksternal" #: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/view/screens/PreferencesExternalEmbeds.tsx:64 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 \"play\"." -#: src/Navigation.tsx:293 +#: src/Navigation.tsx:301 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:680 +#: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" msgstr "Preferensi Media Eksternal" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "External media settings" msgstr "Pengaturan media eksternal" @@ -2372,8 +2392,8 @@ msgstr "Gagal menghapus postingan, silakan coba lagi" msgid "Failed to delete starter pack" msgstr "Gagal menghapus paket pemula" -#: src/view/screens/Search/Explore.tsx:426 -#: src/view/screens/Search/Explore.tsx:454 +#: src/view/screens/Search/Explore.tsx:428 +#: src/view/screens/Search/Explore.tsx:456 msgid "Failed to load feeds preferences" msgstr "Gagal memuat preferensi feed" @@ -2395,20 +2415,24 @@ msgstr "Gagal memuat pesan terdahulu" #~ msgid "Failed to load recommended feeds" #~ msgstr "" -#: src/view/screens/Search/Explore.tsx:419 -#: src/view/screens/Search/Explore.tsx:447 +#: src/view/screens/Search/Explore.tsx:421 +#: src/view/screens/Search/Explore.tsx:449 msgid "Failed to load suggested feeds" msgstr "Gagal memuat daftar feed yang disarankan" -#: src/view/screens/Search/Explore.tsx:377 +#: src/view/screens/Search/Explore.tsx:379 msgid "Failed to load suggested follows" msgstr "Gagal memuat saran akun untuk diikuti" -#: src/view/com/lightbox/Lightbox.tsx:86 +#: src/view/com/lightbox/Lightbox.tsx:90 msgid "Failed to save image: {0}" msgstr "Gagal menyimpan gambar: {0}" -#: src/components/dms/MessageItem.tsx:230 +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + +#: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "Gagal mengirim" @@ -2416,12 +2440,12 @@ msgstr "Gagal mengirim" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: src/components/moderation/LabelsOnMeDialog.tsx:244 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "Gagal mengajukan banding, silakan coba lagi." -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:181 msgid "Failed to toggle thread mute, please try again" msgstr "Gagal membisukan utas, silakan coba lagi" @@ -2434,7 +2458,7 @@ msgstr "Gagal memperbarui daftar feed" msgid "Failed to update settings" msgstr "Gagal memperbarui pengaturan" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:217 msgid "Feed" msgstr "Feed" @@ -2452,19 +2476,19 @@ msgid "Feed toggle" msgstr "Tombol alih feed" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:345 +#: src/view/shell/Drawer.tsx:332 msgid "Feedback" msgstr "Masukan" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:336 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 #: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:493 -#: src/view/shell/Drawer.tsx:494 +#: src/view/shell/Drawer.tsx:483 +#: src/view/shell/Drawer.tsx:484 msgid "Feeds" msgstr "Feed" @@ -2526,11 +2550,11 @@ msgstr "Temukan postingan dan pengguna di Bluesky" #~ msgid "Finding similar accounts..." #~ msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:110 +#: src/view/screens/PreferencesFollowingFeed.tsx:108 msgid "Fine-tune the content you see on your Following feed." msgstr "Sesuaikan konten yang Anda lihat di feed Mengikuti." -#: src/view/screens/PreferencesThreads.tsx:60 +#: src/view/screens/PreferencesThreads.tsx:54 msgid "Fine-tune the discussion threads." msgstr "Sesuaikan utas diskusi." @@ -2560,7 +2584,7 @@ msgid "Flip vertically" msgstr "Balik secara vertikal" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:341 +#: src/components/ProfileCard.tsx:343 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2605,7 +2629,7 @@ msgstr "Ikuti semua" msgid "Follow Back" msgstr "Ikuti Balik" -#: src/view/screens/Search/Explore.tsx:333 +#: src/view/screens/Search/Explore.tsx:335 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "Ikuti lebih banyak akun untuk terhubung sesuai minat Anda dan membangun jaringan." @@ -2622,22 +2646,22 @@ msgstr "Ikuti lebih banyak akun untuk terhubung sesuai minat Anda dan membangun #~ msgstr "" #: src/view/com/profile/ProfileCard.tsx:190 -msgid "Followed by {0}" -msgstr "Diikuti oleh {0}" +#~ msgid "Followed by {0}" +#~ msgstr "Diikuti oleh {0}" -#: src/components/KnownFollowers.tsx:223 +#: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "Diikuti oleh <0>{0}" -#: src/components/KnownFollowers.tsx:209 +#: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "Diikuti oleh <0>{0} dan {1, plural, other {# lainnya}}" -#: src/components/KnownFollowers.tsx:196 +#: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" msgstr "Diikuti oleh <0>{0} dan <1>{1}" -#: src/components/KnownFollowers.tsx:178 +#: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "Diikuti oleh <0>{0}, <1>{1}, dan {2, plural, other {# lainnya}}" @@ -2645,15 +2669,15 @@ msgstr "Diikuti oleh <0>{0}, <1>{1}, dan {2, plural, other {# lainnya}}" msgid "Followed users" msgstr "Pengguna yang Anda ikuti" -#: src/view/screens/PreferencesFollowingFeed.tsx:153 +#: src/view/screens/PreferencesFollowingFeed.tsx:152 msgid "Followed users only" msgstr "Hanya pengguna yang diikuti" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:198 msgid "followed you" msgstr "mengikuti Anda" -#: src/view/com/notifications/FeedItem.tsx:195 +#: src/view/com/notifications/FeedItem.tsx:196 msgid "followed you back" msgstr "" @@ -2662,7 +2686,7 @@ msgstr "" msgid "Followers" msgstr "Pengikut" -#: src/Navigation.tsx:182 +#: src/Navigation.tsx:185 msgid "Followers of @{0} that you know" msgstr "Pengikut @{0} yang Anda kenal" @@ -2672,7 +2696,7 @@ msgid "Followers you know" msgstr "Pengikut yang Anda kenal" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:335 +#: src/components/ProfileCard.tsx:337 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2684,7 +2708,7 @@ msgstr "Pengikut yang Anda kenal" msgid "Following" msgstr "Mengikuti" -#: src/components/ProfileCard.tsx:301 +#: src/components/ProfileCard.tsx:303 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Mengikuti {0}" @@ -2693,13 +2717,13 @@ msgstr "Mengikuti {0}" msgid "Following {name}" msgstr "Mengikuti {name}" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Following feed preferences" msgstr "Preferensi feed Mengikuti" -#: src/Navigation.tsx:280 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:583 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesFollowingFeed.tsx:105 +#: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "Preferensi Feed Mengikuti" @@ -2724,7 +2748,7 @@ msgstr "Makanan" msgid "For security reasons, we'll need to send a confirmation code to your email address." msgstr "Untuk alasan keamanan, kami akan mengirimkan kode konfirmasi ke alamat email Anda." -#: src/view/com/modals/AddAppPasswords.tsx:232 +#: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Untuk alasan keamanan, Anda tidak akan dapat melihat ini lagi. Jika Anda lupa kata sandi ini, Anda harus membuat yang baru." @@ -2749,7 +2773,7 @@ msgstr "Sering Memposting Konten yang Tidak Diinginkan" msgid "From @{sanitizedAuthor}" msgstr "Dari @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:236 +#: src/view/com/posts/FeedItem.tsx:242 msgctxt "from-feed" msgid "From <0/>" msgstr "Dari <0/>" @@ -2762,6 +2786,10 @@ msgstr "Galeri" msgid "Generate a starter pack" msgstr "Buatkan paket pemula" +#: src/view/shell/Drawer.tsx:336 +msgid "Get help" +msgstr "" + #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" msgstr "Mulai" @@ -2809,12 +2837,12 @@ msgid "Go Back" msgstr "Kembali" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -msgid "Go back to previous screen" -msgstr "" +#~ msgid "Go back to previous screen" +#~ msgstr "" #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/components/ReportDialog/SubmitView.tsx:121 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 @@ -2879,7 +2907,7 @@ msgstr "Haptik" msgid "Harassment, trolling, or intolerance" msgstr "Pelecehan, unggah sulut, atau intoleransi" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:316 msgid "Hashtag" msgstr "Tagar" @@ -2892,7 +2920,7 @@ msgid "Having trouble?" msgstr "Mengalami masalah?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:355 +#: src/view/shell/Drawer.tsx:345 msgid "Help" msgstr "Bantuan" @@ -2912,7 +2940,7 @@ msgstr "Beri tahu orang-orang bahwa Anda bukan bot dengan mengunggah gambar atau #~ msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." #~ msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:203 +#: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "Berikut kata sandi aplikasi Anda." @@ -2923,17 +2951,17 @@ msgstr "Berikut kata sandi aplikasi Anda." #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:445 msgid "Hide" msgstr "Sembunyikan" -#: src/view/com/notifications/FeedItem.tsx:444 +#: src/view/com/notifications/FeedItem.tsx:447 msgctxt "action" msgid "Hide" msgstr "Sembunyikan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:387 -#: src/view/com/util/forms/PostDropdownBtn.tsx:389 +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 msgid "Hide post" msgstr "Sembunyikan postingan" @@ -2942,11 +2970,11 @@ msgstr "Sembunyikan postingan" msgid "Hide the content" msgstr "Sembunyikan konten" -#: src/view/com/util/forms/PostDropdownBtn.tsx:439 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide this post?" msgstr "Sembunyikan postingan ini?" -#: src/view/com/notifications/FeedItem.tsx:435 +#: src/view/com/notifications/FeedItem.tsx:438 msgid "Hide user list" msgstr "Sembunyikan daftar pengguna" @@ -2978,12 +3006,12 @@ 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/Navigation.tsx:519 -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:552 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:425 -#: src/view/shell/Drawer.tsx:426 +#: src/view/shell/Drawer.tsx:415 +#: src/view/shell/Drawer.tsx:416 msgid "Home" msgstr "Beranda" @@ -3037,7 +3065,7 @@ msgstr "Jika Anda belum berusia dewasa menurut hukum negara Anda, orang tua atau msgid "If you delete this list, you won't be able to recover it." msgstr "Jika Anda menghapus daftar ini, Anda tidak dapat memulihkannya lagi." -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 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." @@ -3061,7 +3089,7 @@ msgstr "Gambar" msgid "Image alt text" msgstr "Teks alt gambar" -#: src/components/StarterPack/ShareDialog.tsx:75 +#: src/components/StarterPack/ShareDialog.tsx:76 msgid "Image saved to your camera roll!" msgstr "Gambar telah disimpan ke rol kamera Anda!" @@ -3081,7 +3109,7 @@ msgstr "Masukkan kode yang dikirim ke email Anda untuk pengaturan ulang kata san msgid "Input confirmation code for account deletion" msgstr "Masukkan kode konfirmasi untuk penghapusan akun" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" msgstr "Masukkan nama untuk kata sandi aplikasi" @@ -3154,7 +3182,7 @@ msgstr "Kode undangan: {0} tersedia" msgid "Invite codes: 1 available" msgstr "Kode undangan: 1 tersedia" -#: src/components/StarterPack/ShareDialog.tsx:96 +#: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" msgstr "Undang orang lain ke paket pemula ini!" @@ -3178,8 +3206,8 @@ msgstr "Hanya ada Anda saat ini! Tambahkan lebih banyak orang ke paket pemula An msgid "Jobs" msgstr "Karir" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:432 #: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" @@ -3218,11 +3246,11 @@ msgstr "Label adalah anotasi yang diterapkan pada pengguna dan konten. Label dap #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:79 +#: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "Label pada akun Anda" -#: src/components/moderation/LabelsOnMeDialog.tsx:81 +#: src/components/moderation/LabelsOnMeDialog.tsx:82 msgid "Labels on your content" msgstr "Label pada konten Anda" @@ -3230,16 +3258,16 @@ msgstr "Label pada konten Anda" msgid "Language selection" msgstr "Pilih bahasa" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Language settings" msgstr "Pengaturan bahasa" -#: src/Navigation.tsx:155 +#: src/Navigation.tsx:158 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Pengaturan Bahasa" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Languages" msgstr "Bahasa" @@ -3299,7 +3327,7 @@ msgstr "Meninggalkan Bluesky" msgid "left to go." msgstr "yang tersisa" -#: src/view/screens/Settings/index.tsx:309 +#: src/view/screens/Settings/index.tsx:310 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Penyimpanan lama dibersihkan, Anda perlu memulai ulang aplikasi sekarang." @@ -3317,7 +3345,7 @@ msgstr "Reset kata sandi Anda!" msgid "Let's go!" msgstr "Ayo!" -#: src/view/screens/Settings/index.tsx:453 +#: src/view/screens/Settings/index.tsx:454 msgid "Light" msgstr "Terang" @@ -3335,13 +3363,13 @@ msgid "Like 10 posts to train the Discover feed" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Like this feed" msgstr "Suka feed ini" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:219 -#: src/Navigation.tsx:224 +#: src/Navigation.tsx:222 +#: src/Navigation.tsx:227 msgid "Liked by" msgstr "Disukai oleh" @@ -3365,11 +3393,11 @@ msgstr "Disukai Oleh" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "" -#: src/view/com/notifications/FeedItem.tsx:201 +#: src/view/com/notifications/FeedItem.tsx:202 msgid "liked your custom feed" msgstr "menyukai feed kustom Anda" -#: src/view/com/notifications/FeedItem.tsx:185 +#: src/view/com/notifications/FeedItem.tsx:186 msgid "liked your post" msgstr "menyukai postingan Anda" @@ -3381,7 +3409,7 @@ msgstr "Suka" msgid "Likes on this post" msgstr "Suka pada postingan ini" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:191 msgid "List" msgstr "Daftar" @@ -3418,12 +3446,12 @@ msgstr "Daftar batal diblokir" msgid "List unmuted" msgstr "Daftar batal dibisukan" -#: src/Navigation.tsx:125 +#: src/Navigation.tsx:128 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 -#: src/view/shell/Drawer.tsx:509 -#: src/view/shell/Drawer.tsx:510 +#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:500 msgid "Lists" msgstr "Daftar" @@ -3431,25 +3459,25 @@ msgstr "Daftar" msgid "Lists blocking this user:" msgstr "Daftar yang memblokir pengguna ini:" -#: src/view/screens/Search/Explore.tsx:130 +#: src/view/screens/Search/Explore.tsx:131 msgid "Load more" msgstr "Muat lebih banyak" -#: src/view/screens/Search/Explore.tsx:218 +#: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" msgstr "Muat lebih banyak feed yang disarankan" -#: src/view/screens/Search/Explore.tsx:216 +#: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" msgstr "Muat lebih banyak akun untuk diikuti" -#: src/view/screens/Notifications.tsx:184 +#: src/view/screens/Notifications.tsx:219 msgid "Load new notifications" msgstr "Muat notifikasi baru" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:494 +#: src/view/screens/ProfileFeed.tsx:495 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Muat postingan baru" @@ -3458,7 +3486,7 @@ msgstr "Muat postingan baru" msgid "Loading..." msgstr "Memuat..." -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:247 msgid "Log" msgstr "Catatan" @@ -3528,7 +3556,7 @@ msgstr "Tandai telah dibaca" msgid "Media" msgstr "Media" -#: src/components/WhoCanReply.tsx:275 +#: src/components/WhoCanReply.tsx:276 msgid "mentioned users" msgstr "pengguna yang disebutkan" @@ -3550,7 +3578,7 @@ msgstr "Kirim pesan ke {0}" msgid "Message deleted" msgstr "Pesan dihapus" -#: src/view/com/posts/FeedErrorMessage.tsx:200 +#: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "Pesan dari server: {0}" @@ -3567,7 +3595,7 @@ msgstr "Pesan terlalu panjang" msgid "Message settings" msgstr "Pengaturan pesan" -#: src/Navigation.tsx:534 +#: src/Navigation.tsx:547 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3582,9 +3610,9 @@ msgstr "Pesan" msgid "Misleading Account" msgstr "Akun Menyesatkan" -#: src/Navigation.tsx:130 +#: src/Navigation.tsx:133 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:562 +#: src/view/screens/Settings/index.tsx:563 msgid "Moderation" msgstr "Moderasi" @@ -3620,16 +3648,16 @@ msgstr "Daftar moderasi diperbarui" msgid "Moderation lists" msgstr "Daftar moderasi" -#: src/Navigation.tsx:135 +#: src/Navigation.tsx:138 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Daftar Moderasi" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Moderation settings" msgstr "Pengaturan moderasi" -#: src/Navigation.tsx:234 +#: src/Navigation.tsx:237 msgid "Moderation states" msgstr "Status moderasi" @@ -3654,7 +3682,7 @@ msgstr "Feed lainnya" msgid "More options" msgstr "Opsi lainnya" -#: src/view/screens/PreferencesThreads.tsx:82 +#: src/view/screens/PreferencesThreads.tsx:76 msgid "Most-liked replies first" msgstr "Balasan yang paling disukai lebih dulu" @@ -3721,13 +3749,13 @@ msgstr "Bisukan kata ini di teks postingan dan tagar" msgid "Mute this word in tags only" msgstr "Bisukan kata ini hanya dalam tagar" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:371 msgid "Mute thread" msgstr "Bisukan utas" -#: src/view/com/util/forms/PostDropdownBtn.tsx:378 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 +#: src/view/com/util/forms/PostDropdownBtn.tsx:381 +#: src/view/com/util/forms/PostDropdownBtn.tsx:383 msgid "Mute words & tags" msgstr "Bisukan kata & tagar" @@ -3739,7 +3767,7 @@ msgstr "Dibisukan" msgid "Muted accounts" msgstr "Akun yang dibisukan" -#: src/Navigation.tsx:140 +#: src/Navigation.tsx:143 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Akun yang Dibisukan" @@ -3773,15 +3801,15 @@ msgstr "Daftar Feed Saya" msgid "My Profile" msgstr "Profil Saya" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "My saved feeds" msgstr "Feed tersimpan saya" -#: src/view/screens/Settings/index.tsx:623 +#: src/view/screens/Settings/index.tsx:624 msgid "My Saved Feeds" msgstr "Feed Tersimpan Saya" -#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/AddAppPasswords.tsx:174 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Nama" @@ -3816,7 +3844,7 @@ msgstr "Menuju ke paket pemula" msgid "Navigates to the next screen" msgstr "Menuju ke layar berikutnya" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:78 msgid "Navigates to your profile" msgstr "Menuju ke profil Anda" @@ -3846,7 +3874,7 @@ msgstr "Baru" msgid "New" msgstr "Baru" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" @@ -3874,9 +3902,9 @@ msgid "New post" msgstr "Postingan baru" #: src/view/screens/Feeds.tsx:581 -#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Notifications.tsx:228 #: src/view/screens/Profile.tsx:478 -#: src/view/screens/ProfileFeed.tsx:428 +#: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:278 @@ -3896,7 +3924,7 @@ msgstr "Dialog informasi pengguna baru" msgid "New User List" msgstr "Daftar Pengguna Baru" -#: src/view/screens/PreferencesThreads.tsx:79 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Newest replies first" msgstr "Balasan terbaru lebih dulu" @@ -3931,16 +3959,16 @@ msgstr "Berikutnya" msgid "Next image" msgstr "Gambar berikutnya" -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:199 -#: src/view/screens/PreferencesFollowingFeed.tsx:234 -#: src/view/screens/PreferencesFollowingFeed.tsx:271 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:198 +#: src/view/screens/PreferencesFollowingFeed.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:270 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "No" msgstr "Tidak" -#: src/view/screens/ProfileFeed.tsx:562 +#: src/view/screens/ProfileFeed.tsx:564 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Tidak ada deskripsi" @@ -3958,7 +3986,7 @@ msgstr "GIF tidak ditemukan. Mungkin ada masalah dengan Tenor." msgid "No feeds found. Try searching for something else." msgstr "Tidak ditemukan feed apa pun. Coba pencarian lain." -#: src/components/ProfileCard.tsx:321 +#: src/components/ProfileCard.tsx:323 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "Tidak lagi mengikuti {0}" @@ -3975,7 +4003,7 @@ msgstr "Belum ada pesan" msgid "No more conversations to show" msgstr "Tidak ada percakapan lain untuk ditampilkan" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:122 msgid "No notifications yet!" msgstr "Belum ada notifikasi!" @@ -4007,7 +4035,7 @@ msgstr "Tidak ditemukan hasil" msgid "No results found for \"{query}\"" msgstr "Tidak ditemukan hasil untuk \"{query}\"" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 @@ -4053,7 +4081,7 @@ msgstr "Ketelanjangan Non-Seksual" #~ msgid "Not Applicable." #~ msgstr "" -#: src/Navigation.tsx:120 +#: src/Navigation.tsx:123 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Tidak ditemukan" @@ -4064,7 +4092,7 @@ msgid "Not right now" msgstr "Jangan sekarang" #: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/forms/PostDropdownBtn.tsx:459 #: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "Catatan tentang berbagi" @@ -4077,6 +4105,19 @@ msgstr "Catatan: Bluesky merupakan jaringan terbuka dan publik. Pengaturan ini h msgid "Nothing here" msgstr "Kosong" +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:331 +#: src/view/screens/Notifications.tsx:119 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "" + #: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "Suara notifikasi" @@ -4085,13 +4126,14 @@ msgstr "Suara notifikasi" msgid "Notification Sounds" msgstr "Suara Notifikasi" -#: src/Navigation.tsx:529 -#: src/view/screens/Notifications.tsx:132 -#: src/view/screens/Notifications.tsx:169 +#: src/Navigation.tsx:542 +#: src/view/screens/Notifications.tsx:145 +#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:203 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 -#: src/view/shell/Drawer.tsx:457 -#: src/view/shell/Drawer.tsx:458 +#: src/view/shell/Drawer.tsx:447 +#: src/view/shell/Drawer.tsx:448 msgid "Notifications" msgstr "Notifikasi" @@ -4099,7 +4141,7 @@ msgstr "Notifikasi" msgid "now" msgstr "sekarang" -#: src/components/dms/MessageItem.tsx:175 +#: src/components/dms/MessageItem.tsx:169 msgid "Now" msgstr "Sekarang" @@ -4129,7 +4171,7 @@ msgstr "Oh tidak!" msgid "Oh no! Something went wrong." msgstr "Oh tidak! Ada yang tidak beres." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 msgid "OK" msgstr "OK" @@ -4137,7 +4179,7 @@ msgstr "OK" msgid "Okay" msgstr "Baiklah" -#: src/view/screens/PreferencesThreads.tsx:78 +#: src/view/screens/PreferencesThreads.tsx:72 msgid "Oldest replies first" msgstr "Balasan terlama lebih dulu" @@ -4149,7 +4191,7 @@ msgstr "di" msgid "on {str}" msgstr "pada {str}" -#: src/view/screens/Settings/index.tsx:257 +#: src/view/screens/Settings/index.tsx:258 msgid "Onboarding reset" msgstr "Atur ulang orientasi" @@ -4157,7 +4199,7 @@ msgstr "Atur ulang orientasi" msgid "Onboarding tour step {0}: {1}" msgstr "" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:534 msgid "One or more images is missing alt text." msgstr "Satu atau lebih gambar belum ada teks alt." @@ -4165,7 +4207,7 @@ msgstr "Satu atau lebih gambar belum ada teks alt." msgid "Only .jpg and .png files are supported" msgstr "Hanya mendukung berkas .jpg dan .png" -#: src/components/WhoCanReply.tsx:244 +#: src/components/WhoCanReply.tsx:245 msgid "Only {0} can reply" msgstr "Hanya {0} yang dapat membalas" @@ -4185,6 +4227,7 @@ msgstr "Ups, ada yang tidak beres!" #: src/components/StarterPack/ProfileStarterPacks.tsx:304 #: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/NotificationsSettings.tsx:45 #: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Ups!" @@ -4206,16 +4249,16 @@ msgstr "Buka pembuat avatar" msgid "Open conversation options" msgstr "Buka opsi percakapan" -#: src/view/com/composer/Composer.tsx:632 -#: src/view/com/composer/Composer.tsx:633 +#: src/view/com/composer/Composer.tsx:663 +#: src/view/com/composer/Composer.tsx:664 msgid "Open emoji picker" msgstr "Buka pemilih emoji" -#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileFeed.tsx:297 msgid "Open feed options menu" msgstr "Buka menu opsi feed" -#: src/view/screens/Settings/index.tsx:737 +#: src/view/screens/Settings/index.tsx:738 msgid "Open links with in-app browser" msgstr "Buka tautan dengan browser dalam aplikasi" @@ -4231,7 +4274,7 @@ msgstr "Buka pengaturan kata dan tagar yang dibisukan" msgid "Open navigation" msgstr "Buka navigasi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:247 +#: src/view/com/util/forms/PostDropdownBtn.tsx:250 msgid "Open post options menu" msgstr "Buka menu opsi postingan" @@ -4239,12 +4282,12 @@ msgstr "Buka menu opsi postingan" msgid "Open starter pack menu" msgstr "Buka menu paket pemula" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Open storybook page" msgstr "Buka halaman buku cerita" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Open system log" msgstr "Buka log sistem" @@ -4256,7 +4299,7 @@ msgstr "Membuka opsi {numItems}" msgid "Opens a dialog to choose who can reply to this thread" msgstr "Membuka dialog untuk memilih siapa yang dapat membalas utas ini" -#: src/view/screens/Settings/index.tsx:511 +#: src/view/screens/Settings/index.tsx:512 msgid "Opens accessibility settings" msgstr "Membuka pengaturan aksesibilitas" @@ -4272,7 +4315,7 @@ msgstr "Membuka detail tambahan untuk entri debug" msgid "Opens camera on device" msgstr "Membuka kamera pada perangkat" -#: src/view/screens/Settings/index.tsx:640 +#: src/view/screens/Settings/index.tsx:641 msgid "Opens chat settings" msgstr "Membuka pengaturan obrolan" @@ -4280,7 +4323,7 @@ msgstr "Membuka pengaturan obrolan" msgid "Opens composer" msgstr "Membuka penyusun postingan" -#: src/view/screens/Settings/index.tsx:532 +#: src/view/screens/Settings/index.tsx:533 msgid "Opens configurable language settings" msgstr "Membuka pengaturan bahasa yang dapat dikonfigurasi" @@ -4288,7 +4331,7 @@ msgstr "Membuka pengaturan bahasa yang dapat dikonfigurasi" msgid "Opens device photo gallery" msgstr "Membuka galeri foto perangkat" -#: src/view/screens/Settings/index.tsx:672 +#: src/view/screens/Settings/index.tsx:673 msgid "Opens external embeds settings" msgstr "Membuka pengaturan sisipan eksternal" @@ -4310,27 +4353,27 @@ msgstr "Membuka dialog pemilihan GIF" msgid "Opens list of invite codes" msgstr "Membuka daftar kode undangan" -#: src/view/screens/Settings/index.tsx:809 +#: src/view/screens/Settings/index.tsx:810 msgid "Opens modal for account deactivation confirmation" msgstr "Membuka jendela modal untuk konfirmasi penonaktifan akun" -#: src/view/screens/Settings/index.tsx:831 +#: src/view/screens/Settings/index.tsx:832 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "Membuka jendela modal untuk konfirmasi penghapusan akun. Membutuhkan kode email" -#: src/view/screens/Settings/index.tsx:766 +#: src/view/screens/Settings/index.tsx:767 msgid "Opens modal for changing your Bluesky password" msgstr "Membuka jendela modal untuk mengubah kata sandi Bluesky Anda" -#: src/view/screens/Settings/index.tsx:721 +#: src/view/screens/Settings/index.tsx:722 msgid "Opens modal for choosing a new Bluesky handle" msgstr "Membuka jendela modal untuk memilih panggilan Bluesky baru" -#: src/view/screens/Settings/index.tsx:789 +#: src/view/screens/Settings/index.tsx:790 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Membuka jendela modal untuk mengunduh data akun (repositori) Bluesky Anda" -#: src/view/screens/Settings/index.tsx:1009 +#: src/view/screens/Settings/index.tsx:1010 msgid "Opens modal for email verification" msgstr "Membuka jendela modal untuk verifikasi email" @@ -4338,7 +4381,7 @@ msgstr "Membuka jendela modal untuk verifikasi email" msgid "Opens modal for using custom domain" msgstr "Membuka jendela modal untuk menggunakan domain kustom" -#: src/view/screens/Settings/index.tsx:557 +#: src/view/screens/Settings/index.tsx:558 msgid "Opens moderation settings" msgstr "Membuka pengaturan moderasi" @@ -4351,15 +4394,15 @@ msgstr "Membuka formulir pengaturan ulang kata sandi" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:618 +#: src/view/screens/Settings/index.tsx:619 msgid "Opens screen with all saved feeds" msgstr "Membuka layar berisi semua feed tersimpan" -#: src/view/screens/Settings/index.tsx:699 +#: src/view/screens/Settings/index.tsx:700 msgid "Opens the app password settings" msgstr "Membuka pengaturan kata sandi aplikasi" -#: src/view/screens/Settings/index.tsx:575 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens the Following feed preferences" msgstr "Membuka preferensi feed Mengikuti" @@ -4371,30 +4414,34 @@ msgstr "Membuka situs web tertaut" #~ msgid "Opens the message settings page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:862 -#: src/view/screens/Settings/index.tsx:872 +#: src/view/screens/Settings/index.tsx:863 +#: src/view/screens/Settings/index.tsx:873 msgid "Opens the storybook page" msgstr "Membuka halaman storybook" -#: src/view/screens/Settings/index.tsx:850 +#: src/view/screens/Settings/index.tsx:851 msgid "Opens the system log page" msgstr "Membuka halaman log sistem" -#: src/view/screens/Settings/index.tsx:596 +#: src/view/screens/Settings/index.tsx:597 msgid "Opens the threads preferences" msgstr "Membuka preferensi utas" -#: src/view/com/notifications/FeedItem.tsx:524 -#: src/view/com/util/UserAvatar.tsx:422 +#: src/view/com/notifications/FeedItem.tsx:527 +#: src/view/com/util/UserAvatar.tsx:434 msgid "Opens this profile" msgstr "Membuka profil ini" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:54 +msgid "Opens video picker" +msgstr "" + #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "Opsi {0} dari {numItems}" #: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:162 +#: src/components/ReportDialog/SubmitView.tsx:179 msgid "Optionally provide additional information below:" msgstr "Jika perlu, berikan informasi tambahan di bawah ini:" @@ -4454,7 +4501,7 @@ msgstr "Kata sandi diganti" msgid "Password updated!" msgstr "Kata sandi diganti!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Pause" msgstr "Jeda" @@ -4463,19 +4510,19 @@ msgstr "Jeda" msgid "People" msgstr "Orang" -#: src/Navigation.tsx:175 +#: src/Navigation.tsx:178 msgid "People followed by @{0}" msgstr "Orang yang diikuti oleh @{0}" -#: src/Navigation.tsx:168 +#: src/Navigation.tsx:171 msgid "People following @{0}" msgstr "Orang yang mengikuti @{0}" -#: src/view/com/lightbox/Lightbox.tsx:69 +#: src/view/com/lightbox/Lightbox.tsx:70 msgid "Permission to access camera roll is required." msgstr "Diperlukan izin untuk mengakses rol kamera." -#: src/view/com/lightbox/Lightbox.tsx:75 +#: src/view/com/lightbox/Lightbox.tsx:78 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "Izin untuk mengakses rol kamera ditolak. Silakan aktifkan di pengaturan sistem Anda." @@ -4496,12 +4543,12 @@ msgstr "Fotografi" msgid "Pictures meant for adults." msgstr "Gambar yang ditujukan untuk orang dewasa." -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Sematkan ke beranda" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 msgid "Pin to Home" msgstr "Sematkan ke Beranda" @@ -4513,7 +4560,7 @@ msgstr "Feed Tersemat" msgid "Pinned to your feeds" msgstr "Disematkan ke daftar feed Anda" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Play" msgstr "Putar" @@ -4526,7 +4573,7 @@ msgstr "Putar {0}" #~ msgid "Play notification sounds" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 msgid "Play or pause the GIF" msgstr "Putar atau jeda GIF" @@ -4560,7 +4607,7 @@ msgstr "Harap konfirmasi email Anda sebelum mengubahnya. Ini adalah persyaratan msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "Masukkan nama untuk kata sandi aplikasi Anda. Tidak diperbolehkan menggunakan spasi." -#: src/view/com/modals/AddAppPasswords.tsx:150 +#: src/view/com/modals/AddAppPasswords.tsx:151 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "Masukkan nama unik untuk Kata Sandi Aplikasi ini atau gunakan nama yang dibuat secara acak." @@ -4581,7 +4628,7 @@ msgstr "" msgid "Please enter your password as well:" msgstr "Masukkan juga kata sandi Anda:" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:277 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Jelaskan menurut Anda mengapa {0} salah dalam menerapkan label ini" @@ -4598,7 +4645,7 @@ msgstr "Silakan masuk sebagai @{0}" msgid "Please Verify Your Email" msgstr "Mohon Verifikasi Email Anda" -#: src/view/com/composer/Composer.tsx:287 +#: src/view/com/composer/Composer.tsx:299 msgid "Please wait for your link card to finish loading" msgstr "Harap tunggu hingga kartu tautan Anda selesai dimuat" @@ -4611,8 +4658,8 @@ msgstr "Politik" msgid "Porn" msgstr "Pornografi" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:509 +#: src/view/com/composer/Composer.tsx:516 msgctxt "action" msgid "Post" msgstr "Posting" @@ -4626,9 +4673,9 @@ msgstr "Postingan" msgid "Post by {0}" msgstr "Postingan oleh {0}" -#: src/Navigation.tsx:194 -#: src/Navigation.tsx:201 -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:197 +#: src/Navigation.tsx:204 +#: src/Navigation.tsx:211 msgid "Post by @{0}" msgstr "Postingan oleh @{0}" @@ -4684,6 +4731,10 @@ msgstr "Postingan disembunyikan" msgid "Potentially Misleading Link" msgstr "Tautan yang Mungkin Menyesatkan" +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Tekan untuk mencoba menghubungkan kembali" @@ -4704,7 +4755,7 @@ msgstr "Tekan untuk mengulangi" #~ msgid "Press to Retry" #~ msgstr "" -#: src/components/KnownFollowers.tsx:116 +#: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "Tekan untuk melihat pengikut akun ini yang juga Anda ikuti" @@ -4716,20 +4767,24 @@ msgstr "Gambar sebelumnya" msgid "Primary Language" msgstr "Bahasa Utama" -#: src/view/screens/PreferencesThreads.tsx:97 +#: src/view/screens/PreferencesThreads.tsx:91 msgid "Prioritize Your Follows" msgstr "Dahulukan yang Anda Ikuti" -#: src/view/screens/Settings/index.tsx:655 +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "" + +#: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privasi" -#: src/Navigation.tsx:249 +#: src/Navigation.tsx:257 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:958 -#: src/view/shell/Drawer.tsx:285 +#: src/view/screens/Settings/index.tsx:959 +#: src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "Kebijakan Privasi" @@ -4748,9 +4803,9 @@ msgstr "profil" #: src/view/shell/bottom-bar/BottomBar.tsx:275 #: src/view/shell/desktop/LeftNav.tsx:393 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:542 -#: src/view/shell/Drawer.tsx:543 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:532 +#: src/view/shell/Drawer.tsx:533 msgid "Profile" msgstr "Profil" @@ -4758,7 +4813,7 @@ msgstr "Profil" msgid "Profile updated" msgstr "Profil diperbarui" -#: src/view/screens/Settings/index.tsx:1022 +#: src/view/screens/Settings/index.tsx:1023 msgid "Protect your account by verifying your email." msgstr "Verifikasi email untuk mengamankan akun Anda." @@ -4774,23 +4829,23 @@ msgstr "Daftar terbuka yang dapat dibagikan untuk memblokir atau membisukan peng msgid "Public, shareable lists which can drive feeds." msgstr "Daftar terbuka yang dapat dibagikan dan digunakan sebagai feed." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish post" msgstr "Publikasikan postingan" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish reply" msgstr "Publikasikan balasan" -#: src/components/StarterPack/QrCodeDialog.tsx:125 +#: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "Kode QR telah disalin ke papan klip!" -#: src/components/StarterPack/QrCodeDialog.tsx:103 +#: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" msgstr "Kode QR telah diunduh!" -#: src/components/StarterPack/QrCodeDialog.tsx:104 +#: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "Kode QR disimpan ke rol kamera Anda!" @@ -4815,7 +4870,7 @@ msgstr "Kutip postingan" #~ msgid "Quote Post" #~ msgstr "" -#: src/view/screens/PreferencesThreads.tsx:86 +#: src/view/screens/PreferencesThreads.tsx:80 msgid "Random (aka \"Poster's Roulette\")" msgstr "Acak (alias \"Rolet Pemosting\")" @@ -4851,19 +4906,23 @@ msgstr "Pencarian Terakhir" msgid "Reconnect" msgstr "Hubungkan kembali" +#: src/view/screens/Notifications.tsx:146 +msgid "Refresh notifications" +msgstr "" + #: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "Memuat ulang percakapan" #: src/components/dialogs/MutedWords.tsx:286 #: src/components/FeedCard.tsx:309 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:212 +#: src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "Hapus" @@ -4875,7 +4934,7 @@ msgstr "Hapus {displayName} dari paket pemula" msgid "Remove account" msgstr "Hapus akun" -#: src/view/com/util/UserAvatar.tsx:384 +#: src/view/com/util/UserAvatar.tsx:396 msgid "Remove Avatar" msgstr "Hapus Avatar" @@ -4887,20 +4946,20 @@ msgstr "Hapus Sampul" msgid "Remove embed" msgstr "Hapus sisipan" -#: src/view/com/posts/FeedErrorMessage.tsx:168 -#: src/view/com/posts/FeedShutdownMsg.tsx:113 -#: src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:115 +#: src/view/com/posts/FeedShutdownMsg.tsx:119 msgid "Remove feed" msgstr "Hapus feed" -#: src/view/com/posts/FeedErrorMessage.tsx:209 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" msgstr "Hapus feed?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Hapus dari daftar feed saya" @@ -4914,7 +4973,7 @@ msgstr "Hapus dari daftar feed saya?" msgid "Remove image" msgstr "Hapus gambar" -#: src/view/com/composer/ExternalEmbed.tsx:87 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 msgid "Remove image preview" msgstr "Hapus pratinjau gambar" @@ -4939,11 +4998,11 @@ msgstr "Hapus kutipan" msgid "Remove repost" msgstr "Hapus postingan ulang" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "Hapus feed ini dari feed tersimpan Anda" -#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "Dihapus dari daftar" @@ -4959,15 +5018,19 @@ msgid "Removed from your feeds" msgstr "Dihapus dari daftar feed Anda" #: src/view/com/composer/ExternalEmbed.tsx:88 -msgid "Removes default thumbnail from {0}" -msgstr "Menghapus keluku gambar bawaan dari {0}" +#~ msgid "Removes default thumbnail from {0}" +#~ msgstr "Menghapus keluku gambar bawaan dari {0}" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" msgstr "Menghapus postingan yang dikutip" -#: src/view/com/posts/FeedShutdownMsg.tsx:126 -#: src/view/com/posts/FeedShutdownMsg.tsx:130 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the image preview" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:128 +#: src/view/com/posts/FeedShutdownMsg.tsx:132 msgid "Replace with Discover" msgstr "Ganti dengan Discover" @@ -4983,16 +5046,16 @@ msgstr "Balasan dinonaktifkan" #~ msgid "Replies on this thread are disabled" #~ msgstr "" -#: src/components/WhoCanReply.tsx:242 +#: src/components/WhoCanReply.tsx:243 msgid "Replies to this thread are disabled" msgstr "Balasan ke utas ini dinonaktifkan" -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:507 msgctxt "action" msgid "Reply" msgstr "Balas" -#: src/view/screens/PreferencesFollowingFeed.tsx:143 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 msgid "Reply Filters" msgstr "Penyaring Balasan" @@ -5002,17 +5065,23 @@ msgstr "Penyaring Balasan" #~ msgid "Reply to <0/>" #~ msgstr "" -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:439 +#: src/view/com/post/Post.tsx:197 +#: src/view/com/posts/FeedItem.tsx:458 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Membalas <0><1/>" -#: src/view/com/posts/FeedItem.tsx:437 +#: src/view/com/posts/FeedItem.tsx:456 msgctxt "description" msgid "Reply to a blocked post" msgstr "Membalas postingan yang diblokir" +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:454 +msgctxt "description" +msgid "Reply to you" +msgstr "" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -5039,8 +5108,8 @@ msgstr "Laporkan percakapan" msgid "Report dialog" msgstr "Dialog laporan" -#: src/view/screens/ProfileFeed.tsx:349 -#: src/view/screens/ProfileFeed.tsx:351 +#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:352 msgid "Report feed" msgstr "Laporkan feed" @@ -5052,8 +5121,8 @@ msgstr "Laporkan Daftar" msgid "Report message" msgstr "Laporkan pesan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:407 +#: src/view/com/util/forms/PostDropdownBtn.tsx:409 msgid "Report post" msgstr "Laporkan postingan" @@ -5115,7 +5184,7 @@ msgstr "Posting ulang atau kutip postingan" msgid "Reposted By" msgstr "Diposting Ulang Oleh" -#: src/view/com/posts/FeedItem.tsx:254 +#: src/view/com/posts/FeedItem.tsx:263 msgid "Reposted by {0}" msgstr "Diposting ulang oleh {0}" @@ -5123,11 +5192,16 @@ msgstr "Diposting ulang oleh {0}" #~ msgid "Reposted by <0/>" #~ msgstr "" -#: src/view/com/posts/FeedItem.tsx:269 +#: src/view/com/posts/FeedItem.tsx:282 msgid "Reposted by <0><1/>" msgstr "Diposting ulang oleh <0><1/>" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/posts/FeedItem.tsx:261 +#: src/view/com/posts/FeedItem.tsx:280 +msgid "Reposted by you" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:188 msgid "reposted your post" msgstr "memposting ulang postingan Anda" @@ -5170,8 +5244,8 @@ msgstr "Kode reset" msgid "Reset Code" msgstr "Kode Reset" -#: src/view/screens/Settings/index.tsx:901 -#: src/view/screens/Settings/index.tsx:904 +#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:905 msgid "Reset onboarding state" msgstr "Reset status onboarding" @@ -5179,16 +5253,16 @@ msgstr "Reset status onboarding" msgid "Reset password" msgstr "Reset kata sandi" -#: src/view/screens/Settings/index.tsx:881 -#: src/view/screens/Settings/index.tsx:884 +#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:885 msgid "Reset preferences state" msgstr "Atur ulang status preferensi" -#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:903 msgid "Resets the onboarding state" msgstr "Reset status onboarding" -#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:883 msgid "Resets the preferences state" msgstr "Reset status preferensi" @@ -5201,7 +5275,7 @@ msgstr "Mencoba masuk kembali" msgid "Retries the last action, which errored out" msgstr "Mencoba kembali tindakan terakhir yang gagal" -#: src/components/dms/MessageItem.tsx:241 +#: src/components/dms/MessageItem.tsx:235 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 @@ -5237,7 +5311,7 @@ msgstr "Kembali ke halaman sebelumnya" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/dialogs/ThreadgateEditor.tsx:88 -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:187 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5246,7 +5320,7 @@ msgstr "Kembali ke halaman sebelumnya" msgid "Save" msgstr "Simpan" -#: src/view/com/lightbox/Lightbox.tsx:135 +#: src/view/com/lightbox/Lightbox.tsx:139 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5268,8 +5342,8 @@ msgstr "Simpan Perubahan" msgid "Save handle change" msgstr "Simpan perubahan panggilan" -#: src/components/StarterPack/ShareDialog.tsx:150 -#: src/components/StarterPack/ShareDialog.tsx:157 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "Simpan gambar" @@ -5277,12 +5351,12 @@ msgstr "Simpan gambar" msgid "Save image crop" msgstr "Simpan potongan gambar" -#: src/components/StarterPack/QrCodeDialog.tsx:178 +#: src/components/StarterPack/QrCodeDialog.tsx:181 msgid "Save QR code" msgstr "Simpan kode QR" -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 +#: src/view/screens/ProfileFeed.tsx:334 +#: src/view/screens/ProfileFeed.tsx:340 msgid "Save to my feeds" msgstr "Simpan ke daftar feed saya" @@ -5290,7 +5364,7 @@ msgstr "Simpan ke daftar feed saya" msgid "Saved Feeds" msgstr "Feed Tersimpan" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:88 msgid "Saved to your camera roll" msgstr "Disimpan ke rol kamera Anda" @@ -5317,8 +5391,8 @@ msgstr "Menyimpan pengaturan pemangkasan gambar" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:383 -#: src/view/com/notifications/FeedItem.tsx:408 +#: src/view/com/notifications/FeedItem.tsx:386 +#: src/view/com/notifications/FeedItem.tsx:411 msgid "Say hello!" msgstr "Katakan halo!" @@ -5332,9 +5406,9 @@ msgid "Scroll to top" msgstr "Gulir ke atas" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:524 +#: src/Navigation.tsx:537 #: src/view/com/auth/LoggedOut.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 @@ -5342,14 +5416,14 @@ msgstr "Gulir ke atas" #: src/view/screens/Search/Search.tsx:813 #: src/view/shell/bottom-bar/BottomBar.tsx:182 #: src/view/shell/desktop/LeftNav.tsx:354 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:394 -#: src/view/shell/Drawer.tsx:395 +#: src/view/shell/desktop/Search.tsx:195 +#: src/view/shell/desktop/Search.tsx:204 +#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:385 msgid "Search" msgstr "Cari" -#: src/view/shell/desktop/Search.tsx:235 +#: src/view/shell/desktop/Search.tsx:236 msgid "Search for \"{query}\"" msgstr "Cari \"{query}\"" @@ -5375,7 +5449,7 @@ msgstr "Cari feed yang ingin Anda sarankan kepada orang lain." #: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/auth/LoggedOut.tsx:107 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "Cari pengguna" @@ -5479,7 +5553,7 @@ msgstr "Pilih opsi {i} dari {numItems}" msgid "Select the {emojiName} emoji as your avatar" msgstr "Pilih emoji {emojiName} sebagai avatar Anda" -#: src/components/ReportDialog/SubmitView.tsx:135 +#: src/components/ReportDialog/SubmitView.tsx:152 msgid "Select the moderation service(s) to report to" msgstr "Pilih layanan moderasi untuk melaporkan" @@ -5491,6 +5565,10 @@ msgstr "Pilih layanan yang akan menjadi tempat penyimpanan data Anda." #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:53 +msgid "Select video" +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:63 #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "" @@ -5541,8 +5619,7 @@ msgctxt "action" msgid "Send Email" msgstr "Kirim Email" -#: src/view/shell/Drawer.tsx:329 -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:325 msgid "Send feedback" msgstr "Kirim masukan" @@ -5551,14 +5628,14 @@ msgstr "Kirim masukan" msgid "Send message" msgstr "Kirim pesan" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 msgid "Send post to..." msgstr "Kirim postingan ke..." #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:215 -#: src/components/ReportDialog/SubmitView.tsx:219 +#: src/components/ReportDialog/SubmitView.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:236 msgid "Send report" msgstr "Kirim laporan" @@ -5571,8 +5648,8 @@ msgstr "Kirim laporan ke {0}" msgid "Send verification email" msgstr "Kirim email verifikasi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 +#: src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" msgstr "Kirim melalui pesan" @@ -5592,23 +5669,23 @@ msgstr "Atur tanggal lahir" msgid "Set new password" msgstr "Buat kata sandi baru" -#: src/view/screens/PreferencesFollowingFeed.tsx:224 +#: src/view/screens/PreferencesFollowingFeed.tsx:223 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Pilih \"Tidak\" untuk menyembunyikan semua kutipan postingan dari feed Anda. Posting ulang tetap akan terlihat." -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:120 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Pilih \"Tidak\" untuk menyembunyikan semua balasan dari feed Anda." -#: src/view/screens/PreferencesFollowingFeed.tsx:190 +#: src/view/screens/PreferencesFollowingFeed.tsx:189 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Pilih \"Tidak\" untuk menyembunyikan semua posting ulang dari feed Anda." -#: src/view/screens/PreferencesThreads.tsx:122 +#: src/view/screens/PreferencesThreads.tsx:116 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Pilih \"Ya\" untuk menampilkan balasan dalam bentuk tampilan bersusun. Ini merupakan fitur eksperimental." -#: src/view/screens/PreferencesFollowingFeed.tsx:260 +#: src/view/screens/PreferencesFollowingFeed.tsx:259 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Pilih \"Ya\" untuk menampilkan beberapa sampel dari feed tersimpan di feed Mengikuti Anda. Ini merupakan fitur eksperimental." @@ -5620,23 +5697,23 @@ msgstr "Atur akun Anda" msgid "Sets Bluesky username" msgstr "Mengatur nama pengguna Bluesky" -#: src/view/screens/Settings/index.tsx:462 +#: src/view/screens/Settings/index.tsx:463 msgid "Sets color theme to dark" msgstr "Mengatur tema menjadi gelap" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Sets color theme to light" msgstr "Mengatur tema menjadi terang" -#: src/view/screens/Settings/index.tsx:449 +#: src/view/screens/Settings/index.tsx:450 msgid "Sets color theme to system setting" msgstr "Mengatur tema sesuai pengaturan sistem" -#: src/view/screens/Settings/index.tsx:488 +#: src/view/screens/Settings/index.tsx:489 msgid "Sets dark theme to the dark theme" msgstr "Mengatur tema gelap menjadi tema gelap" -#: src/view/screens/Settings/index.tsx:481 +#: src/view/screens/Settings/index.tsx:482 msgid "Sets dark theme to the dim theme" msgstr "Mengatur tema gelap menjadi tema redup" @@ -5656,11 +5733,11 @@ msgstr "Mengatur aspek rasio gambar menjadi tinggi" msgid "Sets image aspect ratio to wide" msgstr "Mengatur aspek rasio gambar menjadi lebar" -#: src/Navigation.tsx:150 -#: src/view/screens/Settings/index.tsx:333 +#: src/Navigation.tsx:153 +#: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:559 -#: src/view/shell/Drawer.tsx:560 +#: src/view/shell/Drawer.tsx:549 +#: src/view/shell/Drawer.tsx:550 msgid "Settings" msgstr "Pengaturan" @@ -5672,19 +5749,19 @@ msgstr "Aktivitas seksual atau ketelanjangan erotis." msgid "Sexually Suggestive" msgstr "Bermuatan Seksual" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:177 #: src/screens/StarterPack/StarterPackScreen.tsx:400 #: src/screens/StarterPack/StarterPackScreen.tsx:571 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 #: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Bagikan" -#: src/view/com/lightbox/Lightbox.tsx:144 +#: src/view/com/lightbox/Lightbox.tsx:148 msgctxt "action" msgid "Share" msgstr "Bagikan" @@ -5698,18 +5775,18 @@ msgid "Share a fun fact!" msgstr "Bagikan fakta menarik!" #: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:464 #: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "Tetap bagikan" -#: src/view/screens/ProfileFeed.tsx:359 -#: src/view/screens/ProfileFeed.tsx:361 +#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:362 msgid "Share feed" msgstr "Bagikan feed" -#: src/components/StarterPack/ShareDialog.tsx:123 -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 #: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "Bagikan tautan" @@ -5719,12 +5796,12 @@ msgstr "Bagikan tautan" msgid "Share Link" msgstr "Bagikan Tautan" -#: src/components/StarterPack/ShareDialog.tsx:87 +#: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" msgstr "Dialog berbagi tautan" -#: src/components/StarterPack/ShareDialog.tsx:134 -#: src/components/StarterPack/ShareDialog.tsx:145 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "Bagikan kode QR" @@ -5732,7 +5809,7 @@ msgstr "Bagikan kode QR" msgid "Share this starter pack" msgstr "Bagikan paket pemula ini" -#: src/components/StarterPack/ShareDialog.tsx:99 +#: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "Bagikan paket pemula ini dan bantu orang-orang untuk bergabung dengan komunitas Anda di Bluesky." @@ -5740,6 +5817,10 @@ msgstr "Bagikan paket pemula ini dan bantu orang-orang untuk bergabung dengan ko msgid "Share your favorite feed!" msgstr "Bagikan feed favorit Anda!" +#: src/Navigation.tsx:242 +msgid "Shared Preferences Tester" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" msgstr "Membagikan situs web tertaut" @@ -5747,7 +5828,7 @@ msgstr "Membagikan situs web tertaut" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:382 +#: src/view/screens/Settings/index.tsx:383 msgid "Show" msgstr "Tampilkan" @@ -5755,7 +5836,7 @@ msgstr "Tampilkan" #~ msgid "Show all replies" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +#: src/view/com/util/post-embeds/GifEmbed.tsx:175 msgid "Show alt text" msgstr "Tampilkan teks alt" @@ -5781,19 +5862,19 @@ msgstr "Tampilkan pengguna lain yang serupa dengan {0}" msgid "Show hidden replies" msgstr "Tampilkan balasan yang disembunyikan" -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#: src/view/com/util/forms/PostDropdownBtn.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:349 +#: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" msgstr "Kurangi postingan serupa" #: src/view/com/post-thread/PostThreadItem.tsx:530 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:396 +#: src/view/com/post/Post.tsx:235 +#: src/view/com/posts/FeedItem.tsx:410 msgid "Show More" msgstr "Tampilkan Lebih Lanjut" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 -#: src/view/com/util/forms/PostDropdownBtn.tsx:340 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:343 msgid "Show more like this" msgstr "Perbanyak postingan serupa" @@ -5801,11 +5882,11 @@ msgstr "Perbanyak postingan serupa" msgid "Show muted replies" msgstr "Tampilkan balasan yang dibisukan" -#: src/view/screens/PreferencesFollowingFeed.tsx:257 +#: src/view/screens/PreferencesFollowingFeed.tsx:256 msgid "Show Posts from My Feeds" msgstr "Tampilkan Postingan dari Feed Tersimpan Saya" -#: src/view/screens/PreferencesFollowingFeed.tsx:221 +#: src/view/screens/PreferencesFollowingFeed.tsx:220 msgid "Show Quote Posts" msgstr "Tampilkan Kutipan Postingan" @@ -5821,11 +5902,11 @@ msgstr "Tampilkan Kutipan Postingan" #~ msgid "Show re-posts in Following feed" #~ msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:117 msgid "Show Replies" msgstr "Tampilkan Balasan" -#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:94 msgid "Show replies by people you follow before all other replies." msgstr "Tampilkan balasan dari orang yang Anda ikuti sebelum balasan lainnya." @@ -5841,7 +5922,7 @@ msgstr "Tampilkan balasan dari orang yang Anda ikuti sebelum balasan lainnya." #~ msgid "Show replies with at least {value} {0}" #~ msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:187 +#: src/view/screens/PreferencesFollowingFeed.tsx:186 msgid "Show Reposts" msgstr "Tampilkan Posting Ulang" @@ -5907,8 +5988,8 @@ msgstr "Masuk atau buat akun Anda untuk bergabung dalam percakapan!" msgid "Sign into Bluesky or create a new account" msgstr "Masuk ke Bluesky atau buat akun baru" -#: src/view/screens/Settings/index.tsx:129 -#: src/view/screens/Settings/index.tsx:133 +#: src/view/screens/Settings/index.tsx:130 +#: src/view/screens/Settings/index.tsx:134 msgid "Sign out" msgstr "Keluar" @@ -5933,7 +6014,7 @@ msgstr "Daftar atau masuk untuk bergabung dalam obrolan" msgid "Sign-in Required" msgstr "Wajib Masuk" -#: src/view/screens/Settings/index.tsx:392 +#: src/view/screens/Settings/index.tsx:393 msgid "Signed in as" msgstr "Masuk sebagai" @@ -5942,12 +6023,12 @@ msgstr "Masuk sebagai" msgid "Signed in as @{0}" msgstr "Masuk sebagai @{0}" -#: src/view/com/notifications/FeedItem.tsx:208 +#: src/view/com/notifications/FeedItem.tsx:209 msgid "signed up with your starter pack" msgstr "mendaftar dengan paket pemula Anda" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 msgid "Signup without a starter pack" msgstr "Mendaftar tanpa paket pemula" @@ -5965,7 +6046,7 @@ msgstr "Lewati tahap ini" msgid "Software Dev" msgstr "Pengembang Perangkat Lunak" -#: src/components/FeedInterstitials.tsx:378 +#: src/components/FeedInterstitials.tsx:382 msgid "Some other feeds you might like" msgstr "" @@ -5993,16 +6074,21 @@ msgstr "Ada yang tidak beres, silakan coba lagi" msgid "Something went wrong, please try again." msgstr "Ada yang tidak beres, silakan coba lagi." -#: src/App.native.tsx:98 -#: src/App.web.tsx:80 +#: src/components/Lists.tsx:192 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "" + +#: src/App.native.tsx:99 +#: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "Maaf! Sesi Anda telah berakhir. Silakan masuk lagi." -#: src/view/screens/PreferencesThreads.tsx:69 +#: src/view/screens/PreferencesThreads.tsx:63 msgid "Sort Replies" msgstr "Urutkan Balasan" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:66 msgid "Sort replies to the same post by:" msgstr "Urutkan balasan ke postingan yang sama berdasarkan:" @@ -6010,7 +6096,7 @@ msgstr "Urutkan balasan ke postingan yang sama berdasarkan:" #~ msgid "Source:" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" msgstr "Sumber: <0>{0}" @@ -6032,7 +6118,7 @@ msgstr "Olahraga" msgid "Square" msgstr "Persegi" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:63 msgid "Start a new chat" msgstr "Mulai obrolan baru" @@ -6049,8 +6135,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:328 -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:341 +#: src/Navigation.tsx:346 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "Paket Pemula" @@ -6075,7 +6161,7 @@ msgstr "Paket pemula memudahkan Anda untuk berbagi feed dan akun favorit Anda de #~ msgid "Status page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:964 +#: src/view/screens/Settings/index.tsx:965 msgid "Status Page" msgstr "Halaman Status" @@ -6087,17 +6173,17 @@ msgstr "Halaman Status" msgid "Step {0} of {1}" msgstr "Langkah {0} dari {1}" -#: src/view/screens/Settings/index.tsx:305 +#: src/view/screens/Settings/index.tsx:306 msgid "Storage cleared, you need to restart the app now." msgstr "Penyimpanan dibersihkan, Anda perlu memulai ulang aplikasi sekarang." -#: src/Navigation.tsx:229 -#: src/view/screens/Settings/index.tsx:864 +#: src/Navigation.tsx:232 +#: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:290 -#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/components/moderation/LabelsOnMeDialog.tsx:311 +#: src/components/moderation/LabelsOnMeDialog.tsx:312 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -6120,7 +6206,7 @@ msgstr "Berlangganan Pelabel" #~ msgid "Subscribe to the {0} feed" #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 msgid "Subscribe to this labeler" msgstr "Berlangganan pelabel ini" @@ -6128,7 +6214,7 @@ msgstr "Berlangganan pelabel ini" msgid "Subscribe to this list" msgstr "Berlangganan ke daftar ini" -#: src/view/screens/Search/Explore.tsx:331 +#: src/view/screens/Search/Explore.tsx:333 msgid "Suggested accounts" msgstr "Akun yang disarankan" @@ -6136,7 +6222,7 @@ msgstr "Akun yang disarankan" #~ msgid "Suggested Follows" #~ msgstr "" -#: src/components/FeedInterstitials.tsx:246 +#: src/components/FeedInterstitials.tsx:250 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Disarankan untuk Anda" @@ -6145,7 +6231,7 @@ msgstr "Disarankan untuk Anda" msgid "Suggestive" msgstr "Sugestif" -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:252 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6160,19 +6246,19 @@ msgstr "Beralih Akun" msgid "Switch between feeds to control your experience." msgstr "" -#: src/view/screens/Settings/index.tsx:160 +#: src/view/screens/Settings/index.tsx:161 msgid "Switch to {0}" msgstr "Beralih ke {0}" -#: src/view/screens/Settings/index.tsx:161 +#: src/view/screens/Settings/index.tsx:162 msgid "Switches the account you are logged in to" msgstr "Alihkan akun yang Anda gunakan untuk masuk" -#: src/view/screens/Settings/index.tsx:446 +#: src/view/screens/Settings/index.tsx:447 msgid "System" msgstr "Sistem" -#: src/view/screens/Settings/index.tsx:852 +#: src/view/screens/Settings/index.tsx:853 msgid "System log" msgstr "Log sistem" @@ -6221,11 +6307,11 @@ msgstr "Beritahu kami lebih lanjut" msgid "Terms" msgstr "Ketentuan" -#: src/Navigation.tsx:254 +#: src/Navigation.tsx:262 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:952 +#: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:279 +#: src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "Ketentuan Layanan" @@ -6240,13 +6326,13 @@ msgstr "Istilah yang digunakan melanggar standar komunitas" msgid "text" msgstr "teks" -#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/components/moderation/LabelsOnMeDialog.tsx:275 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Area input teks" #: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:93 msgid "Thank you. Your report has been sent." msgstr "Terima kasih. Laporan Anda telah terkirim." @@ -6289,19 +6375,19 @@ msgstr "Kebijakan Hak Cipta telah dipindahkan ke <0/>" msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "Dapatkan pengalaman yang lebih baik dalam aplikasi. Unduh Bluesky sekarang dan kami akan melanjutkan dari langkah terakhir yang Anda tinggalkan." -#: src/view/com/posts/FeedShutdownMsg.tsx:66 +#: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." msgstr "Feed telah diganti dengan Discover." -#: src/components/moderation/LabelsOnMeDialog.tsx:65 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your account." msgstr "Label berikut telah diterapkan pada akun Anda." -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:67 msgid "The following labels were applied to your content." msgstr "Label berikut telah diterapkan pada konten Anda." @@ -6338,8 +6424,8 @@ msgstr "Ketentuan Layanan telah dipindahkan ke" msgid "There is no time limit for account deactivation, come back any time." msgstr "Tidak ada batasan waktu untuk penonaktifan akun, Anda bisa kembali kapan saja." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 -#: src/view/screens/ProfileFeed.tsx:544 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 +#: src/view/screens/ProfileFeed.tsx:545 msgid "There was an 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." @@ -6348,7 +6434,7 @@ msgid "There was an an issue removing this feed. Please check your internet conn msgstr "Ada masalah saat menghapus feed ini. Periksa koneksi internet Anda dan coba lagi." #: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Ada masalah saat memperbarui feed Anda, periksa koneksi internet dan coba lagi." @@ -6362,7 +6448,7 @@ msgstr "Ada masalah saat menghubungkan ke Tenor." #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:234 +#: src/view/screens/ProfileFeed.tsx:235 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6376,7 +6462,7 @@ msgstr "Ada masalah saat menghubungi server" msgid "There was an issue contacting your server" msgstr "Ada masalah saat menghubungi server Anda" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ada masalah saat mengambil notifikasi. Ketuk di sini untuk mencoba lagi." @@ -6394,7 +6480,7 @@ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Ada masalah saat mengambil daftar Anda. Ketuk di sini untuk mencoba lagi." #: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:82 +#: src/components/ReportDialog/SubmitView.tsx:98 msgid "There was an issue sending your report. Please check your internet connection." msgstr "Ada masalah saat mengirimkan laporan. Silakan periksa koneksi internet Anda." @@ -6454,7 +6540,7 @@ msgstr "Akun ini mewajibkan pengguna untuk masuk agar bisa melihat profilnya." 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 "Akun ini diblokir oleh satu atau lebih daftar moderasi Anda. Untuk membuka blokir, silakan kunjungi daftar tersebut secara langsung dan hapus pengguna ini." -#: src/components/moderation/LabelsOnMeDialog.tsx:239 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 msgid "This appeal will be sent to <0>{0}." msgstr "Banding ini akan dikirim ke <0>{0}." @@ -6514,12 +6600,12 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Feed ini kosong! Anda mungkin perlu mengikuti lebih banyak pengguna atau menyesuaikan pengaturan bahasa." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:473 +#: src/view/screens/ProfileFeed.tsx:474 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "Feed ini kosong." -#: src/view/com/posts/FeedShutdownMsg.tsx:97 +#: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Feed ini tidak lagi online. Kami akan menampilkan <0>Discover sebagai gantinya." @@ -6547,7 +6633,7 @@ msgstr "Label ini diterapkan oleh penulis." #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:166 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." msgstr "Label ini diterapkan oleh Anda." @@ -6575,12 +6661,12 @@ msgstr "Nama ini sudah digunakan" msgid "This post has been deleted." msgstr "Postingan ini telah dihapus." -#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 #: src/view/com/util/post-ctrls/PostCtrls.tsx:324 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Postingan ini hanya dapat dilihat oleh pengguna yang masuk. Ini tidak akan terlihat bagi pengguna yang belum masuk." -#: src/view/com/util/forms/PostDropdownBtn.tsx:440 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "This post will be hidden from feeds." msgstr "Postingan ini akan disembunyikan dari feed." @@ -6637,12 +6723,12 @@ msgstr "Pengguna ini tidak mengikuti siapa pun." msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "Ini akan menghapus {0} dari daftar kata yang Anda bisukan. Anda tetap dapat menambahkannya lagi nanti." -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Thread preferences" msgstr "Preferensi utas" -#: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/PreferencesThreads.tsx:51 +#: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "Preferensi Utas" @@ -6650,11 +6736,11 @@ msgstr "Preferensi Utas" msgid "Thread settings updated" msgstr "Pengaturan utas diperbarui" -#: src/view/screens/PreferencesThreads.tsx:119 +#: src/view/screens/PreferencesThreads.tsx:113 msgid "Threaded Mode" msgstr "Mode Bersusun" -#: src/Navigation.tsx:287 +#: src/Navigation.tsx:295 msgid "Threads Preferences" msgstr "Preferensi Utas" @@ -6695,8 +6781,8 @@ msgstr "Transformasi" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:676 #: src/view/com/post-thread/PostThreadItem.tsx:678 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 -#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "Terjemahkan" @@ -6709,7 +6795,7 @@ msgstr "Coba lagi" msgid "TV" msgstr "TV" -#: src/view/screens/Settings/index.tsx:746 +#: src/view/screens/Settings/index.tsx:747 msgid "Two-factor authentication" msgstr "Autentikasi dua faktor" @@ -6801,7 +6887,7 @@ msgstr "Berhenti Ikuti Akun" #~ msgid "Unlike" #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Unlike this feed" msgstr "Batalkan suka feed ini" @@ -6831,17 +6917,17 @@ msgstr "Bunyikan percakapan" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:367 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Unmute thread" msgstr "Bunyikan utas" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Lepas sematan" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 msgid "Unpin from home" msgstr "Lepaskan sematan dari beranda" @@ -6857,7 +6943,7 @@ msgstr "Dilepaskan dari daftar feed Anda" msgid "Unsubscribe" msgstr "Berhenti langganan" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Unsubscribe from this labeler" msgstr "Berhenti langganan pelabel ini" @@ -6890,20 +6976,20 @@ msgstr "Unggah foto saja" msgid "Upload a text file to:" msgstr "Unggah berkas teks ke:" -#: src/view/com/util/UserAvatar.tsx:352 -#: src/view/com/util/UserAvatar.tsx:355 +#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Unggah dari Kamera" -#: src/view/com/util/UserAvatar.tsx:369 +#: src/view/com/util/UserAvatar.tsx:381 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Unggah dari Berkas" -#: src/view/com/util/UserAvatar.tsx:363 -#: src/view/com/util/UserAvatar.tsx:367 +#: src/view/com/util/UserAvatar.tsx:375 +#: src/view/com/util/UserAvatar.tsx:379 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -6943,7 +7029,7 @@ msgstr "Gunakan yang direkomendasikan" msgid "Use the DNS panel" msgstr "Gunakan panel DNS" -#: src/view/com/modals/AddAppPasswords.tsx:205 +#: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." msgstr "Gunakan sandi ini untuk masuk ke aplikasi lain bersama dengan panggilan Anda." @@ -7011,7 +7097,7 @@ msgstr "Nama pengguna atau alamat email" msgid "Users" msgstr "Pengguna" -#: src/components/WhoCanReply.tsx:279 +#: src/components/WhoCanReply.tsx:280 msgid "users followed by <0/>" msgstr "pengguna yang diikuti <0/>" @@ -7042,15 +7128,15 @@ msgstr "Nilai:" msgid "Verify DNS Record" msgstr "Verifikasi DNS" -#: src/view/screens/Settings/index.tsx:983 +#: src/view/screens/Settings/index.tsx:984 msgid "Verify email" msgstr "Verifikasi email" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Verify my email" msgstr "Verifikasi email saya" -#: src/view/screens/Settings/index.tsx:1017 +#: src/view/screens/Settings/index.tsx:1018 msgid "Verify My Email" msgstr "Verifikasi Email Saya" @@ -7071,7 +7157,7 @@ msgstr "Verifikasi Email Anda" #~ msgid "Version {0}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Version {appVersion} {bundleInfo}" msgstr "Versi {appVersion} {bundleInfo}" @@ -7080,11 +7166,15 @@ msgstr "Versi {appVersion} {bundleInfo}" msgid "Video Games" msgstr "Permainan Video" +#: src/view/com/composer/videos/state.ts:27 +msgid "Videos cannot be larger than 100MB" +msgstr "" + #: src/screens/Profile/Header/Shell.tsx:113 msgid "View {0}'s avatar" msgstr "Lihat avatar {0}" -#: src/view/com/notifications/FeedItem.tsx:245 +#: src/view/com/notifications/FeedItem.tsx:246 msgid "View {0}'s profile" msgstr "Lihat profil {0}" @@ -7116,7 +7206,7 @@ msgstr "Lihat informasi tentang label ini" #: src/components/ProfileHoverCard/index.web.tsx:436 #: src/components/ProfileHoverCard/index.web.tsx:463 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "Lihat profil" @@ -7128,7 +7218,7 @@ msgstr "Lihat avatar" msgid "View the labeling service provided by @{0}" msgstr "Lihat layanan pelabelan yang disediakan oleh @{0}" -#: src/view/screens/ProfileFeed.tsx:585 +#: src/view/screens/ProfileFeed.tsx:587 msgid "View users who like this feed" msgstr "Lihat pengguna yang menyukai feed ini" @@ -7224,7 +7314,7 @@ msgstr "Mohon maaf, untuk saat ini kami tidak dapat memuat kata yang Anda bisuka msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Maaf, pencarian Anda tidak dapat dilakukan. Mohon coba lagi dalam beberapa menit." -#: src/view/com/composer/Composer.tsx:335 +#: src/view/com/composer/Composer.tsx:347 msgid "We're sorry! The post you are replying to has been deleted." msgstr "Kami mohon maaf! Postingan yang Anda balas telah dihapus." @@ -7237,7 +7327,7 @@ msgstr "Maaf! Kami tidak dapat menemukan halaman yang Anda cari." #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "Maaf! Anda hanya dapat berlangganan dua puluh pelabel, dan Anda telah mencapai batas tersebut." @@ -7263,7 +7353,7 @@ msgstr "Apa nama paket pemula Anda?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:376 +#: src/view/com/composer/Composer.tsx:388 msgid "What's up?" msgstr "Apa kabar?" @@ -7280,15 +7370,15 @@ msgstr "Bahasa apa yang ingin Anda lihat di feed algoritmik Anda?" msgid "Who can message you?" msgstr "Siapa yang dapat mengirim pesan kepada Anda?" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Who can reply" msgstr "Siapa yang dapat membalas" -#: src/components/WhoCanReply.tsx:211 +#: src/components/WhoCanReply.tsx:212 msgid "Who can reply dialog" msgstr "Dialog siapa yang dapat membalas" -#: src/components/WhoCanReply.tsx:215 +#: src/components/WhoCanReply.tsx:216 msgid "Who can reply?" msgstr "Siapa yang dapat membalas?" @@ -7334,11 +7424,11 @@ msgstr "Lebar" msgid "Write a message" msgstr "Tulis pesan" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:580 msgid "Write post" msgstr "Tulis postingan" -#: src/view/com/composer/Composer.tsx:375 +#: src/view/com/composer/Composer.tsx:387 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Tulis balasan Anda" @@ -7349,12 +7439,12 @@ msgid "Writers" msgstr "Penulis" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:200 -#: src/view/screens/PreferencesFollowingFeed.tsx:235 -#: src/view/screens/PreferencesFollowingFeed.tsx:270 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:199 +#: src/view/screens/PreferencesFollowingFeed.tsx:234 +#: src/view/screens/PreferencesFollowingFeed.tsx:269 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "Yes" msgstr "Ya" @@ -7371,7 +7461,7 @@ msgstr "Ya, hapus paket pemula ini" msgid "Yes, reactivate my account" msgstr "Ya, aktifkan kembali akun saya" -#: src/components/dms/MessageItem.tsx:188 +#: src/components/dms/MessageItem.tsx:182 msgid "Yesterday, {time}" msgstr "Kemarin, {time}" @@ -7524,19 +7614,19 @@ msgstr "Anda belum membuat paket pemula!" msgid "You haven't muted any words or tags yet" msgstr "Anda belum membisukan kata atau tagar apa pun" -#: src/components/moderation/LabelsOnMeDialog.tsx:86 +#: src/components/moderation/LabelsOnMeDialog.tsx:87 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Anda dapat mengajukan banding atas label non-mandiri jika Anda merasa label tersebut ditempatkan secara tidak tepat." -#: src/components/moderation/LabelsOnMeDialog.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:92 msgid "You may appeal these labels if you feel they were placed in error." msgstr "Anda dapat mengajukan banding atas label berikut jika Anda merasa label tersebut ditempatkan secara tidak tepat." -#: src/screens/StarterPack/Wizard/State.tsx:92 +#: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 50 feeds" msgstr "Anda hanya boleh menambahkan maksimal 50 feed" -#: src/screens/StarterPack/Wizard/State.tsx:77 +#: src/screens/StarterPack/Wizard/State.tsx:78 msgid "You may only add up to 50 profiles" msgstr "Anda hanya boleh menambahkan maksimal 50 profil" @@ -7560,7 +7650,7 @@ msgstr "Anda harus memberikan akses ke pustaka foto Anda untuk menyimpan kode QR msgid "You must grant access to your photo library to save the image." msgstr "Anda harus memberikan akses ke pustaka foto Anda untuk menyimpan gambar ini." -#: src/components/ReportDialog/SubmitView.tsx:205 +#: src/components/ReportDialog/SubmitView.tsx:222 msgid "You must select at least one labeler for a report" msgstr "Anda harus memilih setidaknya satu pelabel untuk sebuah laporan" @@ -7600,15 +7690,15 @@ msgstr "Anda akan mengikuti pengguna dan feed yang disarankan setelah selesai me msgid "You'll follow the suggested users once you finish creating your account!" msgstr "Anda akan mengikuti pengguna yang disarankan setelah selesai membuat akun!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people and {0} others" msgstr "Anda akan mengikuti pengguna ini dan {0} lainnya" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people right away" msgstr "Anda akan otomatis mengikuti para pengguna ini" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272 msgid "You'll stay updated with these feeds" msgstr "Dapatkan informasi terbaru melalui feed berikut" @@ -7707,7 +7797,7 @@ msgstr "Kata yang Anda bisukan" msgid "Your password has been changed successfully!" msgstr "Kata sandi Anda telah berhasil diubah!" -#: src/view/com/composer/Composer.tsx:366 +#: src/view/com/composer/Composer.tsx:378 msgid "Your post has been published" msgstr "Postingan Anda telah dipublikasikan" @@ -7715,7 +7805,7 @@ msgstr "Postingan Anda telah dipublikasikan" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Postingan, suka, dan pemblokiran Anda bersifat publik. Sedangkan pembisuan bersifat privat." -#: src/view/screens/Settings/index.tsx:148 +#: src/view/screens/Settings/index.tsx:149 msgid "Your profile" msgstr "Profil Anda" @@ -7723,7 +7813,7 @@ msgstr "Profil Anda" 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:365 +#: src/view/com/composer/Composer.tsx:377 msgid "Your reply has been published" msgstr "Balasan Anda telah dipublikasikan" diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po index 28a8676958..6fd20fe052 100644 --- a/src/locale/locales/it/messages.po +++ b/src/locale/locales/it/messages.po @@ -22,7 +22,7 @@ msgstr "" msgid "(no email)" msgstr "(no email)" -#: src/view/com/notifications/FeedItem.tsx:294 +#: src/view/com/notifications/FeedItem.tsx:297 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -90,7 +90,7 @@ msgstr "" #~ msgid "{0} {purposeLabel} List" #~ msgstr "Lista {purposeLabel} {0}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "" @@ -101,7 +101,7 @@ msgstr "" #~ msgid "{0} your feeds" #~ msgstr "{0} tuoi feed" -#: src/view/com/util/UserAvatar.tsx:419 +#: src/view/com/util/UserAvatar.tsx:431 msgid "{0}'s avatar" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:504 +#: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} following" @@ -169,14 +169,14 @@ msgstr "{handle} non può ricevere messaggi" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:588 +#: src/view/screens/ProfileFeed.tsx:590 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" #~ msgid "{message}" #~ msgstr "{message}" -#: src/view/shell/Drawer.tsx:462 +#: src/view/shell/Drawer.tsx:452 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} non letto" @@ -192,7 +192,7 @@ msgstr "" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "" -#: src/components/WhoCanReply.tsx:295 +#: src/components/WhoCanReply.tsx:296 msgid "<0/> members" msgstr "<0/> membri" @@ -214,11 +214,11 @@ msgstr "" #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "" -#: src/view/shell/Drawer.tsx:101 +#: src/view/shell/Drawer.tsx:100 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" -#: src/view/shell/Drawer.tsx:112 +#: src/view/shell/Drawer.tsx:111 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" @@ -284,15 +284,15 @@ msgid "Access profile and other navigation links" msgstr "Accedi al profilo e ad altre impostazioni di navigazione" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:519 +#: src/view/screens/Settings/index.tsx:520 msgid "Accessibility" msgstr "Accessibilità" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Accessibility settings" msgstr "Impostazioni di accessibilità" -#: src/Navigation.tsx:301 +#: src/Navigation.tsx:309 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "Impostazioni di Accessibilità" @@ -301,8 +301,8 @@ msgstr "Impostazioni di Accessibilità" #~ msgstr "account" #: src/screens/Login/LoginForm.tsx:190 -#: src/view/screens/Settings/index.tsx:346 -#: src/view/screens/Settings/index.tsx:753 +#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:754 msgid "Account" msgstr "Account" @@ -349,7 +349,7 @@ msgid "Account unmuted" msgstr "Account non silenziato" #: src/components/dialogs/MutedWords.tsx:164 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 msgid "Add" @@ -373,8 +373,8 @@ msgstr "Aggiungi un utente a questo elenco" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:423 -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:433 msgid "Add account" msgstr "Aggiungi account" @@ -452,7 +452,7 @@ msgstr "Aggiungi ai miei feed" #~ msgid "Added" #~ msgstr "Aggiunto" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "Aggiunto alla lista" @@ -461,7 +461,7 @@ msgstr "Aggiunto alla lista" msgid "Added to my feeds" msgstr "Aggiunto ai miei feed" -#: src/view/screens/PreferencesFollowingFeed.tsx:172 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Modifica il numero di \"Mi piace\" che una risposta deve avere per essere mostrata nel tuo feed." @@ -482,7 +482,7 @@ msgid "Adult content is disabled." msgstr "Il contenuto per adulti è disattivato." #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:687 +#: src/view/screens/Settings/index.tsx:688 msgid "Advanced" msgstr "Avanzato" @@ -498,8 +498,8 @@ msgstr "" msgid "All the feeds you've saved, right in one place." msgstr "Tutti i feed che hai salvato, in un unico posto." -#: src/view/com/modals/AddAppPasswords.tsx:187 -#: src/view/com/modals/AddAppPasswords.tsx:194 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "" @@ -523,7 +523,7 @@ msgstr "Hai già effettuato l'accesso come @{0}" #: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "ALT" msgstr "ALT" @@ -533,7 +533,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Testo alternativo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:180 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Alt Text" msgstr "Testo Alternativo" @@ -562,8 +562,8 @@ msgstr "" #~ msgid "An error occurred while saving the image." #~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:70 -#: src/components/StarterPack/ShareDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the QR code!" msgstr "" @@ -578,10 +578,18 @@ msgstr "" msgid "An issue not included in these options" msgstr "Un problema non incluso in queste opzioni" +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +msgid "An issue occurred while trying to open the chat" +msgstr "" + #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:309 -#: src/components/ProfileCard.tsx:329 +#: src/components/ProfileCard.tsx:311 +#: src/components/ProfileCard.tsx:331 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -593,8 +601,8 @@ msgstr "Si è verificato un problema, riprova un'altra volta." msgid "an unknown error occurred" msgstr "si è verificato un errore sconosciuto" -#: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:291 +#: src/components/WhoCanReply.tsx:317 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "e" @@ -603,7 +611,7 @@ msgstr "e" msgid "Animals" msgstr "Animali" -#: src/view/com/util/post-embeds/GifEmbed.tsx:146 +#: src/view/com/util/post-embeds/GifEmbed.tsx:155 msgid "Animated GIF" msgstr "GIF animata" @@ -627,25 +635,25 @@ msgstr "Le password dell'app possono contenere solo lettere, numeri, spazi, trat msgid "App Password names must be at least 4 characters long." msgstr "Le password delle app devono contenere almeno 4 caratteri." -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "App password settings" msgstr "Impostazioni della password dell'app" #~ msgid "App passwords" #~ msgstr "Passwords dell'app" -#: src/Navigation.tsx:269 +#: src/Navigation.tsx:277 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:707 +#: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" msgstr "Password dell'App" -#: src/components/moderation/LabelsOnMeDialog.tsx:151 -#: src/components/moderation/LabelsOnMeDialog.tsx:154 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "Ricorso" -#: src/components/moderation/LabelsOnMeDialog.tsx:236 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Appeal \"{0}\" label" msgstr "Etichetta \"{0}\" del ricorso" @@ -658,7 +666,7 @@ msgstr "Etichetta \"{0}\" del ricorso" #~ msgid "Appeal Decision" #~ msgstr "Decisión de apelación" -#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/components/moderation/LabelsOnMeDialog.tsx:248 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Appello inviato" @@ -676,7 +684,7 @@ msgstr "Appella contro questa decisione" #~ msgid "Appeal this decision." #~ msgstr "Appella contro questa decisione." -#: src/view/screens/Settings/index.tsx:440 +#: src/view/screens/Settings/index.tsx:441 msgid "Appearance" msgstr "Aspetto" @@ -686,8 +694,8 @@ msgid "Apply default recommended feeds" msgstr "Applica i feed raccomandati predefiniti" #: src/screens/StarterPack/StarterPackScreen.tsx:610 -msgid "Are you sure you want delete this starter pack?" -msgstr "" +#~ msgid "Are you sure you want delete this starter pack?" +#~ msgstr "" #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" @@ -701,6 +709,10 @@ msgstr "Confermi di voler eliminare la password dell'app \"{name}\"?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "Sei sicuro di voler cancellare questo messaggio? Il messaggio verrà cancellato per te, ma non per gli altri partecipanti." +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "Sei sicuro di voler abbandonare questa conversazione? I messaggi verranno cancellati per te, ma non per gli altri partecipanti." @@ -713,7 +725,7 @@ msgstr "Confermi di voler rimuovere {0} dai tuoi feed?" msgid "Are you sure you want to remove this from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:649 +#: src/view/com/composer/Composer.tsx:680 msgid "Are you sure you'd like to discard this draft?" msgstr "Confermi di voler eliminare questa bozza?" @@ -742,8 +754,8 @@ msgid "At least 3 characters" msgstr "Almeno 3 caratteri" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:281 -#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/components/moderation/LabelsOnMeDialog.tsx:302 +#: src/components/moderation/LabelsOnMeDialog.tsx:303 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -756,7 +768,6 @@ msgstr "Almeno 3 caratteri" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" @@ -770,7 +781,7 @@ msgstr "Indietro" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Basato sui tuoi interessi {interestsText}" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Basics" msgstr "Preferenze" @@ -778,7 +789,7 @@ msgstr "Preferenze" msgid "Birthday" msgstr "Compleanno" -#: src/view/screens/Settings/index.tsx:378 +#: src/view/screens/Settings/index.tsx:379 msgid "Birthday:" msgstr "Compleanno:" @@ -825,7 +836,7 @@ msgstr "Bloccato" msgid "Blocked accounts" msgstr "Accounts bloccati" -#: src/Navigation.tsx:145 +#: src/Navigation.tsx:148 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Accounts bloccati" @@ -907,21 +918,21 @@ msgstr "Sfoca le immagini e filtra dai feed" msgid "Books" msgstr "Libri" -#: src/components/FeedInterstitials.tsx:281 +#: src/components/FeedInterstitials.tsx:285 msgid "Browse more accounts on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:411 +#: src/components/FeedInterstitials.tsx:415 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:266 -#: src/components/FeedInterstitials.tsx:396 +#: src/components/FeedInterstitials.tsx:270 +#: src/components/FeedInterstitials.tsx:400 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:289 -#: src/components/FeedInterstitials.tsx:420 +#: src/components/FeedInterstitials.tsx:293 +#: src/components/FeedInterstitials.tsx:424 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -971,7 +982,7 @@ msgstr "da te" msgid "Camera" msgstr "Fotocamera" -#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Può contenere solo lettere, numeri, spazi, trattini e trattini bassi. Deve contenere almeno 4 caratteri, ma non più di 32 caratteri." @@ -980,8 +991,8 @@ msgstr "Può contenere solo lettere, numeri, spazi, trattini e trattini bassi. D #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:451 -#: src/view/com/composer/Composer.tsx:457 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -999,7 +1010,7 @@ msgstr "Può contenere solo lettere, numeri, spazi, trattini e trattini bassi. D #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:139 #: src/view/screens/Search/Search.tsx:704 -#: src/view/shell/desktop/Search.tsx:218 +#: src/view/shell/desktop/Search.tsx:219 msgid "Cancel" msgstr "Cancella" @@ -1038,8 +1049,8 @@ msgstr "Annnulla la citazione del post" msgid "Cancel reactivation and log out" msgstr "" -#: src/view/com/modals/ListAddRemoveUsers.tsx:87 -#: src/view/shell/desktop/Search.tsx:214 +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "Annulla la ricerca" @@ -1054,17 +1065,17 @@ msgstr "Annulla l'apertura del sito collegato" msgid "Change" msgstr "Cambia" -#: src/view/screens/Settings/index.tsx:372 +#: src/view/screens/Settings/index.tsx:373 msgctxt "action" msgid "Change" msgstr "Cambia" -#: src/view/screens/Settings/index.tsx:719 +#: src/view/screens/Settings/index.tsx:720 msgid "Change handle" msgstr "Cambia il nome utente" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:730 +#: src/view/screens/Settings/index.tsx:731 msgid "Change Handle" msgstr "Cambia il Nome Utente" @@ -1072,12 +1083,12 @@ msgstr "Cambia il Nome Utente" msgid "Change my email" msgstr "Cambia la mia email" -#: src/view/screens/Settings/index.tsx:764 +#: src/view/screens/Settings/index.tsx:765 msgid "Change password" msgstr "Cambia la password" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:775 +#: src/view/screens/Settings/index.tsx:776 msgid "Change Password" msgstr "Cambia la Password" @@ -1092,7 +1103,7 @@ msgstr "Cambia la lingua del post a {0}" msgid "Change Your Email" msgstr "Cambia la tua email" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:321 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -1104,14 +1115,14 @@ msgstr "Conversazione silenziata" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:326 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" msgstr "Impostazioni messaggi" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:648 +#: src/view/screens/Settings/index.tsx:649 msgid "Chat Settings" msgstr "Impostazioni messaggi" @@ -1197,19 +1208,19 @@ msgstr "" msgid "Choose your password" msgstr "Scegli la tua password" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clear all legacy storage data" msgstr "Cancella tutti i dati legacy in archivio" -#: src/view/screens/Settings/index.tsx:914 +#: src/view/screens/Settings/index.tsx:915 msgid "Clear all legacy storage data (restart after this)" msgstr "Cancella tutti i dati legacy in archivio (poi ricomincia)" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clear all storage data" msgstr "Cancella tutti i dati in archivio" -#: src/view/screens/Settings/index.tsx:926 +#: src/view/screens/Settings/index.tsx:927 msgid "Clear all storage data (restart after this)" msgstr "Cancella tutti i dati in archivio (poi ricomincia)" @@ -1218,11 +1229,11 @@ msgstr "Cancella tutti i dati in archivio (poi ricomincia)" msgid "Clear search query" msgstr "Annulla la ricerca" -#: src/view/screens/Settings/index.tsx:912 +#: src/view/screens/Settings/index.tsx:913 msgid "Clears all legacy storage data" msgstr "Cancella tutti i dati di archiviazione legacy" -#: src/view/screens/Settings/index.tsx:924 +#: src/view/screens/Settings/index.tsx:925 msgid "Clears all storage data" msgstr "Cancella tutti i dati di archiviazione" @@ -1249,7 +1260,7 @@ msgstr "Clicca qui per aprire il menu per {tag}" #~ msgid "Click here to open tag menu for #{tag}" #~ msgstr "Clicca qui per aprire il menu per #{tag}" -#: src/components/dms/MessageItem.tsx:237 +#: src/components/dms/MessageItem.tsx:231 msgid "Click to retry failed message" msgstr "Clicca per riprovare l'invio" @@ -1270,7 +1281,7 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/util/post-embeds/GifEmbed.tsx:195 msgid "Close" msgstr "Chiudi" @@ -1325,7 +1336,7 @@ msgstr "Chiude la barra di navigazione in basso" msgid "Closes password update alert" msgstr "Chiude l'avviso di aggiornamento della password" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:472 msgid "Closes post composer and discards post draft" msgstr "Chiude l'editore del post ed elimina la bozza del post" @@ -1333,11 +1344,11 @@ msgstr "Chiude l'editore del post ed elimina la bozza del post" msgid "Closes viewer for header image" msgstr "Chiude il visualizzatore dell'immagine di intestazione" -#: src/view/com/notifications/FeedItem.tsx:237 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:440 msgid "Collapses list of users for a given notification" msgstr "Comprime l'elenco degli utenti per una determinata notifica" @@ -1351,7 +1362,7 @@ msgstr "Commedia" msgid "Comics" msgstr "Fumetti" -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:267 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Linee guida della community" @@ -1364,7 +1375,7 @@ msgstr "Completa l'incorporazione e inizia a utilizzare il tuo account" msgid "Complete the challenge" msgstr "Completa la challenge" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:582 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Componi un post fino a {MAX_GRAPHEME_LENGTH} caratteri" @@ -1389,8 +1400,6 @@ msgstr "Configurato nelle <0>impostazioni di moderazione." #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/PreferencesFollowingFeed.tsx:307 -#: src/view/screens/PreferencesThreads.tsx:159 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 msgid "Confirm" @@ -1522,12 +1531,12 @@ msgstr "Conversazione cancellata" msgid "Cooking" msgstr "Cucina" -#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Copiato" -#: src/view/screens/Settings/index.tsx:264 +#: src/view/screens/Settings/index.tsx:265 msgid "Copied build version to clipboard" msgstr "Versione di build copiata nella clipboard" @@ -1535,7 +1544,7 @@ msgstr "Versione di build copiata nella clipboard" #: src/view/com/modals/AddAppPasswords.tsx:80 #: src/view/com/modals/ChangeHandle.tsx:320 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:189 +#: src/view/com/util/forms/PostDropdownBtn.tsx:192 #: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Copiato nel clipboard" @@ -1544,12 +1553,12 @@ msgstr "Copiato nel clipboard" msgid "Copied!" msgstr "Copiato!" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" msgstr "Copia la password dell'app" -#: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/view/com/modals/AddAppPasswords.tsx:213 +#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Copia" @@ -1562,11 +1571,11 @@ msgstr "Copia {0}" msgid "Copy code" msgstr "Copia il codice" -#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" msgstr "" @@ -1574,8 +1583,8 @@ msgstr "" msgid "Copy link to list" msgstr "Copia il link alla lista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 msgid "Copy link to post" msgstr "Copia il link al post" @@ -1587,20 +1596,24 @@ msgstr "Copia il link al post" msgid "Copy message text" msgstr "Copia il testo del messaggio" -#: src/view/com/util/forms/PostDropdownBtn.tsx:285 -#: src/view/com/util/forms/PostDropdownBtn.tsx:287 +#: src/view/com/util/forms/PostDropdownBtn.tsx:288 +#: src/view/com/util/forms/PostDropdownBtn.tsx:290 msgid "Copy post text" msgstr "Copia il testo del post" -#: src/components/StarterPack/QrCodeDialog.tsx:168 +#: src/components/StarterPack/QrCodeDialog.tsx:171 msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:272 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Politica sul diritto d'autore" +#: src/view/com/composer/videos/state.ts:31 +msgid "Could not compress video" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "Errore nell'abbandonare la conversione" @@ -1633,17 +1646,17 @@ msgstr "" msgid "Create a new account" msgstr "Crea un nuovo account" -#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:425 msgid "Create a new Bluesky account" msgstr "Crea un nuovo Bluesky account" -#: src/components/StarterPack/QrCodeDialog.tsx:151 +#: src/components/StarterPack/QrCodeDialog.tsx:154 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:351 msgid "Create a starter pack" msgstr "" @@ -1668,7 +1681,7 @@ msgstr "In alternativa crea un avatar" msgid "Create another" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" msgstr "Crea un password per l'app" @@ -1713,7 +1726,7 @@ msgid "Custom domain" msgstr "Dominio personalizzato" #: src/view/screens/Feeds.tsx:760 -#: src/view/screens/Search/Explore.tsx:390 +#: src/view/screens/Search/Explore.tsx:392 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "I feed personalizzati creati dalla comunità ti offrono nuove esperienze e ti aiutano a trovare contenuti interessanti." @@ -1724,8 +1737,8 @@ msgstr "Personalizza i media da i siti esterni." #~ msgid "Danger Zone" #~ msgstr "Zona di Pericolo" -#: src/view/screens/Settings/index.tsx:459 -#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:460 +#: src/view/screens/Settings/index.tsx:486 msgid "Dark" msgstr "Scuro" @@ -1733,7 +1746,7 @@ msgstr "Scuro" msgid "Dark mode" msgstr "Aspetto scuro" -#: src/view/screens/Settings/index.tsx:472 +#: src/view/screens/Settings/index.tsx:473 msgid "Dark Theme" msgstr "Tema scuro" @@ -1742,15 +1755,15 @@ msgid "Date of birth" msgstr "Data di nascita" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:807 +#: src/view/screens/Settings/index.tsx:808 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:819 +#: src/view/screens/Settings/index.tsx:820 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:874 +#: src/view/screens/Settings/index.tsx:875 msgid "Debug Moderation" msgstr "Eliminare errori nella Moderazione" @@ -1762,13 +1775,13 @@ msgstr "Pannello per il debug" #: src/screens/StarterPack/StarterPackScreen.tsx:562 #: src/screens/StarterPack/StarterPackScreen.tsx:641 #: src/screens/StarterPack/StarterPackScreen.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Elimina" -#: src/view/screens/Settings/index.tsx:829 +#: src/view/screens/Settings/index.tsx:830 msgid "Delete account" msgstr "Elimina l'account" @@ -1787,8 +1800,8 @@ msgstr "Elimina la password dell'app" msgid "Delete app password?" msgstr "Eliminare la password dell'app?" -#: src/view/screens/Settings/index.tsx:891 -#: src/view/screens/Settings/index.tsx:894 +#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:895 msgid "Delete chat declaration record" msgstr "" @@ -1815,12 +1828,12 @@ msgstr "Cancellare account" #~ msgid "Delete my account…" #~ msgstr "Cancella il mio account…" -#: src/view/screens/Settings/index.tsx:841 +#: src/view/screens/Settings/index.tsx:842 msgid "Delete My Account…" msgstr "Cancellare Account…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:414 -#: src/view/com/util/forms/PostDropdownBtn.tsx:416 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 +#: src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "Elimina il post" @@ -1837,7 +1850,7 @@ msgstr "" msgid "Delete this list?" msgstr "Elimina questa lista?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:428 +#: src/view/com/util/forms/PostDropdownBtn.tsx:431 msgid "Delete this post?" msgstr "Eliminare questo post?" @@ -1849,7 +1862,7 @@ msgstr "Eliminato" msgid "Deleted post." msgstr "Post eliminato." -#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:893 msgid "Deletes the chat declaration record" msgstr "" @@ -1870,11 +1883,11 @@ msgstr "Testo descrittivo alternativo" #~ msgid "Developer Tools" #~ msgstr "Strumenti per sviluppatori" -#: src/view/com/composer/Composer.tsx:283 +#: src/view/com/composer/Composer.tsx:295 msgid "Did you want to say anything?" msgstr "Volevi dire qualcosa?" -#: src/view/screens/Settings/index.tsx:478 +#: src/view/screens/Settings/index.tsx:479 msgid "Dim" msgstr "Fioco" @@ -1903,14 +1916,14 @@ msgstr "Disattiva il feedback tattile" msgid "Disabled" msgstr "Disabilitato" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:682 msgid "Discard" msgstr "Scartare" #~ msgid "Discard draft" #~ msgstr "Scarta la bozza" -#: src/view/com/composer/Composer.tsx:648 +#: src/view/com/composer/Composer.tsx:679 msgid "Discard draft?" msgstr "Scartare la bozza?" @@ -1928,7 +1941,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "Scopri nuovi feed personalizzati" -#: src/view/screens/Search/Explore.tsx:388 +#: src/view/screens/Search/Explore.tsx:390 msgid "Discover new feeds" msgstr "Scopri nuovi feed" @@ -1984,22 +1997,20 @@ msgstr "Dominio verificato!" #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesFollowingFeed.tsx:310 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Fatto" #: src/view/com/modals/EditImage.tsx:334 -#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" msgstr "Fatto" @@ -2011,7 +2022,7 @@ msgstr "Fatto{extraText}" #~ msgid "Double tap to sign in" #~ msgstr "Usa il doppio tocco per accedere" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319 msgid "Download Bluesky" msgstr "" @@ -2084,7 +2095,7 @@ msgctxt "action" msgid "Edit" msgstr "Modifica" -#: src/view/com/util/UserAvatar.tsx:325 +#: src/view/com/util/UserAvatar.tsx:337 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "Modifica l'avatar" @@ -2106,7 +2117,7 @@ msgstr "Modifica i dettagli della lista" msgid "Edit Moderation List" msgstr "Modifica l'elenco di moderazione" -#: src/Navigation.tsx:274 +#: src/Navigation.tsx:282 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -2121,12 +2132,12 @@ msgstr "Modifica il mio profilo" msgid "Edit People" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "Modifica il profilo" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "Modifica il Profilo" @@ -2144,7 +2155,7 @@ msgstr "" msgid "Edit User List" msgstr "Modifica l'elenco degli utenti" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Edit who can reply" msgstr "" @@ -2156,7 +2167,7 @@ msgstr "Modifica il tuo nome visualizzato" msgid "Edit your profile description" msgstr "Modifica la descrizione del tuo profilo" -#: src/Navigation.tsx:343 +#: src/Navigation.tsx:356 msgid "Edit your starter pack" msgstr "" @@ -2195,7 +2206,7 @@ msgstr "Email Aggiornata" msgid "Email verified" msgstr "Email verificata" -#: src/view/screens/Settings/index.tsx:350 +#: src/view/screens/Settings/index.tsx:351 msgid "Email:" msgstr "Email:" @@ -2204,8 +2215,8 @@ msgid "Embed HTML code" msgstr "Incorpora il codice HTML" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:324 -#: src/view/com/util/forms/PostDropdownBtn.tsx:326 +#: src/view/com/util/forms/PostDropdownBtn.tsx:327 +#: src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "Incorpora il post" @@ -2238,11 +2249,16 @@ msgstr "Abilita i media esterni" #~ msgid "Enable External Media" #~ msgstr "Attiva Media Esterna" -#: src/view/screens/PreferencesExternalEmbeds.tsx:76 +#: src/view/screens/PreferencesExternalEmbeds.tsx:73 msgid "Enable media players for" msgstr "Attiva i lettori multimediali per" -#: src/view/screens/PreferencesFollowingFeed.tsx:146 +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 msgid "Enable this setting to only see replies between people you follow." msgstr "Abilita questa impostazione per vedere solo le risposte delle persone che segui." @@ -2264,7 +2280,7 @@ msgstr "Fine del feed" msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:160 +#: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "Inserisci un nome per questa password dell'app" @@ -2341,7 +2357,7 @@ msgid "Everybody" msgstr "Tutti" #: src/components/WhoCanReply.tsx:69 -#: src/components/WhoCanReply.tsx:240 +#: src/components/WhoCanReply.tsx:241 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "Tutti possono rispondere" @@ -2377,8 +2393,8 @@ msgstr "Uscita dal processo di ritaglio dell'immagine" msgid "Exits image view" msgstr "Uscita dalla visualizzazione dell'immagine" -#: src/view/com/modals/ListAddRemoveUsers.tsx:88 -#: src/view/shell/desktop/Search.tsx:215 +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +#: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "Uscita dall'inserzione della domanda di ricerca" @@ -2389,7 +2405,7 @@ msgstr "Uscita dall'inserzione della domanda di ricerca" msgid "Expand alt text" msgstr "Ampliare il testo alternativo" -#: src/view/com/notifications/FeedItem.tsx:238 +#: src/view/com/notifications/FeedItem.tsx:239 msgid "Expand list of users" msgstr "" @@ -2398,6 +2414,10 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "Espandi o comprimi l'intero post a cui stai rispondendo" +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." msgstr "Media espliciti o potenzialmente inquietanti." @@ -2406,12 +2426,12 @@ msgstr "Media espliciti o potenzialmente inquietanti." msgid "Explicit sexual images." msgstr "Immagini sessuali esplicite." -#: src/view/screens/Settings/index.tsx:787 +#: src/view/screens/Settings/index.tsx:788 msgid "Export my data" msgstr "Esporta i miei dati" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:798 +#: src/view/screens/Settings/index.tsx:799 msgid "Export My Data" msgstr "Esporta i miei dati" @@ -2421,17 +2441,17 @@ msgid "External Media" msgstr "Media esterni" #: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/view/screens/PreferencesExternalEmbeds.tsx:64 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 multimediali esterni possono 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:293 +#: src/Navigation.tsx:301 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:680 +#: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" msgstr "Preferenze multimediali esterni" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "External media settings" msgstr "Impostazioni multimediali esterni" @@ -2461,8 +2481,8 @@ msgstr "Non possiamo eliminare il post, riprova di nuovo" msgid "Failed to delete starter pack" msgstr "" -#: src/view/screens/Search/Explore.tsx:426 -#: src/view/screens/Search/Explore.tsx:454 +#: src/view/screens/Search/Explore.tsx:428 +#: src/view/screens/Search/Explore.tsx:456 msgid "Failed to load feeds preferences" msgstr "" @@ -2478,29 +2498,33 @@ msgstr "Errore nel caricare i vecchi messaggi" #~ msgid "Failed to load recommended feeds" #~ msgstr "Non possiamo caricare i feed consigliati" -#: src/view/screens/Search/Explore.tsx:419 -#: src/view/screens/Search/Explore.tsx:447 +#: src/view/screens/Search/Explore.tsx:421 +#: src/view/screens/Search/Explore.tsx:449 msgid "Failed to load suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:377 +#: src/view/screens/Search/Explore.tsx:379 msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:86 +#: src/view/com/lightbox/Lightbox.tsx:90 msgid "Failed to save image: {0}" msgstr "Non è possibile salvare l'immagine: {0}" -#: src/components/dms/MessageItem.tsx:230 +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + +#: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "Errore nell'invio" -#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: src/components/moderation/LabelsOnMeDialog.tsx:244 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "Errore nel invio dell'appello, si prega di riprovare." -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:181 msgid "Failed to toggle thread mute, please try again" msgstr "" @@ -2513,7 +2537,7 @@ msgstr "" msgid "Failed to update settings" msgstr "Errore nell'aggiornamento delle impostazioni" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:217 msgid "Feed" msgstr "Feed" @@ -2534,19 +2558,19 @@ msgid "Feed toggle" msgstr "" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:345 +#: src/view/shell/Drawer.tsx:332 msgid "Feedback" msgstr "Commenti" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:336 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 #: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:493 -#: src/view/shell/Drawer.tsx:494 +#: src/view/shell/Drawer.tsx:483 +#: src/view/shell/Drawer.tsx:484 msgid "Feeds" msgstr "Feed" @@ -2604,14 +2628,14 @@ msgstr "Trova post e utenti su Bluesky" #~ msgid "Finding similar accounts..." #~ msgstr "Trovare account simili…" -#: src/view/screens/PreferencesFollowingFeed.tsx:110 +#: src/view/screens/PreferencesFollowingFeed.tsx:108 msgid "Fine-tune the content you see on your Following feed." msgstr "Ottimizza il contenuto che vedi nel tuo Following feed." #~ msgid "Fine-tune the content you see on your home screen." #~ msgstr "Ottimizza il contenuto che vedi nella pagina d'inizio." -#: src/view/screens/PreferencesThreads.tsx:60 +#: src/view/screens/PreferencesThreads.tsx:54 msgid "Fine-tune the discussion threads." msgstr "Ottimizza i la visualizzazione delle discussioni." @@ -2641,7 +2665,7 @@ msgid "Flip vertically" msgstr "Gira in verticale" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:341 +#: src/components/ProfileCard.tsx:343 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2686,7 +2710,7 @@ msgstr "" msgid "Follow Back" msgstr "Seguire" -#: src/view/screens/Search/Explore.tsx:333 +#: src/view/screens/Search/Explore.tsx:335 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "" @@ -2702,22 +2726,22 @@ msgstr "" #~ msgstr "" #: src/view/com/profile/ProfileCard.tsx:190 -msgid "Followed by {0}" -msgstr "Seguito da {0}" +#~ msgid "Followed by {0}" +#~ msgstr "Seguito da {0}" -#: src/components/KnownFollowers.tsx:223 +#: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "" -#: src/components/KnownFollowers.tsx:209 +#: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "" -#: src/components/KnownFollowers.tsx:196 +#: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" msgstr "" -#: src/components/KnownFollowers.tsx:178 +#: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" @@ -2725,15 +2749,15 @@ msgstr "" msgid "Followed users" msgstr "Utenti seguiti" -#: src/view/screens/PreferencesFollowingFeed.tsx:153 +#: src/view/screens/PreferencesFollowingFeed.tsx:152 msgid "Followed users only" msgstr "Solo utenti seguiti" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:198 msgid "followed you" msgstr "ti segue" -#: src/view/com/notifications/FeedItem.tsx:195 +#: src/view/com/notifications/FeedItem.tsx:196 msgid "followed you back" msgstr "" @@ -2742,7 +2766,7 @@ msgstr "" msgid "Followers" msgstr "Followers" -#: src/Navigation.tsx:182 +#: src/Navigation.tsx:185 msgid "Followers of @{0} that you know" msgstr "" @@ -2755,7 +2779,7 @@ msgstr "" #~ msgstr "following" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:335 +#: src/components/ProfileCard.tsx:337 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2767,7 +2791,7 @@ msgstr "" msgid "Following" msgstr "Following" -#: src/components/ProfileCard.tsx:301 +#: src/components/ProfileCard.tsx:303 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Seguiti {0}" @@ -2776,13 +2800,13 @@ msgstr "Seguiti {0}" msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Following feed preferences" msgstr "Preferenze del Following feed" -#: src/Navigation.tsx:280 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:583 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesFollowingFeed.tsx:105 +#: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "Preferenze del Following Feed" @@ -2807,7 +2831,7 @@ msgstr "Gastronomia" msgid "For security reasons, we'll need to send a confirmation code to your email address." msgstr "Per motivi di sicurezza, invieremo un codice di conferma al tuo indirizzo email." -#: src/view/com/modals/AddAppPasswords.tsx:232 +#: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Per motivi di sicurezza non potrai visualizzarlo nuovamente. Se perdi questa password, dovrai generarne una nuova." @@ -2838,7 +2862,7 @@ msgstr "Pubblica spesso contenuti indesiderati" msgid "From @{sanitizedAuthor}" msgstr "Di @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:236 +#: src/view/com/posts/FeedItem.tsx:242 msgctxt "from-feed" msgid "From <0/>" msgstr "Da <0/>" @@ -2851,6 +2875,10 @@ msgstr "Galleria" msgid "Generate a starter pack" msgstr "" +#: src/view/shell/Drawer.tsx:336 +msgid "Get help" +msgstr "" + #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" msgstr "Iniziamo" @@ -2898,12 +2926,12 @@ msgid "Go Back" msgstr "Torna Indietro" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -msgid "Go back to previous screen" -msgstr "" +#~ msgid "Go back to previous screen" +#~ msgstr "" #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/components/ReportDialog/SubmitView.tsx:121 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 @@ -2966,7 +2994,7 @@ msgstr "Aptica" msgid "Harassment, trolling, or intolerance" msgstr "Molestie, trolling o intolleranza" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:316 msgid "Hashtag" msgstr "Hashtag" @@ -2979,7 +3007,7 @@ msgid "Having trouble?" msgstr "Ci sono problemi?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:355 +#: src/view/shell/Drawer.tsx:345 msgid "Help" msgstr "Aiuto" @@ -2999,7 +3027,7 @@ msgstr "Aiuta le persone a sapere che tu non sei un bot caricando una immagine o #~ msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." #~ msgstr "Ecco alcuni feed di attualità scelti in base ai tuoi interessi: {interestsText}. Puoi seguire quanti ne vuoi." -#: src/view/com/modals/AddAppPasswords.tsx:203 +#: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "Ecco la password dell'app." @@ -3010,17 +3038,17 @@ msgstr "Ecco la password dell'app." #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:445 msgid "Hide" msgstr "Nascondi" -#: src/view/com/notifications/FeedItem.tsx:444 +#: src/view/com/notifications/FeedItem.tsx:447 msgctxt "action" msgid "Hide" msgstr "Nascondi" -#: src/view/com/util/forms/PostDropdownBtn.tsx:387 -#: src/view/com/util/forms/PostDropdownBtn.tsx:389 +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 msgid "Hide post" msgstr "Nascondi il messaggio" @@ -3029,11 +3057,11 @@ msgstr "Nascondi il messaggio" msgid "Hide the content" msgstr "Nascondere il contenuto" -#: src/view/com/util/forms/PostDropdownBtn.tsx:439 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide this post?" msgstr "Vuoi nascondere questo post?" -#: src/view/com/notifications/FeedItem.tsx:435 +#: src/view/com/notifications/FeedItem.tsx:438 msgid "Hide user list" msgstr "Nascondi elenco utenti" @@ -3068,12 +3096,12 @@ msgstr "Stiamo riscontrando problemi nel trovare questi dati. Guarda PI[U giù p msgid "Hmmmm, we couldn't load that moderation service." msgstr "Non siamo riusciti a caricare il servizio di moderazione." -#: src/Navigation.tsx:519 -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:552 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:425 -#: src/view/shell/Drawer.tsx:426 +#: src/view/shell/Drawer.tsx:415 +#: src/view/shell/Drawer.tsx:416 msgid "Home" msgstr "Home" @@ -3133,7 +3161,7 @@ msgstr "Se non sei ancora maggiorenne secondo le leggi del tuo Paese, il tuo gen msgid "If you delete this list, you won't be able to recover it." msgstr "Se elimini questa lista, non potrai recuperarla." -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 msgid "If you remove this post, you won't be able to recover it." msgstr "Se rimuovi questo post, non potrai recuperarlo." @@ -3160,7 +3188,7 @@ msgstr "Testo alternativo dell'immagine" #~ msgid "Image options" #~ msgstr "Opzioni per l'immagine" -#: src/components/StarterPack/ShareDialog.tsx:75 +#: src/components/StarterPack/ShareDialog.tsx:76 msgid "Image saved to your camera roll!" msgstr "" @@ -3186,7 +3214,7 @@ msgstr "Inserisci il codice di conferma per la cancellazione dell'account" #~ msgid "Input invite code to proceed" #~ msgstr "Inserisci il codice di invito per procedere" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" msgstr "Inserisci il nome per la password dell'app" @@ -3274,7 +3302,7 @@ msgstr "Codici di invito: {0} disponibili" msgid "Invite codes: 1 available" msgstr "Codici di invito: 1 disponibile" -#: src/components/StarterPack/ShareDialog.tsx:96 +#: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" msgstr "" @@ -3298,8 +3326,8 @@ msgstr "" msgid "Jobs" msgstr "Lavori" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:432 #: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" @@ -3345,11 +3373,11 @@ msgstr "Le etichette sono annotazioni su utenti e contenuti. Possono essere util #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "le etichette sono state inserite su questo {labelTarget}" -#: src/components/moderation/LabelsOnMeDialog.tsx:79 +#: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "Etichette sul tuo account" -#: src/components/moderation/LabelsOnMeDialog.tsx:81 +#: src/components/moderation/LabelsOnMeDialog.tsx:82 msgid "Labels on your content" msgstr "Etichette sul tuo contenuto" @@ -3357,16 +3385,16 @@ msgstr "Etichette sul tuo contenuto" msgid "Language selection" msgstr "Seleziona la lingua" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Language settings" msgstr "Impostazione delle lingue" -#: src/Navigation.tsx:155 +#: src/Navigation.tsx:158 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Impostazione delle Lingue" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Languages" msgstr "Lingue" @@ -3432,7 +3460,7 @@ msgstr "Stai lasciando Bluesky" msgid "left to go." msgstr "mancano." -#: src/view/screens/Settings/index.tsx:309 +#: src/view/screens/Settings/index.tsx:310 msgid "Legacy storage cleared, you need to restart the app now." msgstr "L'archivio legacy è stato cancellato, riattiva la app." @@ -3453,7 +3481,7 @@ msgstr "Andiamo!" #~ msgid "Library" #~ msgstr "Biblioteca" -#: src/view/screens/Settings/index.tsx:453 +#: src/view/screens/Settings/index.tsx:454 msgid "Light" msgstr "Chiaro" @@ -3470,13 +3498,13 @@ msgid "Like 10 posts to train the Discover feed" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Like this feed" msgstr "Metti mi piace a questo feed" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:219 -#: src/Navigation.tsx:224 +#: src/Navigation.tsx:222 +#: src/Navigation.tsx:227 msgid "Liked by" msgstr "Piace a" @@ -3495,14 +3523,14 @@ msgstr "Piace A" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "Piace a {likeCount} {0}" -#: src/view/com/notifications/FeedItem.tsx:201 +#: src/view/com/notifications/FeedItem.tsx:202 msgid "liked your custom feed" msgstr "piace il tuo feed personalizzato" #~ msgid "liked your custom feed{0}" #~ msgstr "piace il feed personalizzato{0}" -#: src/view/com/notifications/FeedItem.tsx:185 +#: src/view/com/notifications/FeedItem.tsx:186 msgid "liked your post" msgstr "piace il tuo post" @@ -3514,7 +3542,7 @@ msgstr "Mi piace" msgid "Likes on this post" msgstr "Mi Piace in questo post" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:191 msgid "List" msgstr "Lista" @@ -3551,12 +3579,12 @@ msgstr "Lista sbloccata" msgid "List unmuted" msgstr "Lista non mutata" -#: src/Navigation.tsx:125 +#: src/Navigation.tsx:128 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 -#: src/view/shell/Drawer.tsx:509 -#: src/view/shell/Drawer.tsx:510 +#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:500 msgid "Lists" msgstr "Liste" @@ -3564,28 +3592,28 @@ msgstr "Liste" msgid "Lists blocking this user:" msgstr "Liste che bloccano questo utente:" -#: src/view/screens/Search/Explore.tsx:130 +#: src/view/screens/Search/Explore.tsx:131 msgid "Load more" msgstr "" #~ msgid "Load more posts" #~ msgstr "Carica più post" -#: src/view/screens/Search/Explore.tsx:218 +#: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:216 +#: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" msgstr "" -#: src/view/screens/Notifications.tsx:184 +#: src/view/screens/Notifications.tsx:219 msgid "Load new notifications" msgstr "Carica più notifiche" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:494 +#: src/view/screens/ProfileFeed.tsx:495 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Carica nuovi posts" @@ -3597,7 +3625,7 @@ msgstr "Caricamento..." #~ msgid "Local dev server" #~ msgstr "Server di sviluppo locale" -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:247 msgid "Log" msgstr "Log" @@ -3672,7 +3700,7 @@ msgstr "Segna come letto" msgid "Media" msgstr "Media" -#: src/components/WhoCanReply.tsx:275 +#: src/components/WhoCanReply.tsx:276 msgid "mentioned users" msgstr "utenti menzionati" @@ -3697,7 +3725,7 @@ msgstr "Messaggio cancellato" #~ msgid "Message from server" #~ msgstr "Messaggio dal server" -#: src/view/com/posts/FeedErrorMessage.tsx:200 +#: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "Messaggio dal server: {0}" @@ -3714,7 +3742,7 @@ msgstr "Il messaggio è troppo lungo" msgid "Message settings" msgstr "Impostazioni messaggio" -#: src/Navigation.tsx:534 +#: src/Navigation.tsx:547 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3725,9 +3753,9 @@ msgstr "Messaggi" msgid "Misleading Account" msgstr "Account Ingannevole" -#: src/Navigation.tsx:130 +#: src/Navigation.tsx:133 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:562 +#: src/view/screens/Settings/index.tsx:563 msgid "Moderation" msgstr "Moderazione" @@ -3763,16 +3791,16 @@ msgstr "Lista di moderazione aggiornata" msgid "Moderation lists" msgstr "Liste di moderazione" -#: src/Navigation.tsx:135 +#: src/Navigation.tsx:138 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Liste di Moderazione" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Moderation settings" msgstr "Impostazioni di moderazione" -#: src/Navigation.tsx:234 +#: src/Navigation.tsx:237 msgid "Moderation states" msgstr "Stati di moderazione" @@ -3800,7 +3828,7 @@ msgstr "Altre opzioni" #~ msgid "More post options" #~ msgstr "Altre impostazioni per il post" -#: src/view/screens/PreferencesThreads.tsx:82 +#: src/view/screens/PreferencesThreads.tsx:76 msgid "Most-liked replies first" msgstr "Dai priorità alle risposte con più likes" @@ -3873,13 +3901,13 @@ msgstr "Silenzia questa parola nel testo e nei tag del post" msgid "Mute this word in tags only" msgstr "Siilenzia questa parola solo nei tags" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:371 msgid "Mute thread" msgstr "Silenzia questa discussione" -#: src/view/com/util/forms/PostDropdownBtn.tsx:378 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 +#: src/view/com/util/forms/PostDropdownBtn.tsx:381 +#: src/view/com/util/forms/PostDropdownBtn.tsx:383 msgid "Mute words & tags" msgstr "Silenzia parole & tags" @@ -3891,7 +3919,7 @@ msgstr "Silenziato" msgid "Muted accounts" msgstr "Account silenziato" -#: src/Navigation.tsx:140 +#: src/Navigation.tsx:143 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Accounts Silenziati" @@ -3925,18 +3953,18 @@ msgstr "I miei Feed" msgid "My Profile" msgstr "Il mio Profilo" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "My saved feeds" msgstr "I miei feed salvati" -#: src/view/screens/Settings/index.tsx:623 +#: src/view/screens/Settings/index.tsx:624 msgid "My Saved Feeds" msgstr "I miei Feed Salvati" #~ msgid "my-server.com" #~ msgstr "my-server.com" -#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/AddAppPasswords.tsx:174 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Nome" @@ -3971,7 +3999,7 @@ msgstr "" msgid "Navigates to the next screen" msgstr "Vai alla schermata successiva" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:78 msgid "Navigates to your profile" msgstr "Vai al tuo profilo" @@ -4002,7 +4030,7 @@ msgstr "Nuova" msgid "New" msgstr "Nuova" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" @@ -4030,9 +4058,9 @@ msgid "New post" msgstr "Nuovo Post" #: src/view/screens/Feeds.tsx:581 -#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Notifications.tsx:228 #: src/view/screens/Profile.tsx:478 -#: src/view/screens/ProfileFeed.tsx:428 +#: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:278 @@ -4055,7 +4083,7 @@ msgstr "" msgid "New User List" msgstr "Nuova lista" -#: src/view/screens/PreferencesThreads.tsx:79 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Newest replies first" msgstr "Mostrare prima le risposte più recenti" @@ -4089,16 +4117,16 @@ msgstr "Seguente" msgid "Next image" msgstr "Immagine seguente" -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:199 -#: src/view/screens/PreferencesFollowingFeed.tsx:234 -#: src/view/screens/PreferencesFollowingFeed.tsx:271 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:198 +#: src/view/screens/PreferencesFollowingFeed.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:270 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "No" msgstr "No" -#: src/view/screens/ProfileFeed.tsx:562 +#: src/view/screens/ProfileFeed.tsx:564 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Senza descrizione" @@ -4116,7 +4144,7 @@ msgstr "Non si è trovata nessuna GIF in primo piano. Potrebbe esserci un proble msgid "No feeds found. Try searching for something else." msgstr "" -#: src/components/ProfileCard.tsx:321 +#: src/components/ProfileCard.tsx:323 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "Non segui più {0}" @@ -4133,7 +4161,7 @@ msgstr "Ancora nessun messaggio" msgid "No more conversations to show" msgstr "Nessuna conversazione da visualizzare" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:122 msgid "No notifications yet!" msgstr "Ancora nessuna notifica!" @@ -4165,7 +4193,7 @@ msgstr "Non si è trovato nessun risultato" msgid "No results found for \"{query}\"" msgstr "Nessun risultato trovato per \"{query}\"" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 @@ -4206,7 +4234,7 @@ msgstr "Nudità non sessuale" #~ msgid "Not Applicable." #~ msgstr "Non applicabile." -#: src/Navigation.tsx:120 +#: src/Navigation.tsx:123 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Non trovato" @@ -4217,7 +4245,7 @@ msgid "Not right now" msgstr "Non adesso" #: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/forms/PostDropdownBtn.tsx:459 #: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "Nota sulla condivisione" @@ -4230,6 +4258,19 @@ msgstr "Nota: Bluesky è una rete aperta e pubblica. Questa impostazione limita msgid "Nothing here" msgstr "Nulla qui" +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:331 +#: src/view/screens/Notifications.tsx:119 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "" + #: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "Suoni di notifica" @@ -4238,13 +4279,14 @@ msgstr "Suoni di notifica" msgid "Notification Sounds" msgstr "Suoni di notifica" -#: src/Navigation.tsx:529 -#: src/view/screens/Notifications.tsx:132 -#: src/view/screens/Notifications.tsx:169 +#: src/Navigation.tsx:542 +#: src/view/screens/Notifications.tsx:145 +#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:203 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 -#: src/view/shell/Drawer.tsx:457 -#: src/view/shell/Drawer.tsx:458 +#: src/view/shell/Drawer.tsx:447 +#: src/view/shell/Drawer.tsx:448 msgid "Notifications" msgstr "Notifiche" @@ -4252,7 +4294,7 @@ msgstr "Notifiche" msgid "now" msgstr "" -#: src/components/dms/MessageItem.tsx:175 +#: src/components/dms/MessageItem.tsx:169 msgid "Now" msgstr "Ora" @@ -4284,7 +4326,7 @@ msgstr "Oh no!" msgid "Oh no! Something went wrong." msgstr "Oh no! Qualcosa è andato male." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 msgid "OK" msgstr "OK" @@ -4292,7 +4334,7 @@ msgstr "OK" msgid "Okay" msgstr "Va bene" -#: src/view/screens/PreferencesThreads.tsx:78 +#: src/view/screens/PreferencesThreads.tsx:72 msgid "Oldest replies first" msgstr "Mostrare prima le risposte più vecchie" @@ -4304,7 +4346,7 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:257 +#: src/view/screens/Settings/index.tsx:258 msgid "Onboarding reset" msgstr "Reimpostazione dell'onboarding" @@ -4312,7 +4354,7 @@ msgstr "Reimpostazione dell'onboarding" msgid "Onboarding tour step {0}: {1}" msgstr "" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:534 msgid "One or more images is missing alt text." msgstr "A una o più immagini manca il testo alternativo." @@ -4320,7 +4362,7 @@ msgstr "A una o più immagini manca il testo alternativo." msgid "Only .jpg and .png files are supported" msgstr "Solo i file .jpg e .png sono supportati" -#: src/components/WhoCanReply.tsx:244 +#: src/components/WhoCanReply.tsx:245 msgid "Only {0} can reply" msgstr "" @@ -4340,6 +4382,7 @@ msgstr "Ops! Qualcosa è andato male!" #: src/components/StarterPack/ProfileStarterPacks.tsx:304 #: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/NotificationsSettings.tsx:45 #: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Ops!" @@ -4361,16 +4404,16 @@ msgstr "Apri il generatore di avatar" msgid "Open conversation options" msgstr "Apri opzioni conversazione" -#: src/view/com/composer/Composer.tsx:632 -#: src/view/com/composer/Composer.tsx:633 +#: src/view/com/composer/Composer.tsx:663 +#: src/view/com/composer/Composer.tsx:664 msgid "Open emoji picker" msgstr "Apri il selettore emoji" -#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileFeed.tsx:297 msgid "Open feed options menu" msgstr "Apri il menu delle opzioni del feed" -#: src/view/screens/Settings/index.tsx:737 +#: src/view/screens/Settings/index.tsx:738 msgid "Open links with in-app browser" msgstr "Apri i links con il navigatore della app" @@ -4386,7 +4429,7 @@ msgstr "Apri le impostazioni delle parole e dei tag silenziati" msgid "Open navigation" msgstr "Apri la navigazione" -#: src/view/com/util/forms/PostDropdownBtn.tsx:247 +#: src/view/com/util/forms/PostDropdownBtn.tsx:250 msgid "Open post options menu" msgstr "Apri il menu delle opzioni del post" @@ -4394,12 +4437,12 @@ msgstr "Apri il menu delle opzioni del post" msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Open storybook page" msgstr "Apri la pagina della cronologia" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Open system log" msgstr "Apri il registro di sistema" @@ -4411,7 +4454,7 @@ msgstr "Apre le {numItems} opzioni" msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:511 +#: src/view/screens/Settings/index.tsx:512 msgid "Opens accessibility settings" msgstr "Apre le impostazioni di accessibilità" @@ -4427,7 +4470,7 @@ msgstr "Apre dettagli aggiuntivi per una debug entry" msgid "Opens camera on device" msgstr "Apre la fotocamera sul dispositivo" -#: src/view/screens/Settings/index.tsx:640 +#: src/view/screens/Settings/index.tsx:641 msgid "Opens chat settings" msgstr "Apre impostazioni messaggi" @@ -4435,7 +4478,7 @@ msgstr "Apre impostazioni messaggi" msgid "Opens composer" msgstr "Apre il compositore" -#: src/view/screens/Settings/index.tsx:532 +#: src/view/screens/Settings/index.tsx:533 msgid "Opens configurable language settings" msgstr "Apre le impostazioni configurabili delle lingue" @@ -4446,7 +4489,7 @@ msgstr "Apre la galleria fotografica del dispositivo" #~ msgid "Opens editor for profile display name, avatar, background image, and description" #~ msgstr "Apre l'editor per il nome configurato del profilo, l'avatar, l'immagine di sfondo e la descrizione" -#: src/view/screens/Settings/index.tsx:672 +#: src/view/screens/Settings/index.tsx:673 msgid "Opens external embeds settings" msgstr "Apre le impostazioni esterne per gli incorporamenti" @@ -4477,30 +4520,30 @@ msgstr "Apre la finestra per selezionare i GIF" msgid "Opens list of invite codes" msgstr "Apre la lista dei codici di invito" -#: src/view/screens/Settings/index.tsx:809 +#: src/view/screens/Settings/index.tsx:810 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:831 +#: src/view/screens/Settings/index.tsx:832 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "Apre la modale per la conferma dell'eliminazione dell'account. Richiede un codice e-mail" #~ msgid "Opens modal for account deletion confirmation. Requires email code." #~ msgstr "Apre il modal per la conferma dell'eliminazione dell'account. Richiede un codice email." -#: src/view/screens/Settings/index.tsx:766 +#: src/view/screens/Settings/index.tsx:767 msgid "Opens modal for changing your Bluesky password" msgstr "Apre la modale per modificare il tuo password di Bluesky" -#: src/view/screens/Settings/index.tsx:721 +#: src/view/screens/Settings/index.tsx:722 msgid "Opens modal for choosing a new Bluesky handle" msgstr "Apre la modale per la scelta di un nuovo handle di Bluesky" -#: src/view/screens/Settings/index.tsx:789 +#: src/view/screens/Settings/index.tsx:790 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Apre la modale per scaricare i dati del tuo account Bluesky (repository)" -#: src/view/screens/Settings/index.tsx:1009 +#: src/view/screens/Settings/index.tsx:1010 msgid "Opens modal for email verification" msgstr "Apre la modale per la verifica dell'e-mail" @@ -4508,7 +4551,7 @@ msgstr "Apre la modale per la verifica dell'e-mail" msgid "Opens modal for using custom domain" msgstr "Apre il modal per l'utilizzo del dominio personalizzato" -#: src/view/screens/Settings/index.tsx:557 +#: src/view/screens/Settings/index.tsx:558 msgid "Opens moderation settings" msgstr "Apre le impostazioni di moderazione" @@ -4521,18 +4564,18 @@ msgstr "Apre il modulo di reimpostazione della password" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "Apre la schermata per modificare i feed salvati" -#: src/view/screens/Settings/index.tsx:618 +#: src/view/screens/Settings/index.tsx:619 msgid "Opens screen with all saved feeds" msgstr "Apre la schermata con tutti i feed salvati" -#: src/view/screens/Settings/index.tsx:699 +#: src/view/screens/Settings/index.tsx:700 msgid "Opens the app password settings" msgstr "Apre le impostazioni della password dell'app" #~ msgid "Opens the app password settings page" #~ msgstr "Apre la pagina delle impostazioni della password dell'app" -#: src/view/screens/Settings/index.tsx:575 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens the Following feed preferences" msgstr "Apre le preferenze del feed Following" @@ -4547,30 +4590,34 @@ msgstr "Apre il sito Web collegato" #~ msgid "Opens the message settings page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:862 -#: src/view/screens/Settings/index.tsx:872 +#: src/view/screens/Settings/index.tsx:863 +#: src/view/screens/Settings/index.tsx:873 msgid "Opens the storybook page" msgstr "Apri la pagina della cronologia" -#: src/view/screens/Settings/index.tsx:850 +#: src/view/screens/Settings/index.tsx:851 msgid "Opens the system log page" msgstr "Apre la pagina del registro di sistema" -#: src/view/screens/Settings/index.tsx:596 +#: src/view/screens/Settings/index.tsx:597 msgid "Opens the threads preferences" msgstr "Apre le preferenze dei threads" -#: src/view/com/notifications/FeedItem.tsx:524 -#: src/view/com/util/UserAvatar.tsx:422 +#: src/view/com/notifications/FeedItem.tsx:527 +#: src/view/com/util/UserAvatar.tsx:434 msgid "Opens this profile" msgstr "" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:54 +msgid "Opens video picker" +msgstr "" + #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "Opzione {0} di {numItems}" #: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:162 +#: src/components/ReportDialog/SubmitView.tsx:179 msgid "Optionally provide additional information below:" msgstr "Facoltativamente, fornisci ulteriori informazioni di seguito:" @@ -4633,7 +4680,7 @@ msgstr "Password aggiornata" msgid "Password updated!" msgstr "Password aggiornata!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Pause" msgstr "Pausa" @@ -4642,19 +4689,19 @@ msgstr "Pausa" msgid "People" msgstr "Gente" -#: src/Navigation.tsx:175 +#: src/Navigation.tsx:178 msgid "People followed by @{0}" msgstr "Persone seguite da @{0}" -#: src/Navigation.tsx:168 +#: src/Navigation.tsx:171 msgid "People following @{0}" msgstr "Persone che seguono @{0}" -#: src/view/com/lightbox/Lightbox.tsx:69 +#: src/view/com/lightbox/Lightbox.tsx:70 msgid "Permission to access camera roll is required." msgstr "È richiesta l'autorizzazione per accedere al la cartella delle immagini." -#: src/view/com/lightbox/Lightbox.tsx:75 +#: src/view/com/lightbox/Lightbox.tsx:78 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "L'autorizzazione per accedere la cartella delle immagini è stata negata. Si prega di abilitarla nelle impostazioni del sistema." @@ -4678,12 +4725,12 @@ msgstr "" msgid "Pictures meant for adults." msgstr "Immagini per adulti." -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Fissa su Home" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 msgid "Pin to Home" msgstr "Fissa su Home" @@ -4695,7 +4742,7 @@ msgstr "Feed Fissi" msgid "Pinned to your feeds" msgstr "Fissa ai tuoi feed" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Play" msgstr "Play" @@ -4703,7 +4750,7 @@ msgstr "Play" msgid "Play {0}" msgstr "Riproduci {0}" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 msgid "Play or pause the GIF" msgstr "Riproduci o pausa la GIF" @@ -4740,7 +4787,7 @@ msgstr "Inserisci un nome per la password dell'app. Tutti gli spazi non sono con #~ msgid "Please enter a phone number that can receive SMS text messages." #~ msgstr "Inserisci un numero di telefono in grado di ricevere messaggi di testo SMS." -#: src/view/com/modals/AddAppPasswords.tsx:150 +#: src/view/com/modals/AddAppPasswords.tsx:151 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "Inserisci un nome unico per la password dell'app o utilizzane uno generato automaticamente." @@ -4767,7 +4814,7 @@ msgstr "" msgid "Please enter your password as well:" msgstr "Inserisci anche la tua password:" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:277 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}" @@ -4790,7 +4837,7 @@ msgstr "Accedi come @{0}" msgid "Please Verify Your Email" msgstr "Verifica la tua email" -#: src/view/com/composer/Composer.tsx:287 +#: src/view/com/composer/Composer.tsx:299 msgid "Please wait for your link card to finish loading" msgstr "Attendi il caricamento della scheda di collegamento" @@ -4806,8 +4853,8 @@ msgstr "Porno" #~ msgid "Pornography" #~ msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:509 +#: src/view/com/composer/Composer.tsx:516 msgctxt "action" msgid "Post" msgstr "Post" @@ -4824,9 +4871,9 @@ msgstr "Post" msgid "Post by {0}" msgstr "Pubblicato da {0}" -#: src/Navigation.tsx:194 -#: src/Navigation.tsx:201 -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:197 +#: src/Navigation.tsx:204 +#: src/Navigation.tsx:211 msgid "Post by @{0}" msgstr "Pubblicato da @{0}" @@ -4882,6 +4929,10 @@ msgstr "Post nascosto" msgid "Potentially Misleading Link" msgstr "Link potenzialmente fuorviante" +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "Premere per tentare di riconnetterti" @@ -4897,7 +4948,7 @@ msgstr "Premi per cambiare provider di hosting" msgid "Press to retry" msgstr "Premere per riprovare" -#: src/components/KnownFollowers.tsx:116 +#: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "" @@ -4909,20 +4960,24 @@ msgstr "Immagine precedente" msgid "Primary Language" msgstr "Lingua principale" -#: src/view/screens/PreferencesThreads.tsx:97 +#: src/view/screens/PreferencesThreads.tsx:91 msgid "Prioritize Your Follows" msgstr "Dai priorità a quelli che segui" -#: src/view/screens/Settings/index.tsx:655 +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "" + +#: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privacy" -#: src/Navigation.tsx:249 +#: src/Navigation.tsx:257 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:958 -#: src/view/shell/Drawer.tsx:285 +#: src/view/screens/Settings/index.tsx:959 +#: src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "Informativa sulla privacy" @@ -4941,9 +4996,9 @@ msgstr "profilo" #: src/view/shell/bottom-bar/BottomBar.tsx:275 #: src/view/shell/desktop/LeftNav.tsx:393 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:542 -#: src/view/shell/Drawer.tsx:543 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:532 +#: src/view/shell/Drawer.tsx:533 msgid "Profile" msgstr "Profilo" @@ -4951,7 +5006,7 @@ msgstr "Profilo" msgid "Profile updated" msgstr "Profilo aggiornato" -#: src/view/screens/Settings/index.tsx:1022 +#: src/view/screens/Settings/index.tsx:1023 msgid "Protect your account by verifying your email." msgstr "Proteggi il tuo account verificando la tua email." @@ -4967,23 +5022,23 @@ msgstr "Elenchi pubblici e condivisibili di utenti da disattivare o bloccare in msgid "Public, shareable lists which can drive feeds." msgstr "Liste pubbliche e condivisibili che possono impulsare i feed." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish post" msgstr "Pubblica il post" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish reply" msgstr "Pubblica la risposta" -#: src/components/StarterPack/QrCodeDialog.tsx:125 +#: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:103 +#: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:104 +#: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "" @@ -5011,7 +5066,7 @@ msgstr "Cita il post" #~ msgid "Quote Post" #~ msgstr "Cita il post" -#: src/view/screens/PreferencesThreads.tsx:86 +#: src/view/screens/PreferencesThreads.tsx:80 msgid "Random (aka \"Poster's Roulette\")" msgstr "Selezione a caso (nota anche come \"Poster's Roulette\")" @@ -5041,19 +5096,23 @@ msgstr "Ricerche recenti" msgid "Reconnect" msgstr "Riconnetti" +#: src/view/screens/Notifications.tsx:146 +msgid "Refresh notifications" +msgstr "" + #: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "Ricarica conversazioni" #: src/components/dialogs/MutedWords.tsx:286 #: src/components/FeedCard.tsx:309 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:212 +#: src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "Rimuovi" @@ -5068,7 +5127,7 @@ msgstr "" msgid "Remove account" msgstr "Rimuovi l'account" -#: src/view/com/util/UserAvatar.tsx:384 +#: src/view/com/util/UserAvatar.tsx:396 msgid "Remove Avatar" msgstr "Rimuovere Avatar" @@ -5080,20 +5139,20 @@ msgstr "Rimuovi il Banner" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:168 -#: src/view/com/posts/FeedShutdownMsg.tsx:113 -#: src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:115 +#: src/view/com/posts/FeedShutdownMsg.tsx:119 msgid "Remove feed" msgstr "Rimuovi il feed" -#: src/view/com/posts/FeedErrorMessage.tsx:209 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" msgstr "Rimuovere il feed?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Rimuovi dai miei feed" @@ -5107,7 +5166,7 @@ msgstr "Rimuovere dai miei feed?" msgid "Remove image" msgstr "Rimuovi l'immagine" -#: src/view/com/composer/ExternalEmbed.tsx:87 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 msgid "Remove image preview" msgstr "Rimuovi l'anteprima dell'immagine" @@ -5135,14 +5194,14 @@ msgstr "Rimuovi la ripubblicazione" #~ msgid "Remove this feed from my feeds?" #~ msgstr "Rimuovere questo feed dai miei feed?" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "Rimuovi questo feed dai feed salvati" #~ msgid "Remove this feed from your saved feeds?" #~ msgstr "Elimina questo feed dai feed salvati?" -#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "Elimina dalla lista" @@ -5158,15 +5217,19 @@ msgid "Removed from your feeds" msgstr "Rimosso dai tuoi feed" #: src/view/com/composer/ExternalEmbed.tsx:88 -msgid "Removes default thumbnail from {0}" -msgstr "Elimina la miniatura predefinita da {0}" +#~ msgid "Removes default thumbnail from {0}" +#~ msgstr "Elimina la miniatura predefinita da {0}" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" msgstr "Rimuovi post citato" -#: src/view/com/posts/FeedShutdownMsg.tsx:126 -#: src/view/com/posts/FeedShutdownMsg.tsx:130 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the image preview" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:128 +#: src/view/com/posts/FeedShutdownMsg.tsx:132 msgid "Replace with Discover" msgstr "Sostituisci con Discover" @@ -5182,16 +5245,16 @@ msgstr "" #~ msgid "Replies on this thread are disabled" #~ msgstr "" -#: src/components/WhoCanReply.tsx:242 +#: src/components/WhoCanReply.tsx:243 msgid "Replies to this thread are disabled" msgstr "Le risposte a questo thread sono disabilitate" -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:507 msgctxt "action" msgid "Reply" msgstr "Risposta" -#: src/view/screens/PreferencesFollowingFeed.tsx:143 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 msgid "Reply Filters" msgstr "Filtri di risposta" @@ -5199,17 +5262,23 @@ msgstr "Filtri di risposta" #~ msgid "Reply to <0/>" #~ msgstr "In risposta a <0/>" -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:439 +#: src/view/com/post/Post.tsx:197 +#: src/view/com/posts/FeedItem.tsx:458 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Rispondi a <0><1/>" -#: src/view/com/posts/FeedItem.tsx:437 +#: src/view/com/posts/FeedItem.tsx:456 msgctxt "description" msgid "Reply to a blocked post" msgstr "" +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:454 +msgctxt "description" +msgid "Reply to you" +msgstr "" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -5234,8 +5303,8 @@ msgstr "Segnala la conversazione" msgid "Report dialog" msgstr "Segnala il dialogo" -#: src/view/screens/ProfileFeed.tsx:349 -#: src/view/screens/ProfileFeed.tsx:351 +#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:352 msgid "Report feed" msgstr "Segnala il feed" @@ -5247,8 +5316,8 @@ msgstr "Segnala la lista" msgid "Report message" msgstr "Segnala il messaggio" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:407 +#: src/view/com/util/forms/PostDropdownBtn.tsx:409 msgid "Report post" msgstr "Segnala il post" @@ -5313,7 +5382,7 @@ msgstr "Ripubblica o cita il post" msgid "Reposted By" msgstr "Ripubblicato da" -#: src/view/com/posts/FeedItem.tsx:254 +#: src/view/com/posts/FeedItem.tsx:263 msgid "Reposted by {0}" msgstr "Ripubblicato da{0}" @@ -5323,11 +5392,16 @@ msgstr "Ripubblicato da{0}" #~ msgid "Reposted by <0/>" #~ msgstr "Repost di <0/>" -#: src/view/com/posts/FeedItem.tsx:269 +#: src/view/com/posts/FeedItem.tsx:282 msgid "Reposted by <0><1/>" msgstr "Ripubblicato da <0><1/>" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/posts/FeedItem.tsx:261 +#: src/view/com/posts/FeedItem.tsx:280 +msgid "Reposted by you" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:188 msgid "reposted your post" msgstr "ripubblicato il tuo post" @@ -5376,8 +5450,8 @@ msgstr "Reimposta il Codice" #~ msgid "Reset onboarding" #~ msgstr "Reimposta l'incorporazione" -#: src/view/screens/Settings/index.tsx:901 -#: src/view/screens/Settings/index.tsx:904 +#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:905 msgid "Reset onboarding state" msgstr "Reimposta lo stato dell' incorporazione" @@ -5388,16 +5462,16 @@ msgstr "Reimposta la password" #~ msgid "Reset preferences" #~ msgstr "Reimposta le preferenze" -#: src/view/screens/Settings/index.tsx:881 -#: src/view/screens/Settings/index.tsx:884 +#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:885 msgid "Reset preferences state" msgstr "Reimposta lo stato delle preferenze" -#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:903 msgid "Resets the onboarding state" msgstr "Reimposta lo stato dell'incorporazione" -#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:883 msgid "Resets the preferences state" msgstr "Reimposta lo stato delle preferenze" @@ -5410,7 +5484,7 @@ msgstr "Ritenta l'accesso" msgid "Retries the last action, which errored out" msgstr "Ritenta l'ultima azione che ha generato un errore" -#: src/components/dms/MessageItem.tsx:241 +#: src/components/dms/MessageItem.tsx:235 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 @@ -5448,7 +5522,7 @@ msgstr "Ritorna alla pagina precedente" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/dialogs/ThreadgateEditor.tsx:88 -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:187 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5457,7 +5531,7 @@ msgstr "Ritorna alla pagina precedente" msgid "Save" msgstr "Salva" -#: src/view/com/lightbox/Lightbox.tsx:135 +#: src/view/com/lightbox/Lightbox.tsx:139 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5479,8 +5553,8 @@ msgstr "Salva i cambi" msgid "Save handle change" msgstr "Salva la modifica del tuo identificatore" -#: src/components/StarterPack/ShareDialog.tsx:150 -#: src/components/StarterPack/ShareDialog.tsx:157 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "" @@ -5488,12 +5562,12 @@ msgstr "" msgid "Save image crop" msgstr "Salva il ritaglio dell'immagine" -#: src/components/StarterPack/QrCodeDialog.tsx:178 +#: src/components/StarterPack/QrCodeDialog.tsx:181 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 +#: src/view/screens/ProfileFeed.tsx:334 +#: src/view/screens/ProfileFeed.tsx:340 msgid "Save to my feeds" msgstr "Salva nei miei feed" @@ -5501,7 +5575,7 @@ msgstr "Salva nei miei feed" msgid "Saved Feeds" msgstr "Canali salvati" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:88 msgid "Saved to your camera roll" msgstr "Salvata nella tua galleria" @@ -5527,8 +5601,8 @@ msgstr "Salva le impostazioni di ritaglio dell'immagine" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:383 -#: src/view/com/notifications/FeedItem.tsx:408 +#: src/view/com/notifications/FeedItem.tsx:386 +#: src/view/com/notifications/FeedItem.tsx:411 msgid "Say hello!" msgstr "Di ciao!" @@ -5542,9 +5616,9 @@ msgid "Scroll to top" msgstr "Scorri verso l'alto" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:524 +#: src/Navigation.tsx:537 #: src/view/com/auth/LoggedOut.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 @@ -5552,14 +5626,14 @@ msgstr "Scorri verso l'alto" #: src/view/screens/Search/Search.tsx:813 #: src/view/shell/bottom-bar/BottomBar.tsx:182 #: src/view/shell/desktop/LeftNav.tsx:354 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:394 -#: src/view/shell/Drawer.tsx:395 +#: src/view/shell/desktop/Search.tsx:195 +#: src/view/shell/desktop/Search.tsx:204 +#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:385 msgid "Search" msgstr "Cerca" -#: src/view/shell/desktop/Search.tsx:235 +#: src/view/shell/desktop/Search.tsx:236 msgid "Search for \"{query}\"" msgstr "Cerca \"{query}\"" @@ -5581,7 +5655,7 @@ msgstr "" #: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/auth/LoggedOut.tsx:107 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "Cerca utenti" @@ -5690,7 +5764,7 @@ msgstr "Seleziona l'opzione {i} di {numItems}" msgid "Select the {emojiName} emoji as your avatar" msgstr "Scegli la {emojiName} emoji come tuo avatar" -#: src/components/ReportDialog/SubmitView.tsx:135 +#: src/components/ReportDialog/SubmitView.tsx:152 msgid "Select the moderation service(s) to report to" msgstr "Seleziona il/i servizio/i di moderazione per fare la segnalazione" @@ -5702,6 +5776,10 @@ msgstr "Seleziona il servizio che ospita i tuoi dati." #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "Seleziona i feed con temi da seguire dal seguente elenco" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:53 +msgid "Select video" +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:63 #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "Seleziona ciò che vuoi vedere (o non vedere) e noi gestiremo il resto." @@ -5761,8 +5839,7 @@ msgstr "Invia email" #~ msgid "Send Email" #~ msgstr "Envia Email" -#: src/view/shell/Drawer.tsx:329 -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:325 msgid "Send feedback" msgstr "Invia feedback" @@ -5771,14 +5848,14 @@ msgstr "Invia feedback" msgid "Send message" msgstr "Invia messaggio" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 msgid "Send post to..." msgstr "" #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:215 -#: src/components/ReportDialog/SubmitView.tsx:219 +#: src/components/ReportDialog/SubmitView.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:236 msgid "Send report" msgstr "Invia la segnalazione" @@ -5794,8 +5871,8 @@ msgstr "Invia la segnalazione a {0}" msgid "Send verification email" msgstr "Invia la email di verifica" -#: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 +#: src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" msgstr "" @@ -5840,26 +5917,26 @@ msgstr "Imposta una nuova password" #~ msgid "Set password" #~ msgstr "Imposta la password" -#: src/view/screens/PreferencesFollowingFeed.tsx:224 +#: src/view/screens/PreferencesFollowingFeed.tsx:223 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Seleziona \"No\" per nascondere tutti i post con le citazioni dal tuo feed. I repost saranno ancora visibili." -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:120 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Seleziona \"No\" per nascondere tutte le risposte dal tuo feed." -#: src/view/screens/PreferencesFollowingFeed.tsx:190 +#: src/view/screens/PreferencesFollowingFeed.tsx:189 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Seleziona \"No\" per nascondere tutte le ripubblicazioni dal tuo feed." -#: src/view/screens/PreferencesThreads.tsx:122 +#: src/view/screens/PreferencesThreads.tsx:116 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Seleziona \"Sì\" per mostrare le risposte in una visualizzazione concatenata. Questa è una funzionalità sperimentale." #~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." #~ msgstr "Seleziona \"Sì\" per mostrare esempi dei feed salvati nel feed successivo. Questa è una funzionalità sperimentale." -#: src/view/screens/PreferencesFollowingFeed.tsx:260 +#: src/view/screens/PreferencesFollowingFeed.tsx:259 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Imposta questa impostazione su \"Sì\" per mostrare esempi dei tuoi feed salvati nel feed Seguiti. Questa è una funzionalità sperimentale." @@ -5871,23 +5948,23 @@ msgstr "Configura il tuo account" msgid "Sets Bluesky username" msgstr "Imposta il tuo nome utente di Bluesky" -#: src/view/screens/Settings/index.tsx:462 +#: src/view/screens/Settings/index.tsx:463 msgid "Sets color theme to dark" msgstr "Imposta il tema colore su scuro" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Sets color theme to light" msgstr "Imposta il tema colore su chiaro" -#: src/view/screens/Settings/index.tsx:449 +#: src/view/screens/Settings/index.tsx:450 msgid "Sets color theme to system setting" msgstr "Imposta il tema colore basato impostazioni di sistema" -#: src/view/screens/Settings/index.tsx:488 +#: src/view/screens/Settings/index.tsx:489 msgid "Sets dark theme to the dark theme" msgstr "Imposta il tema scuro sul tema scuro" -#: src/view/screens/Settings/index.tsx:481 +#: src/view/screens/Settings/index.tsx:482 msgid "Sets dark theme to the dim theme" msgstr "Imposta il tema scuro sul tema semi fosco" @@ -5913,11 +5990,11 @@ msgstr "Imposta l'amplio sulle proporzioni dell'immagine" #~ msgid "Sets server for the Bluesky client" #~ msgstr "Imposta il server per il client Bluesky" -#: src/Navigation.tsx:150 -#: src/view/screens/Settings/index.tsx:333 +#: src/Navigation.tsx:153 +#: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:559 -#: src/view/shell/Drawer.tsx:560 +#: src/view/shell/Drawer.tsx:549 +#: src/view/shell/Drawer.tsx:550 msgid "Settings" msgstr "Impostazioni" @@ -5929,19 +6006,19 @@ msgstr "Attività sessuale o nudità erotica." msgid "Sexually Suggestive" msgstr "Sessualmente suggestivo" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:177 #: src/screens/StarterPack/StarterPackScreen.tsx:400 #: src/screens/StarterPack/StarterPackScreen.tsx:571 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 #: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Condividi" -#: src/view/com/lightbox/Lightbox.tsx:144 +#: src/view/com/lightbox/Lightbox.tsx:148 msgctxt "action" msgid "Share" msgstr "Condividi" @@ -5955,18 +6032,18 @@ msgid "Share a fun fact!" msgstr "Condividi un fatto divertente!" #: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:464 #: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "Condividi comunque" -#: src/view/screens/ProfileFeed.tsx:359 -#: src/view/screens/ProfileFeed.tsx:361 +#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:362 msgid "Share feed" msgstr "Condividi il feed" -#: src/components/StarterPack/ShareDialog.tsx:123 -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 #: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -5976,12 +6053,12 @@ msgstr "" msgid "Share Link" msgstr "Condividi il link" -#: src/components/StarterPack/ShareDialog.tsx:87 +#: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:134 -#: src/components/StarterPack/ShareDialog.tsx:145 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "" @@ -5989,7 +6066,7 @@ msgstr "" msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:99 +#: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5997,6 +6074,10 @@ msgstr "" msgid "Share your favorite feed!" msgstr "Condividi il tuo feed preferito!" +#: src/Navigation.tsx:242 +msgid "Shared Preferences Tester" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" msgstr "Condivide il sito Web nel link" @@ -6004,14 +6085,14 @@ msgstr "Condivide il sito Web nel link" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:382 +#: src/view/screens/Settings/index.tsx:383 msgid "Show" msgstr "Mostra" #~ msgid "Show all replies" #~ msgstr "Mostra tutte le repliche" -#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +#: src/view/com/util/post-embeds/GifEmbed.tsx:175 msgid "Show alt text" msgstr "Mostra testo alternativo" @@ -6040,19 +6121,19 @@ msgstr "Mostra follows simile a {0}" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#: src/view/com/util/forms/PostDropdownBtn.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:349 +#: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" msgstr "Mostra meno come questo" #: src/view/com/post-thread/PostThreadItem.tsx:530 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:396 +#: src/view/com/post/Post.tsx:235 +#: src/view/com/posts/FeedItem.tsx:410 msgid "Show More" msgstr "Mostra di più" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 -#: src/view/com/util/forms/PostDropdownBtn.tsx:340 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:343 msgid "Show more like this" msgstr "" @@ -6060,11 +6141,11 @@ msgstr "" msgid "Show muted replies" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:257 +#: src/view/screens/PreferencesFollowingFeed.tsx:256 msgid "Show Posts from My Feeds" msgstr "Mostra post dai miei feed" -#: src/view/screens/PreferencesFollowingFeed.tsx:221 +#: src/view/screens/PreferencesFollowingFeed.tsx:220 msgid "Show Quote Posts" msgstr "Mostra post con citazioni" @@ -6080,11 +6161,11 @@ msgstr "Mostra post con citazioni" #~ msgid "Show re-posts in Following feed" #~ msgstr "Mostra re-post nel feed Seguiti" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:117 msgid "Show Replies" msgstr "Mostra risposte" -#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:94 msgid "Show replies by people you follow before all other replies." msgstr "Mostra le risposte delle persone che segui prima delle altre risposte." @@ -6099,7 +6180,7 @@ msgstr "Mostra le risposte delle persone che segui prima delle altre risposte." #~ msgid "Show replies with at least {value} {0}" #~ msgstr "Mostra risposte con almeno {value} {0}" -#: src/view/screens/PreferencesFollowingFeed.tsx:187 +#: src/view/screens/PreferencesFollowingFeed.tsx:186 msgid "Show Reposts" msgstr "Mostra ripubblicazioni" @@ -6174,8 +6255,8 @@ msgstr "Accedi o crea il tuo account per partecipare alla conversazione!" msgid "Sign into Bluesky or create a new account" msgstr "Accedi a Bluesky o crea un nuovo account" -#: src/view/screens/Settings/index.tsx:129 -#: src/view/screens/Settings/index.tsx:133 +#: src/view/screens/Settings/index.tsx:130 +#: src/view/screens/Settings/index.tsx:134 msgid "Sign out" msgstr "Disconnetta" @@ -6200,7 +6281,7 @@ msgstr "Iscriviti o accedi per partecipare alla conversazione" msgid "Sign-in Required" msgstr "È richiesta l'autenticazione" -#: src/view/screens/Settings/index.tsx:392 +#: src/view/screens/Settings/index.tsx:393 msgid "Signed in as" msgstr "Registrato/a come" @@ -6209,15 +6290,15 @@ msgstr "Registrato/a come" msgid "Signed in as @{0}" msgstr "Registrato/a come @{0}" -#: src/view/com/notifications/FeedItem.tsx:208 +#: src/view/com/notifications/FeedItem.tsx:209 msgid "signed up with your starter pack" msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "{0} esce da Bluesky" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 msgid "Signup without a starter pack" msgstr "" @@ -6238,7 +6319,7 @@ msgstr "Salta questa corrente" msgid "Software Dev" msgstr "Sviluppo Software" -#: src/components/FeedInterstitials.tsx:378 +#: src/components/FeedInterstitials.tsx:382 msgid "Some other feeds you might like" msgstr "" @@ -6269,26 +6350,31 @@ msgstr "" msgid "Something went wrong, please try again." msgstr "Qualcosa è andato male, prova di nuovo." +#: src/components/Lists.tsx:192 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "" + #~ msgid "Something went wrong. Check your email and try again." #~ msgstr "Qualcosa è andato storto. Controlla la tua email e riprova." -#: src/App.native.tsx:98 -#: src/App.web.tsx:80 +#: src/App.native.tsx:99 +#: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "Scusa! La tua sessione è scaduta. Per favore accedi di nuovo." -#: src/view/screens/PreferencesThreads.tsx:69 +#: src/view/screens/PreferencesThreads.tsx:63 msgid "Sort Replies" msgstr "Ordina le risposte" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:66 msgid "Sort replies to the same post by:" msgstr "Ordina le risposte allo stesso post per:" #~ msgid "Source:" #~ msgstr "Origine:" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" msgstr "Fonte: <0>{0}" @@ -6313,7 +6399,7 @@ msgstr "Quadrato" #~ msgid "Staging" #~ msgstr "Allestimento" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:63 msgid "Start a new chat" msgstr "Avvia una nuova conversazione" @@ -6330,8 +6416,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:328 -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:341 +#: src/Navigation.tsx:346 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -6355,7 +6441,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Pagina di stato" -#: src/view/screens/Settings/index.tsx:964 +#: src/view/screens/Settings/index.tsx:965 msgid "Status Page" msgstr "Pagina di stato" @@ -6369,17 +6455,17 @@ msgstr "Step {0} di {1}" #~ msgid "Step {0} of {numSteps}" #~ msgstr "Passo {0} di {numSteps}" -#: src/view/screens/Settings/index.tsx:305 +#: src/view/screens/Settings/index.tsx:306 msgid "Storage cleared, you need to restart the app now." msgstr "Spazio di archiviazione eliminato. Riavvia l'app." -#: src/Navigation.tsx:229 -#: src/view/screens/Settings/index.tsx:864 +#: src/Navigation.tsx:232 +#: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "Cronologia" -#: src/components/moderation/LabelsOnMeDialog.tsx:290 -#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/components/moderation/LabelsOnMeDialog.tsx:311 +#: src/components/moderation/LabelsOnMeDialog.tsx:312 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -6402,7 +6488,7 @@ msgstr "Iscriviti a Labeler" #~ msgid "Subscribe to the {0} feed" #~ msgstr "Iscriviti a {0} feed" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 msgid "Subscribe to this labeler" msgstr "Iscriviti a questo labeler" @@ -6410,7 +6496,7 @@ msgstr "Iscriviti a questo labeler" msgid "Subscribe to this list" msgstr "Iscriviti alla lista" -#: src/view/screens/Search/Explore.tsx:331 +#: src/view/screens/Search/Explore.tsx:333 msgid "Suggested accounts" msgstr "" @@ -6418,7 +6504,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "Accounts da seguire" -#: src/components/FeedInterstitials.tsx:246 +#: src/components/FeedInterstitials.tsx:250 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Suggerito per te" @@ -6427,7 +6513,7 @@ msgstr "Suggerito per te" msgid "Suggestive" msgstr "Suggestivo" -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:252 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6445,19 +6531,19 @@ msgstr "Cambia account" msgid "Switch between feeds to control your experience." msgstr "" -#: src/view/screens/Settings/index.tsx:160 +#: src/view/screens/Settings/index.tsx:161 msgid "Switch to {0}" msgstr "Cambia a {0}" -#: src/view/screens/Settings/index.tsx:161 +#: src/view/screens/Settings/index.tsx:162 msgid "Switches the account you are logged in to" msgstr "Cambia l'account dal quale hai effettuato l'accesso" -#: src/view/screens/Settings/index.tsx:446 +#: src/view/screens/Settings/index.tsx:447 msgid "System" msgstr "Sistema" -#: src/view/screens/Settings/index.tsx:852 +#: src/view/screens/Settings/index.tsx:853 msgid "System log" msgstr "Registro di sistema" @@ -6506,11 +6592,11 @@ msgstr "" msgid "Terms" msgstr "Termini" -#: src/Navigation.tsx:254 +#: src/Navigation.tsx:262 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:952 +#: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:279 +#: src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "Termini di servizio" @@ -6525,13 +6611,13 @@ msgstr "I termini utilizzati violano gli standard della comunità" msgid "text" msgstr "testo" -#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/components/moderation/LabelsOnMeDialog.tsx:275 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Campo di testo" #: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:93 msgid "Thank you. Your report has been sent." msgstr "Grazie. La tua segnalazione è stata inviata." @@ -6573,19 +6659,19 @@ msgstr "La politica sul copyright è stata spostata a <0/>" msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322 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:66 +#: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." msgstr "Questo feed è stato sostituito con Discover." -#: src/components/moderation/LabelsOnMeDialog.tsx:65 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your account." msgstr "Al tuo account sono state applicate le seguenti etichette." -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:67 msgid "The following labels were applied to your content." msgstr "Ai tuoi contenuti sono state applicate le seguenti etichette." @@ -6625,8 +6711,8 @@ msgstr "I Termini di Servizio sono stati spostati a" msgid "There is no time limit for account deactivation, come back any time." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 -#: src/view/screens/ProfileFeed.tsx:544 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 +#: src/view/screens/ProfileFeed.tsx:545 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Si è verificato un problema nel contattare il server, controlla la tua connessione Internet e riprova." @@ -6635,7 +6721,7 @@ msgid "There was an an issue removing this feed. Please check your internet conn msgstr "Si è verificato un problema durante la rimozione di questo feed. Per favore controlla la tua connessione Internet e prova di nuovo." #: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Si è verificato un problema durante la rimozione di questo feed. Per favore controlla la tua connessione Internet e prova di nuovo." @@ -6649,7 +6735,7 @@ msgstr "Si è verificato un problema durante la connessione a Tenor." #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:234 +#: src/view/screens/ProfileFeed.tsx:235 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6663,7 +6749,7 @@ msgstr "Si è verificato un problema durante il contatto con il server" msgid "There was an issue contacting your server" msgstr "Si è verificato un problema durante il contatto con il tuo server" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:130 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." @@ -6681,7 +6767,7 @@ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Si è verificato un problema durante il recupero delle tue liste. Tocca qui per riprovare." #: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:82 +#: src/components/ReportDialog/SubmitView.tsx:98 msgid "There was an issue sending your report. Please check your internet connection." msgstr "Si è verificato un problema durante l'invio della segnalazione. Per favore controlla la tua connessione Internet." @@ -6747,7 +6833,7 @@ msgstr "Questo account ha richiesto agli utenti di accedere Bluesky per visualiz 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 "Questo account è bloccato da uno o più appartenente alle tue liste di moderazione. Per sbloccare, visista le liste direttamente e rimuovi l'utente." -#: src/components/moderation/LabelsOnMeDialog.tsx:239 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 msgid "This appeal will be sent to <0>{0}." msgstr "Questo ricorso verrà inviato a <0>{0}." @@ -6806,12 +6892,12 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Questo feed è vuoto! Prova a seguire più utenti o ottimizza le impostazioni della lingua." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:473 +#: src/view/screens/ProfileFeed.tsx:474 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" -#: src/view/com/posts/FeedShutdownMsg.tsx:97 +#: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Questo feed non è più online. Stiamo mostrando <0>Discover al suo posto." @@ -6837,7 +6923,7 @@ msgstr "Questa etichetta è stata applicata da <0>{0}." msgid "This label was applied by the author." msgstr "Questa etichetta è stata applicata dall'autore." -#: src/components/moderation/LabelsOnMeDialog.tsx:166 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." msgstr "Questa etichetta è stata applicata da te." @@ -6865,12 +6951,12 @@ msgstr "Questo nome è già in uso" msgid "This post has been deleted." msgstr "Questo post è stato cancellato." -#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 #: src/view/com/util/post-ctrls/PostCtrls.tsx:324 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Questo post è visibile solo agli utenti registrati. Non sarà visibile alle persone che non hanno effettuato l'accesso." -#: src/view/com/util/forms/PostDropdownBtn.tsx:440 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "This post will be hidden from feeds." msgstr "Questo post verrà nascosto dai feed." @@ -6938,12 +7024,12 @@ msgstr "Questo eliminerà {0} dalle parole disattivate. Puoi sempre aggiungerla #~ msgid "This will hide this post from your feeds." #~ msgstr "Questo nasconderà il post dai tuoi feed." -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Thread preferences" msgstr "Preferenze delle discussioni" -#: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/PreferencesThreads.tsx:51 +#: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "Preferenze delle Discussioni" @@ -6951,11 +7037,11 @@ msgstr "Preferenze delle Discussioni" msgid "Thread settings updated" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:119 +#: src/view/screens/PreferencesThreads.tsx:113 msgid "Threaded Mode" msgstr "Modalità discussione" -#: src/Navigation.tsx:287 +#: src/Navigation.tsx:295 msgid "Threads Preferences" msgstr "Preferenze per le discussioni" @@ -6996,8 +7082,8 @@ msgstr "Trasformazioni" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:676 #: src/view/com/post-thread/PostThreadItem.tsx:678 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 -#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "Tradurre" @@ -7013,7 +7099,7 @@ msgstr "Riprova" msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:746 +#: src/view/screens/Settings/index.tsx:747 msgid "Two-factor authentication" msgstr "Autenticazione a due fattori" @@ -7107,7 +7193,7 @@ msgstr "Smetti di seguire questo account" #~ msgid "Unlike" #~ msgstr "Togli Mi piace" -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Unlike this feed" msgstr "Togli il like a questo feed" @@ -7133,17 +7219,17 @@ msgstr "Riattiva tutti i post di {displayTag}" msgid "Unmute conversation" msgstr "Riattiva conversazione" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:367 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Unmute thread" msgstr "Riattiva questa discussione" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Stacca dal profilo" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 msgid "Unpin from home" msgstr "Stacca dalla Home" @@ -7162,7 +7248,7 @@ msgstr "Sblocca dai tuoi feed" msgid "Unsubscribe" msgstr "Annulla l'iscrizione" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Unsubscribe from this labeler" msgstr "Annulla l'iscrizione a questo/a labeler" @@ -7194,20 +7280,20 @@ msgstr "Alternativamente carica una foto" msgid "Upload a text file to:" msgstr "Carica una file di testo a:" -#: src/view/com/util/UserAvatar.tsx:352 -#: src/view/com/util/UserAvatar.tsx:355 +#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Carica dalla fotocamera" -#: src/view/com/util/UserAvatar.tsx:369 +#: src/view/com/util/UserAvatar.tsx:381 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Carica dai Files" -#: src/view/com/util/UserAvatar.tsx:363 -#: src/view/com/util/UserAvatar.tsx:367 +#: src/view/com/util/UserAvatar.tsx:375 +#: src/view/com/util/UserAvatar.tsx:379 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -7247,7 +7333,7 @@ msgstr "Usa consigliati" msgid "Use the DNS panel" msgstr "Utilizza il pannello DNS" -#: src/view/com/modals/AddAppPasswords.tsx:205 +#: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." msgstr "Utilizza questo per accedere all'altra app insieme al tuo nome utente." @@ -7321,7 +7407,7 @@ msgstr "Nome utente o indirizzo Email" msgid "Users" msgstr "Utenti" -#: src/components/WhoCanReply.tsx:279 +#: src/components/WhoCanReply.tsx:280 msgid "users followed by <0/>" msgstr "utenti seguiti da <0/>" @@ -7354,15 +7440,15 @@ msgstr "Valore:" msgid "Verify DNS Record" msgstr "Verifica record DNS" -#: src/view/screens/Settings/index.tsx:983 +#: src/view/screens/Settings/index.tsx:984 msgid "Verify email" msgstr "Verifica Email" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Verify my email" msgstr "Verifica la mia email" -#: src/view/screens/Settings/index.tsx:1017 +#: src/view/screens/Settings/index.tsx:1018 msgid "Verify My Email" msgstr "Verifica la Mia Email" @@ -7382,7 +7468,7 @@ msgstr "Verifica la tua email" #~ msgid "Version {0}" #~ msgstr "Versione {0}" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Version {appVersion} {bundleInfo}" msgstr "Versione {appVersion} {bundleInfo}" @@ -7391,11 +7477,15 @@ msgstr "Versione {appVersion} {bundleInfo}" msgid "Video Games" msgstr "Video Games" +#: src/view/com/composer/videos/state.ts:27 +msgid "Videos cannot be larger than 100MB" +msgstr "" + #: src/screens/Profile/Header/Shell.tsx:113 msgid "View {0}'s avatar" msgstr "Vedi l'avatar di {0}" -#: src/view/com/notifications/FeedItem.tsx:245 +#: src/view/com/notifications/FeedItem.tsx:246 msgid "View {0}'s profile" msgstr "" @@ -7427,7 +7517,7 @@ msgstr "Visualizza le informazioni su queste etichette" #: src/components/ProfileHoverCard/index.web.tsx:436 #: src/components/ProfileHoverCard/index.web.tsx:463 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "Vedi il profilo" @@ -7439,7 +7529,7 @@ msgstr "Vedi l'avatar" msgid "View the labeling service provided by @{0}" msgstr "Visualizza il servizio di etichettatura fornito da @{0}" -#: src/view/screens/ProfileFeed.tsx:585 +#: src/view/screens/ProfileFeed.tsx:587 msgid "View users who like this feed" msgstr "Visualizza gli utenti a cui piace questo feed" @@ -7541,7 +7631,7 @@ msgstr "Siamo spiacenti, ma al momento non siamo riusciti a caricare le parole s msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Siamo spiacenti, ma non è stato possibile completare la ricerca. Riprova tra qualche minuto." -#: src/view/com/composer/Composer.tsx:335 +#: src/view/com/composer/Composer.tsx:347 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -7554,7 +7644,7 @@ msgstr "Ci dispiace! Non riusciamo a trovare la pagina che stavi cercando." #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "Ci dispiace! Puoi abbonarti solo a dieci etichettatori e hai raggiunto il limite di dieci." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "" @@ -7585,7 +7675,7 @@ msgstr "" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:376 +#: src/view/com/composer/Composer.tsx:388 msgid "What's up?" msgstr "Come va?" @@ -7602,15 +7692,15 @@ msgstr "Quali lingue vorresti vedere negli algoritmi dei tuoi feed?" msgid "Who can message you?" msgstr "Chi puoi inviarti messaggi?" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Who can reply" msgstr "Chi può rispondere" -#: src/components/WhoCanReply.tsx:211 +#: src/components/WhoCanReply.tsx:212 msgid "Who can reply dialog" msgstr "" -#: src/components/WhoCanReply.tsx:215 +#: src/components/WhoCanReply.tsx:216 msgid "Who can reply?" msgstr "" @@ -7656,11 +7746,11 @@ msgstr "Largo" msgid "Write a message" msgstr "Scrivi un messaggio" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:580 msgid "Write post" msgstr "Scrivi un post" -#: src/view/com/composer/Composer.tsx:375 +#: src/view/com/composer/Composer.tsx:387 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Scrivi la tua risposta" @@ -7674,12 +7764,12 @@ msgstr "Scrittori" #~ msgstr "XXXXXX" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:200 -#: src/view/screens/PreferencesFollowingFeed.tsx:235 -#: src/view/screens/PreferencesFollowingFeed.tsx:270 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:199 +#: src/view/screens/PreferencesFollowingFeed.tsx:234 +#: src/view/screens/PreferencesFollowingFeed.tsx:269 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "Yes" msgstr "Si" @@ -7696,7 +7786,7 @@ msgstr "" msgid "Yes, reactivate my account" msgstr "" -#: src/components/dms/MessageItem.tsx:188 +#: src/components/dms/MessageItem.tsx:182 msgid "Yesterday, {time}" msgstr "Ieri, {time}" @@ -7856,19 +7946,19 @@ msgstr "" msgid "You haven't muted any words or tags yet" msgstr "Non hai ancora silenziato nessuna parola o tag" -#: src/components/moderation/LabelsOnMeDialog.tsx:86 +#: src/components/moderation/LabelsOnMeDialog.tsx:87 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Ti puoi appellare alle etichette se pensi che sia stata applicata per errore." -#: src/components/moderation/LabelsOnMeDialog.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:92 msgid "You may appeal these labels if you feel they were placed in error." msgstr "Puoi presentare ricorso contro queste etichette se ritieni che siano state inserite per errore." -#: src/screens/StarterPack/Wizard/State.tsx:92 +#: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 50 feeds" msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:77 +#: src/screens/StarterPack/Wizard/State.tsx:78 msgid "You may only add up to 50 profiles" msgstr "" @@ -7895,7 +7985,7 @@ msgstr "" msgid "You must grant access to your photo library to save the image." msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:205 +#: src/components/ReportDialog/SubmitView.tsx:222 msgid "You must select at least one labeler for a report" msgstr "È necessario selezionare almeno un'etichettatore per un report" @@ -7935,15 +8025,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272 msgid "You'll stay updated with these feeds" msgstr "" @@ -8051,7 +8141,7 @@ msgstr "Le tue parole silenziate" msgid "Your password has been changed successfully!" msgstr "La tua password è stata modificata correttamente!" -#: src/view/com/composer/Composer.tsx:366 +#: src/view/com/composer/Composer.tsx:378 msgid "Your post has been published" msgstr "Il tuo post è stato pubblicato" @@ -8059,7 +8149,7 @@ msgstr "Il tuo post è stato pubblicato" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "I tuoi post, i tuoi Mi piace e i tuoi blocchi sono pubblici. I conti silenziati sono privati." -#: src/view/screens/Settings/index.tsx:148 +#: src/view/screens/Settings/index.tsx:149 msgid "Your profile" msgstr "Il tuo profilo" @@ -8067,7 +8157,7 @@ msgstr "Il tuo profilo" 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:365 +#: src/view/com/composer/Composer.tsx:377 msgid "Your reply has been published" msgstr "La tua risposta è stata pubblicata" diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po index 35c161c162..e5ea1427ec 100644 --- a/src/locale/locales/ja/messages.po +++ b/src/locale/locales/ja/messages.po @@ -21,7 +21,7 @@ msgstr "(埋め込みコンテンツあり)" msgid "(no email)" msgstr "(メールがありません)" -#: src/view/com/notifications/FeedItem.tsx:294 +#: src/view/com/notifications/FeedItem.tsx:297 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, other {他{formattedCount}人}}" @@ -76,7 +76,7 @@ msgstr "{0, plural, other {リポスト}}" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, other {いいねを外す(#個のいいね)}}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "今週、{0}人が参加しました" @@ -84,7 +84,7 @@ msgstr "今週、{0}人が参加しました" msgid "{0} people have used this starter pack!" msgstr "{0}人がこのスターターパックを使用しました!" -#: src/view/com/util/UserAvatar.tsx:419 +#: src/view/com/util/UserAvatar.tsx:431 msgid "{0}'s avatar" msgstr "{0}のアバター" @@ -132,7 +132,7 @@ msgstr "{estimatedTimeHrs, plural, other {時間}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, other {分}}" -#: src/components/ProfileHoverCard/index.web.tsx:504 +#: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} フォロー" @@ -143,11 +143,11 @@ msgstr "{handle}にメッセージを送れません" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:588 +#: src/view/screens/ProfileFeed.tsx:590 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, other {#人のユーザーがいいね}}" -#: src/view/shell/Drawer.tsx:462 +#: src/view/shell/Drawer.tsx:452 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications}件の未読" @@ -163,7 +163,7 @@ msgstr "{profileName}はスターターパックを使って{0}前に参加し msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "{value, plural, =0 {すべての返信を表示} other {#個以上のいいねがついた返信を表示}}" -#: src/components/WhoCanReply.tsx:295 +#: src/components/WhoCanReply.tsx:296 msgid "<0/> members" msgstr "<0/>のメンバー" @@ -177,11 +177,11 @@ msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}、<1>{1}、そして{2, plural, other {他#フィード}}があなたのスターターパックに含まれています" -#: src/view/shell/Drawer.tsx:101 +#: src/view/shell/Drawer.tsx:100 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, other {フォロワー}}" -#: src/view/shell/Drawer.tsx:112 +#: src/view/shell/Drawer.tsx:111 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, other {フォロー}}" @@ -223,22 +223,22 @@ msgid "Access profile and other navigation links" msgstr "プロフィールと他のナビゲーションリンクにアクセス" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:519 +#: src/view/screens/Settings/index.tsx:520 msgid "Accessibility" msgstr "アクセシビリティ" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Accessibility settings" msgstr "アクセシビリティの設定" -#: src/Navigation.tsx:301 +#: src/Navigation.tsx:309 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "アクセシビリティの設定" #: src/screens/Login/LoginForm.tsx:190 -#: src/view/screens/Settings/index.tsx:346 -#: src/view/screens/Settings/index.tsx:753 +#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:754 msgid "Account" msgstr "アカウント" @@ -285,7 +285,7 @@ msgid "Account unmuted" msgstr "アカウントのミュートを解除しました" #: src/components/dialogs/MutedWords.tsx:164 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 msgid "Add" @@ -309,8 +309,8 @@ msgstr "リストにユーザーを追加" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:423 -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:433 msgid "Add account" msgstr "アカウントを追加" @@ -366,7 +366,7 @@ msgstr "リストに追加" msgid "Add to my feeds" msgstr "マイフィードに追加" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "リストに追加" @@ -375,7 +375,7 @@ msgstr "リストに追加" msgid "Added to my feeds" msgstr "マイフィードに追加" -#: src/view/screens/PreferencesFollowingFeed.tsx:172 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "返信がフィードに表示されるために必要ないいねの数を調整します。" @@ -393,7 +393,7 @@ msgid "Adult content is disabled." msgstr "成人向けコンテンツは無効になっています。" #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:687 +#: src/view/screens/Settings/index.tsx:688 msgid "Advanced" msgstr "高度な設定" @@ -409,8 +409,8 @@ msgstr "すべてのアカウントをフォローしました!" msgid "All the feeds you've saved, right in one place." msgstr "保存したすべてのフィードを1箇所にまとめます。" -#: src/view/com/modals/AddAppPasswords.tsx:187 -#: src/view/com/modals/AddAppPasswords.tsx:194 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "ダイレクトメッセージへのアクセスを許可" @@ -430,7 +430,7 @@ msgstr "@{0}としてすでにサインイン済み" #: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "ALT" msgstr "ALT" @@ -440,7 +440,7 @@ msgstr "ALT" msgid "Alt text" msgstr "ALTテキスト" -#: src/view/com/util/post-embeds/GifEmbed.tsx:180 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Alt Text" msgstr "ALTテキスト" @@ -465,8 +465,8 @@ msgstr "エラーが発生しました" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "スターターパックの生成中にエラーが発生しました。再度試しますか?" -#: src/components/StarterPack/QrCodeDialog.tsx:70 -#: src/components/StarterPack/ShareDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the QR code!" msgstr "QRコードの保存中にエラーが発生しました!" @@ -488,8 +488,8 @@ msgstr "チャットを開始しようとした時に問題が発生しました #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:309 -#: src/components/ProfileCard.tsx:329 +#: src/components/ProfileCard.tsx:311 +#: src/components/ProfileCard.tsx:331 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -501,8 +501,8 @@ msgstr "問題が発生しました。もう一度お試しください。" msgid "an unknown error occurred" msgstr "何らかのエラーが発生しました" -#: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:291 +#: src/components/WhoCanReply.tsx:317 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "および" @@ -511,7 +511,7 @@ msgstr "および" msgid "Animals" msgstr "動物" -#: src/view/com/util/post-embeds/GifEmbed.tsx:146 +#: src/view/com/util/post-embeds/GifEmbed.tsx:155 msgid "Animated GIF" msgstr "アニメーションGIF" @@ -535,26 +535,26 @@ msgstr "アプリパスワードの名前には、英数字、スペース、ハ msgid "App Password names must be at least 4 characters long." msgstr "アプリパスワードの名前は長さが4文字以上である必要があります。" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "App password settings" msgstr "アプリパスワードの設定" -#: src/Navigation.tsx:269 +#: src/Navigation.tsx:277 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:707 +#: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" msgstr "アプリパスワード" -#: src/components/moderation/LabelsOnMeDialog.tsx:151 -#: src/components/moderation/LabelsOnMeDialog.tsx:154 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "異議を申し立てる" -#: src/components/moderation/LabelsOnMeDialog.tsx:236 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Appeal \"{0}\" label" msgstr "「{0}」のラベルに異議を申し立てる" -#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/components/moderation/LabelsOnMeDialog.tsx:248 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "異議申し立てを提出しました" @@ -566,7 +566,7 @@ msgstr "異議申し立てを提出しました" msgid "Appeal this decision" msgstr "この決定に異議を申し立てる" -#: src/view/screens/Settings/index.tsx:440 +#: src/view/screens/Settings/index.tsx:441 msgid "Appearance" msgstr "背景" @@ -599,7 +599,7 @@ msgstr "あなたのフィードから{0}を削除してもよろしいですか msgid "Are you sure you want to remove this from your feeds?" msgstr "本当にこのフィードをあなたのフィードから削除したいですか?" -#: src/view/com/composer/Composer.tsx:649 +#: src/view/com/composer/Composer.tsx:680 msgid "Are you sure you'd like to discard this draft?" msgstr "本当にこの下書きを破棄しますか?" @@ -625,8 +625,8 @@ msgid "At least 3 characters" msgstr "少なくとも3文字" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:281 -#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/components/moderation/LabelsOnMeDialog.tsx:302 +#: src/components/moderation/LabelsOnMeDialog.tsx:303 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -639,13 +639,12 @@ msgstr "少なくとも3文字" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "戻る" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Basics" msgstr "基本" @@ -653,7 +652,7 @@ msgstr "基本" msgid "Birthday" msgstr "生年月日" -#: src/view/screens/Settings/index.tsx:378 +#: src/view/screens/Settings/index.tsx:379 msgid "Birthday:" msgstr "生年月日:" @@ -697,7 +696,7 @@ msgstr "ブロックされています" msgid "Blocked accounts" msgstr "ブロック中のアカウント" -#: src/Navigation.tsx:145 +#: src/Navigation.tsx:148 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "ブロック中のアカウント" @@ -764,21 +763,21 @@ msgstr "画像のぼかしとフィードからのフィルタリング" msgid "Books" msgstr "書籍" -#: src/components/FeedInterstitials.tsx:281 +#: src/components/FeedInterstitials.tsx:285 msgid "Browse more accounts on the Explore page" msgstr "検索ページでさらにアカウントを見る" -#: src/components/FeedInterstitials.tsx:411 +#: src/components/FeedInterstitials.tsx:415 msgid "Browse more feeds on the Explore page" msgstr "検索ページでさらにフィードを見る" -#: src/components/FeedInterstitials.tsx:266 -#: src/components/FeedInterstitials.tsx:396 +#: src/components/FeedInterstitials.tsx:270 +#: src/components/FeedInterstitials.tsx:400 msgid "Browse more suggestions" msgstr "さらにおすすめを見る" -#: src/components/FeedInterstitials.tsx:289 -#: src/components/FeedInterstitials.tsx:420 +#: src/components/FeedInterstitials.tsx:293 +#: src/components/FeedInterstitials.tsx:424 msgid "Browse more suggestions on the Explore page" msgstr "検索ページでさらにおすすめを見る" @@ -815,7 +814,7 @@ msgstr "作成者:あなた" msgid "Camera" msgstr "カメラ" -#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "英数字、スペース、ハイフン、アンダースコアのみが使用可能です。長さは4文字以上32文字以下である必要があります。" @@ -824,8 +823,8 @@ msgstr "英数字、スペース、ハイフン、アンダースコアのみが #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:451 -#: src/view/com/composer/Composer.tsx:457 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -843,7 +842,7 @@ msgstr "英数字、スペース、ハイフン、アンダースコアのみが #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:139 #: src/view/screens/Search/Search.tsx:704 -#: src/view/shell/desktop/Search.tsx:218 +#: src/view/shell/desktop/Search.tsx:219 msgid "Cancel" msgstr "キャンセル" @@ -879,8 +878,8 @@ msgstr "引用をキャンセル" msgid "Cancel reactivation and log out" msgstr "再有効化をキャンセルしてログアウト" -#: src/view/com/modals/ListAddRemoveUsers.tsx:87 -#: src/view/shell/desktop/Search.tsx:214 +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "検索をキャンセル" @@ -892,17 +891,17 @@ msgstr "リンク先のウェブサイトを開くことをキャンセル" msgid "Change" msgstr "変更" -#: src/view/screens/Settings/index.tsx:372 +#: src/view/screens/Settings/index.tsx:373 msgctxt "action" msgid "Change" msgstr "変更" -#: src/view/screens/Settings/index.tsx:719 +#: src/view/screens/Settings/index.tsx:720 msgid "Change handle" msgstr "ハンドルを変更" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:730 +#: src/view/screens/Settings/index.tsx:731 msgid "Change Handle" msgstr "ハンドルを変更" @@ -910,12 +909,12 @@ msgstr "ハンドルを変更" msgid "Change my email" msgstr "メールアドレスを変更" -#: src/view/screens/Settings/index.tsx:764 +#: src/view/screens/Settings/index.tsx:765 msgid "Change password" msgstr "パスワードを変更" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:775 +#: src/view/screens/Settings/index.tsx:776 msgid "Change Password" msgstr "パスワードを変更" @@ -927,7 +926,7 @@ msgstr "投稿の言語を{0}に変更します" msgid "Change Your Email" msgstr "メールアドレスを変更" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:321 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -939,14 +938,14 @@ msgstr "チャットをミュートしました" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:326 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" msgstr "チャットの設定" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:648 +#: src/view/screens/Settings/index.tsx:649 msgid "Chat Settings" msgstr "チャットの設定" @@ -1008,19 +1007,19 @@ msgstr "誰が返信できるかを選択" msgid "Choose your password" msgstr "パスワードを入力" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clear all legacy storage data" msgstr "レガシーストレージデータをすべてクリア" -#: src/view/screens/Settings/index.tsx:914 +#: src/view/screens/Settings/index.tsx:915 msgid "Clear all legacy storage data (restart after this)" msgstr "すべてのレガシーストレージデータをクリア(このあと再起動します)" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clear all storage data" msgstr "すべてのストレージデータをクリア" -#: src/view/screens/Settings/index.tsx:926 +#: src/view/screens/Settings/index.tsx:927 msgid "Clear all storage data (restart after this)" msgstr "すべてのストレージデータをクリア(このあと再起動します)" @@ -1029,11 +1028,11 @@ msgstr "すべてのストレージデータをクリア(このあと再起動 msgid "Clear search query" msgstr "検索クエリをクリア" -#: src/view/screens/Settings/index.tsx:912 +#: src/view/screens/Settings/index.tsx:913 msgid "Clears all legacy storage data" msgstr "すべてのレガシーストレージデータをクリア" -#: src/view/screens/Settings/index.tsx:924 +#: src/view/screens/Settings/index.tsx:925 msgid "Clears all storage data" msgstr "すべてのストレージデータをクリア" @@ -1053,7 +1052,7 @@ msgstr "詳しい情報についてはここをクリック。" msgid "Click here to open tag menu for {tag}" msgstr "{tag}のタグメニューをクリックして表示" -#: src/components/dms/MessageItem.tsx:237 +#: src/components/dms/MessageItem.tsx:231 msgid "Click to retry failed message" msgstr "送信失敗したメッセージを再送信" @@ -1074,7 +1073,7 @@ msgstr "パカラッ 🐴 パカラッ 🐴" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/util/post-embeds/GifEmbed.tsx:195 msgid "Close" msgstr "閉じる" @@ -1129,7 +1128,7 @@ msgstr "下部のナビゲーションバーを閉じる" msgid "Closes password update alert" msgstr "パスワード更新アラートを閉じる" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:472 msgid "Closes post composer and discards post draft" msgstr "投稿の編集画面を閉じて下書きを削除する" @@ -1137,11 +1136,11 @@ msgstr "投稿の編集画面を閉じて下書きを削除する" msgid "Closes viewer for header image" msgstr "ヘッダー画像のビューワーを閉じる" -#: src/view/com/notifications/FeedItem.tsx:237 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Collapse list of users" msgstr "ユーザーリストを折りたたむ" -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:440 msgid "Collapses list of users for a given notification" msgstr "指定した通知のユーザーリストを折りたたむ" @@ -1155,7 +1154,7 @@ msgstr "コメディー" msgid "Comics" msgstr "漫画" -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:267 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "コミュニティーガイドライン" @@ -1168,7 +1167,7 @@ msgstr "初期設定を完了してアカウントを使い始める" msgid "Complete the challenge" msgstr "テストをクリアしてください" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:582 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "{MAX_GRAPHEME_LENGTH}文字までの投稿を作成" @@ -1189,8 +1188,6 @@ msgstr "<0>モデレーションの設定で設定されています。" #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/PreferencesFollowingFeed.tsx:307 -#: src/view/screens/PreferencesThreads.tsx:159 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 msgid "Confirm" @@ -1295,12 +1292,12 @@ msgstr "会話が削除されました" msgid "Cooking" msgstr "料理" -#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "コピーしました" -#: src/view/screens/Settings/index.tsx:264 +#: src/view/screens/Settings/index.tsx:265 msgid "Copied build version to clipboard" msgstr "ビルドバージョンをクリップボードにコピーしました" @@ -1308,7 +1305,7 @@ msgstr "ビルドバージョンをクリップボードにコピーしました #: src/view/com/modals/AddAppPasswords.tsx:80 #: src/view/com/modals/ChangeHandle.tsx:320 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:189 +#: src/view/com/util/forms/PostDropdownBtn.tsx:192 #: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "クリップボードにコピーしました" @@ -1317,12 +1314,12 @@ msgstr "クリップボードにコピーしました" msgid "Copied!" msgstr "コピーしました!" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" msgstr "アプリパスワードをコピーします" -#: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/view/com/modals/AddAppPasswords.tsx:213 +#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "コピー" @@ -1335,11 +1332,11 @@ msgstr "{0}をコピー" msgid "Copy code" msgstr "コードをコピー" -#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" msgstr "リンクをコピー" -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" msgstr "リンクをコピー" @@ -1347,8 +1344,8 @@ msgstr "リンクをコピー" msgid "Copy link to list" msgstr "リストへのリンクをコピー" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 msgid "Copy link to post" msgstr "投稿へのリンクをコピー" @@ -1357,16 +1354,16 @@ msgstr "投稿へのリンクをコピー" msgid "Copy message text" msgstr "メッセージのテキストをコピー" -#: src/view/com/util/forms/PostDropdownBtn.tsx:285 -#: src/view/com/util/forms/PostDropdownBtn.tsx:287 +#: src/view/com/util/forms/PostDropdownBtn.tsx:288 +#: src/view/com/util/forms/PostDropdownBtn.tsx:290 msgid "Copy post text" msgstr "投稿のテキストをコピー" -#: src/components/StarterPack/QrCodeDialog.tsx:168 +#: src/components/StarterPack/QrCodeDialog.tsx:171 msgid "Copy QR code" msgstr "QRコードをコピー" -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:272 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "著作権ポリシー" @@ -1400,17 +1397,17 @@ msgstr "作成" msgid "Create a new account" msgstr "新しいアカウントを作成" -#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:425 msgid "Create a new Bluesky account" msgstr "新しいBlueskyアカウントを作成" -#: src/components/StarterPack/QrCodeDialog.tsx:151 +#: src/components/StarterPack/QrCodeDialog.tsx:154 msgid "Create a QR code for a starter pack" msgstr "スターターパックのQRコードを作成" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:351 msgid "Create a starter pack" msgstr "スターターパックを作成" @@ -1435,7 +1432,7 @@ msgstr "代わりにアバターを作成" msgid "Create another" msgstr "別のものを作成" -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" msgstr "アプリパスワードを作成" @@ -1467,7 +1464,7 @@ msgid "Custom domain" msgstr "カスタムドメイン" #: src/view/screens/Feeds.tsx:760 -#: src/view/screens/Search/Explore.tsx:390 +#: src/view/screens/Search/Explore.tsx:392 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "コミュニティーによって作成されたカスタムフィードは、あなたに新しい体験をもたらし、あなたが好きなコンテンツを見つけるのに役立ちます。" @@ -1475,8 +1472,8 @@ msgstr "コミュニティーによって作成されたカスタムフィード msgid "Customize media from external sites." msgstr "外部サイトのメディアをカスタマイズします。" -#: src/view/screens/Settings/index.tsx:459 -#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:460 +#: src/view/screens/Settings/index.tsx:486 msgid "Dark" msgstr "ダーク" @@ -1484,7 +1481,7 @@ msgstr "ダーク" msgid "Dark mode" msgstr "ダークモード" -#: src/view/screens/Settings/index.tsx:472 +#: src/view/screens/Settings/index.tsx:473 msgid "Dark Theme" msgstr "ダークテーマ" @@ -1493,15 +1490,15 @@ msgid "Date of birth" msgstr "生年月日" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:807 +#: src/view/screens/Settings/index.tsx:808 msgid "Deactivate account" msgstr "アカウントを無効化" -#: src/view/screens/Settings/index.tsx:819 +#: src/view/screens/Settings/index.tsx:820 msgid "Deactivate my account" msgstr "アカウントを無効化" -#: src/view/screens/Settings/index.tsx:874 +#: src/view/screens/Settings/index.tsx:875 msgid "Debug Moderation" msgstr "モデレーションをデバッグ" @@ -1513,13 +1510,13 @@ msgstr "デバッグパネル" #: src/screens/StarterPack/StarterPackScreen.tsx:562 #: src/screens/StarterPack/StarterPackScreen.tsx:641 #: src/screens/StarterPack/StarterPackScreen.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "削除" -#: src/view/screens/Settings/index.tsx:829 +#: src/view/screens/Settings/index.tsx:830 msgid "Delete account" msgstr "アカウントを削除" @@ -1535,8 +1532,8 @@ msgstr "アプリパスワードを削除" msgid "Delete app password?" msgstr "アプリパスワードを削除しますか?" -#: src/view/screens/Settings/index.tsx:891 -#: src/view/screens/Settings/index.tsx:894 +#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:895 msgid "Delete chat declaration record" msgstr "チャットの宣言レコードを削除" @@ -1560,12 +1557,12 @@ msgstr "メッセージの宛先から自分を削除" msgid "Delete my account" msgstr "アカウントを削除" -#: src/view/screens/Settings/index.tsx:841 +#: src/view/screens/Settings/index.tsx:842 msgid "Delete My Account…" msgstr "アカウントを削除…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:414 -#: src/view/com/util/forms/PostDropdownBtn.tsx:416 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 +#: src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "投稿を削除" @@ -1582,7 +1579,7 @@ msgstr "スターターパックを削除しますか?" msgid "Delete this list?" msgstr "このリストを削除しますか?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:428 +#: src/view/com/util/forms/PostDropdownBtn.tsx:431 msgid "Delete this post?" msgstr "この投稿を削除しますか?" @@ -1594,7 +1591,7 @@ msgstr "削除されています" msgid "Deleted post." msgstr "投稿を削除しました。" -#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:893 msgid "Deletes the chat declaration record" msgstr "チャットの宣言レコードを削除する" @@ -1609,11 +1606,11 @@ msgstr "説明" msgid "Descriptive alt text" msgstr "説明的なALTテキスト" -#: src/view/com/composer/Composer.tsx:283 +#: src/view/com/composer/Composer.tsx:295 msgid "Did you want to say anything?" msgstr "なにか言いたいことはあった?" -#: src/view/screens/Settings/index.tsx:478 +#: src/view/screens/Settings/index.tsx:479 msgid "Dim" msgstr "グレー" @@ -1642,11 +1639,11 @@ msgstr "触覚フィードバックを無効化" msgid "Disabled" msgstr "無効" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:682 msgid "Discard" msgstr "破棄" -#: src/view/com/composer/Composer.tsx:648 +#: src/view/com/composer/Composer.tsx:679 msgid "Discard draft?" msgstr "下書きを削除しますか?" @@ -1664,7 +1661,7 @@ msgstr "Discoverは閲覧中にどの投稿が好みなのかを学習します msgid "Discover new custom feeds" msgstr "新しいカスタムフィードを見つける" -#: src/view/screens/Search/Explore.tsx:388 +#: src/view/screens/Search/Explore.tsx:390 msgid "Discover new feeds" msgstr "新しいフィードを探す" @@ -1717,22 +1714,20 @@ msgstr "ドメインを確認しました!" #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesFollowingFeed.tsx:310 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "完了" #: src/view/com/modals/EditImage.tsx:334 -#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" msgstr "完了" @@ -1741,7 +1736,7 @@ msgstr "完了" msgid "Done{extraText}" msgstr "完了{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319 msgid "Download Bluesky" msgstr "Blueskyをダウンロード" @@ -1807,7 +1802,7 @@ msgctxt "action" msgid "Edit" msgstr "編集" -#: src/view/com/util/UserAvatar.tsx:325 +#: src/view/com/util/UserAvatar.tsx:337 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "アバターを編集" @@ -1829,7 +1824,7 @@ msgstr "リストの詳細を編集" msgid "Edit Moderation List" msgstr "モデレーションリストを編集" -#: src/Navigation.tsx:274 +#: src/Navigation.tsx:282 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -1844,12 +1839,12 @@ msgstr "マイプロフィールを編集" msgid "Edit People" msgstr "ユーザーを編集" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "プロフィールを編集" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "プロフィールを編集" @@ -1862,7 +1857,7 @@ msgstr "スターターパックを編集" msgid "Edit User List" msgstr "ユーザーリストを編集" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Edit who can reply" msgstr "誰が返信できるのかを編集" @@ -1874,7 +1869,7 @@ msgstr "あなたの表示名を編集します" msgid "Edit your profile description" msgstr "あなたのプロフィールの説明を編集します" -#: src/Navigation.tsx:343 +#: src/Navigation.tsx:356 msgid "Edit your starter pack" msgstr "スターターパックを編集" @@ -1913,7 +1908,7 @@ msgstr "メールアドレスは更新されました" msgid "Email verified" msgstr "メールアドレスは認証されました" -#: src/view/screens/Settings/index.tsx:350 +#: src/view/screens/Settings/index.tsx:351 msgid "Email:" msgstr "メールアドレス:" @@ -1922,8 +1917,8 @@ msgid "Embed HTML code" msgstr "HTMLコードを埋め込む" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:324 -#: src/view/com/util/forms/PostDropdownBtn.tsx:326 +#: src/view/com/util/forms/PostDropdownBtn.tsx:327 +#: src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "投稿を埋め込む" @@ -1944,11 +1939,16 @@ msgstr "成人向けコンテンツを有効にする" msgid "Enable external media" msgstr "外部メディアを有効にする" -#: src/view/screens/PreferencesExternalEmbeds.tsx:76 +#: src/view/screens/PreferencesExternalEmbeds.tsx:73 msgid "Enable media players for" msgstr "有効にするメディアプレイヤー" -#: src/view/screens/PreferencesFollowingFeed.tsx:146 +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 msgid "Enable this setting to only see replies between people you follow." msgstr "この設定を有効にすると、自分がフォローしているユーザーからの返信だけが表示されます。" @@ -1970,7 +1970,7 @@ msgstr "フィードの終わり" msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." msgstr "オンボーディングツアー・ウインドウ終了。先へ進まないでください。代わりに、戻って他のオプションを見るか、スキップしてください。" -#: src/view/com/modals/AddAppPasswords.tsx:160 +#: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "このアプリパスワードの名前を入力" @@ -2038,7 +2038,7 @@ msgid "Everybody" msgstr "全員" #: src/components/WhoCanReply.tsx:69 -#: src/components/WhoCanReply.tsx:240 +#: src/components/WhoCanReply.tsx:241 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "誰でも返信可能" @@ -2074,8 +2074,8 @@ msgstr "画像の切り抜き処理を終了" msgid "Exits image view" msgstr "画像表示を終了" -#: src/view/com/modals/ListAddRemoveUsers.tsx:88 -#: src/view/shell/desktop/Search.tsx:215 +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +#: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "検索クエリの入力を終了" @@ -2083,7 +2083,7 @@ msgstr "検索クエリの入力を終了" msgid "Expand alt text" msgstr "ALTテキストを展開" -#: src/view/com/notifications/FeedItem.tsx:238 +#: src/view/com/notifications/FeedItem.tsx:239 msgid "Expand list of users" msgstr "ユーザーリストを展開" @@ -2092,6 +2092,10 @@ msgstr "ユーザーリストを展開" msgid "Expand or collapse the full post you are replying to" msgstr "返信する投稿全体を展開または折りたたむ" +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." msgstr "露骨な、または不愉快になる可能性のあるメディア。" @@ -2100,12 +2104,12 @@ msgstr "露骨な、または不愉快になる可能性のあるメディア。 msgid "Explicit sexual images." msgstr "露骨な性的画像。" -#: src/view/screens/Settings/index.tsx:787 +#: src/view/screens/Settings/index.tsx:788 msgid "Export my data" msgstr "私のデータをエクスポートする" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:798 +#: src/view/screens/Settings/index.tsx:799 msgid "Export My Data" msgstr "私のデータをエクスポートする" @@ -2115,17 +2119,17 @@ msgid "External Media" msgstr "外部メディア" #: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/view/screens/PreferencesExternalEmbeds.tsx:64 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:293 +#: src/Navigation.tsx:301 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:680 +#: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" msgstr "外部メディアの設定" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "External media settings" msgstr "外部メディアの設定" @@ -2155,8 +2159,8 @@ msgstr "投稿の削除に失敗しました。もう一度お試しください msgid "Failed to delete starter pack" msgstr "スターターパックの削除に失敗しました" -#: src/view/screens/Search/Explore.tsx:426 -#: src/view/screens/Search/Explore.tsx:454 +#: src/view/screens/Search/Explore.tsx:428 +#: src/view/screens/Search/Explore.tsx:456 msgid "Failed to load feeds preferences" msgstr "フィードの設定の読み込みに失敗しました" @@ -2169,29 +2173,33 @@ msgstr "GIFの読み込みに失敗しました" msgid "Failed to load past messages" msgstr "過去のメッセージの読み込みに失敗しました" -#: src/view/screens/Search/Explore.tsx:419 -#: src/view/screens/Search/Explore.tsx:447 +#: src/view/screens/Search/Explore.tsx:421 +#: src/view/screens/Search/Explore.tsx:449 msgid "Failed to load suggested feeds" msgstr "おすすめのフィードの読み込みに失敗しました" -#: src/view/screens/Search/Explore.tsx:377 +#: src/view/screens/Search/Explore.tsx:379 msgid "Failed to load suggested follows" msgstr "おすすめのフォローの読み込みに失敗しました" -#: src/view/com/lightbox/Lightbox.tsx:86 +#: src/view/com/lightbox/Lightbox.tsx:90 msgid "Failed to save image: {0}" msgstr "画像の保存に失敗しました:{0}" -#: src/components/dms/MessageItem.tsx:230 +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + +#: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "送信に失敗" -#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: src/components/moderation/LabelsOnMeDialog.tsx:244 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "異議申し立ての送信に失敗しました。再度試してください。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:181 msgid "Failed to toggle thread mute, please try again" msgstr "スレッドのミュートの切り替えに失敗しました。再度試してください" @@ -2204,7 +2212,7 @@ msgstr "フィードの更新に失敗しました" msgid "Failed to update settings" msgstr "設定の更新に失敗しました" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:217 msgid "Feed" msgstr "フィード" @@ -2218,19 +2226,19 @@ msgid "Feed toggle" msgstr "フィードの切替" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:345 +#: src/view/shell/Drawer.tsx:332 msgid "Feedback" msgstr "フィードバック" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:336 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 #: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:493 -#: src/view/shell/Drawer.tsx:494 +#: src/view/shell/Drawer.tsx:483 +#: src/view/shell/Drawer.tsx:484 msgid "Feeds" msgstr "フィード" @@ -2272,11 +2280,11 @@ msgstr "検索ページでフォローすべきフィードやアカウントを msgid "Find posts and users on Bluesky" msgstr "投稿やユーザーをBlueskyで検索" -#: src/view/screens/PreferencesFollowingFeed.tsx:110 +#: src/view/screens/PreferencesFollowingFeed.tsx:108 msgid "Fine-tune the content you see on your Following feed." msgstr "Followingフィードに表示されるコンテンツを調整します。" -#: src/view/screens/PreferencesThreads.tsx:60 +#: src/view/screens/PreferencesThreads.tsx:54 msgid "Fine-tune the discussion threads." msgstr "ディスカッションスレッドを微調整します。" @@ -2306,7 +2314,7 @@ msgid "Flip vertically" msgstr "垂直方向に反転" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:341 +#: src/components/ProfileCard.tsx:343 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2347,23 +2355,23 @@ msgstr "すべてフォロー" msgid "Follow Back" msgstr "フォローバック" -#: src/view/screens/Search/Explore.tsx:333 +#: src/view/screens/Search/Explore.tsx:335 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "もっとたくさんのアカウントをフォローして、興味あることにつながり、ネットワークを広げましょう。" -#: src/components/KnownFollowers.tsx:223 +#: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "<0>{0}がフォロー中" -#: src/components/KnownFollowers.tsx:209 +#: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "<0>{0}および{1, plural, other {他#人}}がフォロー中" -#: src/components/KnownFollowers.tsx:196 +#: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" msgstr "<0>{0}と<1>{1}がフォロー中" -#: src/components/KnownFollowers.tsx:178 +#: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0}、<1>{1}および{2, plural, other {他#人}}がフォロー中" @@ -2371,15 +2379,15 @@ msgstr "<0>{0}、<1>{1}および{2, plural, other {他#人}}がフォロ msgid "Followed users" msgstr "自分がフォローしているユーザー" -#: src/view/screens/PreferencesFollowingFeed.tsx:153 +#: src/view/screens/PreferencesFollowingFeed.tsx:152 msgid "Followed users only" msgstr "自分がフォローしているユーザーのみ" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:198 msgid "followed you" msgstr "があなたをフォローしました" -#: src/view/com/notifications/FeedItem.tsx:195 +#: src/view/com/notifications/FeedItem.tsx:196 msgid "followed you back" msgstr "があなたをフォローバックしました" @@ -2388,7 +2396,7 @@ msgstr "があなたをフォローバックしました" msgid "Followers" msgstr "フォロワー" -#: src/Navigation.tsx:182 +#: src/Navigation.tsx:185 msgid "Followers of @{0} that you know" msgstr "あなたが知っている@{0}のフォロワー" @@ -2398,7 +2406,7 @@ msgid "Followers you know" msgstr "あなたが知っているフォロワー" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:335 +#: src/components/ProfileCard.tsx:337 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2410,7 +2418,7 @@ msgstr "あなたが知っているフォロワー" msgid "Following" msgstr "フォロー中" -#: src/components/ProfileCard.tsx:301 +#: src/components/ProfileCard.tsx:303 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "{0}をフォローしています" @@ -2419,13 +2427,13 @@ msgstr "{0}をフォローしています" msgid "Following {name}" msgstr "{name}をフォローしています" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Following feed preferences" msgstr "Followingフィードの設定" -#: src/Navigation.tsx:280 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:583 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesFollowingFeed.tsx:105 +#: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "Followingフィードの設定" @@ -2450,7 +2458,7 @@ msgstr "食べ物" msgid "For security reasons, we'll need to send a confirmation code to your email address." msgstr "セキュリティ上の理由から、あなたのメールアドレスに確認コードを送信する必要があります。" -#: src/view/com/modals/AddAppPasswords.tsx:232 +#: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "セキュリティ上の理由から、これを再度表示することはできません。このパスワードを紛失した場合は、新しいパスワードを生成する必要があります。" @@ -2475,7 +2483,7 @@ msgstr "望ましくないコンテンツを頻繁に投稿" msgid "From @{sanitizedAuthor}" msgstr "@{sanitizedAuthor}による" -#: src/view/com/posts/FeedItem.tsx:236 +#: src/view/com/posts/FeedItem.tsx:242 msgctxt "from-feed" msgid "From <0/>" msgstr "<0/>から" @@ -2540,7 +2548,7 @@ msgstr "戻る" #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/components/ReportDialog/SubmitView.tsx:121 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 @@ -2600,7 +2608,7 @@ msgstr "触覚フィードバック" msgid "Harassment, trolling, or intolerance" msgstr "嫌がらせ、荒らし、不寛容" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:316 msgid "Hashtag" msgstr "ハッシュタグ" @@ -2613,7 +2621,7 @@ msgid "Having trouble?" msgstr "なにか問題が発生しましたか?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:355 +#: src/view/shell/Drawer.tsx:345 msgid "Help" msgstr "ヘルプ" @@ -2621,7 +2629,7 @@ msgstr "ヘルプ" msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "画像をアップロードするかアバターを作ってあなたがbotではないことをみんなに知らせましょう。" -#: src/view/com/modals/AddAppPasswords.tsx:203 +#: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "アプリパスワードをお知らせします。" @@ -2632,17 +2640,17 @@ msgstr "アプリパスワードをお知らせします。" #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:445 msgid "Hide" msgstr "非表示" -#: src/view/com/notifications/FeedItem.tsx:444 +#: src/view/com/notifications/FeedItem.tsx:447 msgctxt "action" msgid "Hide" msgstr "非表示" -#: src/view/com/util/forms/PostDropdownBtn.tsx:387 -#: src/view/com/util/forms/PostDropdownBtn.tsx:389 +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 msgid "Hide post" msgstr "投稿を非表示" @@ -2651,11 +2659,11 @@ msgstr "投稿を非表示" msgid "Hide the content" msgstr "コンテンツを非表示" -#: src/view/com/util/forms/PostDropdownBtn.tsx:439 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide this post?" msgstr "この投稿を非表示にしますか?" -#: src/view/com/notifications/FeedItem.tsx:435 +#: src/view/com/notifications/FeedItem.tsx:438 msgid "Hide user list" msgstr "ユーザーリストを非表示" @@ -2687,12 +2695,12 @@ msgstr "このデータの読み込みに問題があるようです。詳細は msgid "Hmmmm, we couldn't load that moderation service." msgstr "そのモデレーションサービスを読み込めませんでした。" -#: src/Navigation.tsx:519 -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:552 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:425 -#: src/view/shell/Drawer.tsx:426 +#: src/view/shell/Drawer.tsx:415 +#: src/view/shell/Drawer.tsx:416 msgid "Home" msgstr "ホーム" @@ -2746,7 +2754,7 @@ msgstr "あなたがお住いの国の法律においてまだ成人していな msgid "If you delete this list, you won't be able to recover it." msgstr "このリストを削除すると、復元できなくなります。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 msgid "If you remove this post, you won't be able to recover it." msgstr "この投稿を削除すると、復元できなくなります。" @@ -2770,7 +2778,7 @@ msgstr "画像" msgid "Image alt text" msgstr "画像のALTテキスト" -#: src/components/StarterPack/ShareDialog.tsx:75 +#: src/components/StarterPack/ShareDialog.tsx:76 msgid "Image saved to your camera roll!" msgstr "画像をカメラロールに保存しました!" @@ -2790,7 +2798,7 @@ msgstr "パスワードをリセットするためにあなたのメールアド msgid "Input confirmation code for account deletion" msgstr "アカウント削除のために確認コードを入力" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" msgstr "アプリパスワードの名前を入力" @@ -2859,7 +2867,7 @@ msgstr "招待コード:{0}個使用可能" msgid "Invite codes: 1 available" msgstr "招待コード:1個使用可能" -#: src/components/StarterPack/ShareDialog.tsx:96 +#: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" msgstr "このスターターパックにユーザーを招待!" @@ -2879,8 +2887,8 @@ msgstr "今はあなただけ!上で検索してスターターパックによ msgid "Jobs" msgstr "仕事" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:432 #: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" @@ -2911,11 +2919,11 @@ msgstr "ラベル" 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:79 +#: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "あなたのアカウントのラベル" -#: src/components/moderation/LabelsOnMeDialog.tsx:81 +#: src/components/moderation/LabelsOnMeDialog.tsx:82 msgid "Labels on your content" msgstr "あなたのコンテンツのラベル" @@ -2923,16 +2931,16 @@ msgstr "あなたのコンテンツのラベル" msgid "Language selection" msgstr "言語の選択" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Language settings" msgstr "言語の設定" -#: src/Navigation.tsx:155 +#: src/Navigation.tsx:158 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "言語の設定" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Languages" msgstr "言語" @@ -2992,7 +3000,7 @@ msgstr "Blueskyから離れる" msgid "left to go." msgstr "あと少しです。" -#: src/view/screens/Settings/index.tsx:309 +#: src/view/screens/Settings/index.tsx:310 msgid "Legacy storage cleared, you need to restart the app now." msgstr "レガシーストレージがクリアされたため、今すぐアプリを再起動する必要があります。" @@ -3010,7 +3018,7 @@ msgstr "パスワードをリセットしましょう!" msgid "Let's go!" msgstr "さあ始めましょう!" -#: src/view/screens/Settings/index.tsx:453 +#: src/view/screens/Settings/index.tsx:454 msgid "Light" msgstr "ライト" @@ -3024,13 +3032,13 @@ msgid "Like 10 posts to train the Discover feed" msgstr "Discoverフィードを訓練するために10投稿をいいねする" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Like this feed" msgstr "このフィードをいいね" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:219 -#: src/Navigation.tsx:224 +#: src/Navigation.tsx:222 +#: src/Navigation.tsx:227 msgid "Liked by" msgstr "いいねしたユーザー" @@ -3040,11 +3048,11 @@ msgstr "いいねしたユーザー" msgid "Liked By" msgstr "いいねしたユーザー" -#: src/view/com/notifications/FeedItem.tsx:201 +#: src/view/com/notifications/FeedItem.tsx:202 msgid "liked your custom feed" msgstr "があなたのカスタムフィードをいいねしました" -#: src/view/com/notifications/FeedItem.tsx:185 +#: src/view/com/notifications/FeedItem.tsx:186 msgid "liked your post" msgstr "があなたの投稿をいいねしました" @@ -3056,7 +3064,7 @@ msgstr "いいね" msgid "Likes on this post" msgstr "この投稿をいいねする" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:191 msgid "List" msgstr "リスト" @@ -3093,12 +3101,12 @@ msgstr "リストのブロックを解除しました" msgid "List unmuted" msgstr "リストのミュートを解除しました" -#: src/Navigation.tsx:125 +#: src/Navigation.tsx:128 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 -#: src/view/shell/Drawer.tsx:509 -#: src/view/shell/Drawer.tsx:510 +#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:500 msgid "Lists" msgstr "リスト" @@ -3106,25 +3114,25 @@ msgstr "リスト" msgid "Lists blocking this user:" msgstr "このユーザーをブロックしているリスト:" -#: src/view/screens/Search/Explore.tsx:130 +#: src/view/screens/Search/Explore.tsx:131 msgid "Load more" msgstr "さらに読み込む" -#: src/view/screens/Search/Explore.tsx:218 +#: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" msgstr "おすすめのフィードをさらに読み込む" -#: src/view/screens/Search/Explore.tsx:216 +#: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" msgstr "おすすめのフォローをさらに読み込む" -#: src/view/screens/Notifications.tsx:184 +#: src/view/screens/Notifications.tsx:219 msgid "Load new notifications" msgstr "最新の通知を読み込む" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:494 +#: src/view/screens/ProfileFeed.tsx:495 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "最新の投稿を読み込む" @@ -3133,7 +3141,7 @@ msgstr "最新の投稿を読み込む" msgid "Loading..." msgstr "読み込み中…" -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:247 msgid "Log" msgstr "ログ" @@ -3199,7 +3207,7 @@ msgstr "既読にする" msgid "Media" msgstr "メディア" -#: src/components/WhoCanReply.tsx:275 +#: src/components/WhoCanReply.tsx:276 msgid "mentioned users" msgstr "メンションされたユーザー" @@ -3221,7 +3229,7 @@ msgstr "{0}へメッセージを送る" msgid "Message deleted" msgstr "メッセージは削除されました" -#: src/view/com/posts/FeedErrorMessage.tsx:200 +#: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "サーバーからのメッセージ:{0}" @@ -3238,7 +3246,7 @@ msgstr "メッセージが長すぎます" msgid "Message settings" msgstr "メッセージの設定" -#: src/Navigation.tsx:534 +#: src/Navigation.tsx:547 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3249,9 +3257,9 @@ msgstr "メッセージ" msgid "Misleading Account" msgstr "誤解を招くアカウント" -#: src/Navigation.tsx:130 +#: src/Navigation.tsx:133 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:562 +#: src/view/screens/Settings/index.tsx:563 msgid "Moderation" msgstr "モデレーション" @@ -3287,16 +3295,16 @@ msgstr "モデレーションリストを更新しました" msgid "Moderation lists" msgstr "モデレーションリスト" -#: src/Navigation.tsx:135 +#: src/Navigation.tsx:138 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "モデレーションリスト" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Moderation settings" msgstr "モデレーションの設定" -#: src/Navigation.tsx:234 +#: src/Navigation.tsx:237 msgid "Moderation states" msgstr "モデレーションのステータス" @@ -3321,7 +3329,7 @@ msgstr "その他のフィード" msgid "More options" msgstr "その他のオプション" -#: src/view/screens/PreferencesThreads.tsx:82 +#: src/view/screens/PreferencesThreads.tsx:76 msgid "Most-liked replies first" msgstr "いいねの数が多い順に返信を表示" @@ -3383,13 +3391,13 @@ msgstr "投稿のテキストやタグでこのワードをミュート" msgid "Mute this word in tags only" msgstr "タグのみでこのワードをミュート" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:371 msgid "Mute thread" msgstr "スレッドをミュート" -#: src/view/com/util/forms/PostDropdownBtn.tsx:378 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 +#: src/view/com/util/forms/PostDropdownBtn.tsx:381 +#: src/view/com/util/forms/PostDropdownBtn.tsx:383 msgid "Mute words & tags" msgstr "ワードとタグをミュート" @@ -3401,7 +3409,7 @@ msgstr "ミュートされています" msgid "Muted accounts" msgstr "ミュート中のアカウント" -#: src/Navigation.tsx:140 +#: src/Navigation.tsx:143 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "ミュート中のアカウント" @@ -3435,15 +3443,15 @@ msgstr "マイフィード" msgid "My Profile" msgstr "マイプロフィール" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "My saved feeds" msgstr "保存されたフィード" -#: src/view/screens/Settings/index.tsx:623 +#: src/view/screens/Settings/index.tsx:624 msgid "My Saved Feeds" msgstr "保存されたフィード" -#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/AddAppPasswords.tsx:174 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "名前" @@ -3478,7 +3486,7 @@ msgstr "スターターパックへ移動します" msgid "Navigates to the next screen" msgstr "次の画面に移動します" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:78 msgid "Navigates to your profile" msgstr "あなたのプロフィールに移動します" @@ -3503,7 +3511,7 @@ msgstr "新規" msgid "New" msgstr "新規" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" @@ -3531,9 +3539,9 @@ msgid "New post" msgstr "新しい投稿" #: src/view/screens/Feeds.tsx:581 -#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Notifications.tsx:228 #: src/view/screens/Profile.tsx:478 -#: src/view/screens/ProfileFeed.tsx:428 +#: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:278 @@ -3553,7 +3561,7 @@ msgstr "新しいユーザー情報ダイアログ" msgid "New User List" msgstr "新しいユーザーリスト" -#: src/view/screens/PreferencesThreads.tsx:79 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Newest replies first" msgstr "新しい順に返信を表示" @@ -3583,16 +3591,16 @@ msgstr "次へ" msgid "Next image" msgstr "次の画像" -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:199 -#: src/view/screens/PreferencesFollowingFeed.tsx:234 -#: src/view/screens/PreferencesFollowingFeed.tsx:271 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:198 +#: src/view/screens/PreferencesFollowingFeed.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:270 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "No" msgstr "いいえ" -#: src/view/screens/ProfileFeed.tsx:562 +#: src/view/screens/ProfileFeed.tsx:564 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "説明はありません" @@ -3610,7 +3618,7 @@ msgstr "おすすめのGIFが見つかりません。Tenorに問題があるか msgid "No feeds found. Try searching for something else." msgstr "フィードが見つかりませんでした。他を探してみて。" -#: src/components/ProfileCard.tsx:321 +#: src/components/ProfileCard.tsx:323 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "{0}のフォローを解除しました" @@ -3627,7 +3635,7 @@ msgstr "メッセージはありません" msgid "No more conversations to show" msgstr "これ以上表示できる会話はありません" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:122 msgid "No notifications yet!" msgstr "お知らせはありません!" @@ -3659,7 +3667,7 @@ msgstr "結果は見つかりません" msgid "No results found for \"{query}\"" msgstr "「{query}」の検索結果はありません" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 @@ -3697,7 +3705,7 @@ msgstr "誰も見つかりませんでした。他を探してみて。" msgid "Non-sexual Nudity" msgstr "性的ではないヌード" -#: src/Navigation.tsx:120 +#: src/Navigation.tsx:123 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "見つかりません" @@ -3708,7 +3716,7 @@ msgid "Not right now" msgstr "今はしない" #: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/forms/PostDropdownBtn.tsx:459 #: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "共有についての注意事項" @@ -3721,6 +3729,19 @@ msgstr "注記:Blueskyはオープンでパブリックなネットワーク msgid "Nothing here" msgstr "何もありません" +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:331 +#: src/view/screens/Notifications.tsx:119 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "" + #: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "通知音" @@ -3729,13 +3750,14 @@ msgstr "通知音" msgid "Notification Sounds" msgstr "通知音" -#: src/Navigation.tsx:529 -#: src/view/screens/Notifications.tsx:132 -#: src/view/screens/Notifications.tsx:169 +#: src/Navigation.tsx:542 +#: src/view/screens/Notifications.tsx:145 +#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:203 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 -#: src/view/shell/Drawer.tsx:457 -#: src/view/shell/Drawer.tsx:458 +#: src/view/shell/Drawer.tsx:447 +#: src/view/shell/Drawer.tsx:448 msgid "Notifications" msgstr "通知" @@ -3743,7 +3765,7 @@ msgstr "通知" msgid "now" msgstr "今" -#: src/components/dms/MessageItem.tsx:175 +#: src/components/dms/MessageItem.tsx:169 msgid "Now" msgstr "今" @@ -3769,7 +3791,7 @@ msgstr "ちょっと!" msgid "Oh no! Something went wrong." msgstr "ちょっと!なにかがおかしいです。" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 msgid "OK" msgstr "OK" @@ -3777,7 +3799,7 @@ msgstr "OK" msgid "Okay" msgstr "OK" -#: src/view/screens/PreferencesThreads.tsx:78 +#: src/view/screens/PreferencesThreads.tsx:72 msgid "Oldest replies first" msgstr "古い順に返信を表示" @@ -3789,7 +3811,7 @@ msgstr "on" msgid "on {str}" msgstr "{str}" -#: src/view/screens/Settings/index.tsx:257 +#: src/view/screens/Settings/index.tsx:258 msgid "Onboarding reset" msgstr "オンボーディングのリセット" @@ -3797,7 +3819,7 @@ msgstr "オンボーディングのリセット" msgid "Onboarding tour step {0}: {1}" msgstr "オンボーディングツアー ステップ {0}:{1}" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:534 msgid "One or more images is missing alt text." msgstr "1つもしくは複数の画像にALTテキストがありません。" @@ -3805,7 +3827,7 @@ msgstr "1つもしくは複数の画像にALTテキストがありません。 msgid "Only .jpg and .png files are supported" msgstr ".jpgと.pngファイルのみに対応しています" -#: src/components/WhoCanReply.tsx:244 +#: src/components/WhoCanReply.tsx:245 msgid "Only {0} can reply" msgstr "{0}のみ返信可能" @@ -3821,6 +3843,7 @@ msgstr "おっと、なにかが間違っているようです!" #: src/components/StarterPack/ProfileStarterPacks.tsx:304 #: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/NotificationsSettings.tsx:45 #: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "おっと!" @@ -3842,16 +3865,16 @@ msgstr "アバター・クリエイターを開く" msgid "Open conversation options" msgstr "会話のオプションを開く" -#: src/view/com/composer/Composer.tsx:632 -#: src/view/com/composer/Composer.tsx:633 +#: src/view/com/composer/Composer.tsx:663 +#: src/view/com/composer/Composer.tsx:664 msgid "Open emoji picker" msgstr "絵文字を入力" -#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileFeed.tsx:297 msgid "Open feed options menu" msgstr "フィードの設定メニューを開く" -#: src/view/screens/Settings/index.tsx:737 +#: src/view/screens/Settings/index.tsx:738 msgid "Open links with in-app browser" msgstr "アプリ内ブラウザーでリンクを開く" @@ -3867,7 +3890,7 @@ msgstr "ミュートしたワードとタグの設定を開く" msgid "Open navigation" msgstr "ナビゲーションを開く" -#: src/view/com/util/forms/PostDropdownBtn.tsx:247 +#: src/view/com/util/forms/PostDropdownBtn.tsx:250 msgid "Open post options menu" msgstr "投稿のオプションを開く" @@ -3875,12 +3898,12 @@ msgstr "投稿のオプションを開く" msgid "Open starter pack menu" msgstr "スターターパックのメニューを開く" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Open storybook page" msgstr "絵本のページを開く" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Open system log" msgstr "システムのログを開く" @@ -3892,7 +3915,7 @@ msgstr "{numItems}個のオプションを開く" msgid "Opens a dialog to choose who can reply to this thread" msgstr "このスレッドに誰が返信できるかを選択するダイアログを開く" -#: src/view/screens/Settings/index.tsx:511 +#: src/view/screens/Settings/index.tsx:512 msgid "Opens accessibility settings" msgstr "アクセシビリティの設定を開く" @@ -3904,7 +3927,7 @@ msgstr "デバッグエントリーの追加詳細を開く" msgid "Opens camera on device" msgstr "デバイスのカメラを開く" -#: src/view/screens/Settings/index.tsx:640 +#: src/view/screens/Settings/index.tsx:641 msgid "Opens chat settings" msgstr "チャットの設定を開く" @@ -3912,7 +3935,7 @@ msgstr "チャットの設定を開く" msgid "Opens composer" msgstr "編集画面を開く" -#: src/view/screens/Settings/index.tsx:532 +#: src/view/screens/Settings/index.tsx:533 msgid "Opens configurable language settings" msgstr "構成可能な言語設定を開く" @@ -3920,7 +3943,7 @@ msgstr "構成可能な言語設定を開く" msgid "Opens device photo gallery" msgstr "デバイスのフォトギャラリーを開く" -#: src/view/screens/Settings/index.tsx:672 +#: src/view/screens/Settings/index.tsx:673 msgid "Opens external embeds settings" msgstr "外部コンテンツの埋め込みの設定を開く" @@ -3942,27 +3965,27 @@ msgstr "GIFの選択のダイアログを開く" msgid "Opens list of invite codes" msgstr "招待コードのリストを開く" -#: src/view/screens/Settings/index.tsx:809 +#: src/view/screens/Settings/index.tsx:810 msgid "Opens modal for account deactivation confirmation" msgstr "アカウント無効化の確認のモーダルを開く" -#: src/view/screens/Settings/index.tsx:831 +#: src/view/screens/Settings/index.tsx:832 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "アカウントの削除確認用のモーダルを開きます。メールアドレスのコードが必要です" -#: src/view/screens/Settings/index.tsx:766 +#: src/view/screens/Settings/index.tsx:767 msgid "Opens modal for changing your Bluesky password" msgstr "Blueskyのパスワードを変更するためのモーダルを開く" -#: src/view/screens/Settings/index.tsx:721 +#: src/view/screens/Settings/index.tsx:722 msgid "Opens modal for choosing a new Bluesky handle" msgstr "新しいBlueskyのハンドルを選択するためのモーダルを開く" -#: src/view/screens/Settings/index.tsx:789 +#: src/view/screens/Settings/index.tsx:790 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Blueskyのアカウントのデータ(リポジトリ)をダウンロードするためのモーダルを開く" -#: src/view/screens/Settings/index.tsx:1009 +#: src/view/screens/Settings/index.tsx:1010 msgid "Opens modal for email verification" msgstr "メールアドレスの認証のためのモーダルを開く" @@ -3970,7 +3993,7 @@ msgstr "メールアドレスの認証のためのモーダルを開く" msgid "Opens modal for using custom domain" msgstr "カスタムドメインを使用するためのモーダルを開く" -#: src/view/screens/Settings/index.tsx:557 +#: src/view/screens/Settings/index.tsx:558 msgid "Opens moderation settings" msgstr "モデレーションの設定を開く" @@ -3978,15 +4001,15 @@ msgstr "モデレーションの設定を開く" msgid "Opens password reset form" msgstr "パスワードリセットのフォームを開く" -#: src/view/screens/Settings/index.tsx:618 +#: src/view/screens/Settings/index.tsx:619 msgid "Opens screen with all saved feeds" msgstr "保存されたすべてのフィードで画面を開く" -#: src/view/screens/Settings/index.tsx:699 +#: src/view/screens/Settings/index.tsx:700 msgid "Opens the app password settings" msgstr "アプリパスワードの設定を開く" -#: src/view/screens/Settings/index.tsx:575 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens the Following feed preferences" msgstr "Followingフィードの設定を開く" @@ -3994,21 +4017,21 @@ msgstr "Followingフィードの設定を開く" msgid "Opens the linked website" msgstr "リンク先のウェブサイトを開く" -#: src/view/screens/Settings/index.tsx:862 -#: src/view/screens/Settings/index.tsx:872 +#: src/view/screens/Settings/index.tsx:863 +#: src/view/screens/Settings/index.tsx:873 msgid "Opens the storybook page" msgstr "ストーリーブックのページを開く" -#: src/view/screens/Settings/index.tsx:850 +#: src/view/screens/Settings/index.tsx:851 msgid "Opens the system log page" msgstr "システムログのページを開く" -#: src/view/screens/Settings/index.tsx:596 +#: src/view/screens/Settings/index.tsx:597 msgid "Opens the threads preferences" msgstr "スレッドの設定を開く" -#: src/view/com/notifications/FeedItem.tsx:524 -#: src/view/com/util/UserAvatar.tsx:422 +#: src/view/com/notifications/FeedItem.tsx:527 +#: src/view/com/util/UserAvatar.tsx:434 msgid "Opens this profile" msgstr "プロフィールを開く" @@ -4021,7 +4044,7 @@ msgid "Option {0} of {numItems}" msgstr "{numItems}個中{0}目のオプション" #: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:162 +#: src/components/ReportDialog/SubmitView.tsx:179 msgid "Optionally provide additional information below:" msgstr "オプションとして、以下に追加情報をご記入ください:" @@ -4081,7 +4104,7 @@ msgstr "パスワードが更新されました" msgid "Password updated!" msgstr "パスワードが更新されました!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Pause" msgstr "一時停止" @@ -4090,19 +4113,19 @@ msgstr "一時停止" msgid "People" msgstr "ユーザー" -#: src/Navigation.tsx:175 +#: src/Navigation.tsx:178 msgid "People followed by @{0}" msgstr "@{0}がフォロー中のユーザー" -#: src/Navigation.tsx:168 +#: src/Navigation.tsx:171 msgid "People following @{0}" msgstr "@{0}をフォロー中のユーザー" -#: src/view/com/lightbox/Lightbox.tsx:69 +#: src/view/com/lightbox/Lightbox.tsx:70 msgid "Permission to access camera roll is required." msgstr "カメラへのアクセス権限が必要です。" -#: src/view/com/lightbox/Lightbox.tsx:75 +#: src/view/com/lightbox/Lightbox.tsx:78 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "カメラへのアクセスが拒否されました。システムの設定で有効にしてください。" @@ -4123,12 +4146,12 @@ msgstr "写真" msgid "Pictures meant for adults." msgstr "成人向けの画像です。" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "ホームにピン留め" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 msgid "Pin to Home" msgstr "ホームにピン留め" @@ -4140,7 +4163,7 @@ msgstr "ピン留めされたフィード" msgid "Pinned to your feeds" msgstr "フィードにピン留めしました" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Play" msgstr "再生" @@ -4148,7 +4171,7 @@ msgstr "再生" msgid "Play {0}" msgstr "{0}を再生" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 msgid "Play or pause the GIF" msgstr "GIFの再生や一時停止" @@ -4182,7 +4205,7 @@ msgstr "変更する前にメールを確認してください。これは、メ msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "アプリパスワードにつける名前を入力してください。すべてスペースとしてはいけません。" -#: src/view/com/modals/AddAppPasswords.tsx:150 +#: src/view/com/modals/AddAppPasswords.tsx:151 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "このアプリパスワードに固有の名前を入力するか、ランダムに生成された名前を使用してください。" @@ -4203,7 +4226,7 @@ msgstr "招待コードを入力してください。" msgid "Please enter your password as well:" msgstr "パスワードも入力してください:" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:277 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "{0}によって適用されたこのラベルが誤りであると思われる理由を説明してください" @@ -4220,7 +4243,7 @@ msgstr "@{0}としてサインインしてください" msgid "Please Verify Your Email" msgstr "メールアドレスを確認してください" -#: src/view/com/composer/Composer.tsx:287 +#: src/view/com/composer/Composer.tsx:299 msgid "Please wait for your link card to finish loading" msgstr "リンクカードが読み込まれるまでお待ちください" @@ -4233,8 +4256,8 @@ msgstr "政治" msgid "Porn" msgstr "ポルノ" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:509 +#: src/view/com/composer/Composer.tsx:516 msgctxt "action" msgid "Post" msgstr "投稿" @@ -4248,9 +4271,9 @@ msgstr "投稿" msgid "Post by {0}" msgstr "{0}による投稿" -#: src/Navigation.tsx:194 -#: src/Navigation.tsx:201 -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:197 +#: src/Navigation.tsx:204 +#: src/Navigation.tsx:211 msgid "Post by @{0}" msgstr "@{0}による投稿" @@ -4306,6 +4329,10 @@ msgstr "非表示の投稿" msgid "Potentially Misleading Link" msgstr "誤解を招く可能性のあるリンク" +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "再接続してみる" @@ -4321,7 +4348,7 @@ msgstr "ホスティングプロバイダーを変える" msgid "Press to retry" msgstr "再実行する" -#: src/components/KnownFollowers.tsx:116 +#: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "あなたもフォローしているこのアカウントのフォロワーを見る" @@ -4333,20 +4360,24 @@ msgstr "前の画像" msgid "Primary Language" msgstr "第一言語" -#: src/view/screens/PreferencesThreads.tsx:97 +#: src/view/screens/PreferencesThreads.tsx:91 msgid "Prioritize Your Follows" msgstr "あなたのフォローを優先" -#: src/view/screens/Settings/index.tsx:655 +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "" + +#: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "プライバシー" -#: src/Navigation.tsx:249 +#: src/Navigation.tsx:257 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:958 -#: src/view/shell/Drawer.tsx:285 +#: src/view/screens/Settings/index.tsx:959 +#: src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "プライバシーポリシー" @@ -4365,9 +4396,9 @@ msgstr "プロフィール" #: src/view/shell/bottom-bar/BottomBar.tsx:275 #: src/view/shell/desktop/LeftNav.tsx:393 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:542 -#: src/view/shell/Drawer.tsx:543 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:532 +#: src/view/shell/Drawer.tsx:533 msgid "Profile" msgstr "プロフィール" @@ -4375,7 +4406,7 @@ msgstr "プロフィール" msgid "Profile updated" msgstr "プロフィールを更新しました" -#: src/view/screens/Settings/index.tsx:1022 +#: src/view/screens/Settings/index.tsx:1023 msgid "Protect your account by verifying your email." msgstr "メールアドレスを確認してアカウントを保護します。" @@ -4391,23 +4422,23 @@ msgstr "ユーザーを一括でミュートまたはブロックする、公開 msgid "Public, shareable lists which can drive feeds." msgstr "フィードとして利用できる、公開された共有可能なリスト。" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish post" msgstr "投稿を公開" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish reply" msgstr "返信を公開" -#: src/components/StarterPack/QrCodeDialog.tsx:125 +#: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "QRコードをクリップボードにコピーしました" -#: src/components/StarterPack/QrCodeDialog.tsx:103 +#: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" msgstr "QRコードをダウンロードしました!" -#: src/components/StarterPack/QrCodeDialog.tsx:104 +#: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "QRコードをカメラロールに保存しました!" @@ -4422,7 +4453,7 @@ msgstr "クイック・チップ" msgid "Quote post" msgstr "引用" -#: src/view/screens/PreferencesThreads.tsx:86 +#: src/view/screens/PreferencesThreads.tsx:80 msgid "Random (aka \"Poster's Roulette\")" msgstr "ランダムな順番で表示(別名「投稿者のルーレット」)" @@ -4446,19 +4477,23 @@ msgstr "検索履歴" msgid "Reconnect" msgstr "再接続" +#: src/view/screens/Notifications.tsx:146 +msgid "Refresh notifications" +msgstr "" + #: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "会話を再読み込み" #: src/components/dialogs/MutedWords.tsx:286 #: src/components/FeedCard.tsx:309 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:212 +#: src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "削除" @@ -4470,7 +4505,7 @@ msgstr "{displayName}をスターターパックから削除" msgid "Remove account" msgstr "アカウントを削除" -#: src/view/com/util/UserAvatar.tsx:384 +#: src/view/com/util/UserAvatar.tsx:396 msgid "Remove Avatar" msgstr "アバターを削除" @@ -4482,20 +4517,20 @@ msgstr "バナーを削除" msgid "Remove embed" msgstr "埋め込みを削除" -#: src/view/com/posts/FeedErrorMessage.tsx:168 -#: src/view/com/posts/FeedShutdownMsg.tsx:113 -#: src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:115 +#: src/view/com/posts/FeedShutdownMsg.tsx:119 msgid "Remove feed" msgstr "フィードを削除" -#: src/view/com/posts/FeedErrorMessage.tsx:209 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" msgstr "フィードを削除しますか?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "マイフィードから削除" @@ -4509,7 +4544,7 @@ msgstr "マイフィードから削除しますか?" msgid "Remove image" msgstr "イメージを削除" -#: src/view/com/composer/ExternalEmbed.tsx:87 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 msgid "Remove image preview" msgstr "イメージプレビューを削除" @@ -4534,11 +4569,11 @@ msgstr "引用を削除" msgid "Remove repost" msgstr "リポストを削除" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "保存したフィードからこのフィードを削除" -#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "リストから削除されました" @@ -4561,8 +4596,8 @@ msgstr "引用を削除する" msgid "Removes the image preview" msgstr "画像のプレビューを削除する" -#: src/view/com/posts/FeedShutdownMsg.tsx:126 -#: src/view/com/posts/FeedShutdownMsg.tsx:130 +#: src/view/com/posts/FeedShutdownMsg.tsx:128 +#: src/view/com/posts/FeedShutdownMsg.tsx:132 msgid "Replace with Discover" msgstr "Discoverで置き換える" @@ -4574,26 +4609,26 @@ msgstr "返信" msgid "Replies disabled" msgstr "返信できません" -#: src/components/WhoCanReply.tsx:242 +#: src/components/WhoCanReply.tsx:243 msgid "Replies to this thread are disabled" msgstr "このスレッドへの返信はできません" -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:507 msgctxt "action" msgid "Reply" msgstr "返信" -#: src/view/screens/PreferencesFollowingFeed.tsx:143 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 msgid "Reply Filters" msgstr "返信のフィルター" -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:439 +#: src/view/com/post/Post.tsx:197 +#: src/view/com/posts/FeedItem.tsx:458 msgctxt "description" msgid "Reply to <0><1/>" msgstr "<0><1/>に返信" -#: src/view/com/posts/FeedItem.tsx:437 +#: src/view/com/posts/FeedItem.tsx:456 msgctxt "description" msgid "Reply to a blocked post" msgstr "ブロックした投稿への返信" @@ -4625,8 +4660,8 @@ msgstr "会話を報告" msgid "Report dialog" msgstr "報告ダイアログ" -#: src/view/screens/ProfileFeed.tsx:349 -#: src/view/screens/ProfileFeed.tsx:351 +#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:352 msgid "Report feed" msgstr "フィードを報告" @@ -4638,8 +4673,8 @@ msgstr "リストを報告" msgid "Report message" msgstr "メッセージを報告" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:407 +#: src/view/com/util/forms/PostDropdownBtn.tsx:409 msgid "Report post" msgstr "投稿を報告" @@ -4701,11 +4736,11 @@ msgstr "リポストまたは引用" msgid "Reposted By" msgstr "リポストしたユーザー" -#: src/view/com/posts/FeedItem.tsx:254 +#: src/view/com/posts/FeedItem.tsx:263 msgid "Reposted by {0}" msgstr "{0}にリポストされた" -#: src/view/com/posts/FeedItem.tsx:269 +#: src/view/com/posts/FeedItem.tsx:282 msgid "Reposted by <0><1/>" msgstr "<0><1/>がリポスト" @@ -4714,7 +4749,7 @@ msgstr "<0><1/>がリポスト" msgid "Reposted by you" msgstr "あなたのリポスト" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:188 msgid "reposted your post" msgstr "があなたの投稿をリポストしました" @@ -4757,8 +4792,8 @@ msgstr "リセットコード" msgid "Reset Code" msgstr "リセットコード" -#: src/view/screens/Settings/index.tsx:901 -#: src/view/screens/Settings/index.tsx:904 +#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:905 msgid "Reset onboarding state" msgstr "オンボーディングの状態をリセット" @@ -4766,16 +4801,16 @@ msgstr "オンボーディングの状態をリセット" msgid "Reset password" msgstr "パスワードをリセット" -#: src/view/screens/Settings/index.tsx:881 -#: src/view/screens/Settings/index.tsx:884 +#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:885 msgid "Reset preferences state" msgstr "設定をリセット" -#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:903 msgid "Resets the onboarding state" msgstr "オンボーディングの状態をリセットします" -#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:883 msgid "Resets the preferences state" msgstr "設定の状態をリセットします" @@ -4788,7 +4823,7 @@ msgstr "ログインをやり直す" msgid "Retries the last action, which errored out" msgstr "エラーになった最後のアクションをやり直す" -#: src/components/dms/MessageItem.tsx:241 +#: src/components/dms/MessageItem.tsx:235 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 @@ -4820,7 +4855,7 @@ msgstr "前のページに戻る" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/dialogs/ThreadgateEditor.tsx:88 -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:187 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -4829,7 +4864,7 @@ msgstr "前のページに戻る" msgid "Save" msgstr "保存" -#: src/view/com/lightbox/Lightbox.tsx:135 +#: src/view/com/lightbox/Lightbox.tsx:139 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -4851,8 +4886,8 @@ msgstr "変更を保存" msgid "Save handle change" msgstr "ハンドルの変更を保存" -#: src/components/StarterPack/ShareDialog.tsx:150 -#: src/components/StarterPack/ShareDialog.tsx:157 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "画像を保存" @@ -4860,12 +4895,12 @@ msgstr "画像を保存" msgid "Save image crop" msgstr "画像の切り抜きを保存" -#: src/components/StarterPack/QrCodeDialog.tsx:178 +#: src/components/StarterPack/QrCodeDialog.tsx:181 msgid "Save QR code" msgstr "QRコードを保存" -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 +#: src/view/screens/ProfileFeed.tsx:334 +#: src/view/screens/ProfileFeed.tsx:340 msgid "Save to my feeds" msgstr "マイフィードに保存" @@ -4873,7 +4908,7 @@ msgstr "マイフィードに保存" msgid "Saved Feeds" msgstr "保存されたフィード" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:88 msgid "Saved to your camera roll" msgstr "カメラロールに保存しました" @@ -4896,8 +4931,8 @@ msgstr "画像の切り抜き設定を保存" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:383 -#: src/view/com/notifications/FeedItem.tsx:408 +#: src/view/com/notifications/FeedItem.tsx:386 +#: src/view/com/notifications/FeedItem.tsx:411 msgid "Say hello!" msgstr "よろしく!" @@ -4911,9 +4946,9 @@ msgid "Scroll to top" msgstr "一番上までスクロール" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:524 +#: src/Navigation.tsx:537 #: src/view/com/auth/LoggedOut.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 @@ -4921,14 +4956,14 @@ msgstr "一番上までスクロール" #: src/view/screens/Search/Search.tsx:813 #: src/view/shell/bottom-bar/BottomBar.tsx:182 #: src/view/shell/desktop/LeftNav.tsx:354 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:394 -#: src/view/shell/Drawer.tsx:395 +#: src/view/shell/desktop/Search.tsx:195 +#: src/view/shell/desktop/Search.tsx:204 +#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:385 msgid "Search" msgstr "検索" -#: src/view/shell/desktop/Search.tsx:235 +#: src/view/shell/desktop/Search.tsx:236 msgid "Search for \"{query}\"" msgstr "「{query}」を検索" @@ -4950,7 +4985,7 @@ msgstr "他の人におすすめしたいフィードを検索。" #: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/auth/LoggedOut.tsx:107 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "ユーザーを検索" @@ -5041,7 +5076,7 @@ msgstr "{numItems}個中{i}個目のオプションを選択" msgid "Select the {emojiName} emoji as your avatar" msgstr "絵文字{emojiName}をアバターとして選択" -#: src/components/ReportDialog/SubmitView.tsx:135 +#: src/components/ReportDialog/SubmitView.tsx:152 msgid "Select the moderation service(s) to report to" msgstr "報告先のモデレーションサービスを選んでください" @@ -5091,8 +5126,7 @@ msgctxt "action" msgid "Send Email" msgstr "メールを送信" -#: src/view/shell/Drawer.tsx:329 -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:325 msgid "Send feedback" msgstr "フィードバックを送信" @@ -5101,14 +5135,14 @@ msgstr "フィードバックを送信" msgid "Send message" msgstr "メッセージを送信" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 msgid "Send post to..." msgstr "投稿を送る…" #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:215 -#: src/components/ReportDialog/SubmitView.tsx:219 +#: src/components/ReportDialog/SubmitView.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:236 msgid "Send report" msgstr "報告を送信" @@ -5121,8 +5155,8 @@ msgstr "{0}に報告を送信" msgid "Send verification email" msgstr "確認メールを送信" -#: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 +#: src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" msgstr "ダイレクトメッセージで送信" @@ -5142,23 +5176,23 @@ msgstr "生年月日を設定" msgid "Set new password" msgstr "新しいパスワードを設定" -#: src/view/screens/PreferencesFollowingFeed.tsx:224 +#: src/view/screens/PreferencesFollowingFeed.tsx:223 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "フィード内の引用をすべて非表示にするには、この設定を「いいえ」にします。リポストは引き続き表示されます。" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:120 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "フィード内の返信をすべて非表示にするには、この設定を「いいえ」にします。" -#: src/view/screens/PreferencesFollowingFeed.tsx:190 +#: src/view/screens/PreferencesFollowingFeed.tsx:189 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "フィード内のリポストをすべて非表示にするには、この設定を「いいえ」にします。" -#: src/view/screens/PreferencesThreads.tsx:122 +#: src/view/screens/PreferencesThreads.tsx:116 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "スレッド表示で返信を表示するには、この設定を「はい」にします。これは実験的な機能です。" -#: src/view/screens/PreferencesFollowingFeed.tsx:260 +#: src/view/screens/PreferencesFollowingFeed.tsx:259 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "保存されたフィードから投稿を抽出してFollowingフィードに表示するには、この設定を「はい」にします。これは実験的な機能です。" @@ -5170,23 +5204,23 @@ msgstr "アカウントを設定する" msgid "Sets Bluesky username" msgstr "Blueskyのユーザーネームを設定" -#: src/view/screens/Settings/index.tsx:462 +#: src/view/screens/Settings/index.tsx:463 msgid "Sets color theme to dark" msgstr "カラーテーマをダークに設定します" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Sets color theme to light" msgstr "カラーテーマをライトに設定します" -#: src/view/screens/Settings/index.tsx:449 +#: src/view/screens/Settings/index.tsx:450 msgid "Sets color theme to system setting" msgstr "デバイスで設定したカラーテーマを使用するように設定します" -#: src/view/screens/Settings/index.tsx:488 +#: src/view/screens/Settings/index.tsx:489 msgid "Sets dark theme to the dark theme" msgstr "ダークテーマを暗いものに設定します" -#: src/view/screens/Settings/index.tsx:481 +#: src/view/screens/Settings/index.tsx:482 msgid "Sets dark theme to the dim theme" msgstr "ダークテーマを薄暗いものに設定します" @@ -5206,11 +5240,11 @@ msgstr "画像のアスペクト比を縦長に設定" msgid "Sets image aspect ratio to wide" msgstr "画像のアスペクト比をワイドに設定" -#: src/Navigation.tsx:150 -#: src/view/screens/Settings/index.tsx:333 +#: src/Navigation.tsx:153 +#: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:559 -#: src/view/shell/Drawer.tsx:560 +#: src/view/shell/Drawer.tsx:549 +#: src/view/shell/Drawer.tsx:550 msgid "Settings" msgstr "設定" @@ -5222,19 +5256,19 @@ msgstr "性的行為または性的なヌード。" msgid "Sexually Suggestive" msgstr "性的にきわどい" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:177 #: src/screens/StarterPack/StarterPackScreen.tsx:400 #: src/screens/StarterPack/StarterPackScreen.tsx:571 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 #: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "共有" -#: src/view/com/lightbox/Lightbox.tsx:144 +#: src/view/com/lightbox/Lightbox.tsx:148 msgctxt "action" msgid "Share" msgstr "共有" @@ -5248,18 +5282,18 @@ msgid "Share a fun fact!" msgstr "面白いことをシェアして!" #: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:464 #: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "とにかく共有" -#: src/view/screens/ProfileFeed.tsx:359 -#: src/view/screens/ProfileFeed.tsx:361 +#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:362 msgid "Share feed" msgstr "フィードを共有" -#: src/components/StarterPack/ShareDialog.tsx:123 -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 #: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "リンクを共有" @@ -5269,12 +5303,12 @@ msgstr "リンクを共有" msgid "Share Link" msgstr "リンクを共有" -#: src/components/StarterPack/ShareDialog.tsx:87 +#: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" msgstr "リンク共有のダイアログ" -#: src/components/StarterPack/ShareDialog.tsx:134 -#: src/components/StarterPack/ShareDialog.tsx:145 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "QRコードを共有" @@ -5282,7 +5316,7 @@ msgstr "QRコードを共有" msgid "Share this starter pack" msgstr "このスターターパックを共有" -#: src/components/StarterPack/ShareDialog.tsx:99 +#: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "このスターターパックを共有して、他のユーザーがBlueskyでのコミュニティに参加するよう手伝います" @@ -5290,7 +5324,7 @@ msgstr "このスターターパックを共有して、他のユーザーがBlu msgid "Share your favorite feed!" msgstr "お気に入りのフィードをシェアして!" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:242 msgid "Shared Preferences Tester" msgstr "Shared Preferencesのテスター" @@ -5301,11 +5335,11 @@ msgstr "リンクしたウェブサイトを共有" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:382 +#: src/view/screens/Settings/index.tsx:383 msgid "Show" msgstr "表示" -#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +#: src/view/com/util/post-embeds/GifEmbed.tsx:175 msgid "Show alt text" msgstr "ALTテキストを表示" @@ -5331,19 +5365,19 @@ msgstr "{0}に似たおすすめのフォロー候補を表示" msgid "Show hidden replies" msgstr "隠れている返信を表示" -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#: src/view/com/util/forms/PostDropdownBtn.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:349 +#: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" msgstr "このような投稿の表示を減らす" #: src/view/com/post-thread/PostThreadItem.tsx:530 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:396 +#: src/view/com/post/Post.tsx:235 +#: src/view/com/posts/FeedItem.tsx:410 msgid "Show More" msgstr "さらに表示" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 -#: src/view/com/util/forms/PostDropdownBtn.tsx:340 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:343 msgid "Show more like this" msgstr "このような投稿の表示を増やす" @@ -5351,23 +5385,23 @@ msgstr "このような投稿の表示を増やす" msgid "Show muted replies" msgstr "ミュートした返信を表示" -#: src/view/screens/PreferencesFollowingFeed.tsx:257 +#: src/view/screens/PreferencesFollowingFeed.tsx:256 msgid "Show Posts from My Feeds" msgstr "マイフィードからの投稿を表示" -#: src/view/screens/PreferencesFollowingFeed.tsx:221 +#: src/view/screens/PreferencesFollowingFeed.tsx:220 msgid "Show Quote Posts" msgstr "引用を表示" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:117 msgid "Show Replies" msgstr "返信を表示" -#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:94 msgid "Show replies by people you follow before all other replies." msgstr "自分がフォローしているユーザーからの返信を、他のすべての返信の前に表示します。" -#: src/view/screens/PreferencesFollowingFeed.tsx:187 +#: src/view/screens/PreferencesFollowingFeed.tsx:186 msgid "Show Reposts" msgstr "リポストを表示" @@ -5425,8 +5459,8 @@ msgstr "会話に参加するにはサインインするか新しくアカウン msgid "Sign into Bluesky or create a new account" msgstr "Blueskyにサインイン または 新規アカウントの登録" -#: src/view/screens/Settings/index.tsx:129 -#: src/view/screens/Settings/index.tsx:133 +#: src/view/screens/Settings/index.tsx:130 +#: src/view/screens/Settings/index.tsx:134 msgid "Sign out" msgstr "サインアウト" @@ -5451,7 +5485,7 @@ msgstr "サインアップまたはサインインして会話に参加" msgid "Sign-in Required" msgstr "サインインが必要" -#: src/view/screens/Settings/index.tsx:392 +#: src/view/screens/Settings/index.tsx:393 msgid "Signed in as" msgstr "サインイン済み" @@ -5460,12 +5494,12 @@ msgstr "サインイン済み" msgid "Signed in as @{0}" msgstr "@{0}でサインイン" -#: src/view/com/notifications/FeedItem.tsx:208 +#: src/view/com/notifications/FeedItem.tsx:209 msgid "signed up with your starter pack" msgstr "あなたのスターターパックでサインアップ" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 msgid "Signup without a starter pack" msgstr "スターターパックを使わずにサインアップ" @@ -5483,7 +5517,7 @@ msgstr "この手順をスキップする" msgid "Software Dev" msgstr "ソフトウェア開発" -#: src/components/FeedInterstitials.tsx:378 +#: src/components/FeedInterstitials.tsx:382 msgid "Some other feeds you might like" msgstr "お好みかもしれない他のフィード" @@ -5507,20 +5541,25 @@ msgstr "なにか間違っているようなので、もう一度お試しくだ msgid "Something went wrong, please try again." msgstr "なにか間違っているようなので、もう一度お試しください。" -#: src/App.native.tsx:98 -#: src/App.web.tsx:80 +#: src/components/Lists.tsx:192 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "" + +#: src/App.native.tsx:99 +#: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "大変申し訳ありません!セッションの有効期限が切れました。もう一度ログインしてください。" -#: src/view/screens/PreferencesThreads.tsx:69 +#: src/view/screens/PreferencesThreads.tsx:63 msgid "Sort Replies" msgstr "返信を並び替える" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:66 msgid "Sort replies to the same post by:" msgstr "次の方法で同じ投稿への返信を並び替えます。" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" msgstr "ソース:<0>{0}" @@ -5542,7 +5581,7 @@ msgstr "スポーツ" msgid "Square" msgstr "正方形" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:63 msgid "Start a new chat" msgstr "新しいチャットを開始" @@ -5559,8 +5598,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "オンボーディングツアー・ウインドウ開始。前へ戻らないでください。代わりに、進んで他のオプションを見るか、スキップしてください。" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:328 -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:341 +#: src/Navigation.tsx:346 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "スターターパック" @@ -5581,7 +5620,7 @@ msgstr "スターターパック" msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "スターターパックを使ってお気に入りのフィードやユーザーを友人へ簡単に共有できます。" -#: src/view/screens/Settings/index.tsx:964 +#: src/view/screens/Settings/index.tsx:965 msgid "Status Page" msgstr "ステータスページ" @@ -5589,17 +5628,17 @@ msgstr "ステータスページ" msgid "Step {0} of {1}" msgstr "ステップ {0} / {1}" -#: src/view/screens/Settings/index.tsx:305 +#: src/view/screens/Settings/index.tsx:306 msgid "Storage cleared, you need to restart the app now." msgstr "ストレージがクリアされたため、今すぐアプリを再起動する必要があります。" -#: src/Navigation.tsx:229 -#: src/view/screens/Settings/index.tsx:864 +#: src/Navigation.tsx:232 +#: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "ストーリーブック" -#: src/components/moderation/LabelsOnMeDialog.tsx:290 -#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/components/moderation/LabelsOnMeDialog.tsx:311 +#: src/components/moderation/LabelsOnMeDialog.tsx:312 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5617,7 +5656,7 @@ msgstr "これらのラベルを使用するには@{0}を登録してくださ msgid "Subscribe to Labeler" msgstr "ラベラーを登録する" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 msgid "Subscribe to this labeler" msgstr "このラベラーを登録" @@ -5625,11 +5664,11 @@ msgstr "このラベラーを登録" msgid "Subscribe to this list" msgstr "このリストに登録" -#: src/view/screens/Search/Explore.tsx:331 +#: src/view/screens/Search/Explore.tsx:333 msgid "Suggested accounts" msgstr "おすすめのアカウント" -#: src/components/FeedInterstitials.tsx:246 +#: src/components/FeedInterstitials.tsx:250 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "あなたへのおすすめ" @@ -5638,7 +5677,7 @@ msgstr "あなたへのおすすめ" msgid "Suggestive" msgstr "きわどい" -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:252 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5653,19 +5692,19 @@ msgstr "アカウントを切り替える" msgid "Switch between feeds to control your experience." msgstr "フィードを切り替えて、あなたの体験をコントロールしよう。" -#: src/view/screens/Settings/index.tsx:160 +#: src/view/screens/Settings/index.tsx:161 msgid "Switch to {0}" msgstr "{0}に切り替え" -#: src/view/screens/Settings/index.tsx:161 +#: src/view/screens/Settings/index.tsx:162 msgid "Switches the account you are logged in to" msgstr "ログインしているアカウントを切り替えます" -#: src/view/screens/Settings/index.tsx:446 +#: src/view/screens/Settings/index.tsx:447 msgid "System" msgstr "システム" -#: src/view/screens/Settings/index.tsx:852 +#: src/view/screens/Settings/index.tsx:853 msgid "System log" msgstr "システムログ" @@ -5714,11 +5753,11 @@ msgstr "もう少し教えて" msgid "Terms" msgstr "条件" -#: src/Navigation.tsx:254 +#: src/Navigation.tsx:262 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:952 +#: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:279 +#: src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "利用規約" @@ -5733,13 +5772,13 @@ msgstr "使用されている用語がコミュニティ基準に違反してい msgid "text" msgstr "テキスト" -#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/components/moderation/LabelsOnMeDialog.tsx:275 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "テキストの入力フィールド" #: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:93 msgid "Thank you. Your report has been sent." msgstr "ありがとうございます。あなたの報告は送信されました。" @@ -5778,19 +5817,19 @@ msgstr "著作権ポリシーは<0/>に移動しました" msgid "The Discover feed now knows what you like" msgstr "Discoverフィードはあなたの好みを学習しました" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "アプリのほうがより良い体験をすることができます。今すぐBlueskyをダウンロードして、中断したところから再開しましょう。" -#: src/view/com/posts/FeedShutdownMsg.tsx:66 +#: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." msgstr "フィードはDiscoverと置き換えられました。" -#: src/components/moderation/LabelsOnMeDialog.tsx:65 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your account." msgstr "以下のラベルがあなたのアカウントに適用されました。" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:67 msgid "The following labels were applied to your content." msgstr "以下のラベルがあなたのコンテンツに適用されました。" @@ -5823,8 +5862,8 @@ msgstr "サービス規約は移動しました" msgid "There is no time limit for account deactivation, come back any time." msgstr "アカウントの無効化に期限はありません。いつでも戻ってこられます。" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 -#: src/view/screens/ProfileFeed.tsx:544 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 +#: src/view/screens/ProfileFeed.tsx:545 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "サーバーへの問い合わせ中に問題が発生しました。インターネットへの接続を確認の上、もう一度お試しください。" @@ -5833,7 +5872,7 @@ msgid "There was an an issue removing this feed. Please check your internet conn msgstr "フィードの削除中に問題が発生しました。インターネットへの接続を確認の上、もう一度お試しください。" #: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "フィードの更新中に問題が発生しました。インターネットへの接続を確認の上、もう一度お試しください。" @@ -5843,7 +5882,7 @@ msgstr "フィードの更新中に問題が発生しました。インターネ msgid "There was an issue connecting to Tenor." msgstr "Tenorへの接続中に問題が発生しました。" -#: src/view/screens/ProfileFeed.tsx:234 +#: src/view/screens/ProfileFeed.tsx:235 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -5857,7 +5896,7 @@ msgstr "サーバーへの問い合わせ中に問題が発生しました" msgid "There was an issue contacting your server" msgstr "サーバーへの問い合わせ中に問題が発生しました" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "通知の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。" @@ -5875,7 +5914,7 @@ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "リストの取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。" #: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:82 +#: src/components/ReportDialog/SubmitView.tsx:98 msgid "There was an issue sending your report. Please check your internet connection." msgstr "報告の送信に問題が発生しました。インターネットの接続を確認してください。" @@ -5927,7 +5966,7 @@ msgstr "このアカウントを閲覧するためにはサインインが必要 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 "このアカウントは1つ、あるいは複数のモデレーションリストでブロックされています。ブロックを解除するにはリストの画面に移動してこのユーザーをリストから外してください。" -#: src/components/moderation/LabelsOnMeDialog.tsx:239 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 msgid "This appeal will be sent to <0>{0}." msgstr "この申し立ては<0>{0}に送られます。" @@ -5977,12 +6016,12 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "このフィードは空です!もっと多くのユーザーをフォローするか、言語の設定を調整する必要があるかもしれません。" #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:473 +#: src/view/screens/ProfileFeed.tsx:474 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "このフィードは空です。" -#: src/view/com/posts/FeedShutdownMsg.tsx:97 +#: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "このフィードはもはやオンラインではありません。代わりに<0>Discoverを表示しています。" @@ -6002,7 +6041,7 @@ msgstr "<0>{0}によって適用されたラベルです。" msgid "This label was applied by the author." msgstr "投稿者によって適用されたラベルです。" -#: src/components/moderation/LabelsOnMeDialog.tsx:166 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." msgstr "あなたによって適用されたラベルです。" @@ -6030,12 +6069,12 @@ msgstr "この名前はすでに使用中です" msgid "This post has been deleted." msgstr "この投稿は削除されました。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 #: src/view/com/util/post-ctrls/PostCtrls.tsx:324 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "この投稿はログインしているユーザーにのみ表示されます。ログインしていない方には見えません。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:440 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "This post will be hidden from feeds." msgstr "この投稿はフィードから非表示になります。" @@ -6088,12 +6127,12 @@ msgstr "このユーザーは誰もフォローしていません。" msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "ミュートしたワードから{0}が削除されます。あとでいつでも戻すことができます。" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Thread preferences" msgstr "スレッドの設定" -#: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/PreferencesThreads.tsx:51 +#: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "スレッドの設定" @@ -6101,11 +6140,11 @@ msgstr "スレッドの設定" msgid "Thread settings updated" msgstr "スレッドの設定を更新しました" -#: src/view/screens/PreferencesThreads.tsx:119 +#: src/view/screens/PreferencesThreads.tsx:113 msgid "Threaded Mode" msgstr "スレッドモード" -#: src/Navigation.tsx:287 +#: src/Navigation.tsx:295 msgid "Threads Preferences" msgstr "スレッドの設定" @@ -6146,8 +6185,8 @@ msgstr "変換" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:676 #: src/view/com/post-thread/PostThreadItem.tsx:678 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 -#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "翻訳" @@ -6160,7 +6199,7 @@ msgstr "再試行" msgid "TV" msgstr "テレビ" -#: src/view/screens/Settings/index.tsx:746 +#: src/view/screens/Settings/index.tsx:747 msgid "Two-factor authentication" msgstr "2要素認証" @@ -6248,7 +6287,7 @@ msgstr "{0}のフォローを解除" msgid "Unfollow Account" msgstr "アカウントのフォローを解除" -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Unlike this feed" msgstr "このフィードからいいねを外す" @@ -6274,17 +6313,17 @@ msgstr "{displayTag}のすべての投稿のミュートを解除" msgid "Unmute conversation" msgstr "会話のミュートを解除" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:367 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Unmute thread" msgstr "スレッドのミュートを解除" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "ピン留めを解除" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 msgid "Unpin from home" msgstr "ホームからピン留めを解除" @@ -6300,7 +6339,7 @@ msgstr "フィードからピン留めを解除" msgid "Unsubscribe" msgstr "登録を解除" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Unsubscribe from this labeler" msgstr "このラベラーの登録を解除" @@ -6329,20 +6368,20 @@ msgstr "代わりに写真をアップロード" msgid "Upload a text file to:" msgstr "テキストファイルのアップロード先:" -#: src/view/com/util/UserAvatar.tsx:352 -#: src/view/com/util/UserAvatar.tsx:355 +#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "カメラからアップロード" -#: src/view/com/util/UserAvatar.tsx:369 +#: src/view/com/util/UserAvatar.tsx:381 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "ファイルからアップロード" -#: src/view/com/util/UserAvatar.tsx:363 -#: src/view/com/util/UserAvatar.tsx:367 +#: src/view/com/util/UserAvatar.tsx:375 +#: src/view/com/util/UserAvatar.tsx:379 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -6382,7 +6421,7 @@ msgstr "おすすめを使う" msgid "Use the DNS panel" msgstr "DNSパネルを使用" -#: src/view/com/modals/AddAppPasswords.tsx:205 +#: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." msgstr "このアプリパスワードとハンドルを使って他のアプリにサインインします。" @@ -6450,7 +6489,7 @@ msgstr "ユーザー名またはメールアドレス" msgid "Users" msgstr "ユーザー" -#: src/components/WhoCanReply.tsx:279 +#: src/components/WhoCanReply.tsx:280 msgid "users followed by <0/>" msgstr "<0/>にフォローされているユーザー" @@ -6477,15 +6516,15 @@ msgstr "値:" msgid "Verify DNS Record" msgstr "DNSレコードを確認" -#: src/view/screens/Settings/index.tsx:983 +#: src/view/screens/Settings/index.tsx:984 msgid "Verify email" msgstr "メールアドレスを確認" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Verify my email" msgstr "メールアドレスを確認" -#: src/view/screens/Settings/index.tsx:1017 +#: src/view/screens/Settings/index.tsx:1018 msgid "Verify My Email" msgstr "メールアドレスを確認" @@ -6502,7 +6541,7 @@ msgstr "テキストファイルを確認" msgid "Verify Your Email" msgstr "メールアドレスを確認" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Version {appVersion} {bundleInfo}" msgstr "バージョン {appVersion} {bundleInfo}" @@ -6519,7 +6558,7 @@ msgstr "ビデオは100MB以下にしてください" msgid "View {0}'s avatar" msgstr "{0}のアバターを表示" -#: src/view/com/notifications/FeedItem.tsx:245 +#: src/view/com/notifications/FeedItem.tsx:246 msgid "View {0}'s profile" msgstr "{0}のプロフィールを表示" @@ -6551,7 +6590,7 @@ msgstr "これらのラベルに関する情報を見る" #: src/components/ProfileHoverCard/index.web.tsx:436 #: src/components/ProfileHoverCard/index.web.tsx:463 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "プロフィールを表示" @@ -6563,7 +6602,7 @@ msgstr "アバターを表示" msgid "View the labeling service provided by @{0}" msgstr "@{0}によって提供されるラベリングサービスを見る" -#: src/view/screens/ProfileFeed.tsx:585 +#: src/view/screens/ProfileFeed.tsx:587 msgid "View users who like this feed" msgstr "このフィードにいいねしたユーザーを見る" @@ -6655,7 +6694,7 @@ msgstr "大変申し訳ありませんが、現在ミュートされたワード msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "大変申し訳ありませんが、検索を完了できませんでした。数分後に再試行してください。" -#: src/view/com/composer/Composer.tsx:335 +#: src/view/com/composer/Composer.tsx:347 msgid "We're sorry! The post you are replying to has been deleted." msgstr "大変申し訳ありません!返信しようとしている投稿は削除されました。" @@ -6664,7 +6703,7 @@ msgstr "大変申し訳ありません!返信しようとしている投稿は msgid "We're sorry! We can't find the page you were looking for." msgstr "大変申し訳ありません!お探しのページは見つかりません。" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "大変申し訳ありません!ラベラーは20までしか登録できず、すでに上限に達しています。" @@ -6686,7 +6725,7 @@ msgstr "あなたのスターターパックを何と呼びたいですか?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:376 +#: src/view/com/composer/Composer.tsx:388 msgid "What's up?" msgstr "最近どう?" @@ -6703,15 +6742,15 @@ msgstr "アルゴリズムによるフィードにはどの言語を使用しま msgid "Who can message you?" msgstr "誰があなたへメッセージを送れるか?" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Who can reply" msgstr "返信できるユーザー" -#: src/components/WhoCanReply.tsx:211 +#: src/components/WhoCanReply.tsx:212 msgid "Who can reply dialog" msgstr "誰が返信できるのかについてのダイアログ" -#: src/components/WhoCanReply.tsx:215 +#: src/components/WhoCanReply.tsx:216 msgid "Who can reply?" msgstr "誰が返信できますか?" @@ -6757,11 +6796,11 @@ msgstr "ワイド" msgid "Write a message" msgstr "メッセージを書く" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:580 msgid "Write post" msgstr "投稿を書く" -#: src/view/com/composer/Composer.tsx:375 +#: src/view/com/composer/Composer.tsx:387 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "返信を書く" @@ -6772,12 +6811,12 @@ msgid "Writers" msgstr "ライター" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:200 -#: src/view/screens/PreferencesFollowingFeed.tsx:235 -#: src/view/screens/PreferencesFollowingFeed.tsx:270 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:199 +#: src/view/screens/PreferencesFollowingFeed.tsx:234 +#: src/view/screens/PreferencesFollowingFeed.tsx:269 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "Yes" msgstr "はい" @@ -6794,7 +6833,7 @@ msgstr "はい、このスターターパックを削除します" msgid "Yes, reactivate my account" msgstr "はい、アカウントを再有効化します" -#: src/components/dms/MessageItem.tsx:188 +#: src/components/dms/MessageItem.tsx:182 msgid "Yesterday, {time}" msgstr "昨日、{time}" @@ -6935,19 +6974,19 @@ msgstr "スターターパックをまだ作成していません!" msgid "You haven't muted any words or tags yet" msgstr "まだワードやタグをミュートしていません" -#: src/components/moderation/LabelsOnMeDialog.tsx:86 +#: src/components/moderation/LabelsOnMeDialog.tsx:87 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "間違って適用されたと思うのであれば、自己申告ではないラベルならば異議申し立てができます。" -#: src/components/moderation/LabelsOnMeDialog.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:92 msgid "You may appeal these labels if you feel they were placed in error." msgstr "これらのラベルが誤って適用されたと思った場合は、異議申し立てを行うことができます。" -#: src/screens/StarterPack/Wizard/State.tsx:92 +#: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 50 feeds" msgstr "50フィードまで追加できます" -#: src/screens/StarterPack/Wizard/State.tsx:77 +#: src/screens/StarterPack/Wizard/State.tsx:78 msgid "You may only add up to 50 profiles" msgstr "50ユーザーまで追加できます" @@ -6967,7 +7006,7 @@ msgstr "QRコードを保存するには写真ライブラリへのアクセス msgid "You must grant access to your photo library to save the image." msgstr "画像を保存するには写真ライブラリへのアクセスを許可する必要があります。" -#: src/components/ReportDialog/SubmitView.tsx:205 +#: src/components/ReportDialog/SubmitView.tsx:222 msgid "You must select at least one labeler for a report" msgstr "報告をするには少なくとも1つのラベラーを選択する必要があります" @@ -7007,15 +7046,15 @@ msgstr "アカウントの作成を完了するとおすすめのユーザーや msgid "You'll follow the suggested users once you finish creating your account!" msgstr "アカウントの作成を完了するとおすすめのユーザーをフォローします!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people and {0} others" msgstr "これらのユーザーや他{0}をフォローします" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people right away" msgstr "これらのユーザーをすぐにフォローします" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272 msgid "You'll stay updated with these feeds" msgstr "これらのフィードの更新を受け取ります" @@ -7106,7 +7145,7 @@ msgstr "ミュートしたワード" msgid "Your password has been changed successfully!" msgstr "パスワードの変更が完了しました!" -#: src/view/com/composer/Composer.tsx:366 +#: src/view/com/composer/Composer.tsx:378 msgid "Your post has been published" msgstr "投稿を公開しました" @@ -7114,7 +7153,7 @@ msgstr "投稿を公開しました" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "投稿、いいね、ブロックは公開されます。ミュートは非公開です。" -#: src/view/screens/Settings/index.tsx:148 +#: src/view/screens/Settings/index.tsx:149 msgid "Your profile" msgstr "あなたのプロフィール" @@ -7122,7 +7161,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 "あなたのプロフィール、投稿、フィード、そしてリストは他のBlueskyユーザーに見えなくなります。ログインすることでいつでもアカウントを再有効化できます。" -#: src/view/com/composer/Composer.tsx:365 +#: src/view/com/composer/Composer.tsx:377 msgid "Your reply has been published" msgstr "返信を公開しました" diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po index e7ec53e94e..3783b61f51 100644 --- a/src/locale/locales/ko/messages.po +++ b/src/locale/locales/ko/messages.po @@ -21,7 +21,7 @@ msgstr "(임베드 콘텐츠 포함)" msgid "(no email)" msgstr "(이메일 없음)" -#: src/view/com/notifications/FeedItem.tsx:294 +#: src/view/com/notifications/FeedItem.tsx:297 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "외 {0, plural, other {{formattedCount}}}명" @@ -76,7 +76,7 @@ msgstr "재게시" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "좋아요 취소 ({0, plural, other {#}}개)" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "이번 주에 {0}명이 가입함" @@ -84,7 +84,7 @@ msgstr "이번 주에 {0}명이 가입함" msgid "{0} people have used this starter pack!" msgstr "{0}명이 이 스타터 팩을 사용했습니다!" -#: src/view/com/util/UserAvatar.tsx:419 +#: src/view/com/util/UserAvatar.tsx:431 msgid "{0}'s avatar" msgstr "{0} 님의 아바타" @@ -132,7 +132,7 @@ msgstr "시간" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "분" -#: src/components/ProfileHoverCard/index.web.tsx:504 +#: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} 팔로우 중" @@ -143,11 +143,11 @@ msgstr "{handle} 님에게 메시지를 보낼 수 없습니다" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:588 +#: src/view/screens/ProfileFeed.tsx:590 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, other {#}}명의 사용자가 좋아함" -#: src/view/shell/Drawer.tsx:462 +#: src/view/shell/Drawer.tsx:452 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications}개 읽지 않음" @@ -163,7 +163,7 @@ msgstr "{profileName} 님은 {0} 전에 스타터 팩을 사용하여 Bluesky에 msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "{value, plural, =0 {모든 답글 표시} other {좋아요가 #개 이상인 답글 표시}}" -#: src/components/WhoCanReply.tsx:295 +#: src/components/WhoCanReply.tsx:296 msgid "<0/> members" msgstr "<0/>의 멤버" @@ -177,11 +177,11 @@ msgctxt "feeds" msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "<0>{0}, <1>{1} 외 {2, plural, other {#}}개가 스타터 팩에 포함됩니다" -#: src/view/shell/Drawer.tsx:101 +#: src/view/shell/Drawer.tsx:100 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} 팔로워" -#: src/view/shell/Drawer.tsx:112 +#: src/view/shell/Drawer.tsx:111 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} 팔로우 중" @@ -223,22 +223,22 @@ msgid "Access profile and other navigation links" msgstr "프로필 및 기타 탐색 링크로 이동합니다" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:519 +#: src/view/screens/Settings/index.tsx:520 msgid "Accessibility" msgstr "접근성" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Accessibility settings" msgstr "접근성 설정" -#: src/Navigation.tsx:301 +#: src/Navigation.tsx:309 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "접근성 설정" #: src/screens/Login/LoginForm.tsx:190 -#: src/view/screens/Settings/index.tsx:346 -#: src/view/screens/Settings/index.tsx:753 +#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:754 msgid "Account" msgstr "계정" @@ -285,7 +285,7 @@ msgid "Account unmuted" msgstr "계정 언뮤트됨" #: src/components/dialogs/MutedWords.tsx:164 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 msgid "Add" @@ -309,8 +309,8 @@ msgstr "이 리스트에 사용자 추가" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:423 -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:433 msgid "Add account" msgstr "계정 추가" @@ -366,7 +366,7 @@ msgstr "리스트에 추가" msgid "Add to my feeds" msgstr "내 피드에 추가" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "리스트에 추가됨" @@ -375,7 +375,7 @@ msgstr "리스트에 추가됨" msgid "Added to my feeds" msgstr "내 피드에 추가됨" -#: src/view/screens/PreferencesFollowingFeed.tsx:172 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "답글이 피드에 표시되기 위해 필요한 좋아요 수를 조정합니다." @@ -393,7 +393,7 @@ msgid "Adult content is disabled." msgstr "성인 콘텐츠가 비활성화되어 있습니다." #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:687 +#: src/view/screens/Settings/index.tsx:688 msgid "Advanced" msgstr "고급" @@ -409,8 +409,8 @@ msgstr "모든 계정을 팔로우했습니다" msgid "All the feeds you've saved, right in one place." msgstr "저장한 모든 피드를 한 곳에서 확인하세요." -#: src/view/com/modals/AddAppPasswords.tsx:187 -#: src/view/com/modals/AddAppPasswords.tsx:194 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "다이렉트 메시지 접근 허용" @@ -430,7 +430,7 @@ msgstr "이미 @{0}(으)로 로그인했습니다" #: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "ALT" msgstr "ALT" @@ -440,7 +440,7 @@ msgstr "ALT" msgid "Alt text" msgstr "대체 텍스트" -#: src/view/com/util/post-embeds/GifEmbed.tsx:180 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Alt Text" msgstr "대체 텍스트" @@ -465,8 +465,8 @@ msgstr "오류 발생" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "스타터 팩을 만드는 동안 오류가 발생했습니다. 다시 시도하시겠습니까?" -#: src/components/StarterPack/QrCodeDialog.tsx:70 -#: src/components/StarterPack/ShareDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the QR code!" msgstr "QR 코드를 저장하는 동안 오류가 발생했습니다" @@ -478,10 +478,18 @@ msgstr "모두 팔로우하려고 하는 동안 오류가 발생했습니다" msgid "An issue not included in these options" msgstr "어떤 옵션에도 포함되지 않는 문제" +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +msgid "An issue occurred while trying to open the chat" +msgstr "" + #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:309 -#: src/components/ProfileCard.tsx:329 +#: src/components/ProfileCard.tsx:311 +#: src/components/ProfileCard.tsx:331 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -493,8 +501,8 @@ msgstr "문제가 발생했습니다. 다시 시도해 주세요." msgid "an unknown error occurred" msgstr "알 수 없는 오류가 발생했습니다" -#: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:291 +#: src/components/WhoCanReply.tsx:317 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "및" @@ -503,7 +511,7 @@ msgstr "및" msgid "Animals" msgstr "동물" -#: src/view/com/util/post-embeds/GifEmbed.tsx:146 +#: src/view/com/util/post-embeds/GifEmbed.tsx:155 msgid "Animated GIF" msgstr "움직이는 GIF" @@ -527,26 +535,26 @@ msgstr "앱 비밀번호 이름에는 문자, 숫자, 공백, 대시, 밑줄만 msgid "App Password names must be at least 4 characters long." msgstr "앱 비밀번호 이름은 4자 이상이어야 합니다." -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "App password settings" msgstr "앱 비밀번호 설정" -#: src/Navigation.tsx:269 +#: src/Navigation.tsx:277 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:707 +#: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" msgstr "앱 비밀번호" -#: src/components/moderation/LabelsOnMeDialog.tsx:151 -#: src/components/moderation/LabelsOnMeDialog.tsx:154 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "이의신청" -#: src/components/moderation/LabelsOnMeDialog.tsx:236 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Appeal \"{0}\" label" msgstr "\"{0}\" 라벨 이의신청" -#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/components/moderation/LabelsOnMeDialog.tsx:248 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "이의신청 제출함" @@ -558,7 +566,7 @@ msgstr "이의신청 제출함" msgid "Appeal this decision" msgstr "이 결정에 이의신청" -#: src/view/screens/Settings/index.tsx:440 +#: src/view/screens/Settings/index.tsx:441 msgid "Appearance" msgstr "모양" @@ -568,8 +576,8 @@ msgid "Apply default recommended feeds" msgstr "기본 추천 피드 적용하기" #: src/screens/StarterPack/StarterPackScreen.tsx:610 -msgid "Are you sure you want delete this starter pack?" -msgstr "이 스타터 팩을 삭제하시겠습니까?" +#~ msgid "Are you sure you want delete this starter pack?" +#~ msgstr "이 스타터 팩을 삭제하시겠습니까?" #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" @@ -579,6 +587,10 @@ msgstr "앱 비밀번호 \"{name}\"을(를) 삭제하시겠습니까?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "정말 이 메시지를 삭제하시겠습니까? 나에게 보이는 메시지는 삭제되지만 상대방에게는 삭제되지 않습니다." +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:48 msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for the other participant." msgstr "정말 이 대화에서 나가시겠습니까? 나에게 보이는 메시지는 삭제되지만 상대방에게는 삭제되지 않습니다." @@ -591,7 +603,7 @@ msgstr "피드에서 {0}을(를) 제거하시겠습니까?" msgid "Are you sure you want to remove this from your feeds?" msgstr "내 피드에서 이 피드를 삭제하시겠습니까?" -#: src/view/com/composer/Composer.tsx:649 +#: src/view/com/composer/Composer.tsx:680 msgid "Are you sure you'd like to discard this draft?" msgstr "이 초안을 삭제하시겠습니까?" @@ -617,8 +629,8 @@ msgid "At least 3 characters" msgstr "3자 이상" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:281 -#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/components/moderation/LabelsOnMeDialog.tsx:302 +#: src/components/moderation/LabelsOnMeDialog.tsx:303 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -631,13 +643,12 @@ msgstr "3자 이상" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "뒤로" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Basics" msgstr "기본" @@ -645,7 +656,7 @@ msgstr "기본" msgid "Birthday" msgstr "생년월일" -#: src/view/screens/Settings/index.tsx:378 +#: src/view/screens/Settings/index.tsx:379 msgid "Birthday:" msgstr "생년월일:" @@ -689,7 +700,7 @@ msgstr "차단됨" msgid "Blocked accounts" msgstr "차단한 계정" -#: src/Navigation.tsx:145 +#: src/Navigation.tsx:148 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "차단한 계정" @@ -756,21 +767,21 @@ msgstr "이미지 흐리게 및 피드에서 필터링" msgid "Books" msgstr "책" -#: src/components/FeedInterstitials.tsx:281 +#: src/components/FeedInterstitials.tsx:285 msgid "Browse more accounts on the Explore page" msgstr "탐색 페이지에서 더 많은 계정 찾아보기" -#: src/components/FeedInterstitials.tsx:411 +#: src/components/FeedInterstitials.tsx:415 msgid "Browse more feeds on the Explore page" msgstr "탐색 페이지에서 더 많은 피드 찾아보기" -#: src/components/FeedInterstitials.tsx:266 -#: src/components/FeedInterstitials.tsx:396 +#: src/components/FeedInterstitials.tsx:270 +#: src/components/FeedInterstitials.tsx:400 msgid "Browse more suggestions" msgstr "더 많은 추천 찾아보기" -#: src/components/FeedInterstitials.tsx:289 -#: src/components/FeedInterstitials.tsx:420 +#: src/components/FeedInterstitials.tsx:293 +#: src/components/FeedInterstitials.tsx:424 msgid "Browse more suggestions on the Explore page" msgstr "탐색 페이지에서 더 많은 추천 찾아보기" @@ -807,7 +818,7 @@ msgstr "내가 만듦" msgid "Camera" msgstr "카메라" -#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "글자, 숫자, 공백, 대시, 밑줄만 포함할 수 있습니다. 길이는 4자 이상이어야 하고 32자를 넘지 않아야 합니다." @@ -816,8 +827,8 @@ msgstr "글자, 숫자, 공백, 대시, 밑줄만 포함할 수 있습니다. #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:451 -#: src/view/com/composer/Composer.tsx:457 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -835,7 +846,7 @@ msgstr "글자, 숫자, 공백, 대시, 밑줄만 포함할 수 있습니다. #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:139 #: src/view/screens/Search/Search.tsx:704 -#: src/view/shell/desktop/Search.tsx:218 +#: src/view/shell/desktop/Search.tsx:219 msgid "Cancel" msgstr "취소" @@ -871,8 +882,8 @@ msgstr "게시물 인용 취소" msgid "Cancel reactivation and log out" msgstr "재활성화 취소 및 로그아웃" -#: src/view/com/modals/ListAddRemoveUsers.tsx:87 -#: src/view/shell/desktop/Search.tsx:214 +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "검색 취소" @@ -884,17 +895,17 @@ msgstr "연결된 웹사이트를 여는 것을 취소합니다" msgid "Change" msgstr "변경" -#: src/view/screens/Settings/index.tsx:372 +#: src/view/screens/Settings/index.tsx:373 msgctxt "action" msgid "Change" msgstr "변경" -#: src/view/screens/Settings/index.tsx:719 +#: src/view/screens/Settings/index.tsx:720 msgid "Change handle" msgstr "핸들 변경" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:730 +#: src/view/screens/Settings/index.tsx:731 msgid "Change Handle" msgstr "핸들 변경" @@ -902,12 +913,12 @@ msgstr "핸들 변경" msgid "Change my email" msgstr "내 이메일 변경하기" -#: src/view/screens/Settings/index.tsx:764 +#: src/view/screens/Settings/index.tsx:765 msgid "Change password" msgstr "비밀번호 변경" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:775 +#: src/view/screens/Settings/index.tsx:776 msgid "Change Password" msgstr "비밀번호 변경" @@ -919,7 +930,7 @@ msgstr "게시물 언어를 {0}(으)로 변경" msgid "Change Your Email" msgstr "이메일 변경" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:321 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -931,14 +942,14 @@ msgstr "대화 뮤트됨" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:326 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" msgstr "대화 설정" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:648 +#: src/view/screens/Settings/index.tsx:649 msgid "Chat Settings" msgstr "대화 설정" @@ -1000,19 +1011,19 @@ msgstr "답글을 달 수 있는 사람 선택하기" msgid "Choose your password" msgstr "비밀번호를 입력하세요" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clear all legacy storage data" msgstr "모든 레거시 스토리지 데이터 지우기" -#: src/view/screens/Settings/index.tsx:914 +#: src/view/screens/Settings/index.tsx:915 msgid "Clear all legacy storage data (restart after this)" msgstr "모든 레거시 스토리지 데이터 지우기 (이후 다시 시작)" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clear all storage data" msgstr "모든 스토리지 데이터 지우기" -#: src/view/screens/Settings/index.tsx:926 +#: src/view/screens/Settings/index.tsx:927 msgid "Clear all storage data (restart after this)" msgstr "모든 스토리지 데이터 지우기 (이후 다시 시작)" @@ -1021,11 +1032,11 @@ msgstr "모든 스토리지 데이터 지우기 (이후 다시 시작)" msgid "Clear search query" msgstr "검색어 지우기" -#: src/view/screens/Settings/index.tsx:912 +#: src/view/screens/Settings/index.tsx:913 msgid "Clears all legacy storage data" msgstr "모든 레거시 스토리지 데이터를 지웁니다" -#: src/view/screens/Settings/index.tsx:924 +#: src/view/screens/Settings/index.tsx:925 msgid "Clears all storage data" msgstr "모든 스토리지 데이터를 지웁니다" @@ -1045,7 +1056,7 @@ msgstr "자세한 내용을 보려면 이곳을 클릭하세요." msgid "Click here to open tag menu for {tag}" msgstr "이곳을 클릭하여 {tag}의 태그 메뉴 열기" -#: src/components/dms/MessageItem.tsx:237 +#: src/components/dms/MessageItem.tsx:231 msgid "Click to retry failed message" msgstr "클릭하여 메시지를 다시 보내기" @@ -1066,7 +1077,7 @@ msgstr "다그닥 🐴 다그닥 🐴" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/util/post-embeds/GifEmbed.tsx:195 msgid "Close" msgstr "닫기" @@ -1121,7 +1132,7 @@ msgstr "하단 탐색 막대를 닫습니다" msgid "Closes password update alert" msgstr "비밀번호 변경 알림을 닫습니다" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:472 msgid "Closes post composer and discards post draft" msgstr "게시물 작성 상자를 닫고 게시물 초안을 삭제합니다" @@ -1129,11 +1140,11 @@ msgstr "게시물 작성 상자를 닫고 게시물 초안을 삭제합니다" msgid "Closes viewer for header image" msgstr "헤더 이미지 뷰어를 닫습니다" -#: src/view/com/notifications/FeedItem.tsx:237 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Collapse list of users" msgstr "사용자 목록 접기" -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:440 msgid "Collapses list of users for a given notification" msgstr "이 알림에 대한 사용자 목록을 축소합니다" @@ -1147,7 +1158,7 @@ msgstr "코미디" msgid "Comics" msgstr "만화" -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:267 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "커뮤니티 가이드라인" @@ -1160,7 +1171,7 @@ msgstr "온보딩 완료 후 계정 사용 시작" msgid "Complete the challenge" msgstr "챌린지 완료하기" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:582 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "최대 {MAX_GRAPHEME_LENGTH}자 길이까지 글을 작성할 수 있습니다" @@ -1181,8 +1192,6 @@ msgstr "<0>검토 설정에서 설정합니다." #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/PreferencesFollowingFeed.tsx:307 -#: src/view/screens/PreferencesThreads.tsx:159 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 msgid "Confirm" @@ -1287,12 +1296,12 @@ msgstr "대화 삭제됨" msgid "Cooking" msgstr "요리" -#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "복사됨" -#: src/view/screens/Settings/index.tsx:264 +#: src/view/screens/Settings/index.tsx:265 msgid "Copied build version to clipboard" msgstr "빌드 버전 클립보드에 복사됨" @@ -1300,7 +1309,7 @@ msgstr "빌드 버전 클립보드에 복사됨" #: src/view/com/modals/AddAppPasswords.tsx:80 #: src/view/com/modals/ChangeHandle.tsx:320 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:189 +#: src/view/com/util/forms/PostDropdownBtn.tsx:192 #: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "클립보드에 복사됨" @@ -1309,12 +1318,12 @@ msgstr "클립보드에 복사됨" msgid "Copied!" msgstr "복사했습니다!" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" msgstr "앱 비밀번호를 복사합니다" -#: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/view/com/modals/AddAppPasswords.tsx:213 +#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "복사" @@ -1327,11 +1336,11 @@ msgstr "{0} 복사" msgid "Copy code" msgstr "코드 복사" -#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" msgstr "링크 복사" -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" msgstr "링크 복사" @@ -1339,8 +1348,8 @@ msgstr "링크 복사" msgid "Copy link to list" msgstr "리스트 링크 복사" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 msgid "Copy link to post" msgstr "게시물 링크 복사" @@ -1349,20 +1358,24 @@ msgstr "게시물 링크 복사" msgid "Copy message text" msgstr "메시지 텍스트 복사" -#: src/view/com/util/forms/PostDropdownBtn.tsx:285 -#: src/view/com/util/forms/PostDropdownBtn.tsx:287 +#: src/view/com/util/forms/PostDropdownBtn.tsx:288 +#: src/view/com/util/forms/PostDropdownBtn.tsx:290 msgid "Copy post text" msgstr "게시물 텍스트 복사" -#: src/components/StarterPack/QrCodeDialog.tsx:168 +#: src/components/StarterPack/QrCodeDialog.tsx:171 msgid "Copy QR code" msgstr "QR 코드 복사" -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:272 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "저작권 정책" +#: src/view/com/composer/videos/state.ts:31 +msgid "Could not compress video" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "대화에서 나갈 수 없습니다" @@ -1388,17 +1401,17 @@ msgstr "만들기" msgid "Create a new account" msgstr "새 계정 만들기" -#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:425 msgid "Create a new Bluesky account" msgstr "새 Bluesky 계정을 만듭니다" -#: src/components/StarterPack/QrCodeDialog.tsx:151 +#: src/components/StarterPack/QrCodeDialog.tsx:154 msgid "Create a QR code for a starter pack" msgstr "스타터 팩 QR 코드 만들기" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:351 msgid "Create a starter pack" msgstr "스타터 팩 만들기" @@ -1423,7 +1436,7 @@ msgstr "대신 아바타 만들기" msgid "Create another" msgstr "다른 스타터 팩 만들기" -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" msgstr "앱 비밀번호 만들기" @@ -1455,7 +1468,7 @@ msgid "Custom domain" msgstr "사용자 지정 도메인" #: src/view/screens/Feeds.tsx:760 -#: src/view/screens/Search/Explore.tsx:390 +#: src/view/screens/Search/Explore.tsx:392 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "커뮤니티에서 구축한 맞춤 피드는 새로운 경험을 제공하고 좋아하는 콘텐츠를 찾을 수 있도록 도와줍니다." @@ -1463,8 +1476,8 @@ msgstr "커뮤니티에서 구축한 맞춤 피드는 새로운 경험을 제공 msgid "Customize media from external sites." msgstr "외부 사이트 미디어를 사용자 지정합니다." -#: src/view/screens/Settings/index.tsx:459 -#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:460 +#: src/view/screens/Settings/index.tsx:486 msgid "Dark" msgstr "어두움" @@ -1472,7 +1485,7 @@ msgstr "어두움" msgid "Dark mode" msgstr "어두운 모드" -#: src/view/screens/Settings/index.tsx:472 +#: src/view/screens/Settings/index.tsx:473 msgid "Dark Theme" msgstr "어두운 테마" @@ -1481,15 +1494,15 @@ msgid "Date of birth" msgstr "생년월일" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:807 +#: src/view/screens/Settings/index.tsx:808 msgid "Deactivate account" msgstr "계정 비활성화" -#: src/view/screens/Settings/index.tsx:819 +#: src/view/screens/Settings/index.tsx:820 msgid "Deactivate my account" msgstr "내 계정 비활성화" -#: src/view/screens/Settings/index.tsx:874 +#: src/view/screens/Settings/index.tsx:875 msgid "Debug Moderation" msgstr "검토 디버그" @@ -1501,13 +1514,13 @@ msgstr "디버그 패널" #: src/screens/StarterPack/StarterPackScreen.tsx:562 #: src/screens/StarterPack/StarterPackScreen.tsx:641 #: src/screens/StarterPack/StarterPackScreen.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "삭제" -#: src/view/screens/Settings/index.tsx:829 +#: src/view/screens/Settings/index.tsx:830 msgid "Delete account" msgstr "계정 삭제" @@ -1523,8 +1536,8 @@ msgstr "앱 비밀번호 삭제" msgid "Delete app password?" msgstr "앱 비밀번호를 삭제하시겠습니까?" -#: src/view/screens/Settings/index.tsx:891 -#: src/view/screens/Settings/index.tsx:894 +#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:895 msgid "Delete chat declaration record" msgstr "대화 신고 기록 삭제" @@ -1548,12 +1561,12 @@ msgstr "내게 보이는 메시지 삭제" msgid "Delete my account" msgstr "내 계정 삭제" -#: src/view/screens/Settings/index.tsx:841 +#: src/view/screens/Settings/index.tsx:842 msgid "Delete My Account…" msgstr "내 계정 삭제…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:414 -#: src/view/com/util/forms/PostDropdownBtn.tsx:416 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 +#: src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "게시물 삭제" @@ -1570,7 +1583,7 @@ msgstr "스타터 팩 삭제" msgid "Delete this list?" msgstr "이 리스트를 삭제하시겠습니까?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:428 +#: src/view/com/util/forms/PostDropdownBtn.tsx:431 msgid "Delete this post?" msgstr "이 게시물을 삭제하시겠습니까?" @@ -1582,7 +1595,7 @@ msgstr "삭제됨" msgid "Deleted post." msgstr "삭제된 게시물." -#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:893 msgid "Deletes the chat declaration record" msgstr "대화 신고 기록을 삭제합니다" @@ -1597,11 +1610,11 @@ msgstr "설명" msgid "Descriptive alt text" msgstr "설명이 포함된 대체 텍스트" -#: src/view/com/composer/Composer.tsx:283 +#: src/view/com/composer/Composer.tsx:295 msgid "Did you want to say anything?" msgstr "하고 싶은 말이 없나요?" -#: src/view/screens/Settings/index.tsx:478 +#: src/view/screens/Settings/index.tsx:479 msgid "Dim" msgstr "어둑함" @@ -1630,11 +1643,11 @@ msgstr "햅틱 피드백 끄기" msgid "Disabled" msgstr "사용 안 함" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:682 msgid "Discard" msgstr "삭제" -#: src/view/com/composer/Composer.tsx:648 +#: src/view/com/composer/Composer.tsx:679 msgid "Discard draft?" msgstr "초안 삭제" @@ -1652,7 +1665,7 @@ msgstr "Discover 피드는 탐색하며 내가 어떤 게시물을 좋아하는 msgid "Discover new custom feeds" msgstr "새로운 맞춤 피드 찾아보기" -#: src/view/screens/Search/Explore.tsx:388 +#: src/view/screens/Search/Explore.tsx:390 msgid "Discover new feeds" msgstr "새 피드 발견하기" @@ -1705,22 +1718,20 @@ msgstr "도메인을 확인했습니다." #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesFollowingFeed.tsx:310 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "완료" #: src/view/com/modals/EditImage.tsx:334 -#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" msgstr "완료" @@ -1729,7 +1740,7 @@ msgstr "완료" msgid "Done{extraText}" msgstr "완료{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319 msgid "Download Bluesky" msgstr "Bluesky 다운로드" @@ -1795,7 +1806,7 @@ msgctxt "action" msgid "Edit" msgstr "편집" -#: src/view/com/util/UserAvatar.tsx:325 +#: src/view/com/util/UserAvatar.tsx:337 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "아바타 편집" @@ -1817,7 +1828,7 @@ msgstr "리스트 세부 정보 편집" msgid "Edit Moderation List" msgstr "검토 리스트 편집" -#: src/Navigation.tsx:274 +#: src/Navigation.tsx:282 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -1832,12 +1843,12 @@ msgstr "내 프로필 편집하기" msgid "Edit People" msgstr "사람들 편집하기" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "프로필 편집" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "프로필 편집" @@ -1850,7 +1861,7 @@ msgstr "스타터 팩 편집" msgid "Edit User List" msgstr "사용자 리스트 편집" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Edit who can reply" msgstr "답글을 달 수 있는 사람 편집" @@ -1862,7 +1873,7 @@ msgstr "내 표시 이름 편집" msgid "Edit your profile description" msgstr "내 프로필 설명 편집" -#: src/Navigation.tsx:343 +#: src/Navigation.tsx:356 msgid "Edit your starter pack" msgstr "스타터 팩 편집" @@ -1901,7 +1912,7 @@ msgstr "이메일 변경됨" msgid "Email verified" msgstr "이메일 확인됨" -#: src/view/screens/Settings/index.tsx:350 +#: src/view/screens/Settings/index.tsx:351 msgid "Email:" msgstr "이메일:" @@ -1910,8 +1921,8 @@ msgid "Embed HTML code" msgstr "임베드 HTML 코드" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:324 -#: src/view/com/util/forms/PostDropdownBtn.tsx:326 +#: src/view/com/util/forms/PostDropdownBtn.tsx:327 +#: src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "게시물 임베드" @@ -1932,11 +1943,16 @@ msgstr "성인 콘텐츠 활성화" msgid "Enable external media" msgstr "외부 미디어 사용" -#: src/view/screens/PreferencesExternalEmbeds.tsx:76 +#: src/view/screens/PreferencesExternalEmbeds.tsx:73 msgid "Enable media players for" msgstr "미디어 플레이어를 사용할 외부 사이트" -#: src/view/screens/PreferencesFollowingFeed.tsx:146 +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 msgid "Enable this setting to only see replies between people you follow." msgstr "내가 팔로우하는 사람들 간의 답글만 표시합니다." @@ -1958,7 +1974,7 @@ msgstr "피드 끝" msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." msgstr "온보딩 투어 창이 종료됐습니다. 앞으로 이동하지 마세요. 대신 뒤로 이동하여 더 많은 옵션을 보거나 건너뛰려면 누르세요." -#: src/view/com/modals/AddAppPasswords.tsx:160 +#: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "이 앱 비밀번호의 이름 입력" @@ -2026,7 +2042,7 @@ msgid "Everybody" msgstr "모두" #: src/components/WhoCanReply.tsx:69 -#: src/components/WhoCanReply.tsx:240 +#: src/components/WhoCanReply.tsx:241 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "누구나 답글을 달 수 있음" @@ -2062,8 +2078,8 @@ msgstr "이미지 자르기 프로세스를 종료합니다" msgid "Exits image view" msgstr "이미지 보기를 종료합니다" -#: src/view/com/modals/ListAddRemoveUsers.tsx:88 -#: src/view/shell/desktop/Search.tsx:215 +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +#: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "검색어 입력을 종료합니다" @@ -2071,7 +2087,7 @@ msgstr "검색어 입력을 종료합니다" msgid "Expand alt text" msgstr "대체 텍스트 확장" -#: src/view/com/notifications/FeedItem.tsx:238 +#: src/view/com/notifications/FeedItem.tsx:239 msgid "Expand list of users" msgstr "사용자 목록 펼치기" @@ -2080,6 +2096,10 @@ msgstr "사용자 목록 펼치기" msgid "Expand or collapse the full post you are replying to" msgstr "답글을 달고 있는 전체 게시물을 펼치거나 접습니다" +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." msgstr "노골적이거나 불쾌감을 줄 수 있는 미디어." @@ -2088,12 +2108,12 @@ msgstr "노골적이거나 불쾌감을 줄 수 있는 미디어." msgid "Explicit sexual images." msgstr "노골적인 성적 이미지." -#: src/view/screens/Settings/index.tsx:787 +#: src/view/screens/Settings/index.tsx:788 msgid "Export my data" msgstr "내 데이터 내보내기" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:798 +#: src/view/screens/Settings/index.tsx:799 msgid "Export My Data" msgstr "내 데이터 내보내기" @@ -2103,17 +2123,17 @@ msgid "External Media" msgstr "외부 미디어" #: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/view/screens/PreferencesExternalEmbeds.tsx:64 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:293 +#: src/Navigation.tsx:301 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:680 +#: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" msgstr "외부 미디어 설정" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "External media settings" msgstr "외부 미디어 설정" @@ -2143,8 +2163,8 @@ msgstr "게시물을 삭제하지 못했습니다. 다시 시도해 주세요" msgid "Failed to delete starter pack" msgstr "스타터 팩을 삭제하지 못했습니다" -#: src/view/screens/Search/Explore.tsx:426 -#: src/view/screens/Search/Explore.tsx:454 +#: src/view/screens/Search/Explore.tsx:428 +#: src/view/screens/Search/Explore.tsx:456 msgid "Failed to load feeds preferences" msgstr "피드 환경설정을 불러오지 못했습니다" @@ -2157,29 +2177,33 @@ msgstr "GIF를 불러오지 못했습니다" msgid "Failed to load past messages" msgstr "지난 메시지를 불러오지 못했습니다" -#: src/view/screens/Search/Explore.tsx:419 -#: src/view/screens/Search/Explore.tsx:447 +#: src/view/screens/Search/Explore.tsx:421 +#: src/view/screens/Search/Explore.tsx:449 msgid "Failed to load suggested feeds" msgstr "추천 피드를 불러오지 못했습니다" -#: src/view/screens/Search/Explore.tsx:377 +#: src/view/screens/Search/Explore.tsx:379 msgid "Failed to load suggested follows" msgstr "추천 팔로우를 불러오지 못했습니다" -#: src/view/com/lightbox/Lightbox.tsx:86 +#: src/view/com/lightbox/Lightbox.tsx:90 msgid "Failed to save image: {0}" msgstr "이미지를 저장하지 못함: {0}" -#: src/components/dms/MessageItem.tsx:230 +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + +#: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "전송 실패" -#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: src/components/moderation/LabelsOnMeDialog.tsx:244 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "이의신청을 제출하지 못했습니다. 다시 시도해 주세요." -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:181 msgid "Failed to toggle thread mute, please try again" msgstr "스레드 뮤트를 전환하지 못했습니다. 다시 시도해 주세요" @@ -2192,7 +2216,7 @@ msgstr "피드를 업데이트하지 못했습니다" msgid "Failed to update settings" msgstr "설정을 업데이트하지 못했습니다" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:217 msgid "Feed" msgstr "피드" @@ -2206,19 +2230,19 @@ msgid "Feed toggle" msgstr "피드 켜거나 끄기" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:345 +#: src/view/shell/Drawer.tsx:332 msgid "Feedback" msgstr "피드백" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:336 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 #: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:493 -#: src/view/shell/Drawer.tsx:494 +#: src/view/shell/Drawer.tsx:483 +#: src/view/shell/Drawer.tsx:484 msgid "Feeds" msgstr "피드" @@ -2260,11 +2284,11 @@ msgstr "탐색 페이지에서 팔로우할 피드와 계정을 더 찾아보세 msgid "Find posts and users on Bluesky" msgstr "Bluesky에서 게시물 및 사용자 찾기" -#: src/view/screens/PreferencesFollowingFeed.tsx:110 +#: src/view/screens/PreferencesFollowingFeed.tsx:108 msgid "Fine-tune the content you see on your Following feed." msgstr "팔로우 중 피드에 표시되는 콘텐츠를 미세 조정합니다." -#: src/view/screens/PreferencesThreads.tsx:60 +#: src/view/screens/PreferencesThreads.tsx:54 msgid "Fine-tune the discussion threads." msgstr "대화 스레드를 미세 조정합니다." @@ -2294,7 +2318,7 @@ msgid "Flip vertically" msgstr "세로로 뒤집기" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:341 +#: src/components/ProfileCard.tsx:343 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2335,27 +2359,27 @@ msgstr "모두 팔로우" msgid "Follow Back" msgstr "맞팔로우" -#: src/view/screens/Search/Explore.tsx:333 +#: src/view/screens/Search/Explore.tsx:335 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "더 많은 계정을 팔로우하고 관심 분야를 연결하여 네트워크를 구축하세요." #: src/view/com/profile/ProfileCard.tsx:190 -msgid "Followed by {0}" -msgstr "{0} 님이 팔로우함" +#~ msgid "Followed by {0}" +#~ msgstr "{0} 님이 팔로우함" -#: src/components/KnownFollowers.tsx:223 +#: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "<0>{0} 님이 팔로우함" -#: src/components/KnownFollowers.tsx:209 +#: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "<0>{0} 님 외 {1, plural, other {#}}명이 팔로우함" -#: src/components/KnownFollowers.tsx:196 +#: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" msgstr "<0>{0} 님과 <1>{1} 님이 팔로우함" -#: src/components/KnownFollowers.tsx:178 +#: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0} 님, <1>{1} 님 외 {2, plural, other {#}}명이 팔로우함" @@ -2363,15 +2387,15 @@ msgstr "<0>{0} 님, <1>{1} 님 외 {2, plural, other {#}}명이 팔로 msgid "Followed users" msgstr "팔로우한 사용자" -#: src/view/screens/PreferencesFollowingFeed.tsx:153 +#: src/view/screens/PreferencesFollowingFeed.tsx:152 msgid "Followed users only" msgstr "팔로우한 사용자만" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:198 msgid "followed you" msgstr "이(가) 나를 팔로우했습니다" -#: src/view/com/notifications/FeedItem.tsx:195 +#: src/view/com/notifications/FeedItem.tsx:196 msgid "followed you back" msgstr "이(가) 나를 맞팔로우했습니다" @@ -2380,7 +2404,7 @@ msgstr "이(가) 나를 맞팔로우했습니다" msgid "Followers" msgstr "팔로워" -#: src/Navigation.tsx:182 +#: src/Navigation.tsx:185 msgid "Followers of @{0} that you know" msgstr "내가 아는 @{0} 님의 팔로워" @@ -2390,7 +2414,7 @@ msgid "Followers you know" msgstr "내가 아는 팔로워" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:335 +#: src/components/ProfileCard.tsx:337 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2402,7 +2426,7 @@ msgstr "내가 아는 팔로워" msgid "Following" msgstr "팔로우 중" -#: src/components/ProfileCard.tsx:301 +#: src/components/ProfileCard.tsx:303 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "{0} 님을 팔로우했습니다" @@ -2411,13 +2435,13 @@ msgstr "{0} 님을 팔로우했습니다" msgid "Following {name}" msgstr "{name} 님을 팔로우했습니다" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Following feed preferences" msgstr "팔로우 중 피드 설정" -#: src/Navigation.tsx:280 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:583 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesFollowingFeed.tsx:105 +#: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "팔로우 중 피드 설정" @@ -2442,7 +2466,7 @@ msgstr "음식" msgid "For security reasons, we'll need to send a confirmation code to your email address." msgstr "보안상의 이유로 이메일 주소로 인증 코드를 보내야 합니다." -#: src/view/com/modals/AddAppPasswords.tsx:232 +#: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "보안상의 이유로 이 비밀번호는 다시 볼 수 없습니다. 이 비밀번호를 분실한 경우 새 비밀번호를 생성해야 합니다." @@ -2467,7 +2491,7 @@ msgstr "잦은 원치 않는 콘텐츠 게시" msgid "From @{sanitizedAuthor}" msgstr "@{sanitizedAuthor} 님의 태그" -#: src/view/com/posts/FeedItem.tsx:236 +#: src/view/com/posts/FeedItem.tsx:242 msgctxt "from-feed" msgid "From <0/>" msgstr "<0/>에서" @@ -2480,6 +2504,10 @@ msgstr "갤러리" msgid "Generate a starter pack" msgstr "스타터 팩 만들기" +#: src/view/shell/Drawer.tsx:336 +msgid "Get help" +msgstr "" + #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" msgstr "시작하기" @@ -2527,12 +2555,12 @@ msgid "Go Back" msgstr "뒤로" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -msgid "Go back to previous screen" -msgstr "이전 화면으로 돌아갑니다" +#~ msgid "Go back to previous screen" +#~ msgstr "이전 화면으로 돌아갑니다" #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/components/ReportDialog/SubmitView.tsx:121 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 @@ -2592,7 +2620,7 @@ msgstr "햅틱" msgid "Harassment, trolling, or intolerance" msgstr "괴롭힘, 분쟁 유발 또는 차별" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:316 msgid "Hashtag" msgstr "해시태그" @@ -2605,7 +2633,7 @@ msgid "Having trouble?" msgstr "문제가 있나요?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:355 +#: src/view/shell/Drawer.tsx:345 msgid "Help" msgstr "도움말" @@ -2613,7 +2641,7 @@ msgstr "도움말" msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "사진을 업로드하거나 아바타를 만들어 사람들이 내가 봇이 아니라는 사실을 알 수 있도록 하세요." -#: src/view/com/modals/AddAppPasswords.tsx:203 +#: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "앱 비밀번호입니다." @@ -2624,17 +2652,17 @@ msgstr "앱 비밀번호입니다." #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:445 msgid "Hide" msgstr "숨기기" -#: src/view/com/notifications/FeedItem.tsx:444 +#: src/view/com/notifications/FeedItem.tsx:447 msgctxt "action" msgid "Hide" msgstr "숨기기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:387 -#: src/view/com/util/forms/PostDropdownBtn.tsx:389 +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 msgid "Hide post" msgstr "게시물 숨기기" @@ -2643,11 +2671,11 @@ msgstr "게시물 숨기기" msgid "Hide the content" msgstr "콘텐츠 숨기기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:439 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide this post?" msgstr "이 게시물을 숨기시겠습니까?" -#: src/view/com/notifications/FeedItem.tsx:435 +#: src/view/com/notifications/FeedItem.tsx:438 msgid "Hide user list" msgstr "사용자 리스트 숨기기" @@ -2679,12 +2707,12 @@ msgstr "이 데이터를 불러오는 데 문제가 있는 것 같습니다. 자 msgid "Hmmmm, we couldn't load that moderation service." msgstr "검토 서비스를 불러올 수 없습니다." -#: src/Navigation.tsx:519 -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:552 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:425 -#: src/view/shell/Drawer.tsx:426 +#: src/view/shell/Drawer.tsx:415 +#: src/view/shell/Drawer.tsx:416 msgid "Home" msgstr "홈" @@ -2738,7 +2766,7 @@ msgstr "해당 국가의 법률에 따라 아직 성인이 아닌 경우, 부모 msgid "If you delete this list, you won't be able to recover it." msgstr "이 리스트를 삭제하면 다시 복구할 수 없습니다." -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 msgid "If you remove this post, you won't be able to recover it." msgstr "이 게시물을 삭제하면 다시 복구할 수 없습니다." @@ -2762,7 +2790,7 @@ msgstr "이미지" msgid "Image alt text" msgstr "이미지 대체 텍스트" -#: src/components/StarterPack/ShareDialog.tsx:75 +#: src/components/StarterPack/ShareDialog.tsx:76 msgid "Image saved to your camera roll!" msgstr "이미지를 사진 보관함에 저장했습니다" @@ -2782,7 +2810,7 @@ msgstr "비밀번호 재설정을 위해 이메일로 전송된 코드를 입력 msgid "Input confirmation code for account deletion" msgstr "계정 삭제를 위한 인증 코드를 입력합니다" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" msgstr "앱 비밀번호의 이름을 입력합니다" @@ -2851,7 +2879,7 @@ msgstr "초대 코드: {0}개 사용 가능" msgid "Invite codes: 1 available" msgstr "초대 코드: 1개 사용 가능" -#: src/components/StarterPack/ShareDialog.tsx:96 +#: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" msgstr "이 스타터 팩을 사용할 사람들을 초대하세요!" @@ -2871,8 +2899,8 @@ msgstr "아직은 나밖에 없습니다. 위에서 검색하여 스타터 팩 msgid "Jobs" msgstr "채용" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:432 #: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" @@ -2903,11 +2931,11 @@ msgstr "라벨" 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:79 +#: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "내 계정의 라벨" -#: src/components/moderation/LabelsOnMeDialog.tsx:81 +#: src/components/moderation/LabelsOnMeDialog.tsx:82 msgid "Labels on your content" msgstr "내 콘텐츠의 라벨" @@ -2915,16 +2943,16 @@ msgstr "내 콘텐츠의 라벨" msgid "Language selection" msgstr "언어 선택" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Language settings" msgstr "언어 설정" -#: src/Navigation.tsx:155 +#: src/Navigation.tsx:158 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "언어 설정" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Languages" msgstr "언어" @@ -2984,7 +3012,7 @@ msgstr "Bluesky 떠나기" msgid "left to go." msgstr "명 남았습니다." -#: src/view/screens/Settings/index.tsx:309 +#: src/view/screens/Settings/index.tsx:310 msgid "Legacy storage cleared, you need to restart the app now." msgstr "레거시 스토리지가 지워졌으며 지금 앱을 다시 시작해야 합니다." @@ -3002,7 +3030,7 @@ msgstr "비밀번호를 재설정해 봅시다!" msgid "Let's go!" msgstr "출발!" -#: src/view/screens/Settings/index.tsx:453 +#: src/view/screens/Settings/index.tsx:454 msgid "Light" msgstr "밝음" @@ -3016,13 +3044,13 @@ msgid "Like 10 posts to train the Discover feed" msgstr "10개 게시물에 좋아요를 눌러 Discover 피드를 훈련시키세요" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Like this feed" msgstr "이 피드에 좋아요 표시" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:219 -#: src/Navigation.tsx:224 +#: src/Navigation.tsx:222 +#: src/Navigation.tsx:227 msgid "Liked by" msgstr "좋아요 표시한 사용자" @@ -3032,11 +3060,11 @@ msgstr "좋아요 표시한 사용자" msgid "Liked By" msgstr "좋아요 표시한 사용자" -#: src/view/com/notifications/FeedItem.tsx:201 +#: src/view/com/notifications/FeedItem.tsx:202 msgid "liked your custom feed" msgstr "이(가) 내 맞춤 피드를 좋아합니다" -#: src/view/com/notifications/FeedItem.tsx:185 +#: src/view/com/notifications/FeedItem.tsx:186 msgid "liked your post" msgstr "이(가) 내 게시물을 좋아합니다" @@ -3048,7 +3076,7 @@ msgstr "좋아요" msgid "Likes on this post" msgstr "이 게시물을 좋아요 표시합니다" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:191 msgid "List" msgstr "리스트" @@ -3085,12 +3113,12 @@ msgstr "리스트 차단 해제됨" msgid "List unmuted" msgstr "리스트 언뮤트됨" -#: src/Navigation.tsx:125 +#: src/Navigation.tsx:128 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 -#: src/view/shell/Drawer.tsx:509 -#: src/view/shell/Drawer.tsx:510 +#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:500 msgid "Lists" msgstr "리스트" @@ -3098,25 +3126,25 @@ msgstr "리스트" msgid "Lists blocking this user:" msgstr "이 사용자를 차단한 리스트:" -#: src/view/screens/Search/Explore.tsx:130 +#: src/view/screens/Search/Explore.tsx:131 msgid "Load more" msgstr "더 불러오기" -#: src/view/screens/Search/Explore.tsx:218 +#: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" msgstr "추천 피드 더 불러오기" -#: src/view/screens/Search/Explore.tsx:216 +#: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" msgstr "추천 팔로우 더 불러오기" -#: src/view/screens/Notifications.tsx:184 +#: src/view/screens/Notifications.tsx:219 msgid "Load new notifications" msgstr "새 알림 불러오기" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:494 +#: src/view/screens/ProfileFeed.tsx:495 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "새 게시물 불러오기" @@ -3125,7 +3153,7 @@ msgstr "새 게시물 불러오기" msgid "Loading..." msgstr "불러오는 중…" -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:247 msgid "Log" msgstr "로그" @@ -3191,7 +3219,7 @@ msgstr "읽음으로 표시" msgid "Media" msgstr "미디어" -#: src/components/WhoCanReply.tsx:275 +#: src/components/WhoCanReply.tsx:276 msgid "mentioned users" msgstr "멘션한 사용자" @@ -3213,7 +3241,7 @@ msgstr "{0} 님에게 메시지 보내기" msgid "Message deleted" msgstr "메시지 삭제됨" -#: src/view/com/posts/FeedErrorMessage.tsx:200 +#: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "서버에서 보낸 메시지: {0}" @@ -3230,7 +3258,7 @@ msgstr "메시지가 너무 깁니다" msgid "Message settings" msgstr "메시지 설정" -#: src/Navigation.tsx:534 +#: src/Navigation.tsx:547 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3241,9 +3269,9 @@ msgstr "메시지" msgid "Misleading Account" msgstr "오해의 소지가 있는 계정" -#: src/Navigation.tsx:130 +#: src/Navigation.tsx:133 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:562 +#: src/view/screens/Settings/index.tsx:563 msgid "Moderation" msgstr "검토" @@ -3279,16 +3307,16 @@ msgstr "검토 리스트 업데이트됨" msgid "Moderation lists" msgstr "검토 리스트" -#: src/Navigation.tsx:135 +#: src/Navigation.tsx:138 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "검토 리스트" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Moderation settings" msgstr "검토 설정" -#: src/Navigation.tsx:234 +#: src/Navigation.tsx:237 msgid "Moderation states" msgstr "검토 상태" @@ -3313,7 +3341,7 @@ msgstr "피드 더 보기" msgid "More options" msgstr "옵션 더 보기" -#: src/view/screens/PreferencesThreads.tsx:82 +#: src/view/screens/PreferencesThreads.tsx:76 msgid "Most-liked replies first" msgstr "좋아요 많은 순" @@ -3375,13 +3403,13 @@ msgstr "게시물 글 및 태그에서 이 단어 뮤트하기" msgid "Mute this word in tags only" msgstr "태그에서만 이 단어 뮤트하기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:371 msgid "Mute thread" msgstr "스레드 뮤트" -#: src/view/com/util/forms/PostDropdownBtn.tsx:378 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 +#: src/view/com/util/forms/PostDropdownBtn.tsx:381 +#: src/view/com/util/forms/PostDropdownBtn.tsx:383 msgid "Mute words & tags" msgstr "단어 및 태그 뮤트" @@ -3393,7 +3421,7 @@ msgstr "뮤트됨" msgid "Muted accounts" msgstr "뮤트한 계정" -#: src/Navigation.tsx:140 +#: src/Navigation.tsx:143 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "뮤트한 계정" @@ -3427,15 +3455,15 @@ msgstr "내 피드" msgid "My Profile" msgstr "내 프로필" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "My saved feeds" msgstr "내 저장한 피드" -#: src/view/screens/Settings/index.tsx:623 +#: src/view/screens/Settings/index.tsx:624 msgid "My Saved Feeds" msgstr "내 저장한 피드" -#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/AddAppPasswords.tsx:174 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "이름" @@ -3470,7 +3498,7 @@ msgstr "스타터 팩으로 이동합니다" msgid "Navigates to the next screen" msgstr "다음 화면으로 이동합니다" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:78 msgid "Navigates to your profile" msgstr "내 프로필로 이동합니다" @@ -3495,7 +3523,7 @@ msgstr "새로 만들기" msgid "New" msgstr "새로 만들기" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" @@ -3523,9 +3551,9 @@ msgid "New post" msgstr "새 게시물" #: src/view/screens/Feeds.tsx:581 -#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Notifications.tsx:228 #: src/view/screens/Profile.tsx:478 -#: src/view/screens/ProfileFeed.tsx:428 +#: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:278 @@ -3545,7 +3573,7 @@ msgstr "새 사용자 정보 대화 상자" msgid "New User List" msgstr "새 사용자 리스트" -#: src/view/screens/PreferencesThreads.tsx:79 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Newest replies first" msgstr "새로운 순" @@ -3575,16 +3603,16 @@ msgstr "다음" msgid "Next image" msgstr "다음 이미지" -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:199 -#: src/view/screens/PreferencesFollowingFeed.tsx:234 -#: src/view/screens/PreferencesFollowingFeed.tsx:271 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:198 +#: src/view/screens/PreferencesFollowingFeed.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:270 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "No" msgstr "아니요" -#: src/view/screens/ProfileFeed.tsx:562 +#: src/view/screens/ProfileFeed.tsx:564 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "설명 없음" @@ -3602,7 +3630,7 @@ msgstr "인기 GIF를 찾을 수 없습니다. Tenor에 문제가 있을 수 있 msgid "No feeds found. Try searching for something else." msgstr "피드를 찾을 수 없습니다. 다른 피드를 검색해 보세요." -#: src/components/ProfileCard.tsx:321 +#: src/components/ProfileCard.tsx:323 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "더 이상 {0} 님을 팔로우하지 않음" @@ -3619,7 +3647,7 @@ msgstr "아직 메시지가 없습니다" msgid "No more conversations to show" msgstr "더 이상 표시할 대화가 없습니다" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:122 msgid "No notifications yet!" msgstr "아직 알림이 없습니다." @@ -3651,7 +3679,7 @@ msgstr "결과를 찾을 수 없음" msgid "No results found for \"{query}\"" msgstr "\"{query}\"에 대한 결과를 찾을 수 없습니다" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 @@ -3689,7 +3717,7 @@ msgstr "아무도 찾을 수 없습니다. 다른 사용자를 검색해 보세 msgid "Non-sexual Nudity" msgstr "선정적이지 않은 노출" -#: src/Navigation.tsx:120 +#: src/Navigation.tsx:123 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "찾을 수 없음" @@ -3700,7 +3728,7 @@ msgid "Not right now" msgstr "나중에 하기" #: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/forms/PostDropdownBtn.tsx:459 #: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "공유 관련 참고 사항" @@ -3713,6 +3741,19 @@ msgstr "참고: Bluesky는 개방형 공개 네트워크입니다. 이 설정은 msgid "Nothing here" msgstr "빈 페이지" +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:331 +#: src/view/screens/Notifications.tsx:119 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "" + #: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "알림음" @@ -3721,13 +3762,14 @@ msgstr "알림음" msgid "Notification Sounds" msgstr "알림음" -#: src/Navigation.tsx:529 -#: src/view/screens/Notifications.tsx:132 -#: src/view/screens/Notifications.tsx:169 +#: src/Navigation.tsx:542 +#: src/view/screens/Notifications.tsx:145 +#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:203 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 -#: src/view/shell/Drawer.tsx:457 -#: src/view/shell/Drawer.tsx:458 +#: src/view/shell/Drawer.tsx:447 +#: src/view/shell/Drawer.tsx:448 msgid "Notifications" msgstr "알림" @@ -3735,7 +3777,7 @@ msgstr "알림" msgid "now" msgstr "지금" -#: src/components/dms/MessageItem.tsx:175 +#: src/components/dms/MessageItem.tsx:169 msgid "Now" msgstr "지금" @@ -3761,7 +3803,7 @@ msgstr "이런!" msgid "Oh no! Something went wrong." msgstr "이런! 뭔가 잘못되었습니다." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 msgid "OK" msgstr "확인" @@ -3769,7 +3811,7 @@ msgstr "확인" msgid "Okay" msgstr "확인" -#: src/view/screens/PreferencesThreads.tsx:78 +#: src/view/screens/PreferencesThreads.tsx:72 msgid "Oldest replies first" msgstr "오래된 순" @@ -3781,7 +3823,7 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:257 +#: src/view/screens/Settings/index.tsx:258 msgid "Onboarding reset" msgstr "온보딩 재설정" @@ -3789,7 +3831,7 @@ msgstr "온보딩 재설정" msgid "Onboarding tour step {0}: {1}" msgstr "온보딩 투어 단계 {0}: {1}" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:534 msgid "One or more images is missing alt text." msgstr "하나 이상의 이미지에 대체 텍스트가 누락되었습니다." @@ -3797,7 +3839,7 @@ msgstr "하나 이상의 이미지에 대체 텍스트가 누락되었습니다. msgid "Only .jpg and .png files are supported" msgstr ".jpg 및 .png 파일만 지원합니다" -#: src/components/WhoCanReply.tsx:244 +#: src/components/WhoCanReply.tsx:245 msgid "Only {0} can reply" msgstr "{0}만 답글을 달 수 있음" @@ -3813,6 +3855,7 @@ msgstr "이런, 뭔가 잘못되었습니다!" #: src/components/StarterPack/ProfileStarterPacks.tsx:304 #: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/NotificationsSettings.tsx:45 #: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "이런!" @@ -3834,16 +3877,16 @@ msgstr "아바타 생성기 열기" msgid "Open conversation options" msgstr "대화 옵션 열기" -#: src/view/com/composer/Composer.tsx:632 -#: src/view/com/composer/Composer.tsx:633 +#: src/view/com/composer/Composer.tsx:663 +#: src/view/com/composer/Composer.tsx:664 msgid "Open emoji picker" msgstr "이모티콘 선택기 열기" -#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileFeed.tsx:297 msgid "Open feed options menu" msgstr "피드 옵션 메뉴 열기" -#: src/view/screens/Settings/index.tsx:737 +#: src/view/screens/Settings/index.tsx:738 msgid "Open links with in-app browser" msgstr "링크를 인앱 브라우저로 열기" @@ -3859,7 +3902,7 @@ msgstr "뮤트한 단어 및 태그 설정 열기" msgid "Open navigation" msgstr "내비게이션 열기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:247 +#: src/view/com/util/forms/PostDropdownBtn.tsx:250 msgid "Open post options menu" msgstr "게시물 옵션 메뉴 열기" @@ -3867,12 +3910,12 @@ msgstr "게시물 옵션 메뉴 열기" msgid "Open starter pack menu" msgstr "스타터 팩 메뉴 열기" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Open storybook page" msgstr "스토리북 페이지 열기" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Open system log" msgstr "시스템 로그 열기" @@ -3884,7 +3927,7 @@ msgstr "{numItems}번째 옵션을 엽니다" msgid "Opens a dialog to choose who can reply to this thread" msgstr "이 스레드에 답글을 달 수 있는 사람을 선택하는 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:511 +#: src/view/screens/Settings/index.tsx:512 msgid "Opens accessibility settings" msgstr "접근성 설정을 엽니다" @@ -3896,7 +3939,7 @@ msgstr "디버그 항목에 대한 추가 세부 정보를 엽니다" msgid "Opens camera on device" msgstr "기기에서 카메라를 엽니다" -#: src/view/screens/Settings/index.tsx:640 +#: src/view/screens/Settings/index.tsx:641 msgid "Opens chat settings" msgstr "대화 설정을 엽니다" @@ -3904,7 +3947,7 @@ msgstr "대화 설정을 엽니다" msgid "Opens composer" msgstr "답글 작성 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:532 +#: src/view/screens/Settings/index.tsx:533 msgid "Opens configurable language settings" msgstr "구성 가능한 언어 설정을 엽니다" @@ -3912,7 +3955,7 @@ msgstr "구성 가능한 언어 설정을 엽니다" msgid "Opens device photo gallery" msgstr "기기의 사진 갤러리를 엽니다" -#: src/view/screens/Settings/index.tsx:672 +#: src/view/screens/Settings/index.tsx:673 msgid "Opens external embeds settings" msgstr "외부 임베드 설정을 엽니다" @@ -3934,27 +3977,27 @@ msgstr "GIF 선택 대화 상자를 엽니다" msgid "Opens list of invite codes" msgstr "초대 코드 목록을 엽니다" -#: src/view/screens/Settings/index.tsx:809 +#: src/view/screens/Settings/index.tsx:810 msgid "Opens modal for account deactivation confirmation" msgstr "계정 비활성화 확인을 위한 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:831 +#: src/view/screens/Settings/index.tsx:832 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "계정 삭제 확인을 위한 대화 상자를 엽니다. 이메일 코드가 필요합니다" -#: src/view/screens/Settings/index.tsx:766 +#: src/view/screens/Settings/index.tsx:767 msgid "Opens modal for changing your Bluesky password" msgstr "Bluesky 비밀번호 변경을 위한 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:721 +#: src/view/screens/Settings/index.tsx:722 msgid "Opens modal for choosing a new Bluesky handle" msgstr "새로운 Bluesky 핸들을 선택하기 위한 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:789 +#: src/view/screens/Settings/index.tsx:790 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Bluesky 계정 데이터(저장소)를 다운로드하기 위한 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:1009 +#: src/view/screens/Settings/index.tsx:1010 msgid "Opens modal for email verification" msgstr "이메일 인증을 위한 대화 상자를 엽니다" @@ -3962,7 +4005,7 @@ msgstr "이메일 인증을 위한 대화 상자를 엽니다" msgid "Opens modal for using custom domain" msgstr "사용자 지정 도메인을 사용하기 위한 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:557 +#: src/view/screens/Settings/index.tsx:558 msgid "Opens moderation settings" msgstr "검토 설정을 엽니다" @@ -3970,15 +4013,15 @@ msgstr "검토 설정을 엽니다" msgid "Opens password reset form" msgstr "비밀번호 재설정 양식을 엽니다" -#: src/view/screens/Settings/index.tsx:618 +#: src/view/screens/Settings/index.tsx:619 msgid "Opens screen with all saved feeds" msgstr "모든 저장한 피드 화면을 엽니다" -#: src/view/screens/Settings/index.tsx:699 +#: src/view/screens/Settings/index.tsx:700 msgid "Opens the app password settings" msgstr "비밀번호 설정을 엽니다" -#: src/view/screens/Settings/index.tsx:575 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens the Following feed preferences" msgstr "팔로우 중 피드 설정을 엽니다" @@ -3986,30 +4029,34 @@ msgstr "팔로우 중 피드 설정을 엽니다" msgid "Opens the linked website" msgstr "연결된 웹사이트를 엽니다" -#: src/view/screens/Settings/index.tsx:862 -#: src/view/screens/Settings/index.tsx:872 +#: src/view/screens/Settings/index.tsx:863 +#: src/view/screens/Settings/index.tsx:873 msgid "Opens the storybook page" msgstr "스토리북 페이지를 엽니다" -#: src/view/screens/Settings/index.tsx:850 +#: src/view/screens/Settings/index.tsx:851 msgid "Opens the system log page" msgstr "시스템 로그 페이지를 엽니다" -#: src/view/screens/Settings/index.tsx:596 +#: src/view/screens/Settings/index.tsx:597 msgid "Opens the threads preferences" msgstr "스레드 설정을 엽니다" -#: src/view/com/notifications/FeedItem.tsx:524 -#: src/view/com/util/UserAvatar.tsx:422 +#: src/view/com/notifications/FeedItem.tsx:527 +#: src/view/com/util/UserAvatar.tsx:434 msgid "Opens this profile" msgstr "이 프로필을 엽니다" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:54 +msgid "Opens video picker" +msgstr "" + #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "{numItems}개 중 {0}번째 옵션" #: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:162 +#: src/components/ReportDialog/SubmitView.tsx:179 msgid "Optionally provide additional information below:" msgstr "선택 사항으로 아래에 추가 정보를 입력하세요." @@ -4069,7 +4116,7 @@ msgstr "비밀번호 변경됨" msgid "Password updated!" msgstr "비밀번호 변경됨" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Pause" msgstr "일시 정지" @@ -4078,19 +4125,19 @@ msgstr "일시 정지" msgid "People" msgstr "사람들" -#: src/Navigation.tsx:175 +#: src/Navigation.tsx:178 msgid "People followed by @{0}" msgstr "@{0} 님이 팔로우한 사람들" -#: src/Navigation.tsx:168 +#: src/Navigation.tsx:171 msgid "People following @{0}" msgstr "@{0} 님을 팔로우하는 사람들" -#: src/view/com/lightbox/Lightbox.tsx:69 +#: src/view/com/lightbox/Lightbox.tsx:70 msgid "Permission to access camera roll is required." msgstr "사진 보관함에 접근할 수 있는 권한이 필요합니다." -#: src/view/com/lightbox/Lightbox.tsx:75 +#: src/view/com/lightbox/Lightbox.tsx:78 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "사진 보관함에 접근할 수 있는 권한이 거부되었습니다. 시스템 설정에서 활성화하세요." @@ -4111,12 +4158,12 @@ msgstr "사진" msgid "Pictures meant for adults." msgstr "성인용 사진." -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "홈에 고정" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 msgid "Pin to Home" msgstr "홈에 고정" @@ -4128,7 +4175,7 @@ msgstr "고정한 피드" msgid "Pinned to your feeds" msgstr "내 피드에 고정됨" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Play" msgstr "재생" @@ -4136,7 +4183,7 @@ msgstr "재생" msgid "Play {0}" msgstr "{0} 재생" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 msgid "Play or pause the GIF" msgstr "GIP를 재생하거나 일시 정지합니다" @@ -4170,7 +4217,7 @@ msgstr "이메일을 변경하기 전에 이메일을 확인해 주세요. 이 msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "앱 비밀번호의 이름을 입력하세요. 모든 공백 문자는 허용되지 않습니다." -#: src/view/com/modals/AddAppPasswords.tsx:150 +#: src/view/com/modals/AddAppPasswords.tsx:151 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "이 앱 비밀번호에 대해 고유한 이름을 입력하거나 무작위로 생성된 이름을 사용합니다." @@ -4191,7 +4238,7 @@ msgstr "초대 코드를 입력하세요." msgid "Please enter your password as well:" msgstr "비밀번호를 입력하세요." -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:277 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "{0} 님이 이 라벨을 잘못 적용했다고 생각하는 이유를 설명해 주세요" @@ -4208,7 +4255,7 @@ msgstr "@{0}(으)로 로그인하세요" msgid "Please Verify Your Email" msgstr "이메일 인증하기" -#: src/view/com/composer/Composer.tsx:287 +#: src/view/com/composer/Composer.tsx:299 msgid "Please wait for your link card to finish loading" msgstr "링크 카드를 완전히 불러올 때까지 기다려주세요" @@ -4221,8 +4268,8 @@ msgstr "정치" msgid "Porn" msgstr "음란물" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:509 +#: src/view/com/composer/Composer.tsx:516 msgctxt "action" msgid "Post" msgstr "게시하기" @@ -4236,9 +4283,9 @@ msgstr "게시물" msgid "Post by {0}" msgstr "{0} 님의 게시물" -#: src/Navigation.tsx:194 -#: src/Navigation.tsx:201 -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:197 +#: src/Navigation.tsx:204 +#: src/Navigation.tsx:211 msgid "Post by @{0}" msgstr "@{0} 님의 게시물" @@ -4294,6 +4341,10 @@ msgstr "게시물 숨겨짐" msgid "Potentially Misleading Link" msgstr "오해의 소지가 있는 링크" +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "다시 연결을 시도하려면 누르기" @@ -4309,7 +4360,7 @@ msgstr "호스팅 제공자를 변경하려면 누릅니다" msgid "Press to retry" msgstr "다시 시도하려면 누르기" -#: src/components/KnownFollowers.tsx:116 +#: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "내가 팔로우하는 이 계정의 팔로워를 보려면 누르세요" @@ -4321,20 +4372,24 @@ msgstr "이전 이미지" msgid "Primary Language" msgstr "주 언어" -#: src/view/screens/PreferencesThreads.tsx:97 +#: src/view/screens/PreferencesThreads.tsx:91 msgid "Prioritize Your Follows" msgstr "내 팔로우 먼저 표시" -#: src/view/screens/Settings/index.tsx:655 +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "" + +#: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "개인정보" -#: src/Navigation.tsx:249 +#: src/Navigation.tsx:257 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:958 -#: src/view/shell/Drawer.tsx:285 +#: src/view/screens/Settings/index.tsx:959 +#: src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "개인정보 처리방침" @@ -4353,9 +4408,9 @@ msgstr "프로필" #: src/view/shell/bottom-bar/BottomBar.tsx:275 #: src/view/shell/desktop/LeftNav.tsx:393 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:542 -#: src/view/shell/Drawer.tsx:543 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:532 +#: src/view/shell/Drawer.tsx:533 msgid "Profile" msgstr "프로필" @@ -4363,7 +4418,7 @@ msgstr "프로필" msgid "Profile updated" msgstr "프로필 업데이트됨" -#: src/view/screens/Settings/index.tsx:1022 +#: src/view/screens/Settings/index.tsx:1023 msgid "Protect your account by verifying your email." msgstr "이메일을 인증하여 계정을 보호하세요." @@ -4379,23 +4434,23 @@ msgstr "일괄 뮤트하거나 차단할 수 있는 공개적이고 공유 가 msgid "Public, shareable lists which can drive feeds." msgstr "피드를 탐색할 수 있는 공개적이고 공유 가능한 목록입니다." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish post" msgstr "게시물 게시하기" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish reply" msgstr "답글 게시하기" -#: src/components/StarterPack/QrCodeDialog.tsx:125 +#: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "QR 코드를 클립보드에 복사했습니다." -#: src/components/StarterPack/QrCodeDialog.tsx:103 +#: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" msgstr "QR 코드를 다운로드했습니다." -#: src/components/StarterPack/QrCodeDialog.tsx:104 +#: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "QR 코드를 사진 보관함에 저장했습니다." @@ -4410,7 +4465,7 @@ msgstr "빠른 팁" msgid "Quote post" msgstr "게시물 인용" -#: src/view/screens/PreferencesThreads.tsx:86 +#: src/view/screens/PreferencesThreads.tsx:80 msgid "Random (aka \"Poster's Roulette\")" msgstr "무작위" @@ -4434,19 +4489,23 @@ msgstr "최근 검색" msgid "Reconnect" msgstr "다시 연결" +#: src/view/screens/Notifications.tsx:146 +msgid "Refresh notifications" +msgstr "" + #: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "대화 다시 불러오기" #: src/components/dialogs/MutedWords.tsx:286 #: src/components/FeedCard.tsx:309 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:212 +#: src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "제거" @@ -4458,7 +4517,7 @@ msgstr "스타터 팩에서 {displayName} 제거" msgid "Remove account" msgstr "계정 제거" -#: src/view/com/util/UserAvatar.tsx:384 +#: src/view/com/util/UserAvatar.tsx:396 msgid "Remove Avatar" msgstr "아바타 제거" @@ -4470,20 +4529,20 @@ msgstr "배너 제거" msgid "Remove embed" msgstr "임베드 제거" -#: src/view/com/posts/FeedErrorMessage.tsx:168 -#: src/view/com/posts/FeedShutdownMsg.tsx:113 -#: src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:115 +#: src/view/com/posts/FeedShutdownMsg.tsx:119 msgid "Remove feed" msgstr "피드 제거" -#: src/view/com/posts/FeedErrorMessage.tsx:209 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" msgstr "피드를 제거하시겠습니까?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "내 피드에서 제거" @@ -4497,7 +4556,7 @@ msgstr "내 피드에서 제거하시겠습니까?" msgid "Remove image" msgstr "이미지 제거" -#: src/view/com/composer/ExternalEmbed.tsx:87 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 msgid "Remove image preview" msgstr "이미지 미리보기 제거" @@ -4522,11 +4581,11 @@ msgstr "인용 제거" msgid "Remove repost" msgstr "재게시를 취소합니다" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "저장한 피드에서 이 피드를 제거합니다" -#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "리스트에서 제거됨" @@ -4542,15 +4601,19 @@ msgid "Removed from your feeds" msgstr "내 피드에서 제거됨" #: src/view/com/composer/ExternalEmbed.tsx:88 -msgid "Removes default thumbnail from {0}" -msgstr "{0}에서 기본 미리보기 이미지를 제거합니다" +#~ msgid "Removes default thumbnail from {0}" +#~ msgstr "{0}에서 기본 미리보기 이미지를 제거합니다" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" msgstr "인용된 게시물을 제거합니다" -#: src/view/com/posts/FeedShutdownMsg.tsx:126 -#: src/view/com/posts/FeedShutdownMsg.tsx:130 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the image preview" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:128 +#: src/view/com/posts/FeedShutdownMsg.tsx:132 msgid "Replace with Discover" msgstr "Discover로 교체" @@ -4562,30 +4625,36 @@ msgstr "답글" msgid "Replies disabled" msgstr "답글 비활성화됨" -#: src/components/WhoCanReply.tsx:242 +#: src/components/WhoCanReply.tsx:243 msgid "Replies to this thread are disabled" msgstr "이 스레드에 대한 답글이 비활성화됨" -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:507 msgctxt "action" msgid "Reply" msgstr "답글" -#: src/view/screens/PreferencesFollowingFeed.tsx:143 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 msgid "Reply Filters" msgstr "답글 필터" -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:439 +#: src/view/com/post/Post.tsx:197 +#: src/view/com/posts/FeedItem.tsx:458 msgctxt "description" msgid "Reply to <0><1/>" msgstr "<0><1/> 님에게 보내는 답글" -#: src/view/com/posts/FeedItem.tsx:437 +#: src/view/com/posts/FeedItem.tsx:456 msgctxt "description" msgid "Reply to a blocked post" msgstr "차단된 게시물에 보내는 답글" +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:454 +msgctxt "description" +msgid "Reply to you" +msgstr "" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -4607,8 +4676,8 @@ msgstr "대화 신고" msgid "Report dialog" msgstr "신고 대화 상자" -#: src/view/screens/ProfileFeed.tsx:349 -#: src/view/screens/ProfileFeed.tsx:351 +#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:352 msgid "Report feed" msgstr "피드 신고" @@ -4620,8 +4689,8 @@ msgstr "리스트 신고" msgid "Report message" msgstr "메시지 신고" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:407 +#: src/view/com/util/forms/PostDropdownBtn.tsx:409 msgid "Report post" msgstr "게시물 신고" @@ -4683,15 +4752,20 @@ msgstr "재게시 또는 게시물 인용" msgid "Reposted By" msgstr "재게시한 사용자" -#: src/view/com/posts/FeedItem.tsx:254 +#: src/view/com/posts/FeedItem.tsx:263 msgid "Reposted by {0}" msgstr "{0} 님이 재게시함" -#: src/view/com/posts/FeedItem.tsx:269 +#: src/view/com/posts/FeedItem.tsx:282 msgid "Reposted by <0><1/>" msgstr "<0><1/> 님이 재게시함" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/posts/FeedItem.tsx:261 +#: src/view/com/posts/FeedItem.tsx:280 +msgid "Reposted by you" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:188 msgid "reposted your post" msgstr "이(가) 내 게시물을 재게시했습니다" @@ -4734,8 +4808,8 @@ msgstr "재설정 코드" msgid "Reset Code" msgstr "재설정 코드" -#: src/view/screens/Settings/index.tsx:901 -#: src/view/screens/Settings/index.tsx:904 +#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:905 msgid "Reset onboarding state" msgstr "온보딩 상태 초기화" @@ -4743,16 +4817,16 @@ msgstr "온보딩 상태 초기화" msgid "Reset password" msgstr "비밀번호 재설정" -#: src/view/screens/Settings/index.tsx:881 -#: src/view/screens/Settings/index.tsx:884 +#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:885 msgid "Reset preferences state" msgstr "설정 상태 초기화" -#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:903 msgid "Resets the onboarding state" msgstr "온보딩 상태 초기화" -#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:883 msgid "Resets the preferences state" msgstr "설정 상태 초기화" @@ -4765,7 +4839,7 @@ msgstr "로그인을 다시 시도합니다" msgid "Retries the last action, which errored out" msgstr "오류가 발생한 마지막 작업을 다시 시도합니다" -#: src/components/dms/MessageItem.tsx:241 +#: src/components/dms/MessageItem.tsx:235 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 @@ -4797,7 +4871,7 @@ msgstr "이전 페이지로 돌아갑니다" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/dialogs/ThreadgateEditor.tsx:88 -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:187 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -4806,7 +4880,7 @@ msgstr "이전 페이지로 돌아갑니다" msgid "Save" msgstr "저장" -#: src/view/com/lightbox/Lightbox.tsx:135 +#: src/view/com/lightbox/Lightbox.tsx:139 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -4828,8 +4902,8 @@ msgstr "변경 사항 저장" msgid "Save handle change" msgstr "핸들 변경 저장" -#: src/components/StarterPack/ShareDialog.tsx:150 -#: src/components/StarterPack/ShareDialog.tsx:157 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "이미지 저장" @@ -4837,12 +4911,12 @@ msgstr "이미지 저장" msgid "Save image crop" msgstr "이미지 자르기 저장" -#: src/components/StarterPack/QrCodeDialog.tsx:178 +#: src/components/StarterPack/QrCodeDialog.tsx:181 msgid "Save QR code" msgstr "QR 코드 저장" -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 +#: src/view/screens/ProfileFeed.tsx:334 +#: src/view/screens/ProfileFeed.tsx:340 msgid "Save to my feeds" msgstr "내 피드에 저장" @@ -4850,7 +4924,7 @@ msgstr "내 피드에 저장" msgid "Saved Feeds" msgstr "저장한 피드" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:88 msgid "Saved to your camera roll" msgstr "내 사진 보관함에 저장됨" @@ -4873,8 +4947,8 @@ msgstr "이미지 자르기 설정을 저장합니다" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:383 -#: src/view/com/notifications/FeedItem.tsx:408 +#: src/view/com/notifications/FeedItem.tsx:386 +#: src/view/com/notifications/FeedItem.tsx:411 msgid "Say hello!" msgstr "인사해 보세요!" @@ -4888,9 +4962,9 @@ msgid "Scroll to top" msgstr "맨 위로 스크롤" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:524 +#: src/Navigation.tsx:537 #: src/view/com/auth/LoggedOut.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 @@ -4898,14 +4972,14 @@ msgstr "맨 위로 스크롤" #: src/view/screens/Search/Search.tsx:813 #: src/view/shell/bottom-bar/BottomBar.tsx:182 #: src/view/shell/desktop/LeftNav.tsx:354 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:394 -#: src/view/shell/Drawer.tsx:395 +#: src/view/shell/desktop/Search.tsx:195 +#: src/view/shell/desktop/Search.tsx:204 +#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:385 msgid "Search" msgstr "검색" -#: src/view/shell/desktop/Search.tsx:235 +#: src/view/shell/desktop/Search.tsx:236 msgid "Search for \"{query}\"" msgstr "\"{query}\"에 대한 검색 결과" @@ -4927,7 +5001,7 @@ msgstr "다른 사람에게 추천할 피드를 검색하세요." #: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/auth/LoggedOut.tsx:107 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "사용자 검색하기" @@ -5018,7 +5092,7 @@ msgstr "{numItems}개 중 {i}번째 옵션을 선택합니다" msgid "Select the {emojiName} emoji as your avatar" msgstr "{emojiName} 이모티콘을 아바타로 선택하기" -#: src/components/ReportDialog/SubmitView.tsx:135 +#: src/components/ReportDialog/SubmitView.tsx:152 msgid "Select the moderation service(s) to report to" msgstr "신고할 검토 서비스를 선택하세요." @@ -5026,6 +5100,10 @@ msgstr "신고할 검토 서비스를 선택하세요." msgid "Select the service that hosts your data." msgstr "데이터를 호스팅할 서비스를 선택하세요." +#: src/view/com/composer/videos/SelectVideoBtn.tsx:53 +msgid "Select video" +msgstr "" + #: src/view/screens/LanguageSettings.tsx:283 msgid "Select which languages you want your subscribed feeds to include. If none are selected, all languages will be shown." msgstr "구독하는 피드에 포함할 언어를 선택합니다. 선택하지 않으면 모든 언어가 표시됩니다." @@ -5064,8 +5142,7 @@ msgctxt "action" msgid "Send Email" msgstr "이메일 보내기" -#: src/view/shell/Drawer.tsx:329 -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:325 msgid "Send feedback" msgstr "피드백 보내기" @@ -5074,14 +5151,14 @@ msgstr "피드백 보내기" msgid "Send message" msgstr "메시지 보내기" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 msgid "Send post to..." msgstr "게시물을 다음으로 보내기" #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:215 -#: src/components/ReportDialog/SubmitView.tsx:219 +#: src/components/ReportDialog/SubmitView.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:236 msgid "Send report" msgstr "신고 보내기" @@ -5094,8 +5171,8 @@ msgstr "{0} 님에게 신고 보내기" msgid "Send verification email" msgstr "인증 이메일 보내기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 +#: src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" msgstr "다이렉트 메시지로 보내기" @@ -5115,23 +5192,23 @@ msgstr "생년월일 설정" msgid "Set new password" msgstr "새 비밀번호 설정" -#: src/view/screens/PreferencesFollowingFeed.tsx:224 +#: src/view/screens/PreferencesFollowingFeed.tsx:223 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "피드에서 모든 인용 게시물을 숨기려면 이 설정을 \"아니요\"로 설정합니다. 재게시는 계속 표시됩니다." -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:120 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "피드에서 모든 답글을 숨기려면 이 설정을 \"아니요\"로 설정합니다." -#: src/view/screens/PreferencesFollowingFeed.tsx:190 +#: src/view/screens/PreferencesFollowingFeed.tsx:189 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "피드에서 모든 재게시를 숨기려면 이 설정을 \"아니요\"로 설정합니다." -#: src/view/screens/PreferencesThreads.tsx:122 +#: src/view/screens/PreferencesThreads.tsx:116 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "스레드 보기에 답글을 표시하려면 이 설정을 \"예\"로 설정합니다. 이는 실험적인 기능입니다." -#: src/view/screens/PreferencesFollowingFeed.tsx:260 +#: src/view/screens/PreferencesFollowingFeed.tsx:259 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "팔로우 중 피드에 저장한 피드 샘플을 표시하려면 이 설정을 \"예\"로 설정합니다. 이는 실험적인 기능입니다." @@ -5143,23 +5220,23 @@ msgstr "계정 설정하기" msgid "Sets Bluesky username" msgstr "Bluesky 사용자 이름을 설정합니다" -#: src/view/screens/Settings/index.tsx:462 +#: src/view/screens/Settings/index.tsx:463 msgid "Sets color theme to dark" msgstr "색상 테마를 어두움으로 설정합니다" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Sets color theme to light" msgstr "색상 테마를 밝음으로 설정합니다" -#: src/view/screens/Settings/index.tsx:449 +#: src/view/screens/Settings/index.tsx:450 msgid "Sets color theme to system setting" msgstr "색상 테마를 시스템 설정에 맞춥니다" -#: src/view/screens/Settings/index.tsx:488 +#: src/view/screens/Settings/index.tsx:489 msgid "Sets dark theme to the dark theme" msgstr "어두운 테마를 완전히 어둡게 설정합니다" -#: src/view/screens/Settings/index.tsx:481 +#: src/view/screens/Settings/index.tsx:482 msgid "Sets dark theme to the dim theme" msgstr "어두운 테마를 살짝 밝게 설정합니다" @@ -5179,11 +5256,11 @@ msgstr "이미지 비율을 세로로 길게 설정합니다" msgid "Sets image aspect ratio to wide" msgstr "이미지 비율을 가로로 길게 설정합니다" -#: src/Navigation.tsx:150 -#: src/view/screens/Settings/index.tsx:333 +#: src/Navigation.tsx:153 +#: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:559 -#: src/view/shell/Drawer.tsx:560 +#: src/view/shell/Drawer.tsx:549 +#: src/view/shell/Drawer.tsx:550 msgid "Settings" msgstr "설정" @@ -5195,19 +5272,19 @@ msgstr "성행위 또는 선정적인 노출." msgid "Sexually Suggestive" msgstr "외설적" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:177 #: src/screens/StarterPack/StarterPackScreen.tsx:400 #: src/screens/StarterPack/StarterPackScreen.tsx:571 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 #: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "공유" -#: src/view/com/lightbox/Lightbox.tsx:144 +#: src/view/com/lightbox/Lightbox.tsx:148 msgctxt "action" msgid "Share" msgstr "공유" @@ -5221,18 +5298,18 @@ msgid "Share a fun fact!" msgstr "재미있는 사실을 전하세요!" #: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:464 #: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "무시하고 공유" -#: src/view/screens/ProfileFeed.tsx:359 -#: src/view/screens/ProfileFeed.tsx:361 +#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:362 msgid "Share feed" msgstr "피드 공유" -#: src/components/StarterPack/ShareDialog.tsx:123 -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 #: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "링크 공유" @@ -5242,12 +5319,12 @@ msgstr "링크 공유" msgid "Share Link" msgstr "링크 공유" -#: src/components/StarterPack/ShareDialog.tsx:87 +#: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" msgstr "링크 공유 대화 상자" -#: src/components/StarterPack/ShareDialog.tsx:134 -#: src/components/StarterPack/ShareDialog.tsx:145 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "QR 코드 공유" @@ -5255,7 +5332,7 @@ msgstr "QR 코드 공유" msgid "Share this starter pack" msgstr "이 스타터 팩 공유하기" -#: src/components/StarterPack/ShareDialog.tsx:99 +#: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "이 스타터 팩을 공유하여 사람들이 Bluesky에서 커뮤니티에 참여할 수 있도록 도와주세요." @@ -5263,6 +5340,10 @@ msgstr "이 스타터 팩을 공유하여 사람들이 Bluesky에서 커뮤니 msgid "Share your favorite feed!" msgstr "좋아하는 피드를 공유해 보세요!" +#: src/Navigation.tsx:242 +msgid "Shared Preferences Tester" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" msgstr "연결된 웹사이트를 공유합니다" @@ -5270,11 +5351,11 @@ msgstr "연결된 웹사이트를 공유합니다" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:382 +#: src/view/screens/Settings/index.tsx:383 msgid "Show" msgstr "표시" -#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +#: src/view/com/util/post-embeds/GifEmbed.tsx:175 msgid "Show alt text" msgstr "대체 텍스트 표시" @@ -5300,19 +5381,19 @@ msgstr "{0} 님과 비슷한 팔로우 표시" msgid "Show hidden replies" msgstr "숨겨진 답글 표시" -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#: src/view/com/util/forms/PostDropdownBtn.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:349 +#: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" msgstr "이런 항목 덜 보기" #: src/view/com/post-thread/PostThreadItem.tsx:530 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:396 +#: src/view/com/post/Post.tsx:235 +#: src/view/com/posts/FeedItem.tsx:410 msgid "Show More" msgstr "더 보기" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 -#: src/view/com/util/forms/PostDropdownBtn.tsx:340 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:343 msgid "Show more like this" msgstr "이런 항목 더 보기" @@ -5320,23 +5401,23 @@ msgstr "이런 항목 더 보기" msgid "Show muted replies" msgstr "뮤트된 답글 표시" -#: src/view/screens/PreferencesFollowingFeed.tsx:257 +#: src/view/screens/PreferencesFollowingFeed.tsx:256 msgid "Show Posts from My Feeds" msgstr "내 피드에서 게시물 표시" -#: src/view/screens/PreferencesFollowingFeed.tsx:221 +#: src/view/screens/PreferencesFollowingFeed.tsx:220 msgid "Show Quote Posts" msgstr "인용 게시물 표시" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:117 msgid "Show Replies" msgstr "답글 표시" -#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:94 msgid "Show replies by people you follow before all other replies." msgstr "내가 팔로우하는 사람들의 답글을 다른 모든 답글보다 먼저 표시합니다." -#: src/view/screens/PreferencesFollowingFeed.tsx:187 +#: src/view/screens/PreferencesFollowingFeed.tsx:186 msgid "Show Reposts" msgstr "재게시 표시" @@ -5394,8 +5475,8 @@ msgstr "대화에 참여하려면 로그인하거나 계정을 만드세요!" msgid "Sign into Bluesky or create a new account" msgstr "Bluesky에 로그인하거나 새 계정 만들기" -#: src/view/screens/Settings/index.tsx:129 -#: src/view/screens/Settings/index.tsx:133 +#: src/view/screens/Settings/index.tsx:130 +#: src/view/screens/Settings/index.tsx:134 msgid "Sign out" msgstr "로그아웃" @@ -5420,7 +5501,7 @@ msgstr "가입 또는 로그인하여 대화에 참여하세요" msgid "Sign-in Required" msgstr "로그인 필요" -#: src/view/screens/Settings/index.tsx:392 +#: src/view/screens/Settings/index.tsx:393 msgid "Signed in as" msgstr "로그인한 계정" @@ -5429,12 +5510,12 @@ msgstr "로그인한 계정" msgid "Signed in as @{0}" msgstr "@{0}(으)로 로그인했습니다" -#: src/view/com/notifications/FeedItem.tsx:208 +#: src/view/com/notifications/FeedItem.tsx:209 msgid "signed up with your starter pack" msgstr "(이)가 내 스타터 팩으로 가입했습니다" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 msgid "Signup without a starter pack" msgstr "스타터 팩 없이 가입하기" @@ -5452,7 +5533,7 @@ msgstr "이 단계 건너뛰기" msgid "Software Dev" msgstr "소프트웨어 개발" -#: src/components/FeedInterstitials.tsx:378 +#: src/components/FeedInterstitials.tsx:382 msgid "Some other feeds you might like" msgstr "좋아할 만한 다른 피드" @@ -5476,20 +5557,25 @@ msgstr "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요" msgid "Something went wrong, please try again." msgstr "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요." -#: src/App.native.tsx:98 -#: src/App.web.tsx:80 +#: src/components/Lists.tsx:192 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "" + +#: src/App.native.tsx:99 +#: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "죄송합니다. 세션이 만료되었습니다. 다시 로그인해 주세요." -#: src/view/screens/PreferencesThreads.tsx:69 +#: src/view/screens/PreferencesThreads.tsx:63 msgid "Sort Replies" msgstr "답글 정렬" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:66 msgid "Sort replies to the same post by:" msgstr "동일한 게시물에 대한 답글을 정렬하는 기준입니다." -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" msgstr "출처: <0>{0}" @@ -5511,7 +5597,7 @@ msgstr "스포츠" msgid "Square" msgstr "정사각형" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:63 msgid "Start a new chat" msgstr "새 대화 시작하기" @@ -5528,8 +5614,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "온보딩 투어 창을 시작합니다. 뒤로 이동하지 마세요. 대신 앞으로 이동하여 더 많은 옵션을 보거나 건너뛰려면 누르세요." #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:328 -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:341 +#: src/Navigation.tsx:346 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "스타터 팩" @@ -5550,7 +5636,7 @@ msgstr "스타터 팩" msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "스타터 팩을 사용하면 좋아하는 피드와 사람들을 친구들과 쉽게 공유할 수 있습니다." -#: src/view/screens/Settings/index.tsx:964 +#: src/view/screens/Settings/index.tsx:965 msgid "Status Page" msgstr "상태 페이지" @@ -5558,17 +5644,17 @@ msgstr "상태 페이지" msgid "Step {0} of {1}" msgstr "{1}단계 중 {0}단계" -#: src/view/screens/Settings/index.tsx:305 +#: src/view/screens/Settings/index.tsx:306 msgid "Storage cleared, you need to restart the app now." msgstr "스토리지가 지워졌으며 지금 앱을 다시 시작해야 합니다." -#: src/Navigation.tsx:229 -#: src/view/screens/Settings/index.tsx:864 +#: src/Navigation.tsx:232 +#: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "스토리북" -#: src/components/moderation/LabelsOnMeDialog.tsx:290 -#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/components/moderation/LabelsOnMeDialog.tsx:311 +#: src/components/moderation/LabelsOnMeDialog.tsx:312 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -5586,7 +5672,7 @@ msgstr "이 라벨을 사용하려면 @{0}을(를) 구독하세요." msgid "Subscribe to Labeler" msgstr "라벨러 구독" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 msgid "Subscribe to this labeler" msgstr "이 라벨러 구독하기" @@ -5594,11 +5680,11 @@ msgstr "이 라벨러 구독하기" msgid "Subscribe to this list" msgstr "이 리스트 구독하기" -#: src/view/screens/Search/Explore.tsx:331 +#: src/view/screens/Search/Explore.tsx:333 msgid "Suggested accounts" msgstr "추천 계정" -#: src/components/FeedInterstitials.tsx:246 +#: src/components/FeedInterstitials.tsx:250 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "나를 위한 추천" @@ -5607,7 +5693,7 @@ msgstr "나를 위한 추천" msgid "Suggestive" msgstr "외설적" -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:252 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5622,19 +5708,19 @@ msgstr "계정 전환" msgid "Switch between feeds to control your experience." msgstr "피드 사이를 전환하여 내 환경을 제어할 수 있습니다." -#: src/view/screens/Settings/index.tsx:160 +#: src/view/screens/Settings/index.tsx:161 msgid "Switch to {0}" msgstr "{0}(으)로 전환" -#: src/view/screens/Settings/index.tsx:161 +#: src/view/screens/Settings/index.tsx:162 msgid "Switches the account you are logged in to" msgstr "로그인한 계정을 전환합니다" -#: src/view/screens/Settings/index.tsx:446 +#: src/view/screens/Settings/index.tsx:447 msgid "System" msgstr "시스템" -#: src/view/screens/Settings/index.tsx:852 +#: src/view/screens/Settings/index.tsx:853 msgid "System log" msgstr "시스템 로그" @@ -5683,11 +5769,11 @@ msgstr "좀 더 자세히 알려주세요" msgid "Terms" msgstr "이용약관" -#: src/Navigation.tsx:254 +#: src/Navigation.tsx:262 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:952 +#: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:279 +#: src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "서비스 이용약관" @@ -5702,13 +5788,13 @@ msgstr "커뮤니티 기준을 위반하는 용어 사용" msgid "text" msgstr "글" -#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/components/moderation/LabelsOnMeDialog.tsx:275 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "텍스트 입력 필드" #: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:93 msgid "Thank you. Your report has been sent." msgstr "감사합니다. 신고를 전송했습니다." @@ -5747,19 +5833,19 @@ msgstr "저작권 정책을 <0/>(으)로 이동했습니다" msgid "The Discover feed now knows what you like" msgstr "이제 Discover 피드는 사용자가 무엇을 좋아하는지 알게 됩니다" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "앱에서 더 나은 환경을 경험하세요. 지금 Bluesky를 다운로드하면 중단한 부분부터 다시 시작합니다." -#: src/view/com/posts/FeedShutdownMsg.tsx:66 +#: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." msgstr "피드를 Discover로 교체했습니다." -#: src/components/moderation/LabelsOnMeDialog.tsx:65 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your account." msgstr "내 계정에 다음 라벨이 적용되었습니다." -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:67 msgid "The following labels were applied to your content." msgstr "내 콘텐츠에 다음 라벨이 적용되었습니다." @@ -5792,8 +5878,8 @@ msgstr "서비스 이용약관을 다음으로 이동했습니다:" msgid "There is no time limit for account deactivation, come back any time." msgstr "계정 비활성화에는 시간 제한이 없으므로 언제든지 다시 돌아올 수 있습니다." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 -#: src/view/screens/ProfileFeed.tsx:544 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 +#: src/view/screens/ProfileFeed.tsx:545 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "서버에 연결하는 동안 문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도하세요." @@ -5802,7 +5888,7 @@ msgid "There was an an issue removing this feed. Please check your internet conn msgstr "이 피드를 삭제하는 동안 문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도하세요." #: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "피드를 업데이트하는 동안 문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도하세요." @@ -5812,7 +5898,7 @@ msgstr "피드를 업데이트하는 동안 문제가 발생했습니다. 인터 msgid "There was an issue connecting to Tenor." msgstr "Tenor에 연결하는 동안 문제가 발생했습니다." -#: src/view/screens/ProfileFeed.tsx:234 +#: src/view/screens/ProfileFeed.tsx:235 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -5826,7 +5912,7 @@ msgstr "서버에 연결하는 동안 문제가 발생했습니다" msgid "There was an issue contacting your server" msgstr "서버에 연결하는 동안 문제가 발생했습니다" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "알림을 가져오는 동안 문제가 발생했습니다. 이곳을 탭하여 다시 시도하세요." @@ -5844,7 +5930,7 @@ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "리스트를 가져오는 동안 문제가 발생했습니다. 이곳을 탭하여 다시 시도하세요." #: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:82 +#: src/components/ReportDialog/SubmitView.tsx:98 msgid "There was an issue sending your report. Please check your internet connection." msgstr "신고를 전송하는 동안 문제가 발생했습니다. 인터넷 연결을 확인해 주세요." @@ -5896,7 +5982,7 @@ msgstr "이 계정의 프로필을 보려면 로그인해야 합니다." 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/moderation/LabelsOnMeDialog.tsx:239 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 msgid "This appeal will be sent to <0>{0}." msgstr "이 이의신청은 <0>{0}에게 보내집니다." @@ -5946,12 +6032,12 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "이 피드는 비어 있습니다. 더 많은 사용자를 팔로우하거나 언어 설정을 조정해 보세요." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:473 +#: src/view/screens/ProfileFeed.tsx:474 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "이 피드는 비어 있습니다." -#: src/view/com/posts/FeedShutdownMsg.tsx:97 +#: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "이 피드는 더 이상 온라인 상태가 아닙니다. 대신 <0>Discover를 표시합니다." @@ -5971,7 +6057,7 @@ msgstr "이 라벨은 {0}이(가) 적용했습니다." msgid "This label was applied by the author." msgstr "이 라벨은 작성자가 적용했습니다." -#: src/components/moderation/LabelsOnMeDialog.tsx:166 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." msgstr "이 라벨은 내가 적용했습니다." @@ -5999,12 +6085,12 @@ msgstr "이 이름은 이미 사용 중입니다" msgid "This post has been deleted." msgstr "이 게시물은 삭제되었습니다." -#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 #: src/view/com/util/post-ctrls/PostCtrls.tsx:324 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "이 게시물은 로그인한 사용자에게만 표시됩니다. 로그인하지 않은 사용자에게는 표시되지 않습니다." -#: src/view/com/util/forms/PostDropdownBtn.tsx:440 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "This post will be hidden from feeds." msgstr "이 게시물을 피드에서 숨깁니다." @@ -6057,12 +6143,12 @@ msgstr "이 사용자는 아무도 팔로우하지 않았습니다." msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "뮤트한 단어에서 {0}이(가) 삭제됩니다. 나중에 언제든지 다시 추가할 수 있습니다." -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Thread preferences" msgstr "스레드 설정" -#: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/PreferencesThreads.tsx:51 +#: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "스레드 설정" @@ -6070,11 +6156,11 @@ msgstr "스레드 설정" msgid "Thread settings updated" msgstr "스레드 설정 업데이트됨" -#: src/view/screens/PreferencesThreads.tsx:119 +#: src/view/screens/PreferencesThreads.tsx:113 msgid "Threaded Mode" msgstr "스레드 모드" -#: src/Navigation.tsx:287 +#: src/Navigation.tsx:295 msgid "Threads Preferences" msgstr "스레드 설정" @@ -6115,8 +6201,8 @@ msgstr "변형" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:676 #: src/view/com/post-thread/PostThreadItem.tsx:678 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 -#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "번역" @@ -6129,7 +6215,7 @@ msgstr "다시 시도" msgid "TV" msgstr "TV" -#: src/view/screens/Settings/index.tsx:746 +#: src/view/screens/Settings/index.tsx:747 msgid "Two-factor authentication" msgstr "2단계 인증" @@ -6217,7 +6303,7 @@ msgstr "{0} 님을 언팔로우" msgid "Unfollow Account" msgstr "계정 언팔로우" -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Unlike this feed" msgstr "이 피드 좋아요 취소" @@ -6243,17 +6329,17 @@ msgstr "모든 {tag} 게시물 언뮤트" msgid "Unmute conversation" msgstr "알림 언뮤트" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:367 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Unmute thread" msgstr "스레드 언뮤트" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "고정 해제" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 msgid "Unpin from home" msgstr "홈에서 고정 해제" @@ -6269,7 +6355,7 @@ msgstr "내 피드에서 고정 해제됨" msgid "Unsubscribe" msgstr "구독 취소" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Unsubscribe from this labeler" msgstr "이 라벨러 구독 취소하기" @@ -6298,20 +6384,20 @@ msgstr "대신 사진 업로드하기" msgid "Upload a text file to:" msgstr "텍스트 파일 업로드 경로:" -#: src/view/com/util/UserAvatar.tsx:352 -#: src/view/com/util/UserAvatar.tsx:355 +#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "카메라에서 업로드" -#: src/view/com/util/UserAvatar.tsx:369 +#: src/view/com/util/UserAvatar.tsx:381 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "파일에서 업로드" -#: src/view/com/util/UserAvatar.tsx:363 -#: src/view/com/util/UserAvatar.tsx:367 +#: src/view/com/util/UserAvatar.tsx:375 +#: src/view/com/util/UserAvatar.tsx:379 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -6351,7 +6437,7 @@ msgstr "추천 사용" msgid "Use the DNS panel" msgstr "DNS 패널을 사용합니다" -#: src/view/com/modals/AddAppPasswords.tsx:205 +#: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." msgstr "이 비밀번호와 핸들을 사용하여 다른 앱에 로그인하세요." @@ -6419,7 +6505,7 @@ msgstr "사용자 이름 또는 이메일 주소" msgid "Users" msgstr "사용자" -#: src/components/WhoCanReply.tsx:279 +#: src/components/WhoCanReply.tsx:280 msgid "users followed by <0/>" msgstr "<0/> 님이 팔로우한 사용자" @@ -6446,15 +6532,15 @@ msgstr "값:" msgid "Verify DNS Record" msgstr "DNS 레코드 인증" -#: src/view/screens/Settings/index.tsx:983 +#: src/view/screens/Settings/index.tsx:984 msgid "Verify email" msgstr "이메일 인증" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Verify my email" msgstr "내 이메일 인증하기" -#: src/view/screens/Settings/index.tsx:1017 +#: src/view/screens/Settings/index.tsx:1018 msgid "Verify My Email" msgstr "내 이메일 인증하기" @@ -6471,7 +6557,7 @@ msgstr "텍스트 파일 인증" msgid "Verify Your Email" msgstr "이메일 인증하기" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Version {appVersion} {bundleInfo}" msgstr "버전 {appVersion} {bundleInfo}" @@ -6480,11 +6566,15 @@ msgstr "버전 {appVersion} {bundleInfo}" msgid "Video Games" msgstr "비디오 게임" +#: src/view/com/composer/videos/state.ts:27 +msgid "Videos cannot be larger than 100MB" +msgstr "" + #: src/screens/Profile/Header/Shell.tsx:113 msgid "View {0}'s avatar" msgstr "{0} 님의 아바타를 봅니다" -#: src/view/com/notifications/FeedItem.tsx:245 +#: src/view/com/notifications/FeedItem.tsx:246 msgid "View {0}'s profile" msgstr "{0} 님의 프로필 보기" @@ -6516,7 +6606,7 @@ msgstr "이 라벨에 대한 정보 보기" #: src/components/ProfileHoverCard/index.web.tsx:436 #: src/components/ProfileHoverCard/index.web.tsx:463 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "프로필 보기" @@ -6528,7 +6618,7 @@ msgstr "아바타 보기" msgid "View the labeling service provided by @{0}" msgstr "{0} 님이 제공하는 라벨링 서비스 보기" -#: src/view/screens/ProfileFeed.tsx:585 +#: src/view/screens/ProfileFeed.tsx:587 msgid "View users who like this feed" msgstr "이 피드를 좋아하는 사용자 보기" @@ -6620,7 +6710,7 @@ msgstr "죄송하지만 현재 뮤트한 단어를 불러올 수 없습니다. msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "죄송하지만 검색을 완료할 수 없습니다. 몇 분 후에 다시 시도해 주세요." -#: src/view/com/composer/Composer.tsx:335 +#: src/view/com/composer/Composer.tsx:347 msgid "We're sorry! The post you are replying to has been deleted." msgstr "죄송하지만 답글을 달려는 게시물이 삭제되었습니다." @@ -6629,7 +6719,7 @@ msgstr "죄송하지만 답글을 달려는 게시물이 삭제되었습니다." msgid "We're sorry! We can't find the page you were looking for." msgstr "죄송합니다. 페이지를 찾을 수 없습니다." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "죄송합니다. 라벨러는 20개까지만 구독할 수 있으며 20개에 도달했습니다." @@ -6651,7 +6741,7 @@ msgstr "스타터 팩의 이름을 무엇으로 할까요?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:376 +#: src/view/com/composer/Composer.tsx:388 msgid "What's up?" msgstr "무슨 일이 일어나고 있나요?" @@ -6668,15 +6758,15 @@ msgstr "알고리즘 피드에 어떤 언어를 표시하시겠습니까?" msgid "Who can message you?" msgstr "누구의 메시지를 허용하시겠습니까?" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Who can reply" msgstr "답글을 달 수 있는 사람" -#: src/components/WhoCanReply.tsx:211 +#: src/components/WhoCanReply.tsx:212 msgid "Who can reply dialog" msgstr "답글을 달 수 있는 사람 대화 상자" -#: src/components/WhoCanReply.tsx:215 +#: src/components/WhoCanReply.tsx:216 msgid "Who can reply?" msgstr "누가 답글을 달 수 있나요?" @@ -6722,11 +6812,11 @@ msgstr "가로" msgid "Write a message" msgstr "메시지를 입력하세요" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:580 msgid "Write post" msgstr "게시물 작성" -#: src/view/com/composer/Composer.tsx:375 +#: src/view/com/composer/Composer.tsx:387 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "답글 작성하기" @@ -6737,12 +6827,12 @@ msgid "Writers" msgstr "작가" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:200 -#: src/view/screens/PreferencesFollowingFeed.tsx:235 -#: src/view/screens/PreferencesFollowingFeed.tsx:270 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:199 +#: src/view/screens/PreferencesFollowingFeed.tsx:234 +#: src/view/screens/PreferencesFollowingFeed.tsx:269 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "Yes" msgstr "예" @@ -6759,7 +6849,7 @@ msgstr "예, 이 스타터 팩을 삭제합니다" msgid "Yes, reactivate my account" msgstr "내 계정 재활성화" -#: src/components/dms/MessageItem.tsx:188 +#: src/components/dms/MessageItem.tsx:182 msgid "Yesterday, {time}" msgstr "어제 {time}" @@ -6900,19 +6990,19 @@ msgstr "아직 스타터 팩을 만들지 않았습니다." msgid "You haven't muted any words or tags yet" msgstr "아직 어떤 단어나 태그도 뮤트하지 않았습니다" -#: src/components/moderation/LabelsOnMeDialog.tsx:86 +#: src/components/moderation/LabelsOnMeDialog.tsx:87 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "비셀프 라벨이 잘못 지정되었다고 생각되면 이의신청할 수 있습니다." -#: src/components/moderation/LabelsOnMeDialog.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:92 msgid "You may appeal these labels if you feel they were placed in error." msgstr "이 라벨이 잘못 지정되었다고 생각되면 이의신청할 수 있습니다." -#: src/screens/StarterPack/Wizard/State.tsx:92 +#: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 50 feeds" msgstr "피드는 최대 50개까지 추가할 수 있습니다" -#: src/screens/StarterPack/Wizard/State.tsx:77 +#: src/screens/StarterPack/Wizard/State.tsx:78 msgid "You may only add up to 50 profiles" msgstr "프로필은 최대 50개까지 추가할 수 있습니다" @@ -6932,7 +7022,7 @@ msgstr "QR 코드를 저장하려면 사진 보관함에 대한 접근 권한을 msgid "You must grant access to your photo library to save the image." msgstr "이미지를 저장하려면 사진 보관함에 대한 접근 권한을 부여해야 합니다" -#: src/components/ReportDialog/SubmitView.tsx:205 +#: src/components/ReportDialog/SubmitView.tsx:222 msgid "You must select at least one labeler for a report" msgstr "신고하려면 하나 이상의 라벨을 선택해야 합니다." @@ -6972,15 +7062,15 @@ msgstr "계정 생성을 완료하면 추천 사용자 및 피드를 팔로우 msgid "You'll follow the suggested users once you finish creating your account!" msgstr "계정 생성을 완료하면 추천 사용자를 팔로우하게 됩니다." -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people and {0} others" msgstr "다음 사람들 외 {0}명을 팔로우하게 됩니다" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people right away" msgstr "다음 사람들을 바로 팔로우하게 됩니다" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272 msgid "You'll stay updated with these feeds" msgstr "다음 피드를 구독하게 됩니다" @@ -7071,7 +7161,7 @@ msgstr "뮤트한 단어" msgid "Your password has been changed successfully!" msgstr "비밀번호를 성공적으로 변경했습니다." -#: src/view/com/composer/Composer.tsx:366 +#: src/view/com/composer/Composer.tsx:378 msgid "Your post has been published" msgstr "게시물을 게시했습니다" @@ -7079,7 +7169,7 @@ msgstr "게시물을 게시했습니다" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "게시물, 좋아요, 차단 목록은 공개됩니다. 뮤트 목록은 공개되지 않습니다." -#: src/view/screens/Settings/index.tsx:148 +#: src/view/screens/Settings/index.tsx:149 msgid "Your profile" msgstr "내 프로필" @@ -7087,7 +7177,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 "내 프로필, 글, 피드 및 리스트가 더 이상 다른 Bluesky 사용자에게 표시되지 않습니다. 언제든지 로그인하여 계정을 재활성화할 수 있습니다." -#: src/view/com/composer/Composer.tsx:365 +#: src/view/com/composer/Composer.tsx:377 msgid "Your reply has been published" msgstr "내 답글을 게시했습니다" diff --git a/src/locale/locales/pt-BR/messages.po b/src/locale/locales/pt-BR/messages.po index 287ce60df3..046d7f9b9c 100644 --- a/src/locale/locales/pt-BR/messages.po +++ b/src/locale/locales/pt-BR/messages.po @@ -21,7 +21,7 @@ msgstr "" msgid "(no email)" msgstr "(sem email)" -#: src/view/com/notifications/FeedItem.tsx:294 +#: src/view/com/notifications/FeedItem.tsx:297 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {{formattedCount} outro} other {{formattedCount} outros}}" @@ -88,7 +88,7 @@ msgstr "{0, plural, one {repost} other {reposts}}" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {Descurtir (# curtida)} other {Descurtir (# curtidas)}}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "" @@ -100,7 +100,7 @@ msgstr "" #~ msgid "{0} your feeds" #~ msgstr "{0} seus feeds" -#: src/view/com/util/UserAvatar.tsx:419 +#: src/view/com/util/UserAvatar.tsx:431 msgid "{0}'s avatar" msgstr "" @@ -148,7 +148,7 @@ msgstr "{estimatedTimeHrs, plural, one {hora} other {horas}}" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "{estimatedTimeMins, plural, one {minuto} other {minutos}}" -#: src/components/ProfileHoverCard/index.web.tsx:504 +#: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} seguindo" @@ -159,11 +159,11 @@ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:588 +#: src/view/screens/ProfileFeed.tsx:590 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {Curtido por # usuário} other {Curtido por # usuários}}" -#: src/view/shell/Drawer.tsx:462 +#: src/view/shell/Drawer.tsx:452 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} não lidas" @@ -179,7 +179,7 @@ msgstr "" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" -#: src/components/WhoCanReply.tsx:295 +#: src/components/WhoCanReply.tsx:296 msgid "<0/> members" msgstr "<0/> membros" @@ -201,11 +201,11 @@ msgstr "" #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "" -#: src/view/shell/Drawer.tsx:101 +#: src/view/shell/Drawer.tsx:100 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "<0>{0} {1, plural, one {seguidor} other {seguidores}}" -#: src/view/shell/Drawer.tsx:112 +#: src/view/shell/Drawer.tsx:111 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {seguindo} other {seguindo}}" @@ -272,15 +272,15 @@ msgid "Access profile and other navigation links" msgstr "Acessar perfil e outros links de navegação" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:519 +#: src/view/screens/Settings/index.tsx:520 msgid "Accessibility" msgstr "Acessibilidade" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Accessibility settings" msgstr "Configurações de acessibilidade" -#: src/Navigation.tsx:301 +#: src/Navigation.tsx:309 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "Configurações de acessibilidade" @@ -290,8 +290,8 @@ msgstr "Configurações de acessibilidade" #~ msgstr "conta" #: src/screens/Login/LoginForm.tsx:190 -#: src/view/screens/Settings/index.tsx:346 -#: src/view/screens/Settings/index.tsx:753 +#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:754 msgid "Account" msgstr "Conta" @@ -338,7 +338,7 @@ msgid "Account unmuted" msgstr "Conta dessilenciada" #: src/components/dialogs/MutedWords.tsx:164 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 msgid "Add" @@ -362,8 +362,8 @@ msgstr "Adicionar um usuário a esta lista" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:423 -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:433 msgid "Add account" msgstr "Adicionar conta" @@ -439,7 +439,7 @@ msgstr "Adicionar aos meus feeds" #~ msgid "Added" #~ msgstr "Adicionado" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "Adicionado à lista" @@ -448,7 +448,7 @@ msgstr "Adicionado à lista" msgid "Added to my feeds" msgstr "Adicionado aos meus feeds" -#: src/view/screens/PreferencesFollowingFeed.tsx:172 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Ajuste o número de curtidas para que uma resposta apareça no seu feed." @@ -466,7 +466,7 @@ msgid "Adult content is disabled." msgstr "O conteúdo adulto está desabilitado." #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:687 +#: src/view/screens/Settings/index.tsx:688 msgid "Advanced" msgstr "Avançado" @@ -482,8 +482,8 @@ msgstr "" msgid "All the feeds you've saved, right in one place." msgstr "Todos os feeds que você salvou, em um único lugar." -#: src/view/com/modals/AddAppPasswords.tsx:187 -#: src/view/com/modals/AddAppPasswords.tsx:194 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "" @@ -508,7 +508,7 @@ msgstr "Já autenticado como @{0}" #: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "ALT" msgstr "ALT" @@ -518,7 +518,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Texto alternativo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:180 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Alt Text" msgstr "Texto alternativo" @@ -547,8 +547,8 @@ msgstr "" #~ msgid "An error occurred while saving the image." #~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:70 -#: src/components/StarterPack/ShareDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the QR code!" msgstr "" @@ -564,10 +564,18 @@ msgstr "" msgid "An issue not included in these options" msgstr "Outro problema" +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +msgid "An issue occurred while trying to open the chat" +msgstr "" + #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:309 -#: src/components/ProfileCard.tsx:329 +#: src/components/ProfileCard.tsx:311 +#: src/components/ProfileCard.tsx:331 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -579,8 +587,8 @@ msgstr "Ocorreu um problema, por favor tente novamente." msgid "an unknown error occurred" msgstr "ocorreu um erro desconhecido" -#: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:291 +#: src/components/WhoCanReply.tsx:317 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "e" @@ -589,7 +597,7 @@ msgstr "e" msgid "Animals" msgstr "Animais" -#: src/view/com/util/post-embeds/GifEmbed.tsx:146 +#: src/view/com/util/post-embeds/GifEmbed.tsx:155 msgid "Animated GIF" msgstr "GIF animado" @@ -613,26 +621,26 @@ msgstr "O nome da Senha de Aplicativo só pode conter letras, números, traços msgid "App Password names must be at least 4 characters long." msgstr "O nome da Senha de Aplicativo precisa ter no mínimo 4 caracteres." -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "App password settings" msgstr "Configurações de Senha de Aplicativo" -#: src/Navigation.tsx:269 +#: src/Navigation.tsx:277 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:707 +#: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" msgstr "Senhas de Aplicativos" -#: src/components/moderation/LabelsOnMeDialog.tsx:151 -#: src/components/moderation/LabelsOnMeDialog.tsx:154 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "Contestar" -#: src/components/moderation/LabelsOnMeDialog.tsx:236 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Appeal \"{0}\" label" msgstr "Contestar rótulo \"{0}\"" -#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/components/moderation/LabelsOnMeDialog.tsx:248 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "Contestação enviada." @@ -648,7 +656,7 @@ msgstr "Contestação enviada." msgid "Appeal this decision" msgstr "" -#: src/view/screens/Settings/index.tsx:440 +#: src/view/screens/Settings/index.tsx:441 msgid "Appearance" msgstr "Aparência" @@ -658,8 +666,8 @@ msgid "Apply default recommended feeds" msgstr "Utilizar feeds recomendados" #: src/screens/StarterPack/StarterPackScreen.tsx:610 -msgid "Are you sure you want delete this starter pack?" -msgstr "" +#~ msgid "Are you sure you want delete this starter pack?" +#~ msgstr "" #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" @@ -673,6 +681,10 @@ msgstr "Tem certeza de que deseja excluir a senha do aplicativo \"{name}\"?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:189 #~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." #~ msgstr "Tem certeza de que deseja sair desta conversa? Suas mensagens serão excluídas para você, mas não para os outros participantes." @@ -689,7 +701,7 @@ msgstr "Tem certeza que deseja remover {0} dos seus feeds?" msgid "Are you sure you want to remove this from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:649 +#: src/view/com/composer/Composer.tsx:680 msgid "Are you sure you'd like to discard this draft?" msgstr "Tem certeza que deseja descartar este rascunho?" @@ -715,8 +727,8 @@ msgid "At least 3 characters" msgstr "No mínimo 3 caracteres" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:281 -#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/components/moderation/LabelsOnMeDialog.tsx:302 +#: src/components/moderation/LabelsOnMeDialog.tsx:303 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -729,7 +741,6 @@ msgstr "No mínimo 3 caracteres" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" @@ -739,7 +750,7 @@ msgstr "Voltar" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Com base no seu interesse em {interestsText}" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Basics" msgstr "Básicos" @@ -747,7 +758,7 @@ msgstr "Básicos" msgid "Birthday" msgstr "Aniversário" -#: src/view/screens/Settings/index.tsx:378 +#: src/view/screens/Settings/index.tsx:379 msgid "Birthday:" msgstr "Aniversário:" @@ -791,7 +802,7 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Contas bloqueadas" -#: src/Navigation.tsx:145 +#: src/Navigation.tsx:148 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Contas Bloqueadas" @@ -873,21 +884,21 @@ msgstr "Desfocar imagens e filtrar dos feeds" msgid "Books" msgstr "Livros" -#: src/components/FeedInterstitials.tsx:281 +#: src/components/FeedInterstitials.tsx:285 msgid "Browse more accounts on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:411 +#: src/components/FeedInterstitials.tsx:415 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:266 -#: src/components/FeedInterstitials.tsx:396 +#: src/components/FeedInterstitials.tsx:270 +#: src/components/FeedInterstitials.tsx:400 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:289 -#: src/components/FeedInterstitials.tsx:420 +#: src/components/FeedInterstitials.tsx:293 +#: src/components/FeedInterstitials.tsx:424 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -932,7 +943,7 @@ msgstr "por você" msgid "Camera" msgstr "Câmera" -#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Só pode conter letras, números, espaços, traços e sublinhados. Deve ter pelo menos 4 caracteres, mas não mais de 32 caracteres." @@ -941,8 +952,8 @@ msgstr "Só pode conter letras, números, espaços, traços e sublinhados. Deve #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:451 -#: src/view/com/composer/Composer.tsx:457 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -960,7 +971,7 @@ msgstr "Só pode conter letras, números, espaços, traços e sublinhados. Deve #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:139 #: src/view/screens/Search/Search.tsx:704 -#: src/view/shell/desktop/Search.tsx:218 +#: src/view/shell/desktop/Search.tsx:219 msgid "Cancel" msgstr "Cancelar" @@ -996,8 +1007,8 @@ msgstr "Cancelar citação" msgid "Cancel reactivation and log out" msgstr "" -#: src/view/com/modals/ListAddRemoveUsers.tsx:87 -#: src/view/shell/desktop/Search.tsx:214 +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "Cancelar busca" @@ -1009,17 +1020,17 @@ msgstr "Cancela a abertura do link" msgid "Change" msgstr "Trocar" -#: src/view/screens/Settings/index.tsx:372 +#: src/view/screens/Settings/index.tsx:373 msgctxt "action" msgid "Change" msgstr "Alterar" -#: src/view/screens/Settings/index.tsx:719 +#: src/view/screens/Settings/index.tsx:720 msgid "Change handle" msgstr "Alterar usuário" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:730 +#: src/view/screens/Settings/index.tsx:731 msgid "Change Handle" msgstr "Alterar Usuário" @@ -1027,12 +1038,12 @@ msgstr "Alterar Usuário" msgid "Change my email" msgstr "Alterar meu email" -#: src/view/screens/Settings/index.tsx:764 +#: src/view/screens/Settings/index.tsx:765 msgid "Change password" msgstr "Alterar senha" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:775 +#: src/view/screens/Settings/index.tsx:776 msgid "Change Password" msgstr "Alterar Senha" @@ -1044,7 +1055,7 @@ msgstr "Trocar idioma do post para {0}" msgid "Change Your Email" msgstr "Altere o Seu Email" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:321 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -1056,14 +1067,14 @@ msgstr "Chat silenciado" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:326 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" msgstr "Configurações do Chat" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:648 +#: src/view/screens/Settings/index.tsx:649 msgid "Chat Settings" msgstr "" @@ -1150,19 +1161,19 @@ msgstr "" msgid "Choose your password" msgstr "Escolha sua senha" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clear all legacy storage data" msgstr "Limpar todos os dados de armazenamento legados" -#: src/view/screens/Settings/index.tsx:914 +#: src/view/screens/Settings/index.tsx:915 msgid "Clear all legacy storage data (restart after this)" msgstr "Limpar todos os dados de armazenamento legados (reinicie em seguida)" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clear all storage data" msgstr "Limpar todos os dados de armazenamento" -#: src/view/screens/Settings/index.tsx:926 +#: src/view/screens/Settings/index.tsx:927 msgid "Clear all storage data (restart after this)" msgstr "Limpar todos os dados de armazenamento (reinicie em seguida)" @@ -1171,11 +1182,11 @@ msgstr "Limpar todos os dados de armazenamento (reinicie em seguida)" msgid "Clear search query" msgstr "Limpar busca" -#: src/view/screens/Settings/index.tsx:912 +#: src/view/screens/Settings/index.tsx:913 msgid "Clears all legacy storage data" msgstr "Limpa todos os dados antigos" -#: src/view/screens/Settings/index.tsx:924 +#: src/view/screens/Settings/index.tsx:925 msgid "Clears all storage data" msgstr "Limpa todos os dados antigos" @@ -1203,7 +1214,7 @@ msgstr "Clique aqui para abrir o menu da tag {tag}" #~ msgid "Click here to open tag menu for #{tag}" #~ msgstr "Clique aqui para abrir o menu da tag #{tag}" -#: src/components/dms/MessageItem.tsx:237 +#: src/components/dms/MessageItem.tsx:231 msgid "Click to retry failed message" msgstr "" @@ -1224,7 +1235,7 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/util/post-embeds/GifEmbed.tsx:195 msgid "Close" msgstr "Fechar" @@ -1279,7 +1290,7 @@ msgstr "Fecha barra de navegação inferior" msgid "Closes password update alert" msgstr "Fecha alerta de troca de senha" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:472 msgid "Closes post composer and discards post draft" msgstr "Fecha o editor de post e descarta o rascunho" @@ -1287,11 +1298,11 @@ msgstr "Fecha o editor de post e descarta o rascunho" msgid "Closes viewer for header image" msgstr "Fechar o visualizador de banner" -#: src/view/com/notifications/FeedItem.tsx:237 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:440 msgid "Collapses list of users for a given notification" msgstr "Fecha lista de usuários da notificação" @@ -1305,7 +1316,7 @@ msgstr "Comédia" msgid "Comics" msgstr "Quadrinhos" -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:267 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Diretrizes da Comunidade" @@ -1318,7 +1329,7 @@ msgstr "Completar e começar a usar sua conta" msgid "Complete the challenge" msgstr "Complete o captcha" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:582 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Escreva posts de até {MAX_GRAPHEME_LENGTH} caracteres" @@ -1343,8 +1354,6 @@ msgstr "Configure no <0>painel de moderação." #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/PreferencesFollowingFeed.tsx:307 -#: src/view/screens/PreferencesThreads.tsx:159 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 msgid "Confirm" @@ -1461,12 +1470,12 @@ msgstr "" msgid "Cooking" msgstr "Culinária" -#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Copiado" -#: src/view/screens/Settings/index.tsx:264 +#: src/view/screens/Settings/index.tsx:265 msgid "Copied build version to clipboard" msgstr "Versão do aplicativo copiada" @@ -1474,7 +1483,7 @@ msgstr "Versão do aplicativo copiada" #: src/view/com/modals/AddAppPasswords.tsx:80 #: src/view/com/modals/ChangeHandle.tsx:320 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:189 +#: src/view/com/util/forms/PostDropdownBtn.tsx:192 #: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Copiado" @@ -1483,12 +1492,12 @@ msgstr "Copiado" msgid "Copied!" msgstr "Copiado!" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" msgstr "Copia senha de aplicativo" -#: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/view/com/modals/AddAppPasswords.tsx:213 +#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Copiar" @@ -1501,11 +1510,11 @@ msgstr "Copiar {0}" msgid "Copy code" msgstr "Copiar código" -#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" msgstr "" @@ -1513,8 +1522,8 @@ msgstr "" msgid "Copy link to list" msgstr "Copiar link da lista" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 msgid "Copy link to post" msgstr "Copiar link do post" @@ -1523,20 +1532,24 @@ msgstr "Copiar link do post" msgid "Copy message text" msgstr "Copiar texto da mensagem" -#: src/view/com/util/forms/PostDropdownBtn.tsx:285 -#: src/view/com/util/forms/PostDropdownBtn.tsx:287 +#: src/view/com/util/forms/PostDropdownBtn.tsx:288 +#: src/view/com/util/forms/PostDropdownBtn.tsx:290 msgid "Copy post text" msgstr "Copiar texto do post" -#: src/components/StarterPack/QrCodeDialog.tsx:168 +#: src/components/StarterPack/QrCodeDialog.tsx:171 msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:272 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Política de Direitos Autorais" +#: src/view/com/composer/videos/state.ts:31 +msgid "Could not compress video" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "Não foi possível sair deste chat" @@ -1570,17 +1583,17 @@ msgstr "" msgid "Create a new account" msgstr "Criar uma nova conta" -#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:425 msgid "Create a new Bluesky account" msgstr "Criar uma nova conta do Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:151 +#: src/components/StarterPack/QrCodeDialog.tsx:154 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:351 msgid "Create a starter pack" msgstr "" @@ -1605,7 +1618,7 @@ msgstr "Criar um avatar" msgid "Create another" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" msgstr "Criar Senha de Aplicativo" @@ -1645,7 +1658,7 @@ msgid "Custom domain" msgstr "Domínio personalizado" #: src/view/screens/Feeds.tsx:760 -#: src/view/screens/Search/Explore.tsx:390 +#: src/view/screens/Search/Explore.tsx:392 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Feeds customizados feitos pela comunidade te proporcionam novas experiências e te ajudam a encontrar o conteúdo que você mais ama." @@ -1653,8 +1666,8 @@ msgstr "Feeds customizados feitos pela comunidade te proporcionam novas experiê msgid "Customize media from external sites." msgstr "Configurar mídia de sites externos." -#: src/view/screens/Settings/index.tsx:459 -#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:460 +#: src/view/screens/Settings/index.tsx:486 msgid "Dark" msgstr "Escuro" @@ -1662,7 +1675,7 @@ msgstr "Escuro" msgid "Dark mode" msgstr "Modo escuro" -#: src/view/screens/Settings/index.tsx:472 +#: src/view/screens/Settings/index.tsx:473 msgid "Dark Theme" msgstr "Modo Escuro" @@ -1671,15 +1684,15 @@ msgid "Date of birth" msgstr "Data de nascimento" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:807 +#: src/view/screens/Settings/index.tsx:808 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:819 +#: src/view/screens/Settings/index.tsx:820 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:874 +#: src/view/screens/Settings/index.tsx:875 msgid "Debug Moderation" msgstr "Testar Moderação" @@ -1691,13 +1704,13 @@ msgstr "Painel de depuração" #: src/screens/StarterPack/StarterPackScreen.tsx:562 #: src/screens/StarterPack/StarterPackScreen.tsx:641 #: src/screens/StarterPack/StarterPackScreen.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Excluir" -#: src/view/screens/Settings/index.tsx:829 +#: src/view/screens/Settings/index.tsx:830 msgid "Delete account" msgstr "Excluir a conta" @@ -1717,8 +1730,8 @@ msgstr "Excluir senha de aplicativo" msgid "Delete app password?" msgstr "Excluir senha de aplicativo?" -#: src/view/screens/Settings/index.tsx:891 -#: src/view/screens/Settings/index.tsx:894 +#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:895 msgid "Delete chat declaration record" msgstr "" @@ -1742,12 +1755,12 @@ msgstr "Excluir mensagem para mim" msgid "Delete my account" msgstr "Excluir minha conta" -#: src/view/screens/Settings/index.tsx:841 +#: src/view/screens/Settings/index.tsx:842 msgid "Delete My Account…" msgstr "Excluir minha conta…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:414 -#: src/view/com/util/forms/PostDropdownBtn.tsx:416 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 +#: src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "Excluir post" @@ -1764,7 +1777,7 @@ msgstr "" msgid "Delete this list?" msgstr "Excluir esta lista?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:428 +#: src/view/com/util/forms/PostDropdownBtn.tsx:431 msgid "Delete this post?" msgstr "Excluir este post?" @@ -1776,7 +1789,7 @@ msgstr "Excluído" msgid "Deleted post." msgstr "Post excluído." -#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:893 msgid "Deletes the chat declaration record" msgstr "" @@ -1791,11 +1804,11 @@ msgstr "Descrição" msgid "Descriptive alt text" msgstr "Texto alternativo" -#: src/view/com/composer/Composer.tsx:283 +#: src/view/com/composer/Composer.tsx:295 msgid "Did you want to say anything?" msgstr "Você gostaria de dizer alguma coisa?" -#: src/view/screens/Settings/index.tsx:478 +#: src/view/screens/Settings/index.tsx:479 msgid "Dim" msgstr "Menos escuro" @@ -1832,11 +1845,11 @@ msgstr "Desabilitar feedback tátil" msgid "Disabled" msgstr "Desabilitado" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:682 msgid "Discard" msgstr "Descartar" -#: src/view/com/composer/Composer.tsx:648 +#: src/view/com/composer/Composer.tsx:679 msgid "Discard draft?" msgstr "Descartar rascunho?" @@ -1854,7 +1867,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "Descubra novos feeds" -#: src/view/screens/Search/Explore.tsx:388 +#: src/view/screens/Search/Explore.tsx:390 msgid "Discover new feeds" msgstr "" @@ -1907,22 +1920,20 @@ msgstr "Domínio verificado!" #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesFollowingFeed.tsx:310 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Feito" #: src/view/com/modals/EditImage.tsx:334 -#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" msgstr "Feito" @@ -1931,7 +1942,7 @@ msgstr "Feito" msgid "Done{extraText}" msgstr "Feito{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319 msgid "Download Bluesky" msgstr "" @@ -2001,7 +2012,7 @@ msgctxt "action" msgid "Edit" msgstr "Editar" -#: src/view/com/util/UserAvatar.tsx:325 +#: src/view/com/util/UserAvatar.tsx:337 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "Editar avatar" @@ -2023,7 +2034,7 @@ msgstr "Editar detalhes da lista" msgid "Edit Moderation List" msgstr "Editar lista de moderação" -#: src/Navigation.tsx:274 +#: src/Navigation.tsx:282 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -2038,12 +2049,12 @@ msgstr "Editar meu perfil" msgid "Edit People" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "Editar perfil" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "Editar Perfil" @@ -2061,7 +2072,7 @@ msgstr "" msgid "Edit User List" msgstr "Editar lista de usuários" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Edit who can reply" msgstr "" @@ -2073,7 +2084,7 @@ msgstr "Editar seu nome" msgid "Edit your profile description" msgstr "Editar sua descrição" -#: src/Navigation.tsx:343 +#: src/Navigation.tsx:356 msgid "Edit your starter pack" msgstr "" @@ -2112,7 +2123,7 @@ msgstr "E-mail Atualizado" msgid "Email verified" msgstr "E-mail verificado" -#: src/view/screens/Settings/index.tsx:350 +#: src/view/screens/Settings/index.tsx:351 msgid "Email:" msgstr "E-mail:" @@ -2121,8 +2132,8 @@ msgid "Embed HTML code" msgstr "Código HTML para incorporação" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:324 -#: src/view/com/util/forms/PostDropdownBtn.tsx:326 +#: src/view/com/util/forms/PostDropdownBtn.tsx:327 +#: src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "Incorporar post" @@ -2152,11 +2163,16 @@ msgstr "Habilitar conteúdo adulto" msgid "Enable external media" msgstr "Habilitar mídia externa" -#: src/view/screens/PreferencesExternalEmbeds.tsx:76 +#: src/view/screens/PreferencesExternalEmbeds.tsx:73 msgid "Enable media players for" msgstr "Habilitar mídia para" -#: src/view/screens/PreferencesFollowingFeed.tsx:146 +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 msgid "Enable this setting to only see replies between people you follow." msgstr "Ative esta configuração para ver respostas apenas entre as pessoas que você segue." @@ -2182,7 +2198,7 @@ msgstr "Fim do feed" msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:160 +#: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "Insira um nome para esta Senha de Aplicativo" @@ -2250,7 +2266,7 @@ msgid "Everybody" msgstr "Todos" #: src/components/WhoCanReply.tsx:69 -#: src/components/WhoCanReply.tsx:240 +#: src/components/WhoCanReply.tsx:241 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "" @@ -2286,8 +2302,8 @@ msgstr "Sair do processo de cortar imagem" msgid "Exits image view" msgstr "Sair do visualizador de imagem" -#: src/view/com/modals/ListAddRemoveUsers.tsx:88 -#: src/view/shell/desktop/Search.tsx:215 +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +#: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "Sair da busca" @@ -2295,7 +2311,7 @@ msgstr "Sair da busca" msgid "Expand alt text" msgstr "Expandir texto alternativo" -#: src/view/com/notifications/FeedItem.tsx:238 +#: src/view/com/notifications/FeedItem.tsx:239 msgid "Expand list of users" msgstr "" @@ -2304,6 +2320,10 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "Mostrar ou esconder o post a que você está respondendo" +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." msgstr "Imagens explícitas ou potencialmente perturbadoras." @@ -2312,12 +2332,12 @@ msgstr "Imagens explícitas ou potencialmente perturbadoras." msgid "Explicit sexual images." msgstr "Imagens sexualmente explícitas." -#: src/view/screens/Settings/index.tsx:787 +#: src/view/screens/Settings/index.tsx:788 msgid "Export my data" msgstr "Exportar meus dados" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:798 +#: src/view/screens/Settings/index.tsx:799 msgid "Export My Data" msgstr "Exportar Meus Dados" @@ -2327,17 +2347,17 @@ msgid "External Media" msgstr "Mídia Externa" #: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/view/screens/PreferencesExternalEmbeds.tsx:64 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:293 +#: src/Navigation.tsx:301 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:680 +#: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" msgstr "Preferências de Mídia Externa" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "External media settings" msgstr "Preferências de mídia externa" @@ -2367,8 +2387,8 @@ msgstr "Não foi possível excluir o post, por favor tente novamente." msgid "Failed to delete starter pack" msgstr "" -#: src/view/screens/Search/Explore.tsx:426 -#: src/view/screens/Search/Explore.tsx:454 +#: src/view/screens/Search/Explore.tsx:428 +#: src/view/screens/Search/Explore.tsx:456 msgid "Failed to load feeds preferences" msgstr "" @@ -2390,20 +2410,24 @@ msgstr "" #~ msgid "Failed to load recommended feeds" #~ msgstr "Falha ao carregar feeds recomendados" -#: src/view/screens/Search/Explore.tsx:419 -#: src/view/screens/Search/Explore.tsx:447 +#: src/view/screens/Search/Explore.tsx:421 +#: src/view/screens/Search/Explore.tsx:449 msgid "Failed to load suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:377 +#: src/view/screens/Search/Explore.tsx:379 msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:86 +#: src/view/com/lightbox/Lightbox.tsx:90 msgid "Failed to save image: {0}" msgstr "Não foi possível salvar a imagem: {0}" -#: src/components/dms/MessageItem.tsx:230 +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + +#: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "" @@ -2411,12 +2435,12 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "Não foi possível enviar sua mensagem." -#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: src/components/moderation/LabelsOnMeDialog.tsx:244 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:181 msgid "Failed to toggle thread mute, please try again" msgstr "" @@ -2429,7 +2453,7 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:217 msgid "Feed" msgstr "Feed" @@ -2447,19 +2471,19 @@ msgid "Feed toggle" msgstr "" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:345 +#: src/view/shell/Drawer.tsx:332 msgid "Feedback" msgstr "Comentários" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:336 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 #: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:493 -#: src/view/shell/Drawer.tsx:494 +#: src/view/shell/Drawer.tsx:483 +#: src/view/shell/Drawer.tsx:484 msgid "Feeds" msgstr "Feeds" @@ -2521,11 +2545,11 @@ msgstr "Encontre posts e usuários no Bluesky" #~ msgid "Finding similar accounts..." #~ msgstr "Procurando contas semelhantes..." -#: src/view/screens/PreferencesFollowingFeed.tsx:110 +#: src/view/screens/PreferencesFollowingFeed.tsx:108 msgid "Fine-tune the content you see on your Following feed." msgstr "Ajuste o conteúdo que você vê na sua tela inicial." -#: src/view/screens/PreferencesThreads.tsx:60 +#: src/view/screens/PreferencesThreads.tsx:54 msgid "Fine-tune the discussion threads." msgstr "Ajuste as threads." @@ -2555,7 +2579,7 @@ msgid "Flip vertically" msgstr "Virar verticalmente" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:341 +#: src/components/ProfileCard.tsx:343 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2600,7 +2624,7 @@ msgstr "" msgid "Follow Back" msgstr "Seguir De Volta" -#: src/view/screens/Search/Explore.tsx:333 +#: src/view/screens/Search/Explore.tsx:335 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "" @@ -2617,22 +2641,22 @@ msgstr "" #~ msgstr "" #: src/view/com/profile/ProfileCard.tsx:190 -msgid "Followed by {0}" -msgstr "Seguido por {0}" +#~ msgid "Followed by {0}" +#~ msgstr "Seguido por {0}" -#: src/components/KnownFollowers.tsx:223 +#: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "" -#: src/components/KnownFollowers.tsx:209 +#: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "" -#: src/components/KnownFollowers.tsx:196 +#: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" msgstr "" -#: src/components/KnownFollowers.tsx:178 +#: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" @@ -2640,15 +2664,15 @@ msgstr "" msgid "Followed users" msgstr "Usuários seguidos" -#: src/view/screens/PreferencesFollowingFeed.tsx:153 +#: src/view/screens/PreferencesFollowingFeed.tsx:152 msgid "Followed users only" msgstr "Somente usuários seguidos" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:198 msgid "followed you" msgstr "seguiu você" -#: src/view/com/notifications/FeedItem.tsx:195 +#: src/view/com/notifications/FeedItem.tsx:196 msgid "followed you back" msgstr "" @@ -2657,7 +2681,7 @@ msgstr "" msgid "Followers" msgstr "Seguidores" -#: src/Navigation.tsx:182 +#: src/Navigation.tsx:185 msgid "Followers of @{0} that you know" msgstr "" @@ -2667,7 +2691,7 @@ msgid "Followers you know" msgstr "" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:335 +#: src/components/ProfileCard.tsx:337 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2679,7 +2703,7 @@ msgstr "" msgid "Following" msgstr "Seguindo" -#: src/components/ProfileCard.tsx:301 +#: src/components/ProfileCard.tsx:303 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Seguindo {0}" @@ -2688,13 +2712,13 @@ msgstr "Seguindo {0}" msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Following feed preferences" msgstr "Configurações do feed principal" -#: src/Navigation.tsx:280 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:583 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesFollowingFeed.tsx:105 +#: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "Configurações do feed principal" @@ -2719,7 +2743,7 @@ msgstr "Comida" msgid "For security reasons, we'll need to send a confirmation code to your email address." msgstr "Por motivos de segurança, precisamos enviar um código de confirmação para seu endereço de e-mail." -#: src/view/com/modals/AddAppPasswords.tsx:232 +#: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Por motivos de segurança, você não poderá ver esta senha novamente. Se você perder esta senha, terá que gerar uma nova." @@ -2744,7 +2768,7 @@ msgstr "Frequentemente Posta Conteúdo Indesejado" msgid "From @{sanitizedAuthor}" msgstr "De @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:236 +#: src/view/com/posts/FeedItem.tsx:242 msgctxt "from-feed" msgid "From <0/>" msgstr "Por <0/>" @@ -2757,6 +2781,10 @@ msgstr "Galeria" msgid "Generate a starter pack" msgstr "" +#: src/view/shell/Drawer.tsx:336 +msgid "Get help" +msgstr "" + #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" msgstr "" @@ -2804,12 +2832,12 @@ msgid "Go Back" msgstr "Voltar" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -msgid "Go back to previous screen" -msgstr "" +#~ msgid "Go back to previous screen" +#~ msgstr "" #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/components/ReportDialog/SubmitView.tsx:121 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 @@ -2874,7 +2902,7 @@ msgstr "Feedback tátil" msgid "Harassment, trolling, or intolerance" msgstr "Assédio, intolerância ou \"trollagem\"" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:316 msgid "Hashtag" msgstr "Hashtag" @@ -2887,7 +2915,7 @@ msgid "Having trouble?" msgstr "Precisa de ajuda?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:355 +#: src/view/shell/Drawer.tsx:345 msgid "Help" msgstr "Ajuda" @@ -2907,7 +2935,7 @@ msgstr "As pessoas não vão achar que você é um bot se você criar um avatar #~ msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." #~ msgstr "Aqui estão alguns feeds de assuntos baseados nos seus interesses: {interestsText}. Você pode seguir quantos quiser." -#: src/view/com/modals/AddAppPasswords.tsx:203 +#: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "Aqui está a sua senha de aplicativo." @@ -2918,17 +2946,17 @@ msgstr "Aqui está a sua senha de aplicativo." #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:445 msgid "Hide" msgstr "Ocultar" -#: src/view/com/notifications/FeedItem.tsx:444 +#: src/view/com/notifications/FeedItem.tsx:447 msgctxt "action" msgid "Hide" msgstr "Esconder" -#: src/view/com/util/forms/PostDropdownBtn.tsx:387 -#: src/view/com/util/forms/PostDropdownBtn.tsx:389 +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 msgid "Hide post" msgstr "Ocultar post" @@ -2937,11 +2965,11 @@ msgstr "Ocultar post" msgid "Hide the content" msgstr "Esconder o conteúdo" -#: src/view/com/util/forms/PostDropdownBtn.tsx:439 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide this post?" msgstr "Ocultar este post?" -#: src/view/com/notifications/FeedItem.tsx:435 +#: src/view/com/notifications/FeedItem.tsx:438 msgid "Hide user list" msgstr "Ocultar lista de usuários" @@ -2973,12 +3001,12 @@ msgstr "Hmmmm, parece que estamos com problemas pra carregar isso. Veja mais det msgid "Hmmmm, we couldn't load that moderation service." msgstr "Hmmmm, não foi possível carregar este serviço de moderação." -#: src/Navigation.tsx:519 -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:552 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:425 -#: src/view/shell/Drawer.tsx:426 +#: src/view/shell/Drawer.tsx:415 +#: src/view/shell/Drawer.tsx:416 msgid "Home" msgstr "Página Inicial" @@ -3032,7 +3060,7 @@ msgstr "Se você ainda não é um adulto de acordo com as leis do seu país, seu msgid "If you delete this list, you won't be able to recover it." msgstr "Se você deletar esta lista, você não poderá recuperá-la." -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 msgid "If you remove this post, you won't be able to recover it." msgstr "Se você remover este post, você não poderá recuperá-la." @@ -3056,7 +3084,7 @@ msgstr "Imagem" msgid "Image alt text" msgstr "Texto alternativo da imagem" -#: src/components/StarterPack/ShareDialog.tsx:75 +#: src/components/StarterPack/ShareDialog.tsx:76 msgid "Image saved to your camera roll!" msgstr "" @@ -3076,7 +3104,7 @@ msgstr "Insira o código enviado para o seu e-mail para redefinir sua senha" msgid "Input confirmation code for account deletion" msgstr "Insira o código de confirmação para excluir sua conta" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" msgstr "Insira um nome para a senha de aplicativo" @@ -3149,7 +3177,7 @@ msgstr "Convites: {0} disponíveis" msgid "Invite codes: 1 available" msgstr "Convites: 1 disponível" -#: src/components/StarterPack/ShareDialog.tsx:96 +#: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" msgstr "" @@ -3173,8 +3201,8 @@ msgstr "" msgid "Jobs" msgstr "Carreiras" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:432 #: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" @@ -3213,11 +3241,11 @@ msgstr "Rótulos são identificações aplicadas sobre perfis e conteúdos. Eles #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "rótulos foram aplicados neste {labelTarget}" -#: src/components/moderation/LabelsOnMeDialog.tsx:79 +#: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "Rótulos sobre sua conta" -#: src/components/moderation/LabelsOnMeDialog.tsx:81 +#: src/components/moderation/LabelsOnMeDialog.tsx:82 msgid "Labels on your content" msgstr "Rótulos sobre seu conteúdo" @@ -3225,16 +3253,16 @@ msgstr "Rótulos sobre seu conteúdo" msgid "Language selection" msgstr "Seleção de idioma" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Language settings" msgstr "Configuração de Idioma" -#: src/Navigation.tsx:155 +#: src/Navigation.tsx:158 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Configurações de Idiomas" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Languages" msgstr "Idiomas" @@ -3294,7 +3322,7 @@ msgstr "Saindo do Bluesky" msgid "left to go." msgstr "na sua frente." -#: src/view/screens/Settings/index.tsx:309 +#: src/view/screens/Settings/index.tsx:310 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Armazenamento limpo, você precisa reiniciar o app agora." @@ -3312,7 +3340,7 @@ msgstr "Vamos redefinir sua senha!" msgid "Let's go!" msgstr "Vamos lá!" -#: src/view/screens/Settings/index.tsx:453 +#: src/view/screens/Settings/index.tsx:454 msgid "Light" msgstr "Claro" @@ -3330,13 +3358,13 @@ msgid "Like 10 posts to train the Discover feed" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Like this feed" msgstr "Curtir este feed" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:219 -#: src/Navigation.tsx:224 +#: src/Navigation.tsx:222 +#: src/Navigation.tsx:227 msgid "Liked by" msgstr "Curtido por" @@ -3360,11 +3388,11 @@ msgstr "Curtido Por" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "Curtido por {likeCount} {0}" -#: src/view/com/notifications/FeedItem.tsx:201 +#: src/view/com/notifications/FeedItem.tsx:202 msgid "liked your custom feed" msgstr "curtiram seu feed" -#: src/view/com/notifications/FeedItem.tsx:185 +#: src/view/com/notifications/FeedItem.tsx:186 msgid "liked your post" msgstr "curtiu seu post" @@ -3376,7 +3404,7 @@ msgstr "Curtidas" msgid "Likes on this post" msgstr "Curtidas neste post" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:191 msgid "List" msgstr "Lista" @@ -3413,12 +3441,12 @@ msgstr "Lista desbloqueada" msgid "List unmuted" msgstr "Lista dessilenciada" -#: src/Navigation.tsx:125 +#: src/Navigation.tsx:128 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 -#: src/view/shell/Drawer.tsx:509 -#: src/view/shell/Drawer.tsx:510 +#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:500 msgid "Lists" msgstr "Listas" @@ -3426,25 +3454,25 @@ msgstr "Listas" msgid "Lists blocking this user:" msgstr "" -#: src/view/screens/Search/Explore.tsx:130 +#: src/view/screens/Search/Explore.tsx:131 msgid "Load more" msgstr "" -#: src/view/screens/Search/Explore.tsx:218 +#: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:216 +#: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" msgstr "" -#: src/view/screens/Notifications.tsx:184 +#: src/view/screens/Notifications.tsx:219 msgid "Load new notifications" msgstr "Carregar novas notificações" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:494 +#: src/view/screens/ProfileFeed.tsx:495 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Carregar novos posts" @@ -3453,7 +3481,7 @@ msgstr "Carregar novos posts" msgid "Loading..." msgstr "Carregando..." -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:247 msgid "Log" msgstr "Registros" @@ -3523,7 +3551,7 @@ msgstr "Marcar como lida" msgid "Media" msgstr "Mídia" -#: src/components/WhoCanReply.tsx:275 +#: src/components/WhoCanReply.tsx:276 msgid "mentioned users" msgstr "usuários mencionados" @@ -3545,7 +3573,7 @@ msgstr "" msgid "Message deleted" msgstr "Mensagem excluída" -#: src/view/com/posts/FeedErrorMessage.tsx:200 +#: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "Mensagem do servidor: {0}" @@ -3562,7 +3590,7 @@ msgstr "Mensagem longa demais" msgid "Message settings" msgstr "Configurações das mensagens" -#: src/Navigation.tsx:534 +#: src/Navigation.tsx:547 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3577,9 +3605,9 @@ msgstr "Mensagens" msgid "Misleading Account" msgstr "Conta Enganosa" -#: src/Navigation.tsx:130 +#: src/Navigation.tsx:133 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:562 +#: src/view/screens/Settings/index.tsx:563 msgid "Moderation" msgstr "Moderação" @@ -3615,16 +3643,16 @@ msgstr "Lista de moderação criada" msgid "Moderation lists" msgstr "Listas de moderação" -#: src/Navigation.tsx:135 +#: src/Navigation.tsx:138 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Listas de Moderação" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Moderation settings" msgstr "Moderação" -#: src/Navigation.tsx:234 +#: src/Navigation.tsx:237 msgid "Moderation states" msgstr "Moderação" @@ -3649,7 +3677,7 @@ msgstr "Mais feeds" msgid "More options" msgstr "Mais opções" -#: src/view/screens/PreferencesThreads.tsx:82 +#: src/view/screens/PreferencesThreads.tsx:76 msgid "Most-liked replies first" msgstr "Respostas mais curtidas primeiro" @@ -3716,13 +3744,13 @@ msgstr "Silenciar esta palavra no conteúdo de um post e tags" msgid "Mute this word in tags only" msgstr "Silenciar esta palavra apenas nas tags de um post" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:371 msgid "Mute thread" msgstr "Silenciar thread" -#: src/view/com/util/forms/PostDropdownBtn.tsx:378 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 +#: src/view/com/util/forms/PostDropdownBtn.tsx:381 +#: src/view/com/util/forms/PostDropdownBtn.tsx:383 msgid "Mute words & tags" msgstr "Silenciar palavras/tags" @@ -3734,7 +3762,7 @@ msgstr "Silenciada" msgid "Muted accounts" msgstr "Contas silenciadas" -#: src/Navigation.tsx:140 +#: src/Navigation.tsx:143 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Contas Silenciadas" @@ -3768,15 +3796,15 @@ msgstr "Meus Feeds" msgid "My Profile" msgstr "Meu Perfil" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "My saved feeds" msgstr "Meus feeds salvos" -#: src/view/screens/Settings/index.tsx:623 +#: src/view/screens/Settings/index.tsx:624 msgid "My Saved Feeds" msgstr "Meus Feeds Salvos" -#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/AddAppPasswords.tsx:174 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Nome" @@ -3811,7 +3839,7 @@ msgstr "" msgid "Navigates to the next screen" msgstr "Navega para próxima tela" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:78 msgid "Navigates to your profile" msgstr "Navega para seu perfil" @@ -3841,7 +3869,7 @@ msgstr "Novo" msgid "New" msgstr "Novo" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" @@ -3869,9 +3897,9 @@ msgid "New post" msgstr "Novo post" #: src/view/screens/Feeds.tsx:581 -#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Notifications.tsx:228 #: src/view/screens/Profile.tsx:478 -#: src/view/screens/ProfileFeed.tsx:428 +#: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:278 @@ -3891,7 +3919,7 @@ msgstr "" msgid "New User List" msgstr "Nova lista de usuários" -#: src/view/screens/PreferencesThreads.tsx:79 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Newest replies first" msgstr "Respostas mais recentes primeiro" @@ -3926,16 +3954,16 @@ msgstr "Próximo" msgid "Next image" msgstr "Próxima imagem" -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:199 -#: src/view/screens/PreferencesFollowingFeed.tsx:234 -#: src/view/screens/PreferencesFollowingFeed.tsx:271 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:198 +#: src/view/screens/PreferencesFollowingFeed.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:270 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "No" msgstr "Não" -#: src/view/screens/ProfileFeed.tsx:562 +#: src/view/screens/ProfileFeed.tsx:564 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Sem descrição" @@ -3953,7 +3981,7 @@ msgstr "Nenhum GIF em destaque encontrado." msgid "No feeds found. Try searching for something else." msgstr "" -#: src/components/ProfileCard.tsx:321 +#: src/components/ProfileCard.tsx:323 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "Você não está mais seguindo {0}" @@ -3970,7 +3998,7 @@ msgstr "Nenhuma mensagem ainda" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:122 msgid "No notifications yet!" msgstr "Nenhuma notificação!" @@ -4002,7 +4030,7 @@ msgstr "Nenhum resultado encontrado" msgid "No results found for \"{query}\"" msgstr "Nenhum resultado encontrado para \"{query}\"" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 @@ -4048,7 +4076,7 @@ msgstr "Nudez não-erótica" #~ msgid "Not Applicable." #~ msgstr "Não Aplicável." -#: src/Navigation.tsx:120 +#: src/Navigation.tsx:123 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Não encontrado" @@ -4059,7 +4087,7 @@ msgid "Not right now" msgstr "Agora não" #: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/forms/PostDropdownBtn.tsx:459 #: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "Nota sobre compartilhamento" @@ -4072,6 +4100,19 @@ msgstr "Nota: o Bluesky é uma rede aberta e pública. Esta configuração limit msgid "Nothing here" msgstr "" +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:331 +#: src/view/screens/Notifications.tsx:119 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "" + #: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "" @@ -4080,13 +4121,14 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:529 -#: src/view/screens/Notifications.tsx:132 -#: src/view/screens/Notifications.tsx:169 +#: src/Navigation.tsx:542 +#: src/view/screens/Notifications.tsx:145 +#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:203 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 -#: src/view/shell/Drawer.tsx:457 -#: src/view/shell/Drawer.tsx:458 +#: src/view/shell/Drawer.tsx:447 +#: src/view/shell/Drawer.tsx:448 msgid "Notifications" msgstr "Notificações" @@ -4094,7 +4136,7 @@ msgstr "Notificações" msgid "now" msgstr "" -#: src/components/dms/MessageItem.tsx:175 +#: src/components/dms/MessageItem.tsx:169 msgid "Now" msgstr "Agora" @@ -4124,7 +4166,7 @@ msgstr "Opa!" msgid "Oh no! Something went wrong." msgstr "Opa! Algo deu errado." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 msgid "OK" msgstr "OK" @@ -4132,7 +4174,7 @@ msgstr "OK" msgid "Okay" msgstr "Ok" -#: src/view/screens/PreferencesThreads.tsx:78 +#: src/view/screens/PreferencesThreads.tsx:72 msgid "Oldest replies first" msgstr "Respostas mais antigas primeiro" @@ -4144,7 +4186,7 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:257 +#: src/view/screens/Settings/index.tsx:258 msgid "Onboarding reset" msgstr "Resetar tutoriais" @@ -4152,7 +4194,7 @@ msgstr "Resetar tutoriais" msgid "Onboarding tour step {0}: {1}" msgstr "" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:534 msgid "One or more images is missing alt text." msgstr "Uma ou mais imagens estão sem texto alternativo." @@ -4160,7 +4202,7 @@ msgstr "Uma ou mais imagens estão sem texto alternativo." msgid "Only .jpg and .png files are supported" msgstr "Apenas imagens .jpg ou .png são permitidas" -#: src/components/WhoCanReply.tsx:244 +#: src/components/WhoCanReply.tsx:245 msgid "Only {0} can reply" msgstr "" @@ -4180,6 +4222,7 @@ msgstr "Opa, algo deu errado!" #: src/components/StarterPack/ProfileStarterPacks.tsx:304 #: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/NotificationsSettings.tsx:45 #: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Opa!" @@ -4201,16 +4244,16 @@ msgstr "Abrir criador de avatar" msgid "Open conversation options" msgstr "" -#: src/view/com/composer/Composer.tsx:632 -#: src/view/com/composer/Composer.tsx:633 +#: src/view/com/composer/Composer.tsx:663 +#: src/view/com/composer/Composer.tsx:664 msgid "Open emoji picker" msgstr "Abrir seletor de emojis" -#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileFeed.tsx:297 msgid "Open feed options menu" msgstr "Abrir opções do feed" -#: src/view/screens/Settings/index.tsx:737 +#: src/view/screens/Settings/index.tsx:738 msgid "Open links with in-app browser" msgstr "Abrir links no navegador interno" @@ -4226,7 +4269,7 @@ msgstr "Abrir opções de palavras/tags silenciadas" msgid "Open navigation" msgstr "Abrir navegação" -#: src/view/com/util/forms/PostDropdownBtn.tsx:247 +#: src/view/com/util/forms/PostDropdownBtn.tsx:250 msgid "Open post options menu" msgstr "Abrir opções do post" @@ -4234,12 +4277,12 @@ msgstr "Abrir opções do post" msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Open storybook page" msgstr "Abre o storybook" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Open system log" msgstr "Abrir registros do sistema" @@ -4251,7 +4294,7 @@ msgstr "Abre {numItems} opções" msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:511 +#: src/view/screens/Settings/index.tsx:512 msgid "Opens accessibility settings" msgstr "Abre as configurações de acessibilidade" @@ -4267,7 +4310,7 @@ msgstr "Abre detalhes adicionais para um registro de depuração" msgid "Opens camera on device" msgstr "Abre a câmera do dispositivo" -#: src/view/screens/Settings/index.tsx:640 +#: src/view/screens/Settings/index.tsx:641 msgid "Opens chat settings" msgstr "" @@ -4275,7 +4318,7 @@ msgstr "" msgid "Opens composer" msgstr "Abre o editor de post" -#: src/view/screens/Settings/index.tsx:532 +#: src/view/screens/Settings/index.tsx:533 msgid "Opens configurable language settings" msgstr "Abre definições de idioma configuráveis" @@ -4283,7 +4326,7 @@ msgstr "Abre definições de idioma configuráveis" msgid "Opens device photo gallery" msgstr "Abre a galeria de fotos do dispositivo" -#: src/view/screens/Settings/index.tsx:672 +#: src/view/screens/Settings/index.tsx:673 msgid "Opens external embeds settings" msgstr "Abre as configurações de anexos externos" @@ -4305,27 +4348,27 @@ msgstr "Abre a janela de seleção de GIFs" msgid "Opens list of invite codes" msgstr "Abre a lista de códigos de convite" -#: src/view/screens/Settings/index.tsx:809 +#: src/view/screens/Settings/index.tsx:810 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:831 +#: src/view/screens/Settings/index.tsx:832 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "Abre modal de confirmar a exclusão da conta. Requer código enviado por email" -#: src/view/screens/Settings/index.tsx:766 +#: src/view/screens/Settings/index.tsx:767 msgid "Opens modal for changing your Bluesky password" msgstr "Abre modal para troca da sua senha do Bluesky" -#: src/view/screens/Settings/index.tsx:721 +#: src/view/screens/Settings/index.tsx:722 msgid "Opens modal for choosing a new Bluesky handle" msgstr "Abre modal para troca do seu usuário do Bluesky" -#: src/view/screens/Settings/index.tsx:789 +#: src/view/screens/Settings/index.tsx:790 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Abre modal para baixar os dados da sua conta do Bluesky" -#: src/view/screens/Settings/index.tsx:1009 +#: src/view/screens/Settings/index.tsx:1010 msgid "Opens modal for email verification" msgstr "Abre modal para verificação de email" @@ -4333,7 +4376,7 @@ msgstr "Abre modal para verificação de email" msgid "Opens modal for using custom domain" msgstr "Abre modal para usar o domínio personalizado" -#: src/view/screens/Settings/index.tsx:557 +#: src/view/screens/Settings/index.tsx:558 msgid "Opens moderation settings" msgstr "Abre configurações de moderação" @@ -4346,15 +4389,15 @@ msgstr "Abre o formulário de redefinição de senha" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "Abre a tela para editar feeds salvos" -#: src/view/screens/Settings/index.tsx:618 +#: src/view/screens/Settings/index.tsx:619 msgid "Opens screen with all saved feeds" msgstr "Abre a tela com todos os feeds salvos" -#: src/view/screens/Settings/index.tsx:699 +#: src/view/screens/Settings/index.tsx:700 msgid "Opens the app password settings" msgstr "Abre as configurações de senha do aplicativo" -#: src/view/screens/Settings/index.tsx:575 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens the Following feed preferences" msgstr "Abre as preferências do feed inicial" @@ -4366,30 +4409,34 @@ msgstr "Abre o link" #~ msgid "Opens the message settings page" #~ msgstr "Abre a tela de configurações do chat" -#: src/view/screens/Settings/index.tsx:862 -#: src/view/screens/Settings/index.tsx:872 +#: src/view/screens/Settings/index.tsx:863 +#: src/view/screens/Settings/index.tsx:873 msgid "Opens the storybook page" msgstr "Abre a página do storybook" -#: src/view/screens/Settings/index.tsx:850 +#: src/view/screens/Settings/index.tsx:851 msgid "Opens the system log page" msgstr "Abre a página de log do sistema" -#: src/view/screens/Settings/index.tsx:596 +#: src/view/screens/Settings/index.tsx:597 msgid "Opens the threads preferences" msgstr "Abre as preferências de threads" -#: src/view/com/notifications/FeedItem.tsx:524 -#: src/view/com/util/UserAvatar.tsx:422 +#: src/view/com/notifications/FeedItem.tsx:527 +#: src/view/com/util/UserAvatar.tsx:434 msgid "Opens this profile" msgstr "" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:54 +msgid "Opens video picker" +msgstr "" + #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "Opção {0} de {numItems}" #: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:162 +#: src/components/ReportDialog/SubmitView.tsx:179 msgid "Optionally provide additional information below:" msgstr "Se quiser adicionar mais informações, digite abaixo:" @@ -4449,7 +4496,7 @@ msgstr "Senha atualizada" msgid "Password updated!" msgstr "Senha atualizada!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Pause" msgstr "Pausar" @@ -4458,19 +4505,19 @@ msgstr "Pausar" msgid "People" msgstr "Pessoas" -#: src/Navigation.tsx:175 +#: src/Navigation.tsx:178 msgid "People followed by @{0}" msgstr "Pessoas seguidas por @{0}" -#: src/Navigation.tsx:168 +#: src/Navigation.tsx:171 msgid "People following @{0}" msgstr "Pessoas seguindo @{0}" -#: src/view/com/lightbox/Lightbox.tsx:69 +#: src/view/com/lightbox/Lightbox.tsx:70 msgid "Permission to access camera roll is required." msgstr "A permissão de galeria é obrigatória." -#: src/view/com/lightbox/Lightbox.tsx:75 +#: src/view/com/lightbox/Lightbox.tsx:78 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "A permissão de galeria foi recusada. Por favor, habilite-a nas configurações do dispositivo." @@ -4491,12 +4538,12 @@ msgstr "" msgid "Pictures meant for adults." msgstr "Imagens destinadas a adultos." -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Fixar na tela inicial" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 msgid "Pin to Home" msgstr "Fixar na Tela Inicial" @@ -4508,7 +4555,7 @@ msgstr "Feeds Fixados" msgid "Pinned to your feeds" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Play" msgstr "Tocar" @@ -4521,7 +4568,7 @@ msgstr "Reproduzir {0}" #~ msgid "Play notification sounds" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 msgid "Play or pause the GIF" msgstr "Tocar ou pausar o GIF" @@ -4555,7 +4602,7 @@ msgstr "Por favor, confirme seu e-mail antes de alterá-lo. Este é um requisito msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "Por favor, insira um nome para a sua Senha de Aplicativo." -#: src/view/com/modals/AddAppPasswords.tsx:150 +#: src/view/com/modals/AddAppPasswords.tsx:151 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." @@ -4576,7 +4623,7 @@ msgstr "" msgid "Please enter your password as well:" msgstr "Por favor, digite sua senha também:" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:277 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Por favor, explique por que você acha que este rótulo foi aplicado incorrentamente por {0}" @@ -4593,7 +4640,7 @@ msgstr "Por favor entre como @{0}" msgid "Please Verify Your Email" msgstr "Por favor, verifique seu e-mail" -#: src/view/com/composer/Composer.tsx:287 +#: src/view/com/composer/Composer.tsx:299 msgid "Please wait for your link card to finish loading" msgstr "Aguarde até que a prévia de link termine de carregar" @@ -4606,8 +4653,8 @@ msgstr "Política" msgid "Porn" msgstr "Pornografia" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:509 +#: src/view/com/composer/Composer.tsx:516 msgctxt "action" msgid "Post" msgstr "Postar" @@ -4621,9 +4668,9 @@ msgstr "Post" msgid "Post by {0}" msgstr "Post por {0}" -#: src/Navigation.tsx:194 -#: src/Navigation.tsx:201 -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:197 +#: src/Navigation.tsx:204 +#: src/Navigation.tsx:211 msgid "Post by @{0}" msgstr "Post por @{0}" @@ -4679,6 +4726,10 @@ msgstr "Posts ocultados" msgid "Potentially Misleading Link" msgstr "Link Potencialmente Enganoso" +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "" @@ -4699,7 +4750,7 @@ msgstr "Tentar novamente" #~ msgid "Press to Retry" #~ msgstr "Tentar novamente" -#: src/components/KnownFollowers.tsx:116 +#: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "" @@ -4711,20 +4762,24 @@ msgstr "Imagem anterior" msgid "Primary Language" msgstr "Idioma Principal" -#: src/view/screens/PreferencesThreads.tsx:97 +#: src/view/screens/PreferencesThreads.tsx:91 msgid "Prioritize Your Follows" msgstr "Priorizar seus Seguidores" -#: src/view/screens/Settings/index.tsx:655 +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "" + +#: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privacidade" -#: src/Navigation.tsx:249 +#: src/Navigation.tsx:257 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:958 -#: src/view/shell/Drawer.tsx:285 +#: src/view/screens/Settings/index.tsx:959 +#: src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "Política de Privacidade" @@ -4743,9 +4798,9 @@ msgstr "perfil" #: src/view/shell/bottom-bar/BottomBar.tsx:275 #: src/view/shell/desktop/LeftNav.tsx:393 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:542 -#: src/view/shell/Drawer.tsx:543 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:532 +#: src/view/shell/Drawer.tsx:533 msgid "Profile" msgstr "Perfil" @@ -4753,7 +4808,7 @@ msgstr "Perfil" msgid "Profile updated" msgstr "Perfil atualizado" -#: src/view/screens/Settings/index.tsx:1022 +#: src/view/screens/Settings/index.tsx:1023 msgid "Protect your account by verifying your email." msgstr "Proteja a sua conta verificando o seu e-mail." @@ -4769,23 +4824,23 @@ msgstr "Listas públicas e compartilháveis para silenciar ou bloquear usuários msgid "Public, shareable lists which can drive feeds." msgstr "Listas públicas e compartilháveis que geram feeds." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish post" msgstr "Publicar post" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish reply" msgstr "Publicar resposta" -#: src/components/StarterPack/QrCodeDialog.tsx:125 +#: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:103 +#: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:104 +#: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "" @@ -4810,7 +4865,7 @@ msgstr "Citar post" #~ msgid "Quote Post" #~ msgstr "Citar Post" -#: src/view/screens/PreferencesThreads.tsx:86 +#: src/view/screens/PreferencesThreads.tsx:80 msgid "Random (aka \"Poster's Roulette\")" msgstr "Aleatório" @@ -4846,19 +4901,23 @@ msgstr "Buscas Recentes" msgid "Reconnect" msgstr "" +#: src/view/screens/Notifications.tsx:146 +msgid "Refresh notifications" +msgstr "" + #: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 #: src/components/FeedCard.tsx:309 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:212 +#: src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "Remover" @@ -4870,7 +4929,7 @@ msgstr "" msgid "Remove account" msgstr "Remover conta" -#: src/view/com/util/UserAvatar.tsx:384 +#: src/view/com/util/UserAvatar.tsx:396 msgid "Remove Avatar" msgstr "Remover avatar" @@ -4882,20 +4941,20 @@ msgstr "Remover banner" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:168 -#: src/view/com/posts/FeedShutdownMsg.tsx:113 -#: src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:115 +#: src/view/com/posts/FeedShutdownMsg.tsx:119 msgid "Remove feed" msgstr "Remover feed" -#: src/view/com/posts/FeedErrorMessage.tsx:209 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" msgstr "Remover feed?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Remover dos meus feeds" @@ -4909,7 +4968,7 @@ msgstr "Remover dos meus feeds?" msgid "Remove image" msgstr "Remover imagem" -#: src/view/com/composer/ExternalEmbed.tsx:87 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 msgid "Remove image preview" msgstr "Remover visualização da imagem" @@ -4934,11 +4993,11 @@ msgstr "Remover citação" msgid "Remove repost" msgstr "Desfazer repost" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "Remover este feed dos feeds salvos" -#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "Removido da lista" @@ -4954,15 +5013,19 @@ msgid "Removed from your feeds" msgstr "Removido dos feeds salvos" #: src/view/com/composer/ExternalEmbed.tsx:88 -msgid "Removes default thumbnail from {0}" -msgstr "Remover miniatura de {0}" +#~ msgid "Removes default thumbnail from {0}" +#~ msgstr "Remover miniatura de {0}" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" msgstr "Remove o post citado" -#: src/view/com/posts/FeedShutdownMsg.tsx:126 -#: src/view/com/posts/FeedShutdownMsg.tsx:130 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the image preview" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:128 +#: src/view/com/posts/FeedShutdownMsg.tsx:132 msgid "Replace with Discover" msgstr "Trocar pelo Discover" @@ -4978,16 +5041,16 @@ msgstr "" #~ msgid "Replies on this thread are disabled" #~ msgstr "" -#: src/components/WhoCanReply.tsx:242 +#: src/components/WhoCanReply.tsx:243 msgid "Replies to this thread are disabled" msgstr "Respostas para esta thread estão desativadas" -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:507 msgctxt "action" msgid "Reply" msgstr "Responder" -#: src/view/screens/PreferencesFollowingFeed.tsx:143 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 msgid "Reply Filters" msgstr "Filtros de Resposta" @@ -4997,17 +5060,23 @@ msgstr "Filtros de Resposta" #~ msgid "Reply to <0/>" #~ msgstr "Responder <0/>" -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:439 +#: src/view/com/post/Post.tsx:197 +#: src/view/com/posts/FeedItem.tsx:458 msgctxt "description" msgid "Reply to <0><1/>" msgstr "Responder <0><1/>" -#: src/view/com/posts/FeedItem.tsx:437 +#: src/view/com/posts/FeedItem.tsx:456 msgctxt "description" msgid "Reply to a blocked post" msgstr "" +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:454 +msgctxt "description" +msgid "Reply to you" +msgstr "" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -5034,8 +5103,8 @@ msgstr "Denunciar conversa" msgid "Report dialog" msgstr "Janela de denúncia" -#: src/view/screens/ProfileFeed.tsx:349 -#: src/view/screens/ProfileFeed.tsx:351 +#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:352 msgid "Report feed" msgstr "Denunciar feed" @@ -5047,8 +5116,8 @@ msgstr "Denunciar Lista" msgid "Report message" msgstr "Denunciar mensagem" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:407 +#: src/view/com/util/forms/PostDropdownBtn.tsx:409 msgid "Report post" msgstr "Denunciar post" @@ -5110,7 +5179,7 @@ msgstr "Repostar ou citar um post" msgid "Reposted By" msgstr "Repostado Por" -#: src/view/com/posts/FeedItem.tsx:254 +#: src/view/com/posts/FeedItem.tsx:263 msgid "Reposted by {0}" msgstr "Repostado por {0}" @@ -5118,11 +5187,16 @@ msgstr "Repostado por {0}" #~ msgid "Reposted by <0/>" #~ msgstr "Repostado por <0/>" -#: src/view/com/posts/FeedItem.tsx:269 +#: src/view/com/posts/FeedItem.tsx:282 msgid "Reposted by <0><1/>" msgstr "Repostado por <0><1/>" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/posts/FeedItem.tsx:261 +#: src/view/com/posts/FeedItem.tsx:280 +msgid "Reposted by you" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:188 msgid "reposted your post" msgstr "repostou seu post" @@ -5165,8 +5239,8 @@ msgstr "Código de redefinição" msgid "Reset Code" msgstr "Código de Redefinição" -#: src/view/screens/Settings/index.tsx:901 -#: src/view/screens/Settings/index.tsx:904 +#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:905 msgid "Reset onboarding state" msgstr "Redefinir tutoriais" @@ -5174,16 +5248,16 @@ msgstr "Redefinir tutoriais" msgid "Reset password" msgstr "Redefinir senha" -#: src/view/screens/Settings/index.tsx:881 -#: src/view/screens/Settings/index.tsx:884 +#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:885 msgid "Reset preferences state" msgstr "Redefinir configurações" -#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:903 msgid "Resets the onboarding state" msgstr "Redefine tutoriais" -#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:883 msgid "Resets the preferences state" msgstr "Redefine as configurações" @@ -5196,7 +5270,7 @@ msgstr "Tenta entrar novamente" msgid "Retries the last action, which errored out" msgstr "Tenta a última ação, que deu erro" -#: src/components/dms/MessageItem.tsx:241 +#: src/components/dms/MessageItem.tsx:235 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 @@ -5232,7 +5306,7 @@ msgstr "Voltar para página anterior" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/dialogs/ThreadgateEditor.tsx:88 -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:187 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5241,7 +5315,7 @@ msgstr "Voltar para página anterior" msgid "Save" msgstr "Salvar" -#: src/view/com/lightbox/Lightbox.tsx:135 +#: src/view/com/lightbox/Lightbox.tsx:139 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5263,8 +5337,8 @@ msgstr "Salvar Alterações" msgid "Save handle change" msgstr "Salvar usuário" -#: src/components/StarterPack/ShareDialog.tsx:150 -#: src/components/StarterPack/ShareDialog.tsx:157 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "" @@ -5272,12 +5346,12 @@ msgstr "" msgid "Save image crop" msgstr "Salvar corte de imagem" -#: src/components/StarterPack/QrCodeDialog.tsx:178 +#: src/components/StarterPack/QrCodeDialog.tsx:181 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 +#: src/view/screens/ProfileFeed.tsx:334 +#: src/view/screens/ProfileFeed.tsx:340 msgid "Save to my feeds" msgstr "Salvar nos meus feeds" @@ -5285,7 +5359,7 @@ msgstr "Salvar nos meus feeds" msgid "Saved Feeds" msgstr "Feeds Salvos" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:88 msgid "Saved to your camera roll" msgstr "Imagem salva na galeria." @@ -5312,8 +5386,8 @@ msgstr "Salva o corte da imagem" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:383 -#: src/view/com/notifications/FeedItem.tsx:408 +#: src/view/com/notifications/FeedItem.tsx:386 +#: src/view/com/notifications/FeedItem.tsx:411 msgid "Say hello!" msgstr "" @@ -5327,9 +5401,9 @@ msgid "Scroll to top" msgstr "Ir para o topo" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:524 +#: src/Navigation.tsx:537 #: src/view/com/auth/LoggedOut.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 @@ -5337,14 +5411,14 @@ msgstr "Ir para o topo" #: src/view/screens/Search/Search.tsx:813 #: src/view/shell/bottom-bar/BottomBar.tsx:182 #: src/view/shell/desktop/LeftNav.tsx:354 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:394 -#: src/view/shell/Drawer.tsx:395 +#: src/view/shell/desktop/Search.tsx:195 +#: src/view/shell/desktop/Search.tsx:204 +#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:385 msgid "Search" msgstr "Buscar" -#: src/view/shell/desktop/Search.tsx:235 +#: src/view/shell/desktop/Search.tsx:236 msgid "Search for \"{query}\"" msgstr "Pesquisar por \"{query}\"" @@ -5370,7 +5444,7 @@ msgstr "" #: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/auth/LoggedOut.tsx:107 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "Buscar usuários" @@ -5474,7 +5548,7 @@ msgstr "Seleciona opção {i} de {numItems}" msgid "Select the {emojiName} emoji as your avatar" msgstr "Selecione o {emojiName} emoji como avatar" -#: src/components/ReportDialog/SubmitView.tsx:135 +#: src/components/ReportDialog/SubmitView.tsx:152 msgid "Select the moderation service(s) to report to" msgstr "Selecione o(s) serviço(s) de moderação para reportar" @@ -5486,6 +5560,10 @@ msgstr "Selecione o serviço que hospeda seus dados." #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "Selecione feeds de assuntos para seguir" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:53 +msgid "Select video" +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:63 #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "Selecione o que você quer (ou não) ver, e cuidaremos do resto." @@ -5536,8 +5614,7 @@ msgctxt "action" msgid "Send Email" msgstr "Enviar E-mail" -#: src/view/shell/Drawer.tsx:329 -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:325 msgid "Send feedback" msgstr "Enviar comentários" @@ -5546,14 +5623,14 @@ msgstr "Enviar comentários" msgid "Send message" msgstr "Enviar mensagem" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 msgid "Send post to..." msgstr "" #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:215 -#: src/components/ReportDialog/SubmitView.tsx:219 +#: src/components/ReportDialog/SubmitView.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:236 msgid "Send report" msgstr "Denunciar" @@ -5566,8 +5643,8 @@ msgstr "Denunciar via {0}" msgid "Send verification email" msgstr "Enviar e-mail de verificação" -#: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 +#: src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" msgstr "" @@ -5587,23 +5664,23 @@ msgstr "Definir data de nascimento" msgid "Set new password" msgstr "Definir uma nova senha" -#: src/view/screens/PreferencesFollowingFeed.tsx:224 +#: src/view/screens/PreferencesFollowingFeed.tsx:223 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Defina esta configuração como \"Não\" para ocultar todas as citações do seu feed. Reposts ainda serão visíveis." -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:120 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Defina esta configuração como \"Não\" para ocultar todas as respostas do seu feed." -#: src/view/screens/PreferencesFollowingFeed.tsx:190 +#: src/view/screens/PreferencesFollowingFeed.tsx:189 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Defina esta configuração como \"Não\" para ocultar todos os reposts do seu feed." -#: src/view/screens/PreferencesThreads.tsx:122 +#: src/view/screens/PreferencesThreads.tsx:116 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Defina esta configuração como \"Sim\" para mostrar respostas em uma visualização de thread. Este é um recurso experimental." -#: src/view/screens/PreferencesFollowingFeed.tsx:260 +#: src/view/screens/PreferencesFollowingFeed.tsx:259 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Defina esta configuração como \"Sim\" para exibir amostras de seus feeds salvos no seu feed inicial. Este é um recurso experimental." @@ -5615,23 +5692,23 @@ msgstr "Configure sua conta" msgid "Sets Bluesky username" msgstr "Configura o usuário no Bluesky" -#: src/view/screens/Settings/index.tsx:462 +#: src/view/screens/Settings/index.tsx:463 msgid "Sets color theme to dark" msgstr "Define o tema para escuro" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Sets color theme to light" msgstr "Define o tema para claro" -#: src/view/screens/Settings/index.tsx:449 +#: src/view/screens/Settings/index.tsx:450 msgid "Sets color theme to system setting" msgstr "Define o tema para seguir o sistema" -#: src/view/screens/Settings/index.tsx:488 +#: src/view/screens/Settings/index.tsx:489 msgid "Sets dark theme to the dark theme" msgstr "Define o tema escuro para o padrão" -#: src/view/screens/Settings/index.tsx:481 +#: src/view/screens/Settings/index.tsx:482 msgid "Sets dark theme to the dim theme" msgstr "Define o tema escuro para o menos escuro" @@ -5651,11 +5728,11 @@ msgstr "Define a proporção da imagem para alta" msgid "Sets image aspect ratio to wide" msgstr "Define a proporção da imagem para comprida" -#: src/Navigation.tsx:150 -#: src/view/screens/Settings/index.tsx:333 +#: src/Navigation.tsx:153 +#: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:559 -#: src/view/shell/Drawer.tsx:560 +#: src/view/shell/Drawer.tsx:549 +#: src/view/shell/Drawer.tsx:550 msgid "Settings" msgstr "Configurações" @@ -5667,19 +5744,19 @@ msgstr "Atividade sexual ou nudez erótica." msgid "Sexually Suggestive" msgstr "Sexualmente Sugestivo" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:177 #: src/screens/StarterPack/StarterPackScreen.tsx:400 #: src/screens/StarterPack/StarterPackScreen.tsx:571 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 #: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Compartilhar" -#: src/view/com/lightbox/Lightbox.tsx:144 +#: src/view/com/lightbox/Lightbox.tsx:148 msgctxt "action" msgid "Share" msgstr "Compartilhar" @@ -5693,18 +5770,18 @@ msgid "Share a fun fact!" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:464 #: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "Compartilhar assim" -#: src/view/screens/ProfileFeed.tsx:359 -#: src/view/screens/ProfileFeed.tsx:361 +#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:362 msgid "Share feed" msgstr "Compartilhar feed" -#: src/components/StarterPack/ShareDialog.tsx:123 -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 #: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -5714,12 +5791,12 @@ msgstr "" msgid "Share Link" msgstr "Compartilhar Link" -#: src/components/StarterPack/ShareDialog.tsx:87 +#: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:134 -#: src/components/StarterPack/ShareDialog.tsx:145 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "" @@ -5727,7 +5804,7 @@ msgstr "" msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:99 +#: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5735,6 +5812,10 @@ msgstr "" msgid "Share your favorite feed!" msgstr "" +#: src/Navigation.tsx:242 +msgid "Shared Preferences Tester" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" msgstr "Compartilha o link" @@ -5742,7 +5823,7 @@ msgstr "Compartilha o link" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:382 +#: src/view/screens/Settings/index.tsx:383 msgid "Show" msgstr "Mostrar" @@ -5750,7 +5831,7 @@ msgstr "Mostrar" #~ msgid "Show all replies" #~ msgstr "Mostrar todas as respostas" -#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +#: src/view/com/util/post-embeds/GifEmbed.tsx:175 msgid "Show alt text" msgstr "Mostrar texto alternativo" @@ -5776,19 +5857,19 @@ msgstr "Mostrar usuários parecidos com {0}" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#: src/view/com/util/forms/PostDropdownBtn.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:349 +#: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" msgstr "Mostrar menos disso" #: src/view/com/post-thread/PostThreadItem.tsx:530 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:396 +#: src/view/com/post/Post.tsx:235 +#: src/view/com/posts/FeedItem.tsx:410 msgid "Show More" msgstr "Mostrar Mais" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 -#: src/view/com/util/forms/PostDropdownBtn.tsx:340 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:343 msgid "Show more like this" msgstr "Mostrar mais disso" @@ -5796,11 +5877,11 @@ msgstr "Mostrar mais disso" msgid "Show muted replies" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:257 +#: src/view/screens/PreferencesFollowingFeed.tsx:256 msgid "Show Posts from My Feeds" msgstr "Mostrar Posts dos Meus Feeds" -#: src/view/screens/PreferencesFollowingFeed.tsx:221 +#: src/view/screens/PreferencesFollowingFeed.tsx:220 msgid "Show Quote Posts" msgstr "Mostrar Citações" @@ -5816,11 +5897,11 @@ msgstr "Mostrar Citações" #~ msgid "Show re-posts in Following feed" #~ msgstr "Mostrar reposts no feed Seguindo" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:117 msgid "Show Replies" msgstr "Mostrar Respostas" -#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:94 msgid "Show replies by people you follow before all other replies." msgstr "Mostrar as respostas de pessoas que você segue antes de todas as outras respostas." @@ -5836,7 +5917,7 @@ msgstr "Mostrar as respostas de pessoas que você segue antes de todas as outras #~ msgid "Show replies with at least {value} {0}" #~ msgstr "Mostrar respostas com ao menos {0} {value}" -#: src/view/screens/PreferencesFollowingFeed.tsx:187 +#: src/view/screens/PreferencesFollowingFeed.tsx:186 msgid "Show Reposts" msgstr "Mostrar Reposts" @@ -5902,8 +5983,8 @@ msgstr "Faça login ou crie sua conta para entrar na conversa!" msgid "Sign into Bluesky or create a new account" msgstr "Faça login no Bluesky ou crie uma nova conta" -#: src/view/screens/Settings/index.tsx:129 -#: src/view/screens/Settings/index.tsx:133 +#: src/view/screens/Settings/index.tsx:130 +#: src/view/screens/Settings/index.tsx:134 msgid "Sign out" msgstr "Sair" @@ -5928,7 +6009,7 @@ msgstr "Inscreva-se ou faça login para se juntar à conversa" msgid "Sign-in Required" msgstr "É Necessário Fazer Login" -#: src/view/screens/Settings/index.tsx:392 +#: src/view/screens/Settings/index.tsx:393 msgid "Signed in as" msgstr "Entrou como" @@ -5937,12 +6018,12 @@ msgstr "Entrou como" msgid "Signed in as @{0}" msgstr "autenticado como @{0}" -#: src/view/com/notifications/FeedItem.tsx:208 +#: src/view/com/notifications/FeedItem.tsx:209 msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 msgid "Signup without a starter pack" msgstr "" @@ -5960,7 +6041,7 @@ msgstr "Pular" msgid "Software Dev" msgstr "Desenvolvimento de software" -#: src/components/FeedInterstitials.tsx:378 +#: src/components/FeedInterstitials.tsx:382 msgid "Some other feeds you might like" msgstr "" @@ -5988,16 +6069,21 @@ msgstr "" msgid "Something went wrong, please try again." msgstr "Algo deu errado. Por favor, tente novamente." -#: src/App.native.tsx:98 -#: src/App.web.tsx:80 +#: src/components/Lists.tsx:192 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "" + +#: src/App.native.tsx:99 +#: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "Opa! Sua sessão expirou. Por favor, entre novamente." -#: src/view/screens/PreferencesThreads.tsx:69 +#: src/view/screens/PreferencesThreads.tsx:63 msgid "Sort Replies" msgstr "Classificar Respostas" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:66 msgid "Sort replies to the same post by:" msgstr "Classificar respostas de um post por:" @@ -6005,7 +6091,7 @@ msgstr "Classificar respostas de um post por:" #~ msgid "Source:" #~ msgstr "Fonte:" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" msgstr "" @@ -6027,7 +6113,7 @@ msgstr "Esportes" msgid "Square" msgstr "Quadrado" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:63 msgid "Start a new chat" msgstr "Começar um novo chat" @@ -6044,8 +6130,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:328 -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:341 +#: src/Navigation.tsx:346 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -6070,7 +6156,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Página de status" -#: src/view/screens/Settings/index.tsx:964 +#: src/view/screens/Settings/index.tsx:965 msgid "Status Page" msgstr "Página de status" @@ -6082,17 +6168,17 @@ msgstr "Página de status" msgid "Step {0} of {1}" msgstr "Passo {0} de {1}" -#: src/view/screens/Settings/index.tsx:305 +#: src/view/screens/Settings/index.tsx:306 msgid "Storage cleared, you need to restart the app now." msgstr "Armazenamento limpo, você precisa reiniciar o app agora." -#: src/Navigation.tsx:229 -#: src/view/screens/Settings/index.tsx:864 +#: src/Navigation.tsx:232 +#: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:290 -#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/components/moderation/LabelsOnMeDialog.tsx:311 +#: src/components/moderation/LabelsOnMeDialog.tsx:312 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -6115,7 +6201,7 @@ msgstr "Inscrever-se no rotulador" #~ msgid "Subscribe to the {0} feed" #~ msgstr "Increver-se no feed {0}" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 msgid "Subscribe to this labeler" msgstr "Inscrever-se neste rotulador" @@ -6123,7 +6209,7 @@ msgstr "Inscrever-se neste rotulador" msgid "Subscribe to this list" msgstr "Inscreva-se nesta lista" -#: src/view/screens/Search/Explore.tsx:331 +#: src/view/screens/Search/Explore.tsx:333 msgid "Suggested accounts" msgstr "" @@ -6131,7 +6217,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "Sugestões de Seguidores" -#: src/components/FeedInterstitials.tsx:246 +#: src/components/FeedInterstitials.tsx:250 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Sugeridos para você" @@ -6140,7 +6226,7 @@ msgstr "Sugeridos para você" msgid "Suggestive" msgstr "Sugestivo" -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:252 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6155,19 +6241,19 @@ msgstr "Alterar Conta" msgid "Switch between feeds to control your experience." msgstr "" -#: src/view/screens/Settings/index.tsx:160 +#: src/view/screens/Settings/index.tsx:161 msgid "Switch to {0}" msgstr "Trocar para {0}" -#: src/view/screens/Settings/index.tsx:161 +#: src/view/screens/Settings/index.tsx:162 msgid "Switches the account you are logged in to" msgstr "Troca a conta que você está autenticado" -#: src/view/screens/Settings/index.tsx:446 +#: src/view/screens/Settings/index.tsx:447 msgid "System" msgstr "Sistema" -#: src/view/screens/Settings/index.tsx:852 +#: src/view/screens/Settings/index.tsx:853 msgid "System log" msgstr "Log do sistema" @@ -6216,11 +6302,11 @@ msgstr "" msgid "Terms" msgstr "Termos" -#: src/Navigation.tsx:254 +#: src/Navigation.tsx:262 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:952 +#: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:279 +#: src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "Termos de Serviço" @@ -6235,13 +6321,13 @@ msgstr "Termos utilizados violam as diretrizes da comunidade" msgid "text" msgstr "texto" -#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/components/moderation/LabelsOnMeDialog.tsx:275 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Campo de entrada de texto" #: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:93 msgid "Thank you. Your report has been sent." msgstr "Obrigado. Sua denúncia foi enviada." @@ -6284,19 +6370,19 @@ msgstr "A Política de Direitos Autorais foi movida para <0/>" msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322 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:66 +#: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." msgstr "Este feed foi substituído pelo Discover." -#: src/components/moderation/LabelsOnMeDialog.tsx:65 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your account." msgstr "Os seguintes rótulos foram aplicados sobre sua conta." -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:67 msgid "The following labels were applied to your content." msgstr "Os seguintes rótulos foram aplicados sobre seu conteúdo." @@ -6333,8 +6419,8 @@ msgstr "Os Termos de Serviço foram movidos para" msgid "There is no time limit for account deactivation, come back any time." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 -#: src/view/screens/ProfileFeed.tsx:544 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 +#: src/view/screens/ProfileFeed.tsx:545 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Tivemos um problema ao contatar o servidor, por favor verifique sua conexão com a internet e tente novamente." @@ -6343,7 +6429,7 @@ msgid "There was an an issue removing this feed. Please check your internet conn msgstr "Tivemos um problema ao remover este feed, por favor verifique sua conexão com a internet e tente novamente." #: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Tivemos um problema ao atualizar seus feeds, por favor verifique sua conexão com a internet e tente novamente." @@ -6357,7 +6443,7 @@ msgstr "Tivemos um problema ao conectar com o Tenor." #~ msgid "There was an issue connecting to the chat." #~ msgstr "Tivemos um problema ao conectar neste chat." -#: src/view/screens/ProfileFeed.tsx:234 +#: src/view/screens/ProfileFeed.tsx:235 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6371,7 +6457,7 @@ msgstr "Tivemos um problema ao contatar o servidor deste feed" msgid "There was an issue contacting your server" msgstr "Tivemos um problema ao contatar o servidor deste feed" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:130 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." @@ -6389,7 +6475,7 @@ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Tivemos um problema ao carregar suas listas. Toque aqui para tentar de novo." #: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:82 +#: src/components/ReportDialog/SubmitView.tsx:98 msgid "There was an issue sending your report. Please check your internet connection." msgstr "Tivemos um problema ao enviar sua denúncia. Por favor, verifique sua conexão com a internet." @@ -6449,7 +6535,7 @@ msgstr "Esta conta solicitou que os usuários fizessem login para visualizar seu 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/moderation/LabelsOnMeDialog.tsx:239 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 msgid "This appeal will be sent to <0>{0}." msgstr "Esta contestação será enviada para <0>{0}." @@ -6509,12 +6595,12 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Este feed está vazio! Talvez você precise seguir mais usuários ou configurar os idiomas filtrados." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:473 +#: src/view/screens/ProfileFeed.tsx:474 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" -#: src/view/com/posts/FeedShutdownMsg.tsx:97 +#: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "Este feed não funciona mais. Estamos te mostrando o conteúdo do <0>Discover." @@ -6542,7 +6628,7 @@ msgstr "Este rótulo foi aplicado pelo autor." #~ msgid "This label was applied by you" #~ msgstr "Este rótulo foi aplicado por você" -#: src/components/moderation/LabelsOnMeDialog.tsx:166 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." msgstr "" @@ -6570,12 +6656,12 @@ msgstr "Você já tem uma senha com esse nome" msgid "This post has been deleted." msgstr "Este post foi excluído." -#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 #: src/view/com/util/post-ctrls/PostCtrls.tsx:324 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Este post só pode ser visto por usuários autenticados e não aparecerá para pessoas que não estão autenticadas." -#: src/view/com/util/forms/PostDropdownBtn.tsx:440 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "This post will be hidden from feeds." msgstr "Este post será escondido de todos os feeds." @@ -6632,12 +6718,12 @@ msgstr "Este usuário não segue ninguém ainda." msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "Isso removerá {0} das suas palavras silenciadas. Você pode adicioná-la novamente depois." -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Thread preferences" msgstr "Preferências das Threads" -#: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/PreferencesThreads.tsx:51 +#: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "Preferências das Threads" @@ -6645,11 +6731,11 @@ msgstr "Preferências das Threads" msgid "Thread settings updated" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:119 +#: src/view/screens/PreferencesThreads.tsx:113 msgid "Threaded Mode" msgstr "Visualização de Threads" -#: src/Navigation.tsx:287 +#: src/Navigation.tsx:295 msgid "Threads Preferences" msgstr "Preferências das Threads" @@ -6690,8 +6776,8 @@ msgstr "Transformações" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:676 #: src/view/com/post-thread/PostThreadItem.tsx:678 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 -#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "Traduzir" @@ -6704,7 +6790,7 @@ msgstr "Tentar novamente" msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:746 +#: src/view/screens/Settings/index.tsx:747 msgid "Two-factor authentication" msgstr "Autenticação de dois fatores (2FA)" @@ -6796,7 +6882,7 @@ msgstr "Deixar de seguir" #~ msgid "Unlike" #~ msgstr "Descurtir" -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Unlike this feed" msgstr "Descurtir este feed" @@ -6826,17 +6912,17 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "Dessilenciar notificações" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:367 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Unmute thread" msgstr "Dessilenciar thread" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Desafixar" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 msgid "Unpin from home" msgstr "Desafixar da tela inicial" @@ -6852,7 +6938,7 @@ msgstr "" msgid "Unsubscribe" msgstr "Desinscrever-se" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Unsubscribe from this labeler" msgstr "Desinscrever-se deste rotulador" @@ -6885,20 +6971,20 @@ msgstr "Enviar uma foto" msgid "Upload a text file to:" msgstr "Carregar um arquivo de texto para:" -#: src/view/com/util/UserAvatar.tsx:352 -#: src/view/com/util/UserAvatar.tsx:355 +#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Tirar uma foto" -#: src/view/com/util/UserAvatar.tsx:369 +#: src/view/com/util/UserAvatar.tsx:381 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Carregar um arquivo" -#: src/view/com/util/UserAvatar.tsx:363 -#: src/view/com/util/UserAvatar.tsx:367 +#: src/view/com/util/UserAvatar.tsx:375 +#: src/view/com/util/UserAvatar.tsx:379 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -6938,7 +7024,7 @@ msgstr "Usar recomendados" msgid "Use the DNS panel" msgstr "Usar o painel do meu DNS" -#: src/view/com/modals/AddAppPasswords.tsx:205 +#: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." msgstr "Use esta senha para entrar no outro aplicativo juntamente com seu identificador." @@ -7006,7 +7092,7 @@ msgstr "Nome de usuário ou endereço de e-mail" msgid "Users" msgstr "Usuários" -#: src/components/WhoCanReply.tsx:279 +#: src/components/WhoCanReply.tsx:280 msgid "users followed by <0/>" msgstr "usuários seguidos por <0/>" @@ -7037,15 +7123,15 @@ msgstr "Conteúdo:" msgid "Verify DNS Record" msgstr "Verificar registro DNS" -#: src/view/screens/Settings/index.tsx:983 +#: src/view/screens/Settings/index.tsx:984 msgid "Verify email" msgstr "Verificar e-mail" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Verify my email" msgstr "Verificar meu e-mail" -#: src/view/screens/Settings/index.tsx:1017 +#: src/view/screens/Settings/index.tsx:1018 msgid "Verify My Email" msgstr "Verificar Meu Email" @@ -7066,7 +7152,7 @@ msgstr "Verificar Seu E-mail" #~ msgid "Version {0}" #~ msgstr "Versão {0}" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Version {appVersion} {bundleInfo}" msgstr "Versão {appVersion} {bundleInfo}" @@ -7075,11 +7161,15 @@ msgstr "Versão {appVersion} {bundleInfo}" msgid "Video Games" msgstr "Games" +#: src/view/com/composer/videos/state.ts:27 +msgid "Videos cannot be larger than 100MB" +msgstr "" + #: src/screens/Profile/Header/Shell.tsx:113 msgid "View {0}'s avatar" msgstr "Ver o avatar de {0}" -#: src/view/com/notifications/FeedItem.tsx:245 +#: src/view/com/notifications/FeedItem.tsx:246 msgid "View {0}'s profile" msgstr "" @@ -7111,7 +7201,7 @@ msgstr "Ver informações sobre estes rótulos" #: src/components/ProfileHoverCard/index.web.tsx:436 #: src/components/ProfileHoverCard/index.web.tsx:463 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "Ver perfil" @@ -7123,7 +7213,7 @@ msgstr "Ver o avatar" msgid "View the labeling service provided by @{0}" msgstr "Ver este rotulador provido por @{0}" -#: src/view/screens/ProfileFeed.tsx:585 +#: src/view/screens/ProfileFeed.tsx:587 msgid "View users who like this feed" msgstr "Ver usuários que curtiram este feed" @@ -7219,7 +7309,7 @@ msgstr "Não foi possível carregar sua lista de palavras silenciadas. Por favor msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Lamentamos, mas sua busca não pôde ser concluída. Por favor, tente novamente em alguns minutos." -#: src/view/com/composer/Composer.tsx:335 +#: src/view/com/composer/Composer.tsx:347 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -7232,7 +7322,7 @@ msgstr "Sentimos muito! Não conseguimos encontrar a página que você estava pr #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "Sentimos muito! Você só pode se inscrever em até dez rotuladores e você já chegou ao máximo." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "" @@ -7258,7 +7348,7 @@ msgstr "" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:376 +#: src/view/com/composer/Composer.tsx:388 msgid "What's up?" msgstr "E aí?" @@ -7275,15 +7365,15 @@ msgstr "Quais idiomas você gostaria de ver nos seus feeds?" msgid "Who can message you?" msgstr "" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Who can reply" msgstr "Quem pode responder" -#: src/components/WhoCanReply.tsx:211 +#: src/components/WhoCanReply.tsx:212 msgid "Who can reply dialog" msgstr "" -#: src/components/WhoCanReply.tsx:215 +#: src/components/WhoCanReply.tsx:216 msgid "Who can reply?" msgstr "" @@ -7329,11 +7419,11 @@ msgstr "Largo" msgid "Write a message" msgstr "Escreva uma mensagem" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:580 msgid "Write post" msgstr "Escrever post" -#: src/view/com/composer/Composer.tsx:375 +#: src/view/com/composer/Composer.tsx:387 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Escreva sua resposta" @@ -7344,12 +7434,12 @@ msgid "Writers" msgstr "Escritores" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:200 -#: src/view/screens/PreferencesFollowingFeed.tsx:235 -#: src/view/screens/PreferencesFollowingFeed.tsx:270 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:199 +#: src/view/screens/PreferencesFollowingFeed.tsx:234 +#: src/view/screens/PreferencesFollowingFeed.tsx:269 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "Yes" msgstr "Sim" @@ -7366,7 +7456,7 @@ msgstr "" msgid "Yes, reactivate my account" msgstr "" -#: src/components/dms/MessageItem.tsx:188 +#: src/components/dms/MessageItem.tsx:182 msgid "Yesterday, {time}" msgstr "Ontem, {time}" @@ -7519,19 +7609,19 @@ msgstr "" msgid "You haven't muted any words or tags yet" msgstr "Você não silenciou nenhuma palavra ou tag ainda" -#: src/components/moderation/LabelsOnMeDialog.tsx:86 +#: src/components/moderation/LabelsOnMeDialog.tsx:87 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "Você pode contestar estes rótulos se você acha que estão errados." -#: src/components/moderation/LabelsOnMeDialog.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:92 msgid "You may appeal these labels if you feel they were placed in error." msgstr "Você pode contestar estes rótulos se você acha que estão errados." -#: src/screens/StarterPack/Wizard/State.tsx:92 +#: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 50 feeds" msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:77 +#: src/screens/StarterPack/Wizard/State.tsx:78 msgid "You may only add up to 50 profiles" msgstr "" @@ -7555,7 +7645,7 @@ msgstr "" msgid "You must grant access to your photo library to save the image." msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:205 +#: src/components/ReportDialog/SubmitView.tsx:222 msgid "You must select at least one labeler for a report" msgstr "Você deve selecionar no mínimo um rotulador" @@ -7595,15 +7685,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272 msgid "You'll stay updated with these feeds" msgstr "" @@ -7702,7 +7792,7 @@ msgstr "Suas palavras silenciadas" msgid "Your password has been changed successfully!" msgstr "Sua senha foi alterada com sucesso!" -#: src/view/com/composer/Composer.tsx:366 +#: src/view/com/composer/Composer.tsx:378 msgid "Your post has been published" msgstr "Seu post foi publicado" @@ -7710,7 +7800,7 @@ msgstr "Seu post foi publicado" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Suas postagens, curtidas e bloqueios são públicos. Silenciamentos são privados." -#: src/view/screens/Settings/index.tsx:148 +#: src/view/screens/Settings/index.tsx:149 msgid "Your profile" msgstr "Seu perfil" @@ -7718,7 +7808,7 @@ msgstr "Seu perfil" 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:365 +#: src/view/com/composer/Composer.tsx:377 msgid "Your reply has been published" msgstr "Sua resposta foi publicada" diff --git a/src/locale/locales/tr/messages.po b/src/locale/locales/tr/messages.po index c20162cdd9..5baac65fbe 100644 --- a/src/locale/locales/tr/messages.po +++ b/src/locale/locales/tr/messages.po @@ -21,7 +21,7 @@ msgstr "" msgid "(no email)" msgstr "(e-posta yok)" -#: src/view/com/notifications/FeedItem.tsx:294 +#: src/view/com/notifications/FeedItem.tsx:297 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -92,7 +92,7 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "" @@ -104,7 +104,7 @@ msgstr "" #~ msgid "{0} your feeds" #~ msgstr "" -#: src/view/com/util/UserAvatar.tsx:419 +#: src/view/com/util/UserAvatar.tsx:431 msgid "{0}'s avatar" msgstr "" @@ -152,7 +152,7 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:504 +#: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} takip ediliyor" @@ -175,11 +175,11 @@ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:588 +#: src/view/screens/ProfileFeed.tsx:590 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:462 +#: src/view/shell/Drawer.tsx:452 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} okunmamış" @@ -195,7 +195,7 @@ msgstr "" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "" -#: src/components/WhoCanReply.tsx:295 +#: src/components/WhoCanReply.tsx:296 msgid "<0/> members" msgstr "<0/> üyeleri" @@ -217,11 +217,11 @@ msgstr "" #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "" -#: src/view/shell/Drawer.tsx:101 +#: src/view/shell/Drawer.tsx:100 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" -#: src/view/shell/Drawer.tsx:112 +#: src/view/shell/Drawer.tsx:111 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" @@ -296,15 +296,15 @@ msgid "Access profile and other navigation links" msgstr "Profil ve diğer gezinme bağlantılarına erişin" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:519 +#: src/view/screens/Settings/index.tsx:520 msgid "Accessibility" msgstr "Erişilebilirlik" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:301 +#: src/Navigation.tsx:309 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "" @@ -314,8 +314,8 @@ msgstr "" #~ msgstr "" #: src/screens/Login/LoginForm.tsx:190 -#: src/view/screens/Settings/index.tsx:346 -#: src/view/screens/Settings/index.tsx:753 +#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:754 msgid "Account" msgstr "Hesap" @@ -362,7 +362,7 @@ msgid "Account unmuted" msgstr "Hesap susturulması kaldırıldı" #: src/components/dialogs/MutedWords.tsx:164 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 msgid "Add" @@ -386,8 +386,8 @@ msgstr "Bu listeye bir kullanıcı ekleyin" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:423 -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:433 msgid "Add account" msgstr "Hesap ekle" @@ -472,7 +472,7 @@ msgstr "Beslemelerime ekle" #~ msgid "Added" #~ msgstr "Eklendi" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "Listeye eklendi" @@ -481,7 +481,7 @@ msgstr "Listeye eklendi" msgid "Added to my feeds" msgstr "Beslemelerime eklendi" -#: src/view/screens/PreferencesFollowingFeed.tsx:172 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Bir yanıtın beslemenizde gösterilmesi için sahip olması gereken beğeni sayısını ayarlayın." @@ -503,7 +503,7 @@ msgid "Adult content is disabled." msgstr "" #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:687 +#: src/view/screens/Settings/index.tsx:688 msgid "Advanced" msgstr "Gelişmiş" @@ -519,8 +519,8 @@ msgstr "" msgid "All the feeds you've saved, right in one place." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:187 -#: src/view/com/modals/AddAppPasswords.tsx:194 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "" @@ -545,7 +545,7 @@ msgstr "Zaten @{0} olarak oturum açıldı" #: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "ALT" msgstr "ALT" @@ -555,7 +555,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Alternatif metin" -#: src/view/com/util/post-embeds/GifEmbed.tsx:180 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Alt Text" msgstr "" @@ -584,8 +584,8 @@ msgstr "" #~ msgid "An error occurred while saving the image." #~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:70 -#: src/components/StarterPack/ShareDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the QR code!" msgstr "" @@ -601,10 +601,18 @@ msgstr "" msgid "An issue not included in these options" msgstr "" +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +msgid "An issue occurred while trying to open the chat" +msgstr "" + #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:309 -#: src/components/ProfileCard.tsx:329 +#: src/components/ProfileCard.tsx:311 +#: src/components/ProfileCard.tsx:331 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -616,8 +624,8 @@ msgstr "Bir sorun oluştu, lütfen tekrar deneyin." msgid "an unknown error occurred" msgstr "" -#: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:291 +#: src/components/WhoCanReply.tsx:317 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "ve" @@ -626,7 +634,7 @@ msgstr "ve" msgid "Animals" msgstr "Hayvanlar" -#: src/view/com/util/post-embeds/GifEmbed.tsx:146 +#: src/view/com/util/post-embeds/GifEmbed.tsx:155 msgid "Animated GIF" msgstr "" @@ -650,22 +658,22 @@ msgstr "Uygulama Şifre adları yalnızca harfler, sayılar, boşluklar, tireler msgid "App Password names must be at least 4 characters long." msgstr "Uygulama Şifre adları en az 4 karakter uzunluğunda olmalıdır." -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "App password settings" msgstr "Uygulama şifresi ayarları" -#: src/Navigation.tsx:269 +#: src/Navigation.tsx:277 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:707 +#: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" msgstr "Uygulama Şifreleri" -#: src/components/moderation/LabelsOnMeDialog.tsx:151 -#: src/components/moderation/LabelsOnMeDialog.tsx:154 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:236 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Appeal \"{0}\" label" msgstr "" @@ -677,7 +685,7 @@ msgstr "" #~ msgid "Appeal Content Warning" #~ msgstr "İçerik Uyarısını İtiraz Et" -#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/components/moderation/LabelsOnMeDialog.tsx:248 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "" @@ -697,7 +705,7 @@ msgstr "Bu karara itiraz et" #~ msgid "Appeal this decision." #~ msgstr "Bu karara itiraz et." -#: src/view/screens/Settings/index.tsx:440 +#: src/view/screens/Settings/index.tsx:441 msgid "Appearance" msgstr "Görünüm" @@ -707,8 +715,8 @@ msgid "Apply default recommended feeds" msgstr "" #: src/screens/StarterPack/StarterPackScreen.tsx:610 -msgid "Are you sure you want delete this starter pack?" -msgstr "" +#~ msgid "Are you sure you want delete this starter pack?" +#~ msgstr "" #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" @@ -722,6 +730,10 @@ msgstr "\"{name}\" uygulama şifresini silmek istediğinizden emin misiniz?" msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:189 #~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." #~ msgstr "" @@ -738,7 +750,7 @@ msgstr "" msgid "Are you sure you want to remove this from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:649 +#: src/view/com/composer/Composer.tsx:680 msgid "Are you sure you'd like to discard this draft?" msgstr "Bu taslağı silmek istediğinizden emin misiniz?" @@ -768,8 +780,8 @@ msgid "At least 3 characters" msgstr "" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:281 -#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/components/moderation/LabelsOnMeDialog.tsx:302 +#: src/components/moderation/LabelsOnMeDialog.tsx:303 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -782,7 +794,6 @@ msgstr "" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" @@ -797,7 +808,7 @@ msgstr "Geri" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "{interestsText} ilginize dayalı" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Basics" msgstr "Temel" @@ -805,7 +816,7 @@ msgstr "Temel" msgid "Birthday" msgstr "Doğum günü" -#: src/view/screens/Settings/index.tsx:378 +#: src/view/screens/Settings/index.tsx:379 msgid "Birthday:" msgstr "Doğum günü:" @@ -853,7 +864,7 @@ msgstr "Engellendi" msgid "Blocked accounts" msgstr "Engellenen hesaplar" -#: src/Navigation.tsx:145 +#: src/Navigation.tsx:148 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Engellenen Hesaplar" @@ -943,21 +954,21 @@ msgstr "" msgid "Books" msgstr "Kitaplar" -#: src/components/FeedInterstitials.tsx:281 +#: src/components/FeedInterstitials.tsx:285 msgid "Browse more accounts on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:411 +#: src/components/FeedInterstitials.tsx:415 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:266 -#: src/components/FeedInterstitials.tsx:396 +#: src/components/FeedInterstitials.tsx:270 +#: src/components/FeedInterstitials.tsx:400 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:289 -#: src/components/FeedInterstitials.tsx:420 +#: src/components/FeedInterstitials.tsx:293 +#: src/components/FeedInterstitials.tsx:424 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -1010,7 +1021,7 @@ msgstr "siz tarafından" msgid "Camera" msgstr "Kamera" -#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Yalnızca harfler, sayılar, boşluklar, tireler ve alt çizgiler içerebilir. En az 4 karakter uzunluğunda, ancak 32 karakterden fazla olmamalıdır." @@ -1019,8 +1030,8 @@ msgstr "Yalnızca harfler, sayılar, boşluklar, tireler ve alt çizgiler içere #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:451 -#: src/view/com/composer/Composer.tsx:457 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -1038,7 +1049,7 @@ msgstr "Yalnızca harfler, sayılar, boşluklar, tireler ve alt çizgiler içere #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:139 #: src/view/screens/Search/Search.tsx:704 -#: src/view/shell/desktop/Search.tsx:218 +#: src/view/shell/desktop/Search.tsx:219 msgid "Cancel" msgstr "İptal" @@ -1074,8 +1085,8 @@ msgstr "Alıntı gönderiyi iptal et" msgid "Cancel reactivation and log out" msgstr "" -#: src/view/com/modals/ListAddRemoveUsers.tsx:87 -#: src/view/shell/desktop/Search.tsx:214 +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "Aramayı iptal et" @@ -1091,17 +1102,17 @@ msgstr "" msgid "Change" msgstr "" -#: src/view/screens/Settings/index.tsx:372 +#: src/view/screens/Settings/index.tsx:373 msgctxt "action" msgid "Change" msgstr "Değiştir" -#: src/view/screens/Settings/index.tsx:719 +#: src/view/screens/Settings/index.tsx:720 msgid "Change handle" msgstr "Kullanıcı adını değiştir" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:730 +#: src/view/screens/Settings/index.tsx:731 msgid "Change Handle" msgstr "Kullanıcı Adını Değiştir" @@ -1109,12 +1120,12 @@ msgstr "Kullanıcı Adını Değiştir" msgid "Change my email" msgstr "E-postamı değiştir" -#: src/view/screens/Settings/index.tsx:764 +#: src/view/screens/Settings/index.tsx:765 msgid "Change password" msgstr "Şifre değiştir" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:775 +#: src/view/screens/Settings/index.tsx:776 msgid "Change Password" msgstr "Şifre Değiştir" @@ -1130,7 +1141,7 @@ msgstr "Gönderi dilini {0} olarak değiştir" msgid "Change Your Email" msgstr "E-postanızı Değiştirin" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:321 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -1142,14 +1153,14 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:326 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" msgstr "" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:648 +#: src/view/screens/Settings/index.tsx:649 msgid "Chat Settings" msgstr "" @@ -1240,19 +1251,19 @@ msgstr "" msgid "Choose your password" msgstr "Şifrenizi seçin" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clear all legacy storage data" msgstr "Tüm eski depolama verilerini temizle" -#: src/view/screens/Settings/index.tsx:914 +#: src/view/screens/Settings/index.tsx:915 msgid "Clear all legacy storage data (restart after this)" msgstr "Tüm eski depolama verilerini temizle (bundan sonra yeniden başlat)" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clear all storage data" msgstr "Tüm depolama verilerini temizle" -#: src/view/screens/Settings/index.tsx:926 +#: src/view/screens/Settings/index.tsx:927 msgid "Clear all storage data (restart after this)" msgstr "Tüm depolama verilerini temizle (bundan sonra yeniden başlat)" @@ -1261,11 +1272,11 @@ msgstr "Tüm depolama verilerini temizle (bundan sonra yeniden başlat)" msgid "Clear search query" msgstr "Arama sorgusunu temizle" -#: src/view/screens/Settings/index.tsx:912 +#: src/view/screens/Settings/index.tsx:913 msgid "Clears all legacy storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:924 +#: src/view/screens/Settings/index.tsx:925 msgid "Clears all storage data" msgstr "" @@ -1293,7 +1304,7 @@ msgstr "" #~ msgid "Click here to open tag menu for #{tag}" #~ msgstr "" -#: src/components/dms/MessageItem.tsx:237 +#: src/components/dms/MessageItem.tsx:231 msgid "Click to retry failed message" msgstr "" @@ -1314,7 +1325,7 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/util/post-embeds/GifEmbed.tsx:195 msgid "Close" msgstr "Kapat" @@ -1369,7 +1380,7 @@ msgstr "Alt gezinme çubuğunu kapatır" msgid "Closes password update alert" msgstr "Şifre güncelleme uyarısını kapatır" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:472 msgid "Closes post composer and discards post draft" msgstr "Gönderi bestecisini kapatır ve gönderi taslağını siler" @@ -1377,11 +1388,11 @@ msgstr "Gönderi bestecisini kapatır ve gönderi taslağını siler" msgid "Closes viewer for header image" msgstr "Başlık resmi görüntüleyicisini kapatır" -#: src/view/com/notifications/FeedItem.tsx:237 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:440 msgid "Collapses list of users for a given notification" msgstr "Belirli bir bildirim için kullanıcı listesini daraltır" @@ -1395,7 +1406,7 @@ msgstr "Komedi" msgid "Comics" msgstr "Çizgi romanlar" -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:267 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Topluluk Kuralları" @@ -1408,7 +1419,7 @@ msgstr "Onboarding'i tamamlayın ve hesabınızı kullanmaya başlayın" msgid "Complete the challenge" msgstr "" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:582 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "En fazla {MAX_GRAPHEME_LENGTH} karakter uzunluğunda gönderiler oluşturun" @@ -1433,8 +1444,6 @@ msgstr "" #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/PreferencesFollowingFeed.tsx:307 -#: src/view/screens/PreferencesThreads.tsx:159 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 msgid "Confirm" @@ -1572,12 +1581,12 @@ msgstr "" msgid "Cooking" msgstr "Yemek pişirme" -#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Kopyalandı" -#: src/view/screens/Settings/index.tsx:264 +#: src/view/screens/Settings/index.tsx:265 msgid "Copied build version to clipboard" msgstr "Sürüm numarası panoya kopyalandı" @@ -1585,7 +1594,7 @@ msgstr "Sürüm numarası panoya kopyalandı" #: src/view/com/modals/AddAppPasswords.tsx:80 #: src/view/com/modals/ChangeHandle.tsx:320 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:189 +#: src/view/com/util/forms/PostDropdownBtn.tsx:192 #: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Panoya kopyalandı" @@ -1594,12 +1603,12 @@ msgstr "Panoya kopyalandı" msgid "Copied!" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" msgstr "Uygulama şifresini kopyalar" -#: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/view/com/modals/AddAppPasswords.tsx:213 +#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Kopyala" @@ -1612,11 +1621,11 @@ msgstr "" msgid "Copy code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" msgstr "" @@ -1624,8 +1633,8 @@ msgstr "" msgid "Copy link to list" msgstr "Liste bağlantısını kopyala" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 msgid "Copy link to post" msgstr "Gönderi bağlantısını kopyala" @@ -1638,20 +1647,24 @@ msgstr "Gönderi bağlantısını kopyala" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:285 -#: src/view/com/util/forms/PostDropdownBtn.tsx:287 +#: src/view/com/util/forms/PostDropdownBtn.tsx:288 +#: src/view/com/util/forms/PostDropdownBtn.tsx:290 msgid "Copy post text" msgstr "Gönderi metnini kopyala" -#: src/components/StarterPack/QrCodeDialog.tsx:168 +#: src/components/StarterPack/QrCodeDialog.tsx:171 msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:272 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Telif Hakkı Politikası" +#: src/view/com/composer/videos/state.ts:31 +msgid "Could not compress video" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "" @@ -1689,17 +1702,17 @@ msgstr "" msgid "Create a new account" msgstr "Yeni bir hesap oluştur" -#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:425 msgid "Create a new Bluesky account" msgstr "Yeni bir Bluesky hesabı oluştur" -#: src/components/StarterPack/QrCodeDialog.tsx:151 +#: src/components/StarterPack/QrCodeDialog.tsx:154 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:351 msgid "Create a starter pack" msgstr "" @@ -1724,7 +1737,7 @@ msgstr "" msgid "Create another" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" msgstr "Uygulama Şifresi Oluştur" @@ -1772,7 +1785,7 @@ msgid "Custom domain" msgstr "Özel alan adı" #: src/view/screens/Feeds.tsx:760 -#: src/view/screens/Search/Explore.tsx:390 +#: src/view/screens/Search/Explore.tsx:392 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Topluluk tarafından oluşturulan özel beslemeler size yeni deneyimler sunar ve sevdiğiniz içeriği bulmanıza yardımcı olur." @@ -1780,8 +1793,8 @@ msgstr "Topluluk tarafından oluşturulan özel beslemeler size yeni deneyimler msgid "Customize media from external sites." msgstr "Harici sitelerden medyayı özelleştirin." -#: src/view/screens/Settings/index.tsx:459 -#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:460 +#: src/view/screens/Settings/index.tsx:486 msgid "Dark" msgstr "Karanlık" @@ -1789,7 +1802,7 @@ msgstr "Karanlık" msgid "Dark mode" msgstr "Karanlık mod" -#: src/view/screens/Settings/index.tsx:472 +#: src/view/screens/Settings/index.tsx:473 msgid "Dark Theme" msgstr "Karanlık Tema" @@ -1798,15 +1811,15 @@ msgid "Date of birth" msgstr "" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:807 +#: src/view/screens/Settings/index.tsx:808 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:819 +#: src/view/screens/Settings/index.tsx:820 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:874 +#: src/view/screens/Settings/index.tsx:875 msgid "Debug Moderation" msgstr "" @@ -1818,13 +1831,13 @@ msgstr "Hata ayıklama paneli" #: src/screens/StarterPack/StarterPackScreen.tsx:562 #: src/screens/StarterPack/StarterPackScreen.tsx:641 #: src/screens/StarterPack/StarterPackScreen.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "" -#: src/view/screens/Settings/index.tsx:829 +#: src/view/screens/Settings/index.tsx:830 msgid "Delete account" msgstr "Hesabı sil" @@ -1844,8 +1857,8 @@ msgstr "Uygulama şifresini sil" msgid "Delete app password?" msgstr "" -#: src/view/screens/Settings/index.tsx:891 -#: src/view/screens/Settings/index.tsx:894 +#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:895 msgid "Delete chat declaration record" msgstr "" @@ -1869,12 +1882,12 @@ msgstr "" msgid "Delete my account" msgstr "Hesabımı sil" -#: src/view/screens/Settings/index.tsx:841 +#: src/view/screens/Settings/index.tsx:842 msgid "Delete My Account…" msgstr "Hesabımı Sil…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:414 -#: src/view/com/util/forms/PostDropdownBtn.tsx:416 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 +#: src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "Gönderiyi sil" @@ -1891,7 +1904,7 @@ msgstr "" msgid "Delete this list?" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:428 +#: src/view/com/util/forms/PostDropdownBtn.tsx:431 msgid "Delete this post?" msgstr "Bu gönderiyi sil?" @@ -1903,7 +1916,7 @@ msgstr "Silindi" msgid "Deleted post." msgstr "Silinen gönderi." -#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:893 msgid "Deletes the chat declaration record" msgstr "" @@ -1922,11 +1935,11 @@ msgstr "" #~ msgid "Developer Tools" #~ msgstr "Geliştirici Araçları" -#: src/view/com/composer/Composer.tsx:283 +#: src/view/com/composer/Composer.tsx:295 msgid "Did you want to say anything?" msgstr "Bir şey söylemek istediniz mi?" -#: src/view/screens/Settings/index.tsx:478 +#: src/view/screens/Settings/index.tsx:479 msgid "Dim" msgstr "Karart" @@ -1963,7 +1976,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:682 msgid "Discard" msgstr "Sil" @@ -1971,7 +1984,7 @@ msgstr "Sil" #~ msgid "Discard draft" #~ msgstr "Taslağı sil" -#: src/view/com/composer/Composer.tsx:648 +#: src/view/com/composer/Composer.tsx:679 msgid "Discard draft?" msgstr "" @@ -1989,7 +2002,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "Yeni özel beslemeler keşfet" -#: src/view/screens/Search/Explore.tsx:388 +#: src/view/screens/Search/Explore.tsx:390 msgid "Discover new feeds" msgstr "Yeni beslemeler keşfet" @@ -2046,22 +2059,20 @@ msgstr "Alan adı doğrulandı!" #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesFollowingFeed.tsx:310 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Tamam" #: src/view/com/modals/EditImage.tsx:334 -#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" msgstr "Tamam" @@ -2074,7 +2085,7 @@ msgstr "Tamam{extraText}" #~ msgid "Double tap to sign in" #~ msgstr "Oturum açmak için çift dokunun" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319 msgid "Download Bluesky" msgstr "" @@ -2144,7 +2155,7 @@ msgctxt "action" msgid "Edit" msgstr "Düzenle" -#: src/view/com/util/UserAvatar.tsx:325 +#: src/view/com/util/UserAvatar.tsx:337 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "" @@ -2166,7 +2177,7 @@ msgstr "Liste ayrıntılarını düzenle" msgid "Edit Moderation List" msgstr "Düzenleme Listesini Düzenle" -#: src/Navigation.tsx:274 +#: src/Navigation.tsx:282 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -2181,12 +2192,12 @@ msgstr "Profilimi düzenle" msgid "Edit People" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "Profil düzenle" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "Profil Düzenle" @@ -2204,7 +2215,7 @@ msgstr "" msgid "Edit User List" msgstr "Kullanıcı Listesini Düzenle" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Edit who can reply" msgstr "" @@ -2216,7 +2227,7 @@ msgstr "Görünen adınızı düzenleyin" msgid "Edit your profile description" msgstr "Profil açıklamanızı düzenleyin" -#: src/Navigation.tsx:343 +#: src/Navigation.tsx:356 msgid "Edit your starter pack" msgstr "" @@ -2255,7 +2266,7 @@ msgstr "E-posta Güncellendi" msgid "Email verified" msgstr "E-posta doğrulandı" -#: src/view/screens/Settings/index.tsx:350 +#: src/view/screens/Settings/index.tsx:351 msgid "Email:" msgstr "E-posta:" @@ -2264,8 +2275,8 @@ msgid "Embed HTML code" msgstr "" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:324 -#: src/view/com/util/forms/PostDropdownBtn.tsx:326 +#: src/view/com/util/forms/PostDropdownBtn.tsx:327 +#: src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "" @@ -2299,11 +2310,16 @@ msgstr "" #~ msgid "Enable External Media" #~ msgstr "Harici Medyayı Etkinleştir" -#: src/view/screens/PreferencesExternalEmbeds.tsx:76 +#: src/view/screens/PreferencesExternalEmbeds.tsx:73 msgid "Enable media players for" msgstr "Medya oynatıcılarını etkinleştir" -#: src/view/screens/PreferencesFollowingFeed.tsx:146 +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 msgid "Enable this setting to only see replies between people you follow." msgstr "Bu ayarı yalnızca takip ettiğiniz kişiler arasındaki yanıtları görmek için etkinleştirin." @@ -2329,7 +2345,7 @@ msgstr "Beslemenin sonu" msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:160 +#: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "Bu Uygulama Şifresi için bir ad girin" @@ -2405,7 +2421,7 @@ msgid "Everybody" msgstr "Herkes" #: src/components/WhoCanReply.tsx:69 -#: src/components/WhoCanReply.tsx:240 +#: src/components/WhoCanReply.tsx:241 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "" @@ -2441,8 +2457,8 @@ msgstr "" msgid "Exits image view" msgstr "Resim görünümünden çıkar" -#: src/view/com/modals/ListAddRemoveUsers.tsx:88 -#: src/view/shell/desktop/Search.tsx:215 +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +#: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "Arama sorgusu girişinden çıkar" @@ -2454,7 +2470,7 @@ msgstr "Arama sorgusu girişinden çıkar" msgid "Expand alt text" msgstr "Alternatif metni genişlet" -#: src/view/com/notifications/FeedItem.tsx:238 +#: src/view/com/notifications/FeedItem.tsx:239 msgid "Expand list of users" msgstr "" @@ -2463,6 +2479,10 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "Yanıt verdiğiniz tam gönderiyi genişletin veya daraltın" +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." msgstr "" @@ -2471,12 +2491,12 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/view/screens/Settings/index.tsx:787 +#: src/view/screens/Settings/index.tsx:788 msgid "Export my data" msgstr "" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:798 +#: src/view/screens/Settings/index.tsx:799 msgid "Export My Data" msgstr "" @@ -2486,17 +2506,17 @@ msgid "External Media" msgstr "Harici Medya" #: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/view/screens/PreferencesExternalEmbeds.tsx:64 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:293 +#: src/Navigation.tsx:301 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:680 +#: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" msgstr "Harici Medya Tercihleri" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "External media settings" msgstr "Harici medya ayarları" @@ -2526,8 +2546,8 @@ msgstr "Gönderi silinemedi, lütfen tekrar deneyin" msgid "Failed to delete starter pack" msgstr "" -#: src/view/screens/Search/Explore.tsx:426 -#: src/view/screens/Search/Explore.tsx:454 +#: src/view/screens/Search/Explore.tsx:428 +#: src/view/screens/Search/Explore.tsx:456 msgid "Failed to load feeds preferences" msgstr "" @@ -2549,20 +2569,24 @@ msgstr "" #~ msgid "Failed to load recommended feeds" #~ msgstr "Önerilen beslemeler yüklenemedi" -#: src/view/screens/Search/Explore.tsx:419 -#: src/view/screens/Search/Explore.tsx:447 +#: src/view/screens/Search/Explore.tsx:421 +#: src/view/screens/Search/Explore.tsx:449 msgid "Failed to load suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:377 +#: src/view/screens/Search/Explore.tsx:379 msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:86 +#: src/view/com/lightbox/Lightbox.tsx:90 msgid "Failed to save image: {0}" msgstr "" -#: src/components/dms/MessageItem.tsx:230 +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + +#: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "" @@ -2570,12 +2594,12 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: src/components/moderation/LabelsOnMeDialog.tsx:244 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:181 msgid "Failed to toggle thread mute, please try again" msgstr "" @@ -2588,7 +2612,7 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:217 msgid "Feed" msgstr "Besleme" @@ -2610,19 +2634,19 @@ msgid "Feed toggle" msgstr "" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:345 +#: src/view/shell/Drawer.tsx:332 msgid "Feedback" msgstr "Geribildirim" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:336 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 #: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:493 -#: src/view/shell/Drawer.tsx:494 +#: src/view/shell/Drawer.tsx:483 +#: src/view/shell/Drawer.tsx:484 msgid "Feeds" msgstr "Beslemeler" @@ -2684,7 +2708,7 @@ msgstr "" #~ msgid "Finding similar accounts..." #~ msgstr "Benzer hesaplar bulunuyor..." -#: src/view/screens/PreferencesFollowingFeed.tsx:110 +#: src/view/screens/PreferencesFollowingFeed.tsx:108 msgid "Fine-tune the content you see on your Following feed." msgstr "" @@ -2692,7 +2716,7 @@ msgstr "" #~ msgid "Fine-tune the content you see on your home screen." #~ msgstr "Ana ekranınızda gördüğünüz içeriği ayarlayın." -#: src/view/screens/PreferencesThreads.tsx:60 +#: src/view/screens/PreferencesThreads.tsx:54 msgid "Fine-tune the discussion threads." msgstr "Tartışma konularını ayarlayın." @@ -2722,7 +2746,7 @@ msgid "Flip vertically" msgstr "Dikey çevir" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:341 +#: src/components/ProfileCard.tsx:343 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2767,7 +2791,7 @@ msgstr "" msgid "Follow Back" msgstr "" -#: src/view/screens/Search/Explore.tsx:333 +#: src/view/screens/Search/Explore.tsx:335 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "" @@ -2784,22 +2808,22 @@ msgstr "" #~ msgstr "" #: src/view/com/profile/ProfileCard.tsx:190 -msgid "Followed by {0}" -msgstr "{0} tarafından takip ediliyor" +#~ msgid "Followed by {0}" +#~ msgstr "{0} tarafından takip ediliyor" -#: src/components/KnownFollowers.tsx:223 +#: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "" -#: src/components/KnownFollowers.tsx:209 +#: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "" -#: src/components/KnownFollowers.tsx:196 +#: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" msgstr "" -#: src/components/KnownFollowers.tsx:178 +#: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" @@ -2807,15 +2831,15 @@ msgstr "" msgid "Followed users" msgstr "Takip edilen kullanıcılar" -#: src/view/screens/PreferencesFollowingFeed.tsx:153 +#: src/view/screens/PreferencesFollowingFeed.tsx:152 msgid "Followed users only" msgstr "Yalnızca takip edilen kullanıcılar" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:198 msgid "followed you" msgstr "sizi takip etti" -#: src/view/com/notifications/FeedItem.tsx:195 +#: src/view/com/notifications/FeedItem.tsx:196 msgid "followed you back" msgstr "" @@ -2824,7 +2848,7 @@ msgstr "" msgid "Followers" msgstr "Takipçiler" -#: src/Navigation.tsx:182 +#: src/Navigation.tsx:185 msgid "Followers of @{0} that you know" msgstr "" @@ -2834,7 +2858,7 @@ msgid "Followers you know" msgstr "" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:335 +#: src/components/ProfileCard.tsx:337 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2846,7 +2870,7 @@ msgstr "" msgid "Following" msgstr "Takip edilenler" -#: src/components/ProfileCard.tsx:301 +#: src/components/ProfileCard.tsx:303 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "{0} takip ediliyor" @@ -2855,13 +2879,13 @@ msgstr "{0} takip ediliyor" msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:280 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:583 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesFollowingFeed.tsx:105 +#: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "" @@ -2886,7 +2910,7 @@ msgstr "Yiyecek" msgid "For security reasons, we'll need to send a confirmation code to your email address." msgstr "Güvenlik nedeniyle, e-posta adresinize bir onay kodu göndermemiz gerekecek." -#: src/view/com/modals/AddAppPasswords.tsx:232 +#: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "Güvenlik nedeniyle, bunu tekrar göremezsiniz. Bu şifreyi kaybederseniz, yeni bir tane oluşturmanız gerekecek." @@ -2919,7 +2943,7 @@ msgstr "" msgid "From @{sanitizedAuthor}" msgstr "" -#: src/view/com/posts/FeedItem.tsx:236 +#: src/view/com/posts/FeedItem.tsx:242 msgctxt "from-feed" msgid "From <0/>" msgstr "<0/> tarafından" @@ -2932,6 +2956,10 @@ msgstr "Galeri" msgid "Generate a starter pack" msgstr "" +#: src/view/shell/Drawer.tsx:336 +msgid "Get help" +msgstr "" + #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" msgstr "" @@ -2979,12 +3007,12 @@ msgid "Go Back" msgstr "Geri Git" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -msgid "Go back to previous screen" -msgstr "" +#~ msgid "Go back to previous screen" +#~ msgstr "" #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/components/ReportDialog/SubmitView.tsx:121 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 @@ -3049,7 +3077,7 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:316 msgid "Hashtag" msgstr "" @@ -3062,7 +3090,7 @@ msgid "Having trouble?" msgstr "Sorun mu yaşıyorsunuz?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:355 +#: src/view/shell/Drawer.tsx:345 msgid "Help" msgstr "Yardım" @@ -3082,7 +3110,7 @@ msgstr "" #~ msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." #~ msgstr "İlgi alanlarınıza dayalı olarak bazı konusal beslemeler: {interestsText}. İstediğiniz kadar takip etmeyi seçebilirsiniz." -#: src/view/com/modals/AddAppPasswords.tsx:203 +#: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "İşte uygulama şifreniz." @@ -3093,17 +3121,17 @@ msgstr "İşte uygulama şifreniz." #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:445 msgid "Hide" msgstr "Gizle" -#: src/view/com/notifications/FeedItem.tsx:444 +#: src/view/com/notifications/FeedItem.tsx:447 msgctxt "action" msgid "Hide" msgstr "Gizle" -#: src/view/com/util/forms/PostDropdownBtn.tsx:387 -#: src/view/com/util/forms/PostDropdownBtn.tsx:389 +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 msgid "Hide post" msgstr "Gönderiyi gizle" @@ -3112,11 +3140,11 @@ msgstr "Gönderiyi gizle" msgid "Hide the content" msgstr "İçeriği gizle" -#: src/view/com/util/forms/PostDropdownBtn.tsx:439 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide this post?" msgstr "Bu gönderiyi gizle?" -#: src/view/com/notifications/FeedItem.tsx:435 +#: src/view/com/notifications/FeedItem.tsx:438 msgid "Hide user list" msgstr "Kullanıcı listesini gizle" @@ -3152,12 +3180,12 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/Navigation.tsx:519 -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:552 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:425 -#: src/view/shell/Drawer.tsx:426 +#: src/view/shell/Drawer.tsx:415 +#: src/view/shell/Drawer.tsx:416 msgid "Home" msgstr "Ana Sayfa" @@ -3217,7 +3245,7 @@ msgstr "" msgid "If you delete this list, you won't be able to recover it." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 msgid "If you remove this post, you won't be able to recover it." msgstr "" @@ -3245,7 +3273,7 @@ msgstr "Resim alternatif metni" #~ msgid "Image options" #~ msgstr "Resim seçenekleri" -#: src/components/StarterPack/ShareDialog.tsx:75 +#: src/components/StarterPack/ShareDialog.tsx:76 msgid "Image saved to your camera roll!" msgstr "" @@ -3273,7 +3301,7 @@ msgstr "Hesap silme için onay kodunu girin" #~ msgid "Input invite code to proceed" #~ msgstr "Devam etmek için davet kodunu girin" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" msgstr "Uygulama şifresi için ad girin" @@ -3366,7 +3394,7 @@ msgstr "Davet kodları: {0} kullanılabilir" msgid "Invite codes: 1 available" msgstr "Davet kodları: 1 kullanılabilir" -#: src/components/StarterPack/ShareDialog.tsx:96 +#: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" msgstr "" @@ -3390,8 +3418,8 @@ msgstr "" msgid "Jobs" msgstr "İşler" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:432 #: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" @@ -3443,11 +3471,11 @@ msgstr "" #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:79 +#: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:81 +#: src/components/moderation/LabelsOnMeDialog.tsx:82 msgid "Labels on your content" msgstr "" @@ -3455,16 +3483,16 @@ msgstr "" msgid "Language selection" msgstr "Dil seçimi" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Language settings" msgstr "Dil ayarları" -#: src/Navigation.tsx:155 +#: src/Navigation.tsx:158 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Dil Ayarları" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Languages" msgstr "Diller" @@ -3532,7 +3560,7 @@ msgstr "Bluesky'dan ayrılıyor" msgid "left to go." msgstr "kaldı." -#: src/view/screens/Settings/index.tsx:309 +#: src/view/screens/Settings/index.tsx:310 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Eski depolama temizlendi, şimdi uygulamayı yeniden başlatmanız gerekiyor." @@ -3554,7 +3582,7 @@ msgstr "Hadi gidelim!" #~ msgid "Library" #~ msgstr "Kütüphane" -#: src/view/screens/Settings/index.tsx:453 +#: src/view/screens/Settings/index.tsx:454 msgid "Light" msgstr "Açık" @@ -3572,13 +3600,13 @@ msgid "Like 10 posts to train the Discover feed" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Like this feed" msgstr "Bu beslemeyi beğen" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:219 -#: src/Navigation.tsx:224 +#: src/Navigation.tsx:222 +#: src/Navigation.tsx:227 msgid "Liked by" msgstr "Beğenenler" @@ -3602,11 +3630,11 @@ msgstr "Beğenenler" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "{likeCount} {0} tarafından beğenildi" -#: src/view/com/notifications/FeedItem.tsx:201 +#: src/view/com/notifications/FeedItem.tsx:202 msgid "liked your custom feed" msgstr "özel beslemenizi beğendi" -#: src/view/com/notifications/FeedItem.tsx:185 +#: src/view/com/notifications/FeedItem.tsx:186 msgid "liked your post" msgstr "gönderinizi beğendi" @@ -3618,7 +3646,7 @@ msgstr "Beğeniler" msgid "Likes on this post" msgstr "Bu gönderideki beğeniler" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:191 msgid "List" msgstr "Liste" @@ -3655,12 +3683,12 @@ msgstr "Liste engeli kaldırıldı" msgid "List unmuted" msgstr "Liste sessizden çıkarıldı" -#: src/Navigation.tsx:125 +#: src/Navigation.tsx:128 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 -#: src/view/shell/Drawer.tsx:509 -#: src/view/shell/Drawer.tsx:510 +#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:500 msgid "Lists" msgstr "Listeler" @@ -3668,7 +3696,7 @@ msgstr "Listeler" msgid "Lists blocking this user:" msgstr "" -#: src/view/screens/Search/Explore.tsx:130 +#: src/view/screens/Search/Explore.tsx:131 msgid "Load more" msgstr "" @@ -3677,21 +3705,21 @@ msgstr "" #~ msgid "Load more posts" #~ msgstr "Daha fazla gönderi yükle" -#: src/view/screens/Search/Explore.tsx:218 +#: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:216 +#: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" msgstr "" -#: src/view/screens/Notifications.tsx:184 +#: src/view/screens/Notifications.tsx:219 msgid "Load new notifications" msgstr "Yeni bildirimleri yükle" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:494 +#: src/view/screens/ProfileFeed.tsx:495 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Yeni gönderileri yükle" @@ -3704,7 +3732,7 @@ msgstr "Yükleniyor..." #~ msgid "Local dev server" #~ msgstr "Yerel geliştirme sunucusu" -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:247 msgid "Log" msgstr "Log" @@ -3774,7 +3802,7 @@ msgstr "" msgid "Media" msgstr "Medya" -#: src/components/WhoCanReply.tsx:275 +#: src/components/WhoCanReply.tsx:276 msgid "mentioned users" msgstr "bahsedilen kullanıcılar" @@ -3796,7 +3824,7 @@ msgstr "" msgid "Message deleted" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:200 +#: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "Sunucudan mesaj: {0}" @@ -3813,7 +3841,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:534 +#: src/Navigation.tsx:547 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3828,9 +3856,9 @@ msgstr "" msgid "Misleading Account" msgstr "" -#: src/Navigation.tsx:130 +#: src/Navigation.tsx:133 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:562 +#: src/view/screens/Settings/index.tsx:563 msgid "Moderation" msgstr "Moderasyon" @@ -3866,16 +3894,16 @@ msgstr "Moderasyon listesi güncellendi" msgid "Moderation lists" msgstr "Moderasyon listeleri" -#: src/Navigation.tsx:135 +#: src/Navigation.tsx:138 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Moderasyon Listeleri" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Moderation settings" msgstr "Moderasyon ayarları" -#: src/Navigation.tsx:234 +#: src/Navigation.tsx:237 msgid "Moderation states" msgstr "" @@ -3904,7 +3932,7 @@ msgstr "Daha fazla seçenek" #~ msgid "More post options" #~ msgstr "Daha fazla gönderi seçeneği" -#: src/view/screens/PreferencesThreads.tsx:82 +#: src/view/screens/PreferencesThreads.tsx:76 msgid "Most-liked replies first" msgstr "En çok beğenilen yanıtlar önce" @@ -3975,13 +4003,13 @@ msgstr "" msgid "Mute this word in tags only" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:371 msgid "Mute thread" msgstr "Konuyu sessize al" -#: src/view/com/util/forms/PostDropdownBtn.tsx:378 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 +#: src/view/com/util/forms/PostDropdownBtn.tsx:381 +#: src/view/com/util/forms/PostDropdownBtn.tsx:383 msgid "Mute words & tags" msgstr "" @@ -3993,7 +4021,7 @@ msgstr "Sessize alındı" msgid "Muted accounts" msgstr "Sessize alınan hesaplar" -#: src/Navigation.tsx:140 +#: src/Navigation.tsx:143 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Sessize Alınan Hesaplar" @@ -4027,15 +4055,15 @@ msgstr "Beslemelerim" msgid "My Profile" msgstr "Profilim" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "My saved feeds" msgstr "" -#: src/view/screens/Settings/index.tsx:623 +#: src/view/screens/Settings/index.tsx:624 msgid "My Saved Feeds" msgstr "Kayıtlı Beslemelerim" -#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/AddAppPasswords.tsx:174 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Ad" @@ -4070,7 +4098,7 @@ msgstr "" msgid "Navigates to the next screen" msgstr "Sonraki ekrana yönlendirir" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:78 msgid "Navigates to your profile" msgstr "Profilinize yönlendirir" @@ -4105,7 +4133,7 @@ msgstr "Yeni" msgid "New" msgstr "Yeni" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" @@ -4133,9 +4161,9 @@ msgid "New post" msgstr "Yeni gönderi" #: src/view/screens/Feeds.tsx:581 -#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Notifications.tsx:228 #: src/view/screens/Profile.tsx:478 -#: src/view/screens/ProfileFeed.tsx:428 +#: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:278 @@ -4155,7 +4183,7 @@ msgstr "" msgid "New User List" msgstr "Yeni Kullanıcı Listesi" -#: src/view/screens/PreferencesThreads.tsx:79 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Newest replies first" msgstr "En yeni yanıtlar önce" @@ -4190,16 +4218,16 @@ msgstr "İleri" msgid "Next image" msgstr "Sonraki resim" -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:199 -#: src/view/screens/PreferencesFollowingFeed.tsx:234 -#: src/view/screens/PreferencesFollowingFeed.tsx:271 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:198 +#: src/view/screens/PreferencesFollowingFeed.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:270 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "No" msgstr "Hayır" -#: src/view/screens/ProfileFeed.tsx:562 +#: src/view/screens/ProfileFeed.tsx:564 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Açıklama yok" @@ -4217,7 +4245,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/components/ProfileCard.tsx:321 +#: src/components/ProfileCard.tsx:323 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "{0} artık takip edilmiyor" @@ -4234,7 +4262,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:122 msgid "No notifications yet!" msgstr "Henüz bildirim yok!" @@ -4266,7 +4294,7 @@ msgstr "" msgid "No results found for \"{query}\"" msgstr "\"{query}\" için sonuç bulunamadı" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 @@ -4312,7 +4340,7 @@ msgstr "" #~ msgid "Not Applicable." #~ msgstr "Uygulanamaz." -#: src/Navigation.tsx:120 +#: src/Navigation.tsx:123 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Bulunamadı" @@ -4323,7 +4351,7 @@ msgid "Not right now" msgstr "Şu anda değil" #: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/forms/PostDropdownBtn.tsx:459 #: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "" @@ -4336,6 +4364,19 @@ msgstr "Not: Bluesky açık ve kamusal bir ağdır. Bu ayar yalnızca içeriğin msgid "Nothing here" msgstr "" +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:331 +#: src/view/screens/Notifications.tsx:119 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "" + #: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "" @@ -4344,13 +4385,14 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:529 -#: src/view/screens/Notifications.tsx:132 -#: src/view/screens/Notifications.tsx:169 +#: src/Navigation.tsx:542 +#: src/view/screens/Notifications.tsx:145 +#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:203 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 -#: src/view/shell/Drawer.tsx:457 -#: src/view/shell/Drawer.tsx:458 +#: src/view/shell/Drawer.tsx:447 +#: src/view/shell/Drawer.tsx:448 msgid "Notifications" msgstr "Bildirimler" @@ -4358,7 +4400,7 @@ msgstr "Bildirimler" msgid "now" msgstr "" -#: src/components/dms/MessageItem.tsx:175 +#: src/components/dms/MessageItem.tsx:169 msgid "Now" msgstr "" @@ -4388,7 +4430,7 @@ msgstr "Oh hayır!" msgid "Oh no! Something went wrong." msgstr "Oh hayır! Bir şeyler yanlış gitti." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 msgid "OK" msgstr "" @@ -4396,7 +4438,7 @@ msgstr "" msgid "Okay" msgstr "Tamam" -#: src/view/screens/PreferencesThreads.tsx:78 +#: src/view/screens/PreferencesThreads.tsx:72 msgid "Oldest replies first" msgstr "En eski yanıtlar önce" @@ -4408,7 +4450,7 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:257 +#: src/view/screens/Settings/index.tsx:258 msgid "Onboarding reset" msgstr "Onboarding sıfırlama" @@ -4416,7 +4458,7 @@ msgstr "Onboarding sıfırlama" msgid "Onboarding tour step {0}: {1}" msgstr "" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:534 msgid "One or more images is missing alt text." msgstr "Bir veya daha fazla resimde alternatif metin eksik." @@ -4424,7 +4466,7 @@ msgstr "Bir veya daha fazla resimde alternatif metin eksik." msgid "Only .jpg and .png files are supported" msgstr "" -#: src/components/WhoCanReply.tsx:244 +#: src/components/WhoCanReply.tsx:245 msgid "Only {0} can reply" msgstr "" @@ -4444,6 +4486,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:304 #: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/NotificationsSettings.tsx:45 #: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Hata!" @@ -4465,16 +4508,16 @@ msgstr "" msgid "Open conversation options" msgstr "" -#: src/view/com/composer/Composer.tsx:632 -#: src/view/com/composer/Composer.tsx:633 +#: src/view/com/composer/Composer.tsx:663 +#: src/view/com/composer/Composer.tsx:664 msgid "Open emoji picker" msgstr "Emoji seçiciyi aç" -#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileFeed.tsx:297 msgid "Open feed options menu" msgstr "" -#: src/view/screens/Settings/index.tsx:737 +#: src/view/screens/Settings/index.tsx:738 msgid "Open links with in-app browser" msgstr "Uygulama içi tarayıcıda bağlantıları aç" @@ -4490,7 +4533,7 @@ msgstr "" msgid "Open navigation" msgstr "Navigasyonu aç" -#: src/view/com/util/forms/PostDropdownBtn.tsx:247 +#: src/view/com/util/forms/PostDropdownBtn.tsx:250 msgid "Open post options menu" msgstr "" @@ -4498,12 +4541,12 @@ msgstr "" msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Open storybook page" msgstr "Storybook sayfasını aç" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Open system log" msgstr "" @@ -4515,7 +4558,7 @@ msgstr "{numItems} seçeneği açar" msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:511 +#: src/view/screens/Settings/index.tsx:512 msgid "Opens accessibility settings" msgstr "" @@ -4531,7 +4574,7 @@ msgstr "Hata ayıklama girişi için ek ayrıntıları açar" msgid "Opens camera on device" msgstr "Cihazdaki kamerayı açar" -#: src/view/screens/Settings/index.tsx:640 +#: src/view/screens/Settings/index.tsx:641 msgid "Opens chat settings" msgstr "" @@ -4539,7 +4582,7 @@ msgstr "" msgid "Opens composer" msgstr "Besteciyi açar" -#: src/view/screens/Settings/index.tsx:532 +#: src/view/screens/Settings/index.tsx:533 msgid "Opens configurable language settings" msgstr "Yapılandırılabilir dil ayarlarını açar" @@ -4551,7 +4594,7 @@ msgstr "Cihaz fotoğraf galerisini açar" #~ msgid "Opens editor for profile display name, avatar, background image, and description" #~ msgstr "Profil görüntü adı, avatar, arka plan resmi ve açıklama için düzenleyiciyi açar" -#: src/view/screens/Settings/index.tsx:672 +#: src/view/screens/Settings/index.tsx:673 msgid "Opens external embeds settings" msgstr "Harici gömülü ayarları açar" @@ -4585,11 +4628,11 @@ msgstr "" msgid "Opens list of invite codes" msgstr "Davet kodu listesini açar" -#: src/view/screens/Settings/index.tsx:809 +#: src/view/screens/Settings/index.tsx:810 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:831 +#: src/view/screens/Settings/index.tsx:832 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "" @@ -4597,19 +4640,19 @@ msgstr "" #~ msgid "Opens modal for account deletion confirmation. Requires email code." #~ msgstr "Hesap silme onayı için modalı açar. E-posta kodu gerektirir." -#: src/view/screens/Settings/index.tsx:766 +#: src/view/screens/Settings/index.tsx:767 msgid "Opens modal for changing your Bluesky password" msgstr "" -#: src/view/screens/Settings/index.tsx:721 +#: src/view/screens/Settings/index.tsx:722 msgid "Opens modal for choosing a new Bluesky handle" msgstr "" -#: src/view/screens/Settings/index.tsx:789 +#: src/view/screens/Settings/index.tsx:790 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "" -#: src/view/screens/Settings/index.tsx:1009 +#: src/view/screens/Settings/index.tsx:1010 msgid "Opens modal for email verification" msgstr "" @@ -4617,7 +4660,7 @@ msgstr "" msgid "Opens modal for using custom domain" msgstr "Özel alan adı kullanımı için modalı açar" -#: src/view/screens/Settings/index.tsx:557 +#: src/view/screens/Settings/index.tsx:558 msgid "Opens moderation settings" msgstr "Moderasyon ayarlarını açar" @@ -4630,11 +4673,11 @@ msgstr "Şifre sıfırlama formunu açar" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "Kayıtlı Beslemeleri düzenlemek için ekranı açar" -#: src/view/screens/Settings/index.tsx:618 +#: src/view/screens/Settings/index.tsx:619 msgid "Opens screen with all saved feeds" msgstr "Tüm kayıtlı beslemeleri içeren ekrana açar" -#: src/view/screens/Settings/index.tsx:699 +#: src/view/screens/Settings/index.tsx:700 msgid "Opens the app password settings" msgstr "" @@ -4642,7 +4685,7 @@ msgstr "" #~ msgid "Opens the app password settings page" #~ msgstr "Uygulama şifre ayarları sayfasını açar" -#: src/view/screens/Settings/index.tsx:575 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens the Following feed preferences" msgstr "" @@ -4658,30 +4701,34 @@ msgstr "" #~ msgid "Opens the message settings page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:862 -#: src/view/screens/Settings/index.tsx:872 +#: src/view/screens/Settings/index.tsx:863 +#: src/view/screens/Settings/index.tsx:873 msgid "Opens the storybook page" msgstr "Storybook sayfasını açar" -#: src/view/screens/Settings/index.tsx:850 +#: src/view/screens/Settings/index.tsx:851 msgid "Opens the system log page" msgstr "Sistem log sayfasını açar" -#: src/view/screens/Settings/index.tsx:596 +#: src/view/screens/Settings/index.tsx:597 msgid "Opens the threads preferences" msgstr "Konu tercihlerini açar" -#: src/view/com/notifications/FeedItem.tsx:524 -#: src/view/com/util/UserAvatar.tsx:422 +#: src/view/com/notifications/FeedItem.tsx:527 +#: src/view/com/util/UserAvatar.tsx:434 msgid "Opens this profile" msgstr "" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:54 +msgid "Opens video picker" +msgstr "" + #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "{0} seçeneği, {numItems} seçenekten" #: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:162 +#: src/components/ReportDialog/SubmitView.tsx:179 msgid "Optionally provide additional information below:" msgstr "" @@ -4745,7 +4792,7 @@ msgstr "Şifre güncellendi" msgid "Password updated!" msgstr "Şifre güncellendi!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Pause" msgstr "" @@ -4754,19 +4801,19 @@ msgstr "" msgid "People" msgstr "" -#: src/Navigation.tsx:175 +#: src/Navigation.tsx:178 msgid "People followed by @{0}" msgstr "@{0} tarafından takip edilenler" -#: src/Navigation.tsx:168 +#: src/Navigation.tsx:171 msgid "People following @{0}" msgstr "@{0} tarafından takip edilenler" -#: src/view/com/lightbox/Lightbox.tsx:69 +#: src/view/com/lightbox/Lightbox.tsx:70 msgid "Permission to access camera roll is required." msgstr "Kamera rulosuna erişim izni gerekiyor." -#: src/view/com/lightbox/Lightbox.tsx:75 +#: src/view/com/lightbox/Lightbox.tsx:78 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "Kamera rulosuna erişim izni reddedildi. Lütfen sistem ayarlarınızda etkinleştirin." @@ -4791,12 +4838,12 @@ msgstr "" msgid "Pictures meant for adults." msgstr "Yetişkinler için resimler." -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Ana ekrana sabitle" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 msgid "Pin to Home" msgstr "" @@ -4808,7 +4855,7 @@ msgstr "Sabitleme Beslemeleri" msgid "Pinned to your feeds" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Play" msgstr "" @@ -4821,7 +4868,7 @@ msgstr "{0} oynat" #~ msgid "Play notification sounds" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 msgid "Play or pause the GIF" msgstr "" @@ -4859,7 +4906,7 @@ msgstr "Uygulama şifreniz için bir ad girin. Tüm boşluklar izin verilmez." #~ msgid "Please enter a phone number that can receive SMS text messages." #~ msgstr "SMS metin mesajları alabilen bir telefon numarası girin." -#: src/view/com/modals/AddAppPasswords.tsx:150 +#: src/view/com/modals/AddAppPasswords.tsx:151 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "Bu Uygulama Şifresi için benzersiz bir ad girin veya rastgele oluşturulanı kullanın." @@ -4888,7 +4935,7 @@ msgstr "" msgid "Please enter your password as well:" msgstr "Lütfen şifrenizi de girin:" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:277 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "" @@ -4910,7 +4957,7 @@ msgstr "" msgid "Please Verify Your Email" msgstr "Lütfen E-postanızı Doğrulayın" -#: src/view/com/composer/Composer.tsx:287 +#: src/view/com/composer/Composer.tsx:299 msgid "Please wait for your link card to finish loading" msgstr "Bağlantı kartınızın yüklenmesini bekleyin" @@ -4923,8 +4970,8 @@ msgstr "Politika" msgid "Porn" msgstr "Pornografi" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:509 +#: src/view/com/composer/Composer.tsx:516 msgctxt "action" msgid "Post" msgstr "Gönder" @@ -4938,9 +4985,9 @@ msgstr "Gönderi" msgid "Post by {0}" msgstr "{0} tarafından gönderi" -#: src/Navigation.tsx:194 -#: src/Navigation.tsx:201 -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:197 +#: src/Navigation.tsx:204 +#: src/Navigation.tsx:211 msgid "Post by @{0}" msgstr "@{0} tarafından gönderi" @@ -4996,6 +5043,10 @@ msgstr "Gönderiler gizlendi" msgid "Potentially Misleading Link" msgstr "Potansiyel Yanıltıcı Bağlantı" +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "" @@ -5016,7 +5067,7 @@ msgstr "" #~ msgid "Press to Retry" #~ msgstr "" -#: src/components/KnownFollowers.tsx:116 +#: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "" @@ -5028,20 +5079,24 @@ msgstr "Önceki resim" msgid "Primary Language" msgstr "Birincil Dil" -#: src/view/screens/PreferencesThreads.tsx:97 +#: src/view/screens/PreferencesThreads.tsx:91 msgid "Prioritize Your Follows" msgstr "Takipçilerinizi Önceliklendirin" -#: src/view/screens/Settings/index.tsx:655 +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "" + +#: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Gizlilik" -#: src/Navigation.tsx:249 +#: src/Navigation.tsx:257 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:958 -#: src/view/shell/Drawer.tsx:285 +#: src/view/screens/Settings/index.tsx:959 +#: src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "Gizlilik Politikası" @@ -5060,9 +5115,9 @@ msgstr "" #: src/view/shell/bottom-bar/BottomBar.tsx:275 #: src/view/shell/desktop/LeftNav.tsx:393 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:542 -#: src/view/shell/Drawer.tsx:543 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:532 +#: src/view/shell/Drawer.tsx:533 msgid "Profile" msgstr "Profil" @@ -5070,7 +5125,7 @@ msgstr "Profil" msgid "Profile updated" msgstr "Profil güncellendi" -#: src/view/screens/Settings/index.tsx:1022 +#: src/view/screens/Settings/index.tsx:1023 msgid "Protect your account by verifying your email." msgstr "E-postanızı doğrulayarak hesabınızı koruyun." @@ -5086,23 +5141,23 @@ msgstr "Toplu olarak sessize almak veya engellemek için herkese açık, paylaş msgid "Public, shareable lists which can drive feeds." msgstr "Beslemeleri yönlendirebilen herkese açık, paylaşılabilir listeler." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish post" msgstr "Gönderiyi yayınla" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish reply" msgstr "Yanıtı yayınla" -#: src/components/StarterPack/QrCodeDialog.tsx:125 +#: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:103 +#: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:104 +#: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "" @@ -5127,7 +5182,7 @@ msgstr "Gönderiyi alıntıla" #~ msgid "Quote Post" #~ msgstr "Gönderiyi Alıntıla" -#: src/view/screens/PreferencesThreads.tsx:86 +#: src/view/screens/PreferencesThreads.tsx:80 msgid "Random (aka \"Poster's Roulette\")" msgstr "Rastgele (yani \"Gönderenin Ruleti\")" @@ -5163,19 +5218,23 @@ msgstr "" msgid "Reconnect" msgstr "" +#: src/view/screens/Notifications.tsx:146 +msgid "Refresh notifications" +msgstr "" + #: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 #: src/components/FeedCard.tsx:309 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:212 +#: src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "Kaldır" @@ -5191,7 +5250,7 @@ msgstr "" msgid "Remove account" msgstr "Hesabı kaldır" -#: src/view/com/util/UserAvatar.tsx:384 +#: src/view/com/util/UserAvatar.tsx:396 msgid "Remove Avatar" msgstr "" @@ -5203,20 +5262,20 @@ msgstr "" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:168 -#: src/view/com/posts/FeedShutdownMsg.tsx:113 -#: src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:115 +#: src/view/com/posts/FeedShutdownMsg.tsx:119 msgid "Remove feed" msgstr "Beslemeyi kaldır" -#: src/view/com/posts/FeedErrorMessage.tsx:209 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" msgstr "" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Beslemelerimden kaldır" @@ -5230,7 +5289,7 @@ msgstr "" msgid "Remove image" msgstr "Resmi kaldır" -#: src/view/com/composer/ExternalEmbed.tsx:87 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 msgid "Remove image preview" msgstr "Resim önizlemesini kaldır" @@ -5259,7 +5318,7 @@ msgstr "Yeniden göndermeyi kaldır" #~ msgid "Remove this feed from my feeds?" #~ msgstr "Bu beslemeyi beslemelerimden kaldırsın mı?" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "" @@ -5267,7 +5326,7 @@ msgstr "" #~ msgid "Remove this feed from your saved feeds?" #~ msgstr "Bu beslemeyi kayıtlı beslemelerinizden kaldırsın mı?" -#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "Listeden kaldırıldı" @@ -5283,15 +5342,19 @@ msgid "Removed from your feeds" msgstr "" #: src/view/com/composer/ExternalEmbed.tsx:88 -msgid "Removes default thumbnail from {0}" -msgstr "{0} adresinden varsayılan küçük resmi kaldırır" +#~ msgid "Removes default thumbnail from {0}" +#~ msgstr "{0} adresinden varsayılan küçük resmi kaldırır" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" msgstr "" -#: src/view/com/posts/FeedShutdownMsg.tsx:126 -#: src/view/com/posts/FeedShutdownMsg.tsx:130 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the image preview" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:128 +#: src/view/com/posts/FeedShutdownMsg.tsx:132 msgid "Replace with Discover" msgstr "" @@ -5307,16 +5370,16 @@ msgstr "" #~ msgid "Replies on this thread are disabled" #~ msgstr "" -#: src/components/WhoCanReply.tsx:242 +#: src/components/WhoCanReply.tsx:243 msgid "Replies to this thread are disabled" msgstr "Bu konuya yanıtlar devre dışı bırakıldı" -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:507 msgctxt "action" msgid "Reply" msgstr "Yanıtla" -#: src/view/screens/PreferencesFollowingFeed.tsx:143 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 msgid "Reply Filters" msgstr "Yanıt Filtreleri" @@ -5326,17 +5389,23 @@ msgstr "Yanıt Filtreleri" #~ msgid "Reply to <0/>" #~ msgstr "<0/>'a yanıt" -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:439 +#: src/view/com/post/Post.tsx:197 +#: src/view/com/posts/FeedItem.tsx:458 msgctxt "description" msgid "Reply to <0><1/>" msgstr "" -#: src/view/com/posts/FeedItem.tsx:437 +#: src/view/com/posts/FeedItem.tsx:456 msgctxt "description" msgid "Reply to a blocked post" msgstr "" +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:454 +msgctxt "description" +msgid "Reply to you" +msgstr "" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -5367,8 +5436,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/view/screens/ProfileFeed.tsx:349 -#: src/view/screens/ProfileFeed.tsx:351 +#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:352 msgid "Report feed" msgstr "Beslemeyi raporla" @@ -5380,8 +5449,8 @@ msgstr "Listeyi Raporla" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:407 +#: src/view/com/util/forms/PostDropdownBtn.tsx:409 msgid "Report post" msgstr "Gönderiyi raporla" @@ -5443,7 +5512,7 @@ msgstr "Gönderiyi yeniden gönder veya alıntıla" msgid "Reposted By" msgstr "Yeniden Gönderen" -#: src/view/com/posts/FeedItem.tsx:254 +#: src/view/com/posts/FeedItem.tsx:263 msgid "Reposted by {0}" msgstr "{0} tarafından yeniden gönderildi" @@ -5451,11 +5520,16 @@ msgstr "{0} tarafından yeniden gönderildi" #~ msgid "Reposted by <0/>" #~ msgstr "<0/>'a yeniden gönderildi" -#: src/view/com/posts/FeedItem.tsx:269 +#: src/view/com/posts/FeedItem.tsx:282 msgid "Reposted by <0><1/>" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/posts/FeedItem.tsx:261 +#: src/view/com/posts/FeedItem.tsx:280 +msgid "Reposted by you" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:188 msgid "reposted your post" msgstr "gönderinizi yeniden gönderdi" @@ -5506,8 +5580,8 @@ msgstr "Sıfırlama Kodu" #~ msgid "Reset onboarding" #~ msgstr "Onboarding sıfırla" -#: src/view/screens/Settings/index.tsx:901 -#: src/view/screens/Settings/index.tsx:904 +#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:905 msgid "Reset onboarding state" msgstr "Onboarding durumunu sıfırla" @@ -5519,16 +5593,16 @@ msgstr "Şifreyi sıfırla" #~ msgid "Reset preferences" #~ msgstr "Tercihleri sıfırla" -#: src/view/screens/Settings/index.tsx:881 -#: src/view/screens/Settings/index.tsx:884 +#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:885 msgid "Reset preferences state" msgstr "Tercih durumunu sıfırla" -#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:903 msgid "Resets the onboarding state" msgstr "Onboarding durumunu sıfırlar" -#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:883 msgid "Resets the preferences state" msgstr "Tercih durumunu sıfırlar" @@ -5541,7 +5615,7 @@ msgstr "Giriş tekrar denemesi" msgid "Retries the last action, which errored out" msgstr "Son hataya neden olan son eylemi tekrarlar" -#: src/components/dms/MessageItem.tsx:241 +#: src/components/dms/MessageItem.tsx:235 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 @@ -5581,7 +5655,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/dialogs/ThreadgateEditor.tsx:88 -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:187 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5590,7 +5664,7 @@ msgstr "" msgid "Save" msgstr "Kaydet" -#: src/view/com/lightbox/Lightbox.tsx:135 +#: src/view/com/lightbox/Lightbox.tsx:139 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5612,8 +5686,8 @@ msgstr "Değişiklikleri Kaydet" msgid "Save handle change" msgstr "Kullanıcı adı değişikliğini kaydet" -#: src/components/StarterPack/ShareDialog.tsx:150 -#: src/components/StarterPack/ShareDialog.tsx:157 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "" @@ -5621,12 +5695,12 @@ msgstr "" msgid "Save image crop" msgstr "Resim kırpma kaydet" -#: src/components/StarterPack/QrCodeDialog.tsx:178 +#: src/components/StarterPack/QrCodeDialog.tsx:181 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 +#: src/view/screens/ProfileFeed.tsx:334 +#: src/view/screens/ProfileFeed.tsx:340 msgid "Save to my feeds" msgstr "" @@ -5634,7 +5708,7 @@ msgstr "" msgid "Saved Feeds" msgstr "Kayıtlı Beslemeler" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:88 msgid "Saved to your camera roll" msgstr "" @@ -5661,8 +5735,8 @@ msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:383 -#: src/view/com/notifications/FeedItem.tsx:408 +#: src/view/com/notifications/FeedItem.tsx:386 +#: src/view/com/notifications/FeedItem.tsx:411 msgid "Say hello!" msgstr "" @@ -5676,9 +5750,9 @@ msgid "Scroll to top" msgstr "Başa kaydır" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:524 +#: src/Navigation.tsx:537 #: src/view/com/auth/LoggedOut.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 @@ -5686,14 +5760,14 @@ msgstr "Başa kaydır" #: src/view/screens/Search/Search.tsx:813 #: src/view/shell/bottom-bar/BottomBar.tsx:182 #: src/view/shell/desktop/LeftNav.tsx:354 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:394 -#: src/view/shell/Drawer.tsx:395 +#: src/view/shell/desktop/Search.tsx:195 +#: src/view/shell/desktop/Search.tsx:204 +#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:385 msgid "Search" msgstr "Ara" -#: src/view/shell/desktop/Search.tsx:235 +#: src/view/shell/desktop/Search.tsx:236 msgid "Search for \"{query}\"" msgstr "\"{query}\" için ara" @@ -5719,7 +5793,7 @@ msgstr "" #: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/auth/LoggedOut.tsx:107 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "Kullanıcıları ara" @@ -5832,7 +5906,7 @@ msgstr "{i} seçeneği, {numItems} seçenekten" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:135 +#: src/components/ReportDialog/SubmitView.tsx:152 msgid "Select the moderation service(s) to report to" msgstr "" @@ -5844,6 +5918,10 @@ msgstr "" #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "Aşağıdaki listeden takip edilecek konu beslemelerini seçin" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:53 +msgid "Select video" +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:63 #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "Görmek istediğinizi (veya görmek istemediğinizi) seçin, gerisini biz hallederiz." @@ -5902,8 +5980,7 @@ msgctxt "action" msgid "Send Email" msgstr "E-posta Gönder" -#: src/view/shell/Drawer.tsx:329 -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:325 msgid "Send feedback" msgstr "Geribildirim gönder" @@ -5912,14 +5989,14 @@ msgstr "Geribildirim gönder" msgid "Send message" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 msgid "Send post to..." msgstr "" #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:215 -#: src/components/ReportDialog/SubmitView.tsx:219 +#: src/components/ReportDialog/SubmitView.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:236 msgid "Send report" msgstr "" @@ -5936,8 +6013,8 @@ msgstr "" msgid "Send verification email" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 +#: src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" msgstr "" @@ -5991,19 +6068,19 @@ msgstr "Yeni şifre ayarla" #~ msgid "Set password" #~ msgstr "Şifre ayarla" -#: src/view/screens/PreferencesFollowingFeed.tsx:224 +#: src/view/screens/PreferencesFollowingFeed.tsx:223 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Bu ayarı \"Hayır\" olarak ayarlayarak beslemenizden tüm alıntı gönderileri gizleyebilirsiniz. Yeniden göndermeler hala görünür olacaktır." -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:120 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Bu ayarı \"Hayır\" olarak ayarlayarak beslemenizden tüm yanıtları gizleyebilirsiniz." -#: src/view/screens/PreferencesFollowingFeed.tsx:190 +#: src/view/screens/PreferencesFollowingFeed.tsx:189 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Bu ayarı \"Hayır\" olarak ayarlayarak beslemenizden tüm yeniden göndermeleri gizleyebilirsiniz." -#: src/view/screens/PreferencesThreads.tsx:122 +#: src/view/screens/PreferencesThreads.tsx:116 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Bu ayarı \"Evet\" olarak ayarlayarak yanıtları konu tabanlı görüntülemek için ayarlayın. Bu deneysel bir özelliktir." @@ -6011,7 +6088,7 @@ msgstr "Bu ayarı \"Evet\" olarak ayarlayarak yanıtları konu tabanlı görünt #~ msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your following feed. This is an experimental feature." #~ msgstr "Bu ayarı \"Evet\" olarak ayarlayarak kayıtlı beslemelerinizin örneklerini takip ettiğiniz beslemede göstermek için ayarlayın. Bu deneysel bir özelliktir." -#: src/view/screens/PreferencesFollowingFeed.tsx:260 +#: src/view/screens/PreferencesFollowingFeed.tsx:259 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "" @@ -6023,23 +6100,23 @@ msgstr "Hesabınızı ayarlayın" msgid "Sets Bluesky username" msgstr "Bluesky kullanıcı adını ayarlar" -#: src/view/screens/Settings/index.tsx:462 +#: src/view/screens/Settings/index.tsx:463 msgid "Sets color theme to dark" msgstr "" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Sets color theme to light" msgstr "" -#: src/view/screens/Settings/index.tsx:449 +#: src/view/screens/Settings/index.tsx:450 msgid "Sets color theme to system setting" msgstr "" -#: src/view/screens/Settings/index.tsx:488 +#: src/view/screens/Settings/index.tsx:489 msgid "Sets dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings/index.tsx:481 +#: src/view/screens/Settings/index.tsx:482 msgid "Sets dark theme to the dim theme" msgstr "" @@ -6068,11 +6145,11 @@ msgstr "" #~ msgid "Sets server for the Bluesky client" #~ msgstr "Bluesky istemcisi için sunucuyu ayarlar" -#: src/Navigation.tsx:150 -#: src/view/screens/Settings/index.tsx:333 +#: src/Navigation.tsx:153 +#: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:559 -#: src/view/shell/Drawer.tsx:560 +#: src/view/shell/Drawer.tsx:549 +#: src/view/shell/Drawer.tsx:550 msgid "Settings" msgstr "Ayarlar" @@ -6084,19 +6161,19 @@ msgstr "Cinsel aktivite veya erotik çıplaklık." msgid "Sexually Suggestive" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:177 #: src/screens/StarterPack/StarterPackScreen.tsx:400 #: src/screens/StarterPack/StarterPackScreen.tsx:571 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 #: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Paylaş" -#: src/view/com/lightbox/Lightbox.tsx:144 +#: src/view/com/lightbox/Lightbox.tsx:148 msgctxt "action" msgid "Share" msgstr "Paylaş" @@ -6110,18 +6187,18 @@ msgid "Share a fun fact!" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:464 #: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "" -#: src/view/screens/ProfileFeed.tsx:359 -#: src/view/screens/ProfileFeed.tsx:361 +#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:362 msgid "Share feed" msgstr "Beslemeyi paylaş" -#: src/components/StarterPack/ShareDialog.tsx:123 -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 #: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -6131,12 +6208,12 @@ msgstr "" msgid "Share Link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:87 +#: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:134 -#: src/components/StarterPack/ShareDialog.tsx:145 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "" @@ -6144,7 +6221,7 @@ msgstr "" msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:99 +#: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -6152,6 +6229,10 @@ msgstr "" msgid "Share your favorite feed!" msgstr "" +#: src/Navigation.tsx:242 +msgid "Shared Preferences Tester" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" msgstr "" @@ -6159,7 +6240,7 @@ msgstr "" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:382 +#: src/view/screens/Settings/index.tsx:383 msgid "Show" msgstr "Göster" @@ -6167,7 +6248,7 @@ msgstr "Göster" #~ msgid "Show all replies" #~ msgstr "Tüm yanıtları göster" -#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +#: src/view/com/util/post-embeds/GifEmbed.tsx:175 msgid "Show alt text" msgstr "" @@ -6197,19 +6278,19 @@ msgstr "{0} adresine benzer takipçileri göster" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#: src/view/com/util/forms/PostDropdownBtn.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:349 +#: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" msgstr "" #: src/view/com/post-thread/PostThreadItem.tsx:530 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:396 +#: src/view/com/post/Post.tsx:235 +#: src/view/com/posts/FeedItem.tsx:410 msgid "Show More" msgstr "Daha Fazla Göster" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 -#: src/view/com/util/forms/PostDropdownBtn.tsx:340 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:343 msgid "Show more like this" msgstr "" @@ -6217,11 +6298,11 @@ msgstr "" msgid "Show muted replies" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:257 +#: src/view/screens/PreferencesFollowingFeed.tsx:256 msgid "Show Posts from My Feeds" msgstr "Beslemelerimden Gönderileri Göster" -#: src/view/screens/PreferencesFollowingFeed.tsx:221 +#: src/view/screens/PreferencesFollowingFeed.tsx:220 msgid "Show Quote Posts" msgstr "Alıntı Gönderileri Göster" @@ -6237,11 +6318,11 @@ msgstr "Alıntı Gönderileri Göster" #~ msgid "Show re-posts in Following feed" #~ msgstr "Yeniden göndermeleri takip etme beslemesinde göster" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:117 msgid "Show Replies" msgstr "Yanıtları Göster" -#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:94 msgid "Show replies by people you follow before all other replies." msgstr "Takip ettiğiniz kişilerin yanıtlarını diğer tüm yanıtlardan önce göster." @@ -6257,7 +6338,7 @@ msgstr "Takip ettiğiniz kişilerin yanıtlarını diğer tüm yanıtlardan önc #~ msgid "Show replies with at least {value} {0}" #~ msgstr "En az {value} {0} olan yanıtları göster" -#: src/view/screens/PreferencesFollowingFeed.tsx:187 +#: src/view/screens/PreferencesFollowingFeed.tsx:186 msgid "Show Reposts" msgstr "Yeniden Göndermeleri Göster" @@ -6337,8 +6418,8 @@ msgstr "" msgid "Sign into Bluesky or create a new account" msgstr "" -#: src/view/screens/Settings/index.tsx:129 -#: src/view/screens/Settings/index.tsx:133 +#: src/view/screens/Settings/index.tsx:130 +#: src/view/screens/Settings/index.tsx:134 msgid "Sign out" msgstr "Çıkış yap" @@ -6363,7 +6444,7 @@ msgstr "Konuşmaya katılmak için kaydolun veya giriş yapın" msgid "Sign-in Required" msgstr "Giriş Yapılması Gerekiyor" -#: src/view/screens/Settings/index.tsx:392 +#: src/view/screens/Settings/index.tsx:393 msgid "Signed in as" msgstr "Olarak giriş yapıldı" @@ -6372,7 +6453,7 @@ msgstr "Olarak giriş yapıldı" msgid "Signed in as @{0}" msgstr "@{0} olarak giriş yapıldı" -#: src/view/com/notifications/FeedItem.tsx:208 +#: src/view/com/notifications/FeedItem.tsx:209 msgid "signed up with your starter pack" msgstr "" @@ -6380,8 +6461,8 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "{0} adresini Bluesky'den çıkarır" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 msgid "Signup without a starter pack" msgstr "" @@ -6403,7 +6484,7 @@ msgstr "Bu akışı atla" msgid "Software Dev" msgstr "Yazılım Geliştirme" -#: src/components/FeedInterstitials.tsx:378 +#: src/components/FeedInterstitials.tsx:382 msgid "Some other feeds you might like" msgstr "" @@ -6435,20 +6516,25 @@ msgstr "" msgid "Something went wrong, please try again." msgstr "" +#: src/components/Lists.tsx:192 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "" + #: src/view/com/modals/Waitlist.tsx:51 #~ msgid "Something went wrong. Check your email and try again." #~ msgstr "Bir şeyler yanlış gitti. E-postanızı kontrol edin ve tekrar deneyin." -#: src/App.native.tsx:98 -#: src/App.web.tsx:80 +#: src/App.native.tsx:99 +#: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "Üzgünüz! Oturumunuzun süresi doldu. Lütfen tekrar giriş yapın." -#: src/view/screens/PreferencesThreads.tsx:69 +#: src/view/screens/PreferencesThreads.tsx:63 msgid "Sort Replies" msgstr "Yanıtları Sırala" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:66 msgid "Sort replies to the same post by:" msgstr "Aynı gönderiye verilen yanıtları şuna göre sırala:" @@ -6456,7 +6542,7 @@ msgstr "Aynı gönderiye verilen yanıtları şuna göre sırala:" #~ msgid "Source:" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" msgstr "" @@ -6482,7 +6568,7 @@ msgstr "Kare" #~ msgid "Staging" #~ msgstr "Staging" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:63 msgid "Start a new chat" msgstr "" @@ -6499,8 +6585,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:328 -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:341 +#: src/Navigation.tsx:346 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -6525,7 +6611,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Durum sayfası" -#: src/view/screens/Settings/index.tsx:964 +#: src/view/screens/Settings/index.tsx:965 msgid "Status Page" msgstr "" @@ -6541,17 +6627,17 @@ msgstr "" #~ msgid "Step {0} of {numSteps}" #~ msgstr "{numSteps} adımdan {0}. adım" -#: src/view/screens/Settings/index.tsx:305 +#: src/view/screens/Settings/index.tsx:306 msgid "Storage cleared, you need to restart the app now." msgstr "Depolama temizlendi, şimdi uygulamayı yeniden başlatmanız gerekiyor." -#: src/Navigation.tsx:229 -#: src/view/screens/Settings/index.tsx:864 +#: src/Navigation.tsx:232 +#: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "Storybook" -#: src/components/moderation/LabelsOnMeDialog.tsx:290 -#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/components/moderation/LabelsOnMeDialog.tsx:311 +#: src/components/moderation/LabelsOnMeDialog.tsx:312 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -6574,7 +6660,7 @@ msgstr "" #~ msgid "Subscribe to the {0} feed" #~ msgstr "{0} beslemesine abone ol" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 msgid "Subscribe to this labeler" msgstr "" @@ -6582,7 +6668,7 @@ msgstr "" msgid "Subscribe to this list" msgstr "Bu listeye abone ol" -#: src/view/screens/Search/Explore.tsx:331 +#: src/view/screens/Search/Explore.tsx:333 msgid "Suggested accounts" msgstr "" @@ -6590,7 +6676,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "Önerilen Takipçiler" -#: src/components/FeedInterstitials.tsx:246 +#: src/components/FeedInterstitials.tsx:250 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Sana önerilenler" @@ -6599,7 +6685,7 @@ msgstr "Sana önerilenler" msgid "Suggestive" msgstr "Tehlikeli" -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:252 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6618,19 +6704,19 @@ msgstr "Hesap Değiştir" msgid "Switch between feeds to control your experience." msgstr "" -#: src/view/screens/Settings/index.tsx:160 +#: src/view/screens/Settings/index.tsx:161 msgid "Switch to {0}" msgstr "{0} adresine geç" -#: src/view/screens/Settings/index.tsx:161 +#: src/view/screens/Settings/index.tsx:162 msgid "Switches the account you are logged in to" msgstr "Giriş yaptığınız hesabı değiştirir" -#: src/view/screens/Settings/index.tsx:446 +#: src/view/screens/Settings/index.tsx:447 msgid "System" msgstr "Sistem" -#: src/view/screens/Settings/index.tsx:852 +#: src/view/screens/Settings/index.tsx:853 msgid "System log" msgstr "Sistem günlüğü" @@ -6679,11 +6765,11 @@ msgstr "" msgid "Terms" msgstr "Şartlar" -#: src/Navigation.tsx:254 +#: src/Navigation.tsx:262 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:952 +#: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:279 +#: src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "Hizmet Şartları" @@ -6698,13 +6784,13 @@ msgstr "" msgid "text" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/components/moderation/LabelsOnMeDialog.tsx:275 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Metin giriş alanı" #: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:93 msgid "Thank you. Your report has been sent." msgstr "" @@ -6747,19 +6833,19 @@ msgstr "Telif Hakkı Politikası <0/> konumuna taşındı" msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322 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:66 +#: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:65 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your account." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:67 msgid "The following labels were applied to your content." msgstr "" @@ -6796,8 +6882,8 @@ msgstr "Hizmet Şartları taşındı" msgid "There is no time limit for account deactivation, come back any time." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 -#: src/view/screens/ProfileFeed.tsx:544 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 +#: src/view/screens/ProfileFeed.tsx:545 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Sunucuya ulaşma konusunda bir sorun oluştu, lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." @@ -6806,7 +6892,7 @@ msgid "There was an an issue removing this feed. Please check your internet conn msgstr "Bu beslemeyi kaldırma konusunda bir sorun oluştu. Lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." #: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Beslemelerinizi güncelleme konusunda bir sorun oluştu, lütfen internet bağlantınızı kontrol edin ve tekrar deneyin." @@ -6820,7 +6906,7 @@ msgstr "" #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:234 +#: src/view/screens/ProfileFeed.tsx:235 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6834,7 +6920,7 @@ msgstr "Sunucuya ulaşma konusunda bir sorun oluştu" msgid "There was an issue contacting your server" msgstr "Sunucunuza ulaşma konusunda bir sorun oluştu" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:130 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." @@ -6852,7 +6938,7 @@ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Listelerinizi almakta bir sorun oluştu. Tekrar denemek için buraya dokunun." #: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:82 +#: src/components/ReportDialog/SubmitView.tsx:98 msgid "There was an issue sending your report. Please check your internet connection." msgstr "" @@ -6916,7 +7002,7 @@ msgstr "Bu hesap, kullanıcıların profilini görüntülemek için giriş yapma 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/moderation/LabelsOnMeDialog.tsx:239 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 msgid "This appeal will be sent to <0>{0}." msgstr "" @@ -6976,12 +7062,12 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Bu besleme boş! Daha fazla kullanıcı takip etmeniz veya dil ayarlarınızı ayarlamanız gerekebilir." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:473 +#: src/view/screens/ProfileFeed.tsx:474 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" -#: src/view/com/posts/FeedShutdownMsg.tsx:97 +#: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" @@ -7009,7 +7095,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:166 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." msgstr "" @@ -7037,12 +7123,12 @@ msgstr "Bu isim zaten kullanılıyor" msgid "This post has been deleted." msgstr "Bu gönderi silindi." -#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 #: src/view/com/util/post-ctrls/PostCtrls.tsx:324 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:440 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "This post will be hidden from feeds." msgstr "" @@ -7111,12 +7197,12 @@ msgstr "" #~ msgid "This will hide this post from your feeds." #~ msgstr "Bu, bu gönderiyi beslemelerinizden gizleyecektir." -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Thread preferences" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/PreferencesThreads.tsx:51 +#: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "Konu Tercihleri" @@ -7124,11 +7210,11 @@ msgstr "Konu Tercihleri" msgid "Thread settings updated" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:119 +#: src/view/screens/PreferencesThreads.tsx:113 msgid "Threaded Mode" msgstr "Konu Tabanlı Mod" -#: src/Navigation.tsx:287 +#: src/Navigation.tsx:295 msgid "Threads Preferences" msgstr "Konu Tercihleri" @@ -7169,8 +7255,8 @@ msgstr "Dönüşümler" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:676 #: src/view/com/post-thread/PostThreadItem.tsx:678 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 -#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "Çevir" @@ -7183,7 +7269,7 @@ msgstr "Tekrar dene" msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:746 +#: src/view/screens/Settings/index.tsx:747 msgid "Two-factor authentication" msgstr "" @@ -7279,7 +7365,7 @@ msgstr "" #~ msgid "Unlike" #~ msgstr "Beğenmeyi geri al" -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Unlike this feed" msgstr "" @@ -7309,17 +7395,17 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:367 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Unmute thread" msgstr "Konunun sessizliğini kaldır" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Sabitlemeyi kaldır" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 msgid "Unpin from home" msgstr "" @@ -7339,7 +7425,7 @@ msgstr "" msgid "Unsubscribe" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Unsubscribe from this labeler" msgstr "" @@ -7376,20 +7462,20 @@ msgstr "" msgid "Upload a text file to:" msgstr "Bir metin dosyası yükleyin:" -#: src/view/com/util/UserAvatar.tsx:352 -#: src/view/com/util/UserAvatar.tsx:355 +#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "" -#: src/view/com/util/UserAvatar.tsx:369 +#: src/view/com/util/UserAvatar.tsx:381 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "" -#: src/view/com/util/UserAvatar.tsx:363 -#: src/view/com/util/UserAvatar.tsx:367 +#: src/view/com/util/UserAvatar.tsx:375 +#: src/view/com/util/UserAvatar.tsx:379 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -7429,7 +7515,7 @@ msgstr "" msgid "Use the DNS panel" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:205 +#: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." msgstr "Bunu, kullanıcı adınızla birlikte diğer uygulamaya giriş yapmak için kullanın." @@ -7505,7 +7591,7 @@ msgstr "Kullanıcı adı veya e-posta adresi" msgid "Users" msgstr "Kullanıcılar" -#: src/components/WhoCanReply.tsx:279 +#: src/components/WhoCanReply.tsx:280 msgid "users followed by <0/>" msgstr "<0/> tarafından takip edilen kullanıcılar" @@ -7540,15 +7626,15 @@ msgstr "" msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:983 +#: src/view/screens/Settings/index.tsx:984 msgid "Verify email" msgstr "E-postayı doğrula" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Verify my email" msgstr "E-postamı doğrula" -#: src/view/screens/Settings/index.tsx:1017 +#: src/view/screens/Settings/index.tsx:1018 msgid "Verify My Email" msgstr "E-postamı Doğrula" @@ -7569,7 +7655,7 @@ msgstr "E-postanızı Doğrulayın" #~ msgid "Version {0}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Version {appVersion} {bundleInfo}" msgstr "" @@ -7578,11 +7664,15 @@ msgstr "" msgid "Video Games" msgstr "Video Oyunları" +#: src/view/com/composer/videos/state.ts:27 +msgid "Videos cannot be larger than 100MB" +msgstr "" + #: src/screens/Profile/Header/Shell.tsx:113 msgid "View {0}'s avatar" msgstr "{0}'ın avatarını görüntüle" -#: src/view/com/notifications/FeedItem.tsx:245 +#: src/view/com/notifications/FeedItem.tsx:246 msgid "View {0}'s profile" msgstr "" @@ -7614,7 +7704,7 @@ msgstr "" #: src/components/ProfileHoverCard/index.web.tsx:436 #: src/components/ProfileHoverCard/index.web.tsx:463 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "Profili görüntüle" @@ -7626,7 +7716,7 @@ msgstr "Avatarı görüntüle" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/view/screens/ProfileFeed.tsx:585 +#: src/view/screens/ProfileFeed.tsx:587 msgid "View users who like this feed" msgstr "" @@ -7730,7 +7820,7 @@ msgstr "" msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Üzgünüz, ancak aramanız tamamlanamadı. Lütfen birkaç dakika içinde tekrar deneyin." -#: src/view/com/composer/Composer.tsx:335 +#: src/view/com/composer/Composer.tsx:347 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -7743,7 +7833,7 @@ msgstr "Üzgünüz! Aradığınız sayfayı bulamıyoruz." #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "" @@ -7773,7 +7863,7 @@ msgstr "" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:376 +#: src/view/com/composer/Composer.tsx:388 msgid "What's up?" msgstr "Nasılsınız?" @@ -7790,15 +7880,15 @@ msgstr "Algoritmik beslemelerinizde hangi dilleri görmek istersiniz?" msgid "Who can message you?" msgstr "" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Who can reply" msgstr "Kimler yanıtlayabilir" -#: src/components/WhoCanReply.tsx:211 +#: src/components/WhoCanReply.tsx:212 msgid "Who can reply dialog" msgstr "" -#: src/components/WhoCanReply.tsx:215 +#: src/components/WhoCanReply.tsx:216 msgid "Who can reply?" msgstr "" @@ -7844,11 +7934,11 @@ msgstr "Geniş" msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:580 msgid "Write post" msgstr "Gönderi yaz" -#: src/view/com/composer/Composer.tsx:375 +#: src/view/com/composer/Composer.tsx:387 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Yanıtınızı yazın" @@ -7863,12 +7953,12 @@ msgstr "Yazarlar" #~ msgstr "XXXXXX" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:200 -#: src/view/screens/PreferencesFollowingFeed.tsx:235 -#: src/view/screens/PreferencesFollowingFeed.tsx:270 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:199 +#: src/view/screens/PreferencesFollowingFeed.tsx:234 +#: src/view/screens/PreferencesFollowingFeed.tsx:269 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "Yes" msgstr "Evet" @@ -7885,7 +7975,7 @@ msgstr "" msgid "Yes, reactivate my account" msgstr "" -#: src/components/dms/MessageItem.tsx:188 +#: src/components/dms/MessageItem.tsx:182 msgid "Yesterday, {time}" msgstr "" @@ -8050,19 +8140,19 @@ msgstr "" msgid "You haven't muted any words or tags yet" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:86 +#: src/components/moderation/LabelsOnMeDialog.tsx:87 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:92 msgid "You may appeal these labels if you feel they were placed in error." msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:92 +#: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 50 feeds" msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:77 +#: src/screens/StarterPack/Wizard/State.tsx:78 msgid "You may only add up to 50 profiles" msgstr "" @@ -8090,7 +8180,7 @@ msgstr "" msgid "You must grant access to your photo library to save the image." msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:205 +#: src/components/ReportDialog/SubmitView.tsx:222 msgid "You must select at least one labeler for a report" msgstr "" @@ -8130,15 +8220,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272 msgid "You'll stay updated with these feeds" msgstr "" @@ -8246,7 +8336,7 @@ msgstr "" msgid "Your password has been changed successfully!" msgstr "Şifreniz başarıyla değiştirildi!" -#: src/view/com/composer/Composer.tsx:366 +#: src/view/com/composer/Composer.tsx:378 msgid "Your post has been published" msgstr "Gönderiniz yayınlandı" @@ -8254,7 +8344,7 @@ msgstr "Gönderiniz yayınlandı" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Gönderileriniz, beğenileriniz ve engellemeleriniz herkese açıktır. Sessizlikleriniz özeldir." -#: src/view/screens/Settings/index.tsx:148 +#: src/view/screens/Settings/index.tsx:149 msgid "Your profile" msgstr "Profiliniz" @@ -8262,7 +8352,7 @@ msgstr "Profiliniz" 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:365 +#: src/view/com/composer/Composer.tsx:377 msgid "Your reply has been published" msgstr "Yanıtınız yayınlandı" diff --git a/src/locale/locales/uk/messages.po b/src/locale/locales/uk/messages.po index d56121f229..74038d05da 100644 --- a/src/locale/locales/uk/messages.po +++ b/src/locale/locales/uk/messages.po @@ -26,7 +26,7 @@ msgstr "" msgid "(no email)" msgstr "(немає ел. адреси)" -#: src/view/com/notifications/FeedItem.tsx:294 +#: src/view/com/notifications/FeedItem.tsx:297 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -93,7 +93,7 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:223 msgid "{0} joined this week" msgstr "" @@ -105,7 +105,7 @@ msgstr "" #~ msgid "{0} your feeds" #~ msgstr "" -#: src/view/com/util/UserAvatar.tsx:419 +#: src/view/com/util/UserAvatar.tsx:431 msgid "{0}'s avatar" msgstr "" @@ -153,7 +153,7 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:504 +#: src/components/ProfileHoverCard/index.web.tsx:505 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} підписок" @@ -164,11 +164,11 @@ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:588 +#: src/view/screens/ProfileFeed.tsx:590 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" -#: src/view/shell/Drawer.tsx:462 +#: src/view/shell/Drawer.tsx:452 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} непрочитаних" @@ -184,7 +184,7 @@ msgstr "" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "" -#: src/components/WhoCanReply.tsx:295 +#: src/components/WhoCanReply.tsx:296 msgid "<0/> members" msgstr "<0/> учасників" @@ -206,11 +206,11 @@ msgstr "" #~ msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" #~ msgstr "" -#: src/view/shell/Drawer.tsx:101 +#: src/view/shell/Drawer.tsx:100 msgid "<0>{0} {1, plural, one {follower} other {followers}}" msgstr "" -#: src/view/shell/Drawer.tsx:112 +#: src/view/shell/Drawer.tsx:111 msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" @@ -277,15 +277,15 @@ msgid "Access profile and other navigation links" msgstr "Відкрити профіль та іншу навігацію" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:519 +#: src/view/screens/Settings/index.tsx:520 msgid "Accessibility" msgstr "Доступність" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:301 +#: src/Navigation.tsx:309 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "" @@ -295,8 +295,8 @@ msgstr "" #~ msgstr "обліковий запис" #: src/screens/Login/LoginForm.tsx:190 -#: src/view/screens/Settings/index.tsx:346 -#: src/view/screens/Settings/index.tsx:753 +#: src/view/screens/Settings/index.tsx:347 +#: src/view/screens/Settings/index.tsx:754 msgid "Account" msgstr "Обліковий запис" @@ -343,7 +343,7 @@ msgid "Account unmuted" msgstr "Обліковий запис більше не ігнорується" #: src/components/dialogs/MutedWords.tsx:164 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 msgid "Add" @@ -367,8 +367,8 @@ msgstr "Додати користувача до списку" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:423 -#: src/view/screens/Settings/index.tsx:432 +#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:433 msgid "Add account" msgstr "Додати обліковий запис" @@ -444,7 +444,7 @@ msgstr "Додати до моїх стрічок" #~ msgid "Added" #~ msgstr "Додано" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "Додано до списку" @@ -453,7 +453,7 @@ msgstr "Додано до списку" msgid "Added to my feeds" msgstr "Додано до моїх стрічок" -#: src/view/screens/PreferencesFollowingFeed.tsx:172 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "Налаштуйте мінімальну кількість вподобань для того щоб відповідь відобразилася у вашій стрічці." @@ -471,7 +471,7 @@ msgid "Adult content is disabled." msgstr "Контент для дорослих вимкнено." #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:687 +#: src/view/screens/Settings/index.tsx:688 msgid "Advanced" msgstr "Розширені" @@ -487,8 +487,8 @@ msgstr "" msgid "All the feeds you've saved, right in one place." msgstr "Усі збережені стрічки в одному місці." -#: src/view/com/modals/AddAppPasswords.tsx:187 -#: src/view/com/modals/AddAppPasswords.tsx:194 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "" @@ -513,7 +513,7 @@ msgstr "Вже увійшли як @{0}" #: src/view/com/composer/GifAltText.tsx:93 #: src/view/com/composer/photos/Gallery.tsx:144 -#: src/view/com/util/post-embeds/GifEmbed.tsx:174 +#: src/view/com/util/post-embeds/GifEmbed.tsx:183 msgid "ALT" msgstr "ALT" @@ -523,7 +523,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Альтернативний текст" -#: src/view/com/util/post-embeds/GifEmbed.tsx:180 +#: src/view/com/util/post-embeds/GifEmbed.tsx:189 msgid "Alt Text" msgstr "" @@ -552,8 +552,8 @@ msgstr "" #~ msgid "An error occurred while saving the image." #~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:70 -#: src/components/StarterPack/ShareDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the QR code!" msgstr "" @@ -569,10 +569,18 @@ msgstr "" msgid "An issue not included in these options" msgstr "Проблема не включена до цих варіантів" +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +msgid "An issue occurred while trying to open the chat" +msgstr "" + #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:309 -#: src/components/ProfileCard.tsx:329 +#: src/components/ProfileCard.tsx:311 +#: src/components/ProfileCard.tsx:331 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -584,8 +592,8 @@ msgstr "Виникла проблема, будь ласка, спробуйте msgid "an unknown error occurred" msgstr "" -#: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:291 +#: src/components/WhoCanReply.tsx:317 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "та" @@ -594,7 +602,7 @@ msgstr "та" msgid "Animals" msgstr "Тварини" -#: src/view/com/util/post-embeds/GifEmbed.tsx:146 +#: src/view/com/util/post-embeds/GifEmbed.tsx:155 msgid "Animated GIF" msgstr "" @@ -618,26 +626,26 @@ msgstr "Назва пароля може містити лише латинсь msgid "App Password names must be at least 4 characters long." msgstr "Назва пароля застосунку мусить бути хоча б 4 символи в довжину." -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "App password settings" msgstr "Налаштування пароля застосунків" -#: src/Navigation.tsx:269 +#: src/Navigation.tsx:277 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:707 +#: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" msgstr "Паролі для застосунків" -#: src/components/moderation/LabelsOnMeDialog.tsx:151 -#: src/components/moderation/LabelsOnMeDialog.tsx:154 +#: src/components/moderation/LabelsOnMeDialog.tsx:152 +#: src/components/moderation/LabelsOnMeDialog.tsx:155 msgid "Appeal" msgstr "Звернення" -#: src/components/moderation/LabelsOnMeDialog.tsx:236 +#: src/components/moderation/LabelsOnMeDialog.tsx:257 msgid "Appeal \"{0}\" label" msgstr "Оскаржити мітку \"{0}\"" -#: src/components/moderation/LabelsOnMeDialog.tsx:227 +#: src/components/moderation/LabelsOnMeDialog.tsx:248 #: src/screens/Messages/Conversation/ChatDisabled.tsx:91 msgid "Appeal submitted" msgstr "" @@ -653,7 +661,7 @@ msgstr "" msgid "Appeal this decision" msgstr "" -#: src/view/screens/Settings/index.tsx:440 +#: src/view/screens/Settings/index.tsx:441 msgid "Appearance" msgstr "Оформлення" @@ -663,8 +671,8 @@ msgid "Apply default recommended feeds" msgstr "" #: src/screens/StarterPack/StarterPackScreen.tsx:610 -msgid "Are you sure you want delete this starter pack?" -msgstr "" +#~ msgid "Are you sure you want delete this starter pack?" +#~ msgstr "" #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" @@ -678,6 +686,10 @@ msgstr "Ви дійсно хочете видалити пароль для за msgid "Are you sure you want to delete this message? The message will be deleted for you, but not for the other participant." msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:610 +msgid "Are you sure you want to delete this starter pack?" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:189 #~ msgid "Are you sure you want to leave this conversation? Your messages will be deleted for you, but not for other participants." #~ msgstr "" @@ -694,7 +706,7 @@ msgstr "Ви впевнені, що бажаєте видалити {0} зі с msgid "Are you sure you want to remove this from your feeds?" msgstr "" -#: src/view/com/composer/Composer.tsx:649 +#: src/view/com/composer/Composer.tsx:680 msgid "Are you sure you'd like to discard this draft?" msgstr "Ви дійсно бажаєте видалити цю чернетку?" @@ -720,8 +732,8 @@ msgid "At least 3 characters" msgstr "Не менше 3-х символів" #: src/components/dms/MessagesListHeader.tsx:75 -#: src/components/moderation/LabelsOnMeDialog.tsx:281 -#: src/components/moderation/LabelsOnMeDialog.tsx:282 +#: src/components/moderation/LabelsOnMeDialog.tsx:302 +#: src/components/moderation/LabelsOnMeDialog.tsx:303 #: src/screens/Login/ChooseAccountForm.tsx:98 #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 @@ -734,7 +746,6 @@ msgstr "Не менше 3-х символів" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/BackNextButtons.tsx:40 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" @@ -744,7 +755,7 @@ msgstr "Назад" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Ґрунтуючись на вашому інтересі до {interestsText}" -#: src/view/screens/Settings/index.tsx:497 +#: src/view/screens/Settings/index.tsx:498 msgid "Basics" msgstr "Основні" @@ -752,7 +763,7 @@ msgstr "Основні" msgid "Birthday" msgstr "Дата народження" -#: src/view/screens/Settings/index.tsx:378 +#: src/view/screens/Settings/index.tsx:379 msgid "Birthday:" msgstr "Дата народження:" @@ -796,7 +807,7 @@ msgstr "Заблоковано" msgid "Blocked accounts" msgstr "Заблоковані облікові записи" -#: src/Navigation.tsx:145 +#: src/Navigation.tsx:148 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Заблоковані облікові записи" @@ -878,21 +889,21 @@ msgstr "Розмити зображення і фільтрувати їх зі msgid "Books" msgstr "Книги" -#: src/components/FeedInterstitials.tsx:281 +#: src/components/FeedInterstitials.tsx:285 msgid "Browse more accounts on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:411 +#: src/components/FeedInterstitials.tsx:415 msgid "Browse more feeds on the Explore page" msgstr "" -#: src/components/FeedInterstitials.tsx:266 -#: src/components/FeedInterstitials.tsx:396 +#: src/components/FeedInterstitials.tsx:270 +#: src/components/FeedInterstitials.tsx:400 msgid "Browse more suggestions" msgstr "" -#: src/components/FeedInterstitials.tsx:289 -#: src/components/FeedInterstitials.tsx:420 +#: src/components/FeedInterstitials.tsx:293 +#: src/components/FeedInterstitials.tsx:424 msgid "Browse more suggestions on the Explore page" msgstr "" @@ -937,7 +948,7 @@ msgstr "створено вами" msgid "Camera" msgstr "Камера" -#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "Може містити лише літери, цифри, пробіли, дефіси та знаки підкреслення, і мати довжину від 4 до 32 символів." @@ -946,8 +957,8 @@ msgstr "Може містити лише літери, цифри, пробіл #: src/components/Prompt.tsx:121 #: src/components/TagMenu/index.tsx:268 #: src/screens/Deactivated.tsx:161 -#: src/view/com/composer/Composer.tsx:451 -#: src/view/com/composer/Composer.tsx:457 +#: src/view/com/composer/Composer.tsx:460 +#: src/view/com/composer/Composer.tsx:475 #: src/view/com/modals/ChangeEmail.tsx:213 #: src/view/com/modals/ChangeEmail.tsx:215 #: src/view/com/modals/ChangeHandle.tsx:148 @@ -965,7 +976,7 @@ msgstr "Може містити лише літери, цифри, пробіл #: src/view/com/modals/VerifyEmail.tsx:261 #: src/view/com/util/post-ctrls/RepostButton.tsx:139 #: src/view/screens/Search/Search.tsx:704 -#: src/view/shell/desktop/Search.tsx:218 +#: src/view/shell/desktop/Search.tsx:219 msgid "Cancel" msgstr "Скасувати" @@ -1001,8 +1012,8 @@ msgstr "Скасувати цитування посту" msgid "Cancel reactivation and log out" msgstr "" -#: src/view/com/modals/ListAddRemoveUsers.tsx:87 -#: src/view/shell/desktop/Search.tsx:214 +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "Скасувати пошук" @@ -1014,17 +1025,17 @@ msgstr "Скасовує відкриття посилання" msgid "Change" msgstr "Змінити" -#: src/view/screens/Settings/index.tsx:372 +#: src/view/screens/Settings/index.tsx:373 msgctxt "action" msgid "Change" msgstr "Змінити" -#: src/view/screens/Settings/index.tsx:719 +#: src/view/screens/Settings/index.tsx:720 msgid "Change handle" msgstr "Змінити псевдонім" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:730 +#: src/view/screens/Settings/index.tsx:731 msgid "Change Handle" msgstr "Змінити псевдонім" @@ -1032,12 +1043,12 @@ msgstr "Змінити псевдонім" msgid "Change my email" msgstr "Змінити адресу електронної пошти" -#: src/view/screens/Settings/index.tsx:764 +#: src/view/screens/Settings/index.tsx:765 msgid "Change password" msgstr "Змінити пароль" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:775 +#: src/view/screens/Settings/index.tsx:776 msgid "Change Password" msgstr "Зміна пароля" @@ -1049,7 +1060,7 @@ msgstr "Змінити мову поста на {0}" msgid "Change Your Email" msgstr "Змінити адресу електронної пошти" -#: src/Navigation.tsx:313 +#: src/Navigation.tsx:321 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -1061,14 +1072,14 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:318 +#: src/Navigation.tsx:326 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" msgstr "" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:648 +#: src/view/screens/Settings/index.tsx:649 msgid "Chat Settings" msgstr "" @@ -1155,19 +1166,19 @@ msgstr "" msgid "Choose your password" msgstr "Вкажіть пароль" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clear all legacy storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:914 +#: src/view/screens/Settings/index.tsx:915 msgid "Clear all legacy storage data (restart after this)" msgstr "" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clear all storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:926 +#: src/view/screens/Settings/index.tsx:927 msgid "Clear all storage data (restart after this)" msgstr "" @@ -1176,11 +1187,11 @@ msgstr "" msgid "Clear search query" msgstr "Очистити пошуковий запит" -#: src/view/screens/Settings/index.tsx:912 +#: src/view/screens/Settings/index.tsx:913 msgid "Clears all legacy storage data" msgstr "Видаляє всі застарілі дані зі сховища" -#: src/view/screens/Settings/index.tsx:924 +#: src/view/screens/Settings/index.tsx:925 msgid "Clears all storage data" msgstr "Видаляє всі дані зі сховища" @@ -1208,7 +1219,7 @@ msgstr "Натисніть тут, щоб відкрити меню тегів #~ msgid "Click here to open tag menu for #{tag}" #~ msgstr "Натисніть тут, щоб відкрити меню тегів для #{tag}" -#: src/components/dms/MessageItem.tsx:237 +#: src/components/dms/MessageItem.tsx:231 msgid "Click to retry failed message" msgstr "" @@ -1229,7 +1240,7 @@ msgstr "" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:129 #: src/view/com/modals/ChangePassword.tsx:268 #: src/view/com/modals/ChangePassword.tsx:271 -#: src/view/com/util/post-embeds/GifEmbed.tsx:186 +#: src/view/com/util/post-embeds/GifEmbed.tsx:195 msgid "Close" msgstr "Закрити" @@ -1284,7 +1295,7 @@ msgstr "Закриває нижню панель навігації" msgid "Closes password update alert" msgstr "Закриває сповіщення про оновлення пароля" -#: src/view/com/composer/Composer.tsx:453 +#: src/view/com/composer/Composer.tsx:472 msgid "Closes post composer and discards post draft" msgstr "Закриває редактор постів і видаляє чернетку" @@ -1292,11 +1303,11 @@ msgstr "Закриває редактор постів і видаляє чер msgid "Closes viewer for header image" msgstr "Закриває перегляд зображення" -#: src/view/com/notifications/FeedItem.tsx:237 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:437 +#: src/view/com/notifications/FeedItem.tsx:440 msgid "Collapses list of users for a given notification" msgstr "Згортає список користувачів для даного сповіщення" @@ -1310,7 +1321,7 @@ msgstr "Комедія" msgid "Comics" msgstr "Комікси" -#: src/Navigation.tsx:259 +#: src/Navigation.tsx:267 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Правила спільноти" @@ -1323,7 +1334,7 @@ msgstr "Завершіть ознайомлення та розпочніть к msgid "Complete the challenge" msgstr "Виконайте завдання" -#: src/view/com/composer/Composer.tsx:570 +#: src/view/com/composer/Composer.tsx:582 msgid "Compose posts up to {MAX_GRAPHEME_LENGTH} characters in length" msgstr "Створюйте пости до {MAX_GRAPHEME_LENGTH} символів у довжину" @@ -1348,8 +1359,6 @@ msgstr "Налаштовано <0>у налаштуваннях модераці #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/PreferencesFollowingFeed.tsx:307 -#: src/view/screens/PreferencesThreads.tsx:159 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 msgid "Confirm" @@ -1466,12 +1475,12 @@ msgstr "" msgid "Cooking" msgstr "Кухарство" -#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "Скопійовано" -#: src/view/screens/Settings/index.tsx:264 +#: src/view/screens/Settings/index.tsx:265 msgid "Copied build version to clipboard" msgstr "Версію збірки скопійовано до буфера обміну" @@ -1479,7 +1488,7 @@ msgstr "Версію збірки скопійовано до буфера об #: src/view/com/modals/AddAppPasswords.tsx:80 #: src/view/com/modals/ChangeHandle.tsx:320 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:189 +#: src/view/com/util/forms/PostDropdownBtn.tsx:192 #: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Скопійовано" @@ -1488,12 +1497,12 @@ msgstr "Скопійовано" msgid "Copied!" msgstr "Скопійовано!" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" msgstr "Копіює пароль застосунку" -#: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/view/com/modals/AddAppPasswords.tsx:213 +#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "Скопіювати" @@ -1506,11 +1515,11 @@ msgstr "Копіювати {0}" msgid "Copy code" msgstr "Скопіювати код" -#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" msgstr "" @@ -1518,8 +1527,8 @@ msgstr "" msgid "Copy link to list" msgstr "Копіювати посилання на список" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 msgid "Copy link to post" msgstr "Копіювати посилання на пост" @@ -1528,20 +1537,24 @@ msgstr "Копіювати посилання на пост" msgid "Copy message text" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:285 -#: src/view/com/util/forms/PostDropdownBtn.tsx:287 +#: src/view/com/util/forms/PostDropdownBtn.tsx:288 +#: src/view/com/util/forms/PostDropdownBtn.tsx:290 msgid "Copy post text" msgstr "Копіювати текст повідомлення" -#: src/components/StarterPack/QrCodeDialog.tsx:168 +#: src/components/StarterPack/QrCodeDialog.tsx:171 msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:264 +#: src/Navigation.tsx:272 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Політика захисту авторського права" +#: src/view/com/composer/videos/state.ts:31 +msgid "Could not compress video" +msgstr "" + #: src/components/dms/LeaveConvoPrompt.tsx:39 msgid "Could not leave chat" msgstr "" @@ -1575,17 +1588,17 @@ msgstr "" msgid "Create a new account" msgstr "Створити новий обліковий запис" -#: src/view/screens/Settings/index.tsx:424 +#: src/view/screens/Settings/index.tsx:425 msgid "Create a new Bluesky account" msgstr "Створити новий обліковий запис Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:151 +#: src/components/StarterPack/QrCodeDialog.tsx:154 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:338 +#: src/Navigation.tsx:351 msgid "Create a starter pack" msgstr "" @@ -1610,7 +1623,7 @@ msgstr "" msgid "Create another" msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" msgstr "Створити пароль застосунку" @@ -1650,7 +1663,7 @@ msgid "Custom domain" msgstr "Власний домен" #: src/view/screens/Feeds.tsx:760 -#: src/view/screens/Search/Explore.tsx:390 +#: src/view/screens/Search/Explore.tsx:392 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Кастомні стрічки, створені спільнотою, подарують вам нові враження та допоможуть знайти контент, який ви любите." @@ -1658,8 +1671,8 @@ msgstr "Кастомні стрічки, створені спільнотою, msgid "Customize media from external sites." msgstr "Налаштування медіа зі сторонніх вебсайтів." -#: src/view/screens/Settings/index.tsx:459 -#: src/view/screens/Settings/index.tsx:485 +#: src/view/screens/Settings/index.tsx:460 +#: src/view/screens/Settings/index.tsx:486 msgid "Dark" msgstr "Темна" @@ -1667,7 +1680,7 @@ msgstr "Темна" msgid "Dark mode" msgstr "Темний режим" -#: src/view/screens/Settings/index.tsx:472 +#: src/view/screens/Settings/index.tsx:473 msgid "Dark Theme" msgstr "Темна тема" @@ -1676,15 +1689,15 @@ msgid "Date of birth" msgstr "Дата народження" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:807 +#: src/view/screens/Settings/index.tsx:808 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:819 +#: src/view/screens/Settings/index.tsx:820 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:874 +#: src/view/screens/Settings/index.tsx:875 msgid "Debug Moderation" msgstr "Налагодження модерації" @@ -1696,13 +1709,13 @@ msgstr "Панель налагодження" #: src/screens/StarterPack/StarterPackScreen.tsx:562 #: src/screens/StarterPack/StarterPackScreen.tsx:641 #: src/screens/StarterPack/StarterPackScreen.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Видалити" -#: src/view/screens/Settings/index.tsx:829 +#: src/view/screens/Settings/index.tsx:830 msgid "Delete account" msgstr "Видалити обліковий запис" @@ -1722,8 +1735,8 @@ msgstr "Видалити пароль для застосунку" msgid "Delete app password?" msgstr "Видалити пароль для застосунку?" -#: src/view/screens/Settings/index.tsx:891 -#: src/view/screens/Settings/index.tsx:894 +#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:895 msgid "Delete chat declaration record" msgstr "" @@ -1747,12 +1760,12 @@ msgstr "" msgid "Delete my account" msgstr "Видалити мій обліковий запис" -#: src/view/screens/Settings/index.tsx:841 +#: src/view/screens/Settings/index.tsx:842 msgid "Delete My Account…" msgstr "Видалити мій обліковий запис..." -#: src/view/com/util/forms/PostDropdownBtn.tsx:414 -#: src/view/com/util/forms/PostDropdownBtn.tsx:416 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 +#: src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "Видалити пост" @@ -1769,7 +1782,7 @@ msgstr "" msgid "Delete this list?" msgstr "Видалити цей список?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:428 +#: src/view/com/util/forms/PostDropdownBtn.tsx:431 msgid "Delete this post?" msgstr "Видалити цей пост?" @@ -1781,7 +1794,7 @@ msgstr "Видалено" msgid "Deleted post." msgstr "Видалений пост." -#: src/view/screens/Settings/index.tsx:892 +#: src/view/screens/Settings/index.tsx:893 msgid "Deletes the chat declaration record" msgstr "" @@ -1796,11 +1809,11 @@ msgstr "Опис" msgid "Descriptive alt text" msgstr "" -#: src/view/com/composer/Composer.tsx:283 +#: src/view/com/composer/Composer.tsx:295 msgid "Did you want to say anything?" msgstr "Порожній пост. Ви хотіли щось написати?" -#: src/view/screens/Settings/index.tsx:478 +#: src/view/screens/Settings/index.tsx:479 msgid "Dim" msgstr "Тьмяний" @@ -1837,11 +1850,11 @@ msgstr "" msgid "Disabled" msgstr "Вимкнено" -#: src/view/com/composer/Composer.tsx:651 +#: src/view/com/composer/Composer.tsx:682 msgid "Discard" msgstr "Видалити" -#: src/view/com/composer/Composer.tsx:648 +#: src/view/com/composer/Composer.tsx:679 msgid "Discard draft?" msgstr "Відхилити чернетку?" @@ -1859,7 +1872,7 @@ msgstr "" msgid "Discover new custom feeds" msgstr "Відкрийте для себе нові стрічки" -#: src/view/screens/Search/Explore.tsx:388 +#: src/view/screens/Search/Explore.tsx:390 msgid "Discover new feeds" msgstr "" @@ -1912,22 +1925,20 @@ msgstr "Домен перевірено!" #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesFollowingFeed.tsx:310 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "Готово" #: src/view/com/modals/EditImage.tsx:334 -#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" msgstr "Готово" @@ -1936,7 +1947,7 @@ msgstr "Готово" msgid "Done{extraText}" msgstr "Готово{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:319 msgid "Download Bluesky" msgstr "" @@ -2006,7 +2017,7 @@ msgctxt "action" msgid "Edit" msgstr "Редагувати" -#: src/view/com/util/UserAvatar.tsx:325 +#: src/view/com/util/UserAvatar.tsx:337 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "Змінити фото профілю" @@ -2028,7 +2039,7 @@ msgstr "Редагувати опис списку" msgid "Edit Moderation List" msgstr "Редагування списку" -#: src/Navigation.tsx:274 +#: src/Navigation.tsx:282 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -2043,12 +2054,12 @@ msgstr "Редагувати мій профіль" msgid "Edit People" msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "Редагувати профіль" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "Редагувати профіль" @@ -2066,7 +2077,7 @@ msgstr "" msgid "Edit User List" msgstr "Редагувати список користувачів" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Edit who can reply" msgstr "" @@ -2078,7 +2089,7 @@ msgstr "Редагувати ваш псевдонім для показу" msgid "Edit your profile description" msgstr "Редагувати опис вашого профілю" -#: src/Navigation.tsx:343 +#: src/Navigation.tsx:356 msgid "Edit your starter pack" msgstr "" @@ -2117,7 +2128,7 @@ msgstr "Ел. адресу оновлено" msgid "Email verified" msgstr "Електронну адресу перевірено" -#: src/view/screens/Settings/index.tsx:350 +#: src/view/screens/Settings/index.tsx:351 msgid "Email:" msgstr "Ел. адреса:" @@ -2126,8 +2137,8 @@ msgid "Embed HTML code" msgstr "Вбудований HTML код" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:324 -#: src/view/com/util/forms/PostDropdownBtn.tsx:326 +#: src/view/com/util/forms/PostDropdownBtn.tsx:327 +#: src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "Вбудований пост" @@ -2157,11 +2168,16 @@ msgstr "Дозволити вміст для дорослих" msgid "Enable external media" msgstr "Увімкнути зовнішні медіа" -#: src/view/screens/PreferencesExternalEmbeds.tsx:76 +#: src/view/screens/PreferencesExternalEmbeds.tsx:73 msgid "Enable media players for" msgstr "Увімкнути медіапрогравачі для" -#: src/view/screens/PreferencesFollowingFeed.tsx:146 +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 msgid "Enable this setting to only see replies between people you follow." msgstr "Увімкніть цей параметр, щоб бачити відповіді тільки від людей, на яких ви підписані." @@ -2187,7 +2203,7 @@ msgstr "Кінець стрічки" msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." msgstr "" -#: src/view/com/modals/AddAppPasswords.tsx:160 +#: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "Введіть ім'я для цього пароля застосунку" @@ -2255,7 +2271,7 @@ msgid "Everybody" msgstr "Усі" #: src/components/WhoCanReply.tsx:69 -#: src/components/WhoCanReply.tsx:240 +#: src/components/WhoCanReply.tsx:241 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "" @@ -2291,8 +2307,8 @@ msgstr "Виходить з процесу обрізання зображень msgid "Exits image view" msgstr "Вийти з режиму перегляду" -#: src/view/com/modals/ListAddRemoveUsers.tsx:88 -#: src/view/shell/desktop/Search.tsx:215 +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 +#: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "Вихід із пошуку" @@ -2300,7 +2316,7 @@ msgstr "Вихід із пошуку" msgid "Expand alt text" msgstr "Розгорнути опис" -#: src/view/com/notifications/FeedItem.tsx:238 +#: src/view/com/notifications/FeedItem.tsx:239 msgid "Expand list of users" msgstr "" @@ -2309,6 +2325,10 @@ msgstr "" msgid "Expand or collapse the full post you are replying to" msgstr "Розгорнути або згорнути весь пост, на який ви відповідаєте" +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." msgstr "Відверто або потенційно проблемний вміст." @@ -2317,12 +2337,12 @@ msgstr "Відверто або потенційно проблемний вмі msgid "Explicit sexual images." msgstr "Відверті сексуальні зображення." -#: src/view/screens/Settings/index.tsx:787 +#: src/view/screens/Settings/index.tsx:788 msgid "Export my data" msgstr "Експорт моїх даних" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:798 +#: src/view/screens/Settings/index.tsx:799 msgid "Export My Data" msgstr "Експорт моїх даних" @@ -2332,17 +2352,17 @@ msgid "External Media" msgstr "Зовнішні медіа" #: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/view/screens/PreferencesExternalEmbeds.tsx:64 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:293 +#: src/Navigation.tsx:301 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:680 +#: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" msgstr "Налаштування зовнішніх медіа" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "External media settings" msgstr "Налаштування зовнішніх медіа" @@ -2372,8 +2392,8 @@ msgstr "Не вдалося видалити пост, спробуйте ще msgid "Failed to delete starter pack" msgstr "" -#: src/view/screens/Search/Explore.tsx:426 -#: src/view/screens/Search/Explore.tsx:454 +#: src/view/screens/Search/Explore.tsx:428 +#: src/view/screens/Search/Explore.tsx:456 msgid "Failed to load feeds preferences" msgstr "" @@ -2395,20 +2415,24 @@ msgstr "" #~ msgid "Failed to load recommended feeds" #~ msgstr "Не вдалося завантажити рекомендації стрічок" -#: src/view/screens/Search/Explore.tsx:419 -#: src/view/screens/Search/Explore.tsx:447 +#: src/view/screens/Search/Explore.tsx:421 +#: src/view/screens/Search/Explore.tsx:449 msgid "Failed to load suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:377 +#: src/view/screens/Search/Explore.tsx:379 msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:86 +#: src/view/com/lightbox/Lightbox.tsx:90 msgid "Failed to save image: {0}" msgstr "Не вдалося зберегти зображення: {0}" -#: src/components/dms/MessageItem.tsx:230 +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + +#: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "" @@ -2416,12 +2440,12 @@ msgstr "" #~ msgid "Failed to send message(s)." #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:223 +#: src/components/moderation/LabelsOnMeDialog.tsx:244 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:181 msgid "Failed to toggle thread mute, please try again" msgstr "" @@ -2434,7 +2458,7 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:214 +#: src/Navigation.tsx:217 msgid "Feed" msgstr "Стрічка" @@ -2452,19 +2476,19 @@ msgid "Feed toggle" msgstr "" #: src/view/shell/desktop/RightNav.tsx:70 -#: src/view/shell/Drawer.tsx:345 +#: src/view/shell/Drawer.tsx:332 msgid "Feedback" msgstr "Зворотний зв'язок" -#: src/Navigation.tsx:323 +#: src/Navigation.tsx:336 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 #: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:379 -#: src/view/shell/Drawer.tsx:493 -#: src/view/shell/Drawer.tsx:494 +#: src/view/shell/Drawer.tsx:483 +#: src/view/shell/Drawer.tsx:484 msgid "Feeds" msgstr "Стрічки" @@ -2526,11 +2550,11 @@ msgstr "" #~ msgid "Finding similar accounts..." #~ msgstr "Пошук подібних облікових записів..." -#: src/view/screens/PreferencesFollowingFeed.tsx:110 +#: src/view/screens/PreferencesFollowingFeed.tsx:108 msgid "Fine-tune the content you see on your Following feed." msgstr "Оберіть, що ви хочете бачити у своїй стрічці підписок." -#: src/view/screens/PreferencesThreads.tsx:60 +#: src/view/screens/PreferencesThreads.tsx:54 msgid "Fine-tune the discussion threads." msgstr "Налаштуйте відображення обговорень." @@ -2560,7 +2584,7 @@ msgid "Flip vertically" msgstr "Віддзеркалити вертикально" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:341 +#: src/components/ProfileCard.tsx:343 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2605,7 +2629,7 @@ msgstr "" msgid "Follow Back" msgstr "Підписатися навзаєм" -#: src/view/screens/Search/Explore.tsx:333 +#: src/view/screens/Search/Explore.tsx:335 msgid "Follow more accounts to get connected to your interests and build your network." msgstr "" @@ -2622,22 +2646,22 @@ msgstr "" #~ msgstr "" #: src/view/com/profile/ProfileCard.tsx:190 -msgid "Followed by {0}" -msgstr "Підписані {0}" +#~ msgid "Followed by {0}" +#~ msgstr "Підписані {0}" -#: src/components/KnownFollowers.tsx:223 +#: src/components/KnownFollowers.tsx:231 msgid "Followed by <0>{0}" msgstr "" -#: src/components/KnownFollowers.tsx:209 +#: src/components/KnownFollowers.tsx:217 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" msgstr "" -#: src/components/KnownFollowers.tsx:196 +#: src/components/KnownFollowers.tsx:204 msgid "Followed by <0>{0} and <1>{1}" msgstr "" -#: src/components/KnownFollowers.tsx:178 +#: src/components/KnownFollowers.tsx:186 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" @@ -2645,15 +2669,15 @@ msgstr "" msgid "Followed users" msgstr "Ваші підписки" -#: src/view/screens/PreferencesFollowingFeed.tsx:153 +#: src/view/screens/PreferencesFollowingFeed.tsx:152 msgid "Followed users only" msgstr "Тільки ваші підписки" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:198 msgid "followed you" msgstr "підписка на вас" -#: src/view/com/notifications/FeedItem.tsx:195 +#: src/view/com/notifications/FeedItem.tsx:196 msgid "followed you back" msgstr "" @@ -2662,7 +2686,7 @@ msgstr "" msgid "Followers" msgstr "Підписники" -#: src/Navigation.tsx:182 +#: src/Navigation.tsx:185 msgid "Followers of @{0} that you know" msgstr "" @@ -2672,7 +2696,7 @@ msgid "Followers you know" msgstr "" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:335 +#: src/components/ProfileCard.tsx:337 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2684,7 +2708,7 @@ msgstr "" msgid "Following" msgstr "Підписані" -#: src/components/ProfileCard.tsx:301 +#: src/components/ProfileCard.tsx:303 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Підписання на \"{0}\"" @@ -2693,13 +2717,13 @@ msgstr "Підписання на \"{0}\"" msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Following feed preferences" msgstr "Налаштування стрічки підписок" -#: src/Navigation.tsx:280 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:583 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesFollowingFeed.tsx:105 +#: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "Налаштування стрічки підписок" @@ -2724,7 +2748,7 @@ msgstr "Їжа" msgid "For security reasons, we'll need to send a confirmation code to your email address." msgstr "З міркувань безпеки нам потрібно буде відправити код підтвердження на вашу електронну адресу." -#: src/view/com/modals/AddAppPasswords.tsx:232 +#: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "З міркувань безпеки цей пароль відображається лише один раз. Якщо ви втратите цей пароль, вам потрібно буде згенерувати новий." @@ -2749,7 +2773,7 @@ msgstr "Часто публікує неприйнятний контент" msgid "From @{sanitizedAuthor}" msgstr "Від @{sanitizedAuthor}" -#: src/view/com/posts/FeedItem.tsx:236 +#: src/view/com/posts/FeedItem.tsx:242 msgctxt "from-feed" msgid "From <0/>" msgstr "Зі стрічки \"<0/>\"" @@ -2762,6 +2786,10 @@ msgstr "Галерея" msgid "Generate a starter pack" msgstr "" +#: src/view/shell/Drawer.tsx:336 +msgid "Get help" +msgstr "" + #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" msgstr "" @@ -2809,12 +2837,12 @@ msgid "Go Back" msgstr "Назад" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 -msgid "Go back to previous screen" -msgstr "" +#~ msgid "Go back to previous screen" +#~ msgstr "" #: src/components/dms/ReportDialog.tsx:154 #: src/components/ReportDialog/SelectReportOptionView.tsx:80 -#: src/components/ReportDialog/SubmitView.tsx:104 +#: src/components/ReportDialog/SubmitView.tsx:121 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 #: src/screens/Signup/BackNextButtons.tsx:34 @@ -2879,7 +2907,7 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "Домагання, тролінг або нетерпимість" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:316 msgid "Hashtag" msgstr "Хештег" @@ -2892,7 +2920,7 @@ msgid "Having trouble?" msgstr "Виникли проблеми?" #: src/view/shell/desktop/RightNav.tsx:99 -#: src/view/shell/Drawer.tsx:355 +#: src/view/shell/Drawer.tsx:345 msgid "Help" msgstr "Довідка" @@ -2912,7 +2940,7 @@ msgstr "" #~ msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." #~ msgstr "Ось декілька тематичних стрічок на основі ваших інтересів: {interestsText}. Ви можете підписатися на скільки забажаєте з них." -#: src/view/com/modals/AddAppPasswords.tsx:203 +#: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "Це ваш пароль для застосунків." @@ -2923,17 +2951,17 @@ msgstr "Це ваш пароль для застосунків." #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:445 msgid "Hide" msgstr "Приховати" -#: src/view/com/notifications/FeedItem.tsx:444 +#: src/view/com/notifications/FeedItem.tsx:447 msgctxt "action" msgid "Hide" msgstr "Сховати" -#: src/view/com/util/forms/PostDropdownBtn.tsx:387 -#: src/view/com/util/forms/PostDropdownBtn.tsx:389 +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 msgid "Hide post" msgstr "Сховати пост" @@ -2942,11 +2970,11 @@ msgstr "Сховати пост" msgid "Hide the content" msgstr "Приховати вміст" -#: src/view/com/util/forms/PostDropdownBtn.tsx:439 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide this post?" msgstr "Сховати цей пост?" -#: src/view/com/notifications/FeedItem.tsx:435 +#: src/view/com/notifications/FeedItem.tsx:438 msgid "Hide user list" msgstr "Сховати список користувачів" @@ -2978,12 +3006,12 @@ msgstr "Здається, у нас виникли проблеми з зава msgid "Hmmmm, we couldn't load that moderation service." msgstr "Хм, ми не змогли завантажити цей сервіс модерації." -#: src/Navigation.tsx:519 -#: src/Navigation.tsx:539 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:552 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 -#: src/view/shell/Drawer.tsx:425 -#: src/view/shell/Drawer.tsx:426 +#: src/view/shell/Drawer.tsx:415 +#: src/view/shell/Drawer.tsx:416 msgid "Home" msgstr "Головна" @@ -3037,7 +3065,7 @@ msgstr "Якщо ви ще не досягли повноліття відпов msgid "If you delete this list, you won't be able to recover it." msgstr "Якщо ви видалите цей список, ви не зможете його відновити." -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 msgid "If you remove this post, you won't be able to recover it." msgstr "Якщо ви видалите цей пост, ви не зможете його відновити." @@ -3061,7 +3089,7 @@ msgstr "Зображення" msgid "Image alt text" msgstr "Опис зображення" -#: src/components/StarterPack/ShareDialog.tsx:75 +#: src/components/StarterPack/ShareDialog.tsx:76 msgid "Image saved to your camera roll!" msgstr "" @@ -3081,7 +3109,7 @@ msgstr "Введіть код, надісланий на вашу електро msgid "Input confirmation code for account deletion" msgstr "Введіть код підтвердження для видалення облікового запису" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" msgstr "Введіть ім'я для пароля застосунку" @@ -3154,7 +3182,7 @@ msgstr "Коди запрошення: {0}" msgid "Invite codes: 1 available" msgstr "Коди запрошення: 1" -#: src/components/StarterPack/ShareDialog.tsx:96 +#: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" msgstr "" @@ -3178,8 +3206,8 @@ msgstr "" msgid "Jobs" msgstr "Вакансії" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:201 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:207 #: src/screens/StarterPack/StarterPackScreen.tsx:432 #: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" @@ -3218,11 +3246,11 @@ msgstr "Мітки є анотаціями для користувачів і к #~ msgid "labels have been placed on this {labelTarget}" #~ msgstr "мітка була розміщена на {labelTarget}" -#: src/components/moderation/LabelsOnMeDialog.tsx:79 +#: src/components/moderation/LabelsOnMeDialog.tsx:80 msgid "Labels on your account" msgstr "Мітки на вашому обліковому записі" -#: src/components/moderation/LabelsOnMeDialog.tsx:81 +#: src/components/moderation/LabelsOnMeDialog.tsx:82 msgid "Labels on your content" msgstr "Мітки на вашому контенті" @@ -3230,16 +3258,16 @@ msgstr "Мітки на вашому контенті" msgid "Language selection" msgstr "Вибір мови" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Language settings" msgstr "Налаштування мови" -#: src/Navigation.tsx:155 +#: src/Navigation.tsx:158 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Налаштування мов" -#: src/view/screens/Settings/index.tsx:540 +#: src/view/screens/Settings/index.tsx:541 msgid "Languages" msgstr "Мови" @@ -3299,7 +3327,7 @@ msgstr "Ви залишаєте Bluesky" msgid "left to go." msgstr "ще залишилося." -#: src/view/screens/Settings/index.tsx:309 +#: src/view/screens/Settings/index.tsx:310 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Старе сховище очищено, тепер вам потрібно перезапустити застосунок." @@ -3317,7 +3345,7 @@ msgstr "Давайте відновимо ваш пароль!" msgid "Let's go!" msgstr "Злітаємо!" -#: src/view/screens/Settings/index.tsx:453 +#: src/view/screens/Settings/index.tsx:454 msgid "Light" msgstr "Світла" @@ -3335,13 +3363,13 @@ msgid "Like 10 posts to train the Discover feed" msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Like this feed" msgstr "Вподобати цю стрічку" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:219 -#: src/Navigation.tsx:224 +#: src/Navigation.tsx:222 +#: src/Navigation.tsx:227 msgid "Liked by" msgstr "Сподобалося" @@ -3365,11 +3393,11 @@ msgstr "Сподобався користувачу" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "Вподобано {likeCount} {0}" -#: src/view/com/notifications/FeedItem.tsx:201 +#: src/view/com/notifications/FeedItem.tsx:202 msgid "liked your custom feed" msgstr "вподобав(-ла) вашу стрічку" -#: src/view/com/notifications/FeedItem.tsx:185 +#: src/view/com/notifications/FeedItem.tsx:186 msgid "liked your post" msgstr "сподобався ваш пост" @@ -3381,7 +3409,7 @@ msgstr "Вподобання" msgid "Likes on this post" msgstr "Вподобайки цього поста" -#: src/Navigation.tsx:188 +#: src/Navigation.tsx:191 msgid "List" msgstr "Список" @@ -3418,12 +3446,12 @@ msgstr "Список розблоковано" msgid "List unmuted" msgstr "Список більше не ігнорується" -#: src/Navigation.tsx:125 +#: src/Navigation.tsx:128 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 -#: src/view/shell/Drawer.tsx:509 -#: src/view/shell/Drawer.tsx:510 +#: src/view/shell/Drawer.tsx:499 +#: src/view/shell/Drawer.tsx:500 msgid "Lists" msgstr "Списки" @@ -3431,25 +3459,25 @@ msgstr "Списки" msgid "Lists blocking this user:" msgstr "" -#: src/view/screens/Search/Explore.tsx:130 +#: src/view/screens/Search/Explore.tsx:131 msgid "Load more" msgstr "" -#: src/view/screens/Search/Explore.tsx:218 +#: src/view/screens/Search/Explore.tsx:219 msgid "Load more suggested feeds" msgstr "" -#: src/view/screens/Search/Explore.tsx:216 +#: src/view/screens/Search/Explore.tsx:217 msgid "Load more suggested follows" msgstr "" -#: src/view/screens/Notifications.tsx:184 +#: src/view/screens/Notifications.tsx:219 msgid "Load new notifications" msgstr "Завантажити нові сповіщення" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:494 +#: src/view/screens/ProfileFeed.tsx:495 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Завантажити нові пости" @@ -3458,7 +3486,7 @@ msgstr "Завантажити нові пости" msgid "Loading..." msgstr "Завантаження..." -#: src/Navigation.tsx:239 +#: src/Navigation.tsx:247 msgid "Log" msgstr "Звіт" @@ -3528,7 +3556,7 @@ msgstr "" msgid "Media" msgstr "Медіа" -#: src/components/WhoCanReply.tsx:275 +#: src/components/WhoCanReply.tsx:276 msgid "mentioned users" msgstr "згадані користувачі" @@ -3550,7 +3578,7 @@ msgstr "" msgid "Message deleted" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:200 +#: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "Повідомлення від сервера: {0}" @@ -3567,7 +3595,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:534 +#: src/Navigation.tsx:547 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3582,9 +3610,9 @@ msgstr "" msgid "Misleading Account" msgstr "Оманливий обліковий запис" -#: src/Navigation.tsx:130 +#: src/Navigation.tsx:133 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:562 +#: src/view/screens/Settings/index.tsx:563 msgid "Moderation" msgstr "Модерація" @@ -3620,16 +3648,16 @@ msgstr "Список модерації оновлено" msgid "Moderation lists" msgstr "Списки для модерації" -#: src/Navigation.tsx:135 +#: src/Navigation.tsx:138 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Списки для модерації" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Moderation settings" msgstr "Налаштування модерації" -#: src/Navigation.tsx:234 +#: src/Navigation.tsx:237 msgid "Moderation states" msgstr "Статус модерації" @@ -3654,7 +3682,7 @@ msgstr "Більше стрічок" msgid "More options" msgstr "Додаткові опції" -#: src/view/screens/PreferencesThreads.tsx:82 +#: src/view/screens/PreferencesThreads.tsx:76 msgid "Most-liked replies first" msgstr "За кількістю вподобань" @@ -3721,13 +3749,13 @@ msgstr "Ігнорувати це слово у постах і тегах" msgid "Mute this word in tags only" msgstr "Ігнорувати це слово лише у тегах" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:371 msgid "Mute thread" msgstr "Ігнорувати обговорення" -#: src/view/com/util/forms/PostDropdownBtn.tsx:378 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 +#: src/view/com/util/forms/PostDropdownBtn.tsx:381 +#: src/view/com/util/forms/PostDropdownBtn.tsx:383 msgid "Mute words & tags" msgstr "Ігнорувати слова та теги" @@ -3739,7 +3767,7 @@ msgstr "Ігнорується" msgid "Muted accounts" msgstr "Ігноровані облікові записи" -#: src/Navigation.tsx:140 +#: src/Navigation.tsx:143 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Ігноровані облікові записи" @@ -3773,15 +3801,15 @@ msgstr "Мої стрічки" msgid "My Profile" msgstr "Мій профіль" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "My saved feeds" msgstr "Мої збережені стрічки" -#: src/view/screens/Settings/index.tsx:623 +#: src/view/screens/Settings/index.tsx:624 msgid "My Saved Feeds" msgstr "Мої збережені стрічки" -#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/AddAppPasswords.tsx:174 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "Ім'я" @@ -3816,7 +3844,7 @@ msgstr "" msgid "Navigates to the next screen" msgstr "Переходить до наступного екрана" -#: src/view/shell/Drawer.tsx:79 +#: src/view/shell/Drawer.tsx:78 msgid "Navigates to your profile" msgstr "Переходить до вашого профілю" @@ -3846,7 +3874,7 @@ msgstr "Новий" msgid "New" msgstr "Новий" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" @@ -3874,9 +3902,9 @@ msgid "New post" msgstr "Новий пост" #: src/view/screens/Feeds.tsx:581 -#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Notifications.tsx:228 #: src/view/screens/Profile.tsx:478 -#: src/view/screens/ProfileFeed.tsx:428 +#: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:278 @@ -3896,7 +3924,7 @@ msgstr "" msgid "New User List" msgstr "Новий список користувачів" -#: src/view/screens/PreferencesThreads.tsx:79 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Newest replies first" msgstr "Спочатку найновіші" @@ -3931,16 +3959,16 @@ msgstr "Далі" msgid "Next image" msgstr "Наступне зображення" -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:199 -#: src/view/screens/PreferencesFollowingFeed.tsx:234 -#: src/view/screens/PreferencesFollowingFeed.tsx:271 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:198 +#: src/view/screens/PreferencesFollowingFeed.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:270 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "No" msgstr "Ні" -#: src/view/screens/ProfileFeed.tsx:562 +#: src/view/screens/ProfileFeed.tsx:564 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Опис відсутній" @@ -3958,7 +3986,7 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" -#: src/components/ProfileCard.tsx:321 +#: src/components/ProfileCard.tsx:323 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "Ви більше не підписані на {0}" @@ -3975,7 +4003,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:122 msgid "No notifications yet!" msgstr "Ще ніяких сповіщень!" @@ -4007,7 +4035,7 @@ msgstr "Нічого не знайдено" msgid "No results found for \"{query}\"" msgstr "Нічого не знайдено за запитом «{query}»" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 @@ -4053,7 +4081,7 @@ msgstr "Несексуальна оголеність" #~ msgid "Not Applicable." #~ msgstr "Не застосовно." -#: src/Navigation.tsx:120 +#: src/Navigation.tsx:123 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Не знайдено" @@ -4064,7 +4092,7 @@ msgid "Not right now" msgstr "Пізніше" #: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/forms/PostDropdownBtn.tsx:459 #: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "Примітка щодо поширення" @@ -4077,6 +4105,19 @@ msgstr "Примітка: Bluesky є відкритою і публічною м msgid "Nothing here" msgstr "" +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:331 +#: src/view/screens/Notifications.tsx:119 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "" + #: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "" @@ -4085,13 +4126,14 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:529 -#: src/view/screens/Notifications.tsx:132 -#: src/view/screens/Notifications.tsx:169 +#: src/Navigation.tsx:542 +#: src/view/screens/Notifications.tsx:145 +#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:203 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 -#: src/view/shell/Drawer.tsx:457 -#: src/view/shell/Drawer.tsx:458 +#: src/view/shell/Drawer.tsx:447 +#: src/view/shell/Drawer.tsx:448 msgid "Notifications" msgstr "Сповіщення" @@ -4099,7 +4141,7 @@ msgstr "Сповіщення" msgid "now" msgstr "" -#: src/components/dms/MessageItem.tsx:175 +#: src/components/dms/MessageItem.tsx:169 msgid "Now" msgstr "" @@ -4129,7 +4171,7 @@ msgstr "О, ні!" msgid "Oh no! Something went wrong." msgstr "Ой! Щось пішло не так." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 msgid "OK" msgstr "OK" @@ -4137,7 +4179,7 @@ msgstr "OK" msgid "Okay" msgstr "Добре" -#: src/view/screens/PreferencesThreads.tsx:78 +#: src/view/screens/PreferencesThreads.tsx:72 msgid "Oldest replies first" msgstr "Спочатку найдавніші" @@ -4149,7 +4191,7 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:257 +#: src/view/screens/Settings/index.tsx:258 msgid "Onboarding reset" msgstr "Скинути ознайомлення" @@ -4157,7 +4199,7 @@ msgstr "Скинути ознайомлення" msgid "Onboarding tour step {0}: {1}" msgstr "" -#: src/view/com/composer/Composer.tsx:522 +#: src/view/com/composer/Composer.tsx:534 msgid "One or more images is missing alt text." msgstr "Для одного або кількох зображень відсутній опис." @@ -4165,7 +4207,7 @@ msgstr "Для одного або кількох зображень відсу msgid "Only .jpg and .png files are supported" msgstr "" -#: src/components/WhoCanReply.tsx:244 +#: src/components/WhoCanReply.tsx:245 msgid "Only {0} can reply" msgstr "" @@ -4185,6 +4227,7 @@ msgstr "Ой, щось пішло не так!" #: src/components/StarterPack/ProfileStarterPacks.tsx:304 #: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/NotificationsSettings.tsx:45 #: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Ой!" @@ -4206,16 +4249,16 @@ msgstr "" msgid "Open conversation options" msgstr "" -#: src/view/com/composer/Composer.tsx:632 -#: src/view/com/composer/Composer.tsx:633 +#: src/view/com/composer/Composer.tsx:663 +#: src/view/com/composer/Composer.tsx:664 msgid "Open emoji picker" msgstr "Емоджі" -#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileFeed.tsx:297 msgid "Open feed options menu" msgstr "Відкрити меню налаштувань стрічки" -#: src/view/screens/Settings/index.tsx:737 +#: src/view/screens/Settings/index.tsx:738 msgid "Open links with in-app browser" msgstr "Вбудований браузер" @@ -4231,7 +4274,7 @@ msgstr "Відкрити налаштування ігнорування слі msgid "Open navigation" msgstr "Відкрити навігацію" -#: src/view/com/util/forms/PostDropdownBtn.tsx:247 +#: src/view/com/util/forms/PostDropdownBtn.tsx:250 msgid "Open post options menu" msgstr "Відкрити меню налаштувань посту" @@ -4239,12 +4282,12 @@ msgstr "Відкрити меню налаштувань посту" msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Open storybook page" msgstr "Відкрити storybook сторінку" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Open system log" msgstr "Відкрити системний журнал" @@ -4256,7 +4299,7 @@ msgstr "Відкриває меню з {numItems} опціями" msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:511 +#: src/view/screens/Settings/index.tsx:512 msgid "Opens accessibility settings" msgstr "" @@ -4272,7 +4315,7 @@ msgstr "Відкриває додаткову інформацію про зап msgid "Opens camera on device" msgstr "Відкриває камеру на пристрої" -#: src/view/screens/Settings/index.tsx:640 +#: src/view/screens/Settings/index.tsx:641 msgid "Opens chat settings" msgstr "" @@ -4280,7 +4323,7 @@ msgstr "" msgid "Opens composer" msgstr "Відкрити редактор" -#: src/view/screens/Settings/index.tsx:532 +#: src/view/screens/Settings/index.tsx:533 msgid "Opens configurable language settings" msgstr "Відкриває налаштування мов" @@ -4288,7 +4331,7 @@ msgstr "Відкриває налаштування мов" msgid "Opens device photo gallery" msgstr "Відкриває фотогалерею пристрою" -#: src/view/screens/Settings/index.tsx:672 +#: src/view/screens/Settings/index.tsx:673 msgid "Opens external embeds settings" msgstr "Відкриває налаштування зовнішніх вбудувань" @@ -4310,27 +4353,27 @@ msgstr "" msgid "Opens list of invite codes" msgstr "Відкриває список кодів запрошення" -#: src/view/screens/Settings/index.tsx:809 +#: src/view/screens/Settings/index.tsx:810 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:831 +#: src/view/screens/Settings/index.tsx:832 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "Відкриває модальне вікно для підтвердження видалення облікового запису. Потребує код з електронної пошти" -#: src/view/screens/Settings/index.tsx:766 +#: src/view/screens/Settings/index.tsx:767 msgid "Opens modal for changing your Bluesky password" msgstr "Відкриває модальне вікно для зміни паролю в Bluesky" -#: src/view/screens/Settings/index.tsx:721 +#: src/view/screens/Settings/index.tsx:722 msgid "Opens modal for choosing a new Bluesky handle" msgstr "Відкриває модальне вікно для вибору псевдоніму в Bluesky" -#: src/view/screens/Settings/index.tsx:789 +#: src/view/screens/Settings/index.tsx:790 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Відкриває модальне вікно для завантаження даних з вашого облікового запису Bluesky (репозиторій)" -#: src/view/screens/Settings/index.tsx:1009 +#: src/view/screens/Settings/index.tsx:1010 msgid "Opens modal for email verification" msgstr "Відкриває модальне вікно для перевірки електронної пошти" @@ -4338,7 +4381,7 @@ msgstr "Відкриває модальне вікно для перевірки msgid "Opens modal for using custom domain" msgstr "Відкриває діалог налаштування власного домену як псевдоніму" -#: src/view/screens/Settings/index.tsx:557 +#: src/view/screens/Settings/index.tsx:558 msgid "Opens moderation settings" msgstr "Відкриває налаштування модерації" @@ -4351,15 +4394,15 @@ msgstr "Відкриває форму скидання пароля" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "Відкриває сторінку з усіма збереженими стрічками" -#: src/view/screens/Settings/index.tsx:618 +#: src/view/screens/Settings/index.tsx:619 msgid "Opens screen with all saved feeds" msgstr "Відкриває сторінку з усіма збереженими каналами" -#: src/view/screens/Settings/index.tsx:699 +#: src/view/screens/Settings/index.tsx:700 msgid "Opens the app password settings" msgstr "Відкриває налаштування паролів для застосунків" -#: src/view/screens/Settings/index.tsx:575 +#: src/view/screens/Settings/index.tsx:576 msgid "Opens the Following feed preferences" msgstr "Відкриває налаштування стрічки підписок" @@ -4371,30 +4414,34 @@ msgstr "Відкриває посилання" #~ msgid "Opens the message settings page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:862 -#: src/view/screens/Settings/index.tsx:872 +#: src/view/screens/Settings/index.tsx:863 +#: src/view/screens/Settings/index.tsx:873 msgid "Opens the storybook page" msgstr "" -#: src/view/screens/Settings/index.tsx:850 +#: src/view/screens/Settings/index.tsx:851 msgid "Opens the system log page" msgstr "Відкриває системний журнал" -#: src/view/screens/Settings/index.tsx:596 +#: src/view/screens/Settings/index.tsx:597 msgid "Opens the threads preferences" msgstr "Відкриває налаштування гілок" -#: src/view/com/notifications/FeedItem.tsx:524 -#: src/view/com/util/UserAvatar.tsx:422 +#: src/view/com/notifications/FeedItem.tsx:527 +#: src/view/com/util/UserAvatar.tsx:434 msgid "Opens this profile" msgstr "" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:54 +msgid "Opens video picker" +msgstr "" + #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" msgstr "Опція {0} з {numItems}" #: src/components/dms/ReportDialog.tsx:183 -#: src/components/ReportDialog/SubmitView.tsx:162 +#: src/components/ReportDialog/SubmitView.tsx:179 msgid "Optionally provide additional information below:" msgstr "За бажанням надайте додаткову інформацію нижче:" @@ -4454,7 +4501,7 @@ msgstr "Пароль змінено" msgid "Password updated!" msgstr "Пароль змінено!" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Pause" msgstr "" @@ -4463,19 +4510,19 @@ msgstr "" msgid "People" msgstr "Люди" -#: src/Navigation.tsx:175 +#: src/Navigation.tsx:178 msgid "People followed by @{0}" msgstr "Люди, на яких підписаний(-на) @{0}" -#: src/Navigation.tsx:168 +#: src/Navigation.tsx:171 msgid "People following @{0}" msgstr "Люди, які підписані на @{0}" -#: src/view/com/lightbox/Lightbox.tsx:69 +#: src/view/com/lightbox/Lightbox.tsx:70 msgid "Permission to access camera roll is required." msgstr "Потрібен дозвіл на доступ до камери." -#: src/view/com/lightbox/Lightbox.tsx:75 +#: src/view/com/lightbox/Lightbox.tsx:78 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "Дозвіл на доступ до камери був заборонений. Будь ласка, включіть його в налаштуваннях системи." @@ -4496,12 +4543,12 @@ msgstr "" msgid "Pictures meant for adults." msgstr "Зображення, призначені для дорослих." -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Закріпити" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 msgid "Pin to Home" msgstr "Закріпити на головній" @@ -4513,7 +4560,7 @@ msgstr "Закріплені стрічки" msgid "Pinned to your feeds" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:37 +#: src/view/com/util/post-embeds/GifEmbed.tsx:44 msgid "Play" msgstr "" @@ -4526,7 +4573,7 @@ msgstr "Відтворити {0}" #~ msgid "Play notification sounds" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:36 +#: src/view/com/util/post-embeds/GifEmbed.tsx:43 msgid "Play or pause the GIF" msgstr "" @@ -4560,7 +4607,7 @@ msgstr "Будь ласка, підтвердіть вашу електронн msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "Будь ласка, введіть ім'я для пароля застосунку. Пробіли і пропуски не допускаються." -#: src/view/com/modals/AddAppPasswords.tsx:150 +#: src/view/com/modals/AddAppPasswords.tsx:151 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "Будь ласка, введіть унікальну назву для цього паролю або використовуйте нашу випадково згенеровану." @@ -4581,7 +4628,7 @@ msgstr "" msgid "Please enter your password as well:" msgstr "Будь ласка, також введіть ваш пароль:" -#: src/components/moderation/LabelsOnMeDialog.tsx:256 +#: src/components/moderation/LabelsOnMeDialog.tsx:277 msgid "Please explain why you think this label was incorrectly applied by {0}" msgstr "Будь ласка, поясніть, чому ви вважаєте, що ця позначка була помилково додана до {0}" @@ -4598,7 +4645,7 @@ msgstr "" msgid "Please Verify Your Email" msgstr "Підтвердьте свою адресу електронної пошти" -#: src/view/com/composer/Composer.tsx:287 +#: src/view/com/composer/Composer.tsx:299 msgid "Please wait for your link card to finish loading" msgstr "Будь ласка, зачекайте доки завершиться створення попереднього перегляду для посилання" @@ -4611,8 +4658,8 @@ msgstr "Політика" msgid "Porn" msgstr "Порнографія" -#: src/view/com/composer/Composer.tsx:496 -#: src/view/com/composer/Composer.tsx:504 +#: src/view/com/composer/Composer.tsx:509 +#: src/view/com/composer/Composer.tsx:516 msgctxt "action" msgid "Post" msgstr "Запостити" @@ -4626,9 +4673,9 @@ msgstr "Пост" msgid "Post by {0}" msgstr "Пост від {0}" -#: src/Navigation.tsx:194 -#: src/Navigation.tsx:201 -#: src/Navigation.tsx:208 +#: src/Navigation.tsx:197 +#: src/Navigation.tsx:204 +#: src/Navigation.tsx:211 msgid "Post by @{0}" msgstr "Пост від @{0}" @@ -4684,6 +4731,10 @@ msgstr "Пости приховано" msgid "Potentially Misleading Link" msgstr "Потенційно оманливе посилання" +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "" @@ -4704,7 +4755,7 @@ msgstr "Натисніть, щоб повторити спробу" #~ msgid "Press to Retry" #~ msgstr "" -#: src/components/KnownFollowers.tsx:116 +#: src/components/KnownFollowers.tsx:124 msgid "Press to view followers of this account that you also follow" msgstr "" @@ -4716,20 +4767,24 @@ msgstr "Попереднє зображення" msgid "Primary Language" msgstr "Основна мова" -#: src/view/screens/PreferencesThreads.tsx:97 +#: src/view/screens/PreferencesThreads.tsx:91 msgid "Prioritize Your Follows" msgstr "Пріоритезувати ваші підписки" -#: src/view/screens/Settings/index.tsx:655 +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "" + +#: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Конфіденційність" -#: src/Navigation.tsx:249 +#: src/Navigation.tsx:257 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:958 -#: src/view/shell/Drawer.tsx:285 +#: src/view/screens/Settings/index.tsx:959 +#: src/view/shell/Drawer.tsx:284 msgid "Privacy Policy" msgstr "Політика конфіденційності" @@ -4748,9 +4803,9 @@ msgstr "профіль" #: src/view/shell/bottom-bar/BottomBar.tsx:275 #: src/view/shell/desktop/LeftNav.tsx:393 -#: src/view/shell/Drawer.tsx:78 -#: src/view/shell/Drawer.tsx:542 -#: src/view/shell/Drawer.tsx:543 +#: src/view/shell/Drawer.tsx:77 +#: src/view/shell/Drawer.tsx:532 +#: src/view/shell/Drawer.tsx:533 msgid "Profile" msgstr "Профіль" @@ -4758,7 +4813,7 @@ msgstr "Профіль" msgid "Profile updated" msgstr "Профіль оновлено" -#: src/view/screens/Settings/index.tsx:1022 +#: src/view/screens/Settings/index.tsx:1023 msgid "Protect your account by verifying your email." msgstr "Захистіть свій обліковий запис, підтвердивши свою електронну адресу." @@ -4774,23 +4829,23 @@ msgstr "Публічні, поширювані списки користувач msgid "Public, shareable lists which can drive feeds." msgstr "Публічні, поширювані списки для створення стрічок." -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish post" msgstr "Опублікувати пост" -#: src/view/com/composer/Composer.tsx:481 +#: src/view/com/composer/Composer.tsx:497 msgid "Publish reply" msgstr "Опублікувати відповідь" -#: src/components/StarterPack/QrCodeDialog.tsx:125 +#: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:103 +#: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:104 +#: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "" @@ -4815,7 +4870,7 @@ msgstr "Цитувати пост" #~ msgid "Quote Post" #~ msgstr "Цитувати" -#: src/view/screens/PreferencesThreads.tsx:86 +#: src/view/screens/PreferencesThreads.tsx:80 msgid "Random (aka \"Poster's Roulette\")" msgstr "У випадковому порядку" @@ -4851,19 +4906,23 @@ msgstr "Останні запити" msgid "Reconnect" msgstr "" +#: src/view/screens/Notifications.tsx:146 +msgid "Refresh notifications" +msgstr "" + #: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 #: src/components/FeedCard.tsx:309 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 -#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:101 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:212 +#: src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "Видалити" @@ -4875,7 +4934,7 @@ msgstr "" msgid "Remove account" msgstr "Видалити обліковий запис" -#: src/view/com/util/UserAvatar.tsx:384 +#: src/view/com/util/UserAvatar.tsx:396 msgid "Remove Avatar" msgstr "Видалити аватар" @@ -4887,20 +4946,20 @@ msgstr "Видалити банер" msgid "Remove embed" msgstr "" -#: src/view/com/posts/FeedErrorMessage.tsx:168 -#: src/view/com/posts/FeedShutdownMsg.tsx:113 -#: src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:115 +#: src/view/com/posts/FeedShutdownMsg.tsx:119 msgid "Remove feed" msgstr "Видалити стрічку" -#: src/view/com/posts/FeedErrorMessage.tsx:209 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" msgstr "Видалити стрічку?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Вилучити з моїх стрічок" @@ -4914,7 +4973,7 @@ msgstr "Видалити з моїх стрічок?" msgid "Remove image" msgstr "Вилучити зображення" -#: src/view/com/composer/ExternalEmbed.tsx:87 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:28 msgid "Remove image preview" msgstr "Вилучити попередній перегляд зображення" @@ -4939,11 +4998,11 @@ msgstr "" msgid "Remove repost" msgstr "Видалити репост" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "Вилучити цю стрічку зі збережених стрічок" -#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "Вилучено зі списку" @@ -4959,15 +5018,19 @@ msgid "Removed from your feeds" msgstr "Видалено з моїх стрічок" #: src/view/com/composer/ExternalEmbed.tsx:88 -msgid "Removes default thumbnail from {0}" -msgstr "Видаляє мініатюру за замовчуванням з {0}" +#~ msgid "Removes default thumbnail from {0}" +#~ msgstr "Видаляє мініатюру за замовчуванням з {0}" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" msgstr "" -#: src/view/com/posts/FeedShutdownMsg.tsx:126 -#: src/view/com/posts/FeedShutdownMsg.tsx:130 +#: src/view/com/composer/ExternalEmbedRemoveBtn.tsx:29 +msgid "Removes the image preview" +msgstr "" + +#: src/view/com/posts/FeedShutdownMsg.tsx:128 +#: src/view/com/posts/FeedShutdownMsg.tsx:132 msgid "Replace with Discover" msgstr "" @@ -4983,16 +5046,16 @@ msgstr "" #~ msgid "Replies on this thread are disabled" #~ msgstr "" -#: src/components/WhoCanReply.tsx:242 +#: src/components/WhoCanReply.tsx:243 msgid "Replies to this thread are disabled" msgstr "Відповіді до цього посту вимкнено" -#: src/view/com/composer/Composer.tsx:494 +#: src/view/com/composer/Composer.tsx:507 msgctxt "action" msgid "Reply" msgstr "Відповісти" -#: src/view/screens/PreferencesFollowingFeed.tsx:143 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 msgid "Reply Filters" msgstr "Які відповіді показувати" @@ -5002,17 +5065,23 @@ msgstr "Які відповіді показувати" #~ msgid "Reply to <0/>" #~ msgstr "У відповідь <0/>" -#: src/view/com/post/Post.tsx:190 -#: src/view/com/posts/FeedItem.tsx:439 +#: src/view/com/post/Post.tsx:197 +#: src/view/com/posts/FeedItem.tsx:458 msgctxt "description" msgid "Reply to <0><1/>" msgstr "" -#: src/view/com/posts/FeedItem.tsx:437 +#: src/view/com/posts/FeedItem.tsx:456 msgctxt "description" msgid "Reply to a blocked post" msgstr "" +#: src/view/com/post/Post.tsx:195 +#: src/view/com/posts/FeedItem.tsx:454 +msgctxt "description" +msgid "Reply to you" +msgstr "" + #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 #: src/components/dms/MessagesListBlockedFooter.tsx:84 @@ -5039,8 +5108,8 @@ msgstr "" msgid "Report dialog" msgstr "Діалогове вікно для скарг" -#: src/view/screens/ProfileFeed.tsx:349 -#: src/view/screens/ProfileFeed.tsx:351 +#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:352 msgid "Report feed" msgstr "Поскаржитись на стрічку" @@ -5052,8 +5121,8 @@ msgstr "Поскаржитись на список" msgid "Report message" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:407 +#: src/view/com/util/forms/PostDropdownBtn.tsx:409 msgid "Report post" msgstr "Поскаржитись на пост" @@ -5115,7 +5184,7 @@ msgstr "Репостити або цитувати" msgid "Reposted By" msgstr "Зробив(-ла) репост" -#: src/view/com/posts/FeedItem.tsx:254 +#: src/view/com/posts/FeedItem.tsx:263 msgid "Reposted by {0}" msgstr "{0} зробив(-ла) репост" @@ -5123,11 +5192,16 @@ msgstr "{0} зробив(-ла) репост" #~ msgid "Reposted by <0/>" #~ msgstr "" -#: src/view/com/posts/FeedItem.tsx:269 +#: src/view/com/posts/FeedItem.tsx:282 msgid "Reposted by <0><1/>" msgstr "Зроблено репост від <0><1/>" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/posts/FeedItem.tsx:261 +#: src/view/com/posts/FeedItem.tsx:280 +msgid "Reposted by you" +msgstr "" + +#: src/view/com/notifications/FeedItem.tsx:188 msgid "reposted your post" msgstr "зробив(-ла) репост вашого допису" @@ -5170,8 +5244,8 @@ msgstr "Код підтвердження" msgid "Reset Code" msgstr "Код скидання" -#: src/view/screens/Settings/index.tsx:901 -#: src/view/screens/Settings/index.tsx:904 +#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:905 msgid "Reset onboarding state" msgstr "" @@ -5179,16 +5253,16 @@ msgstr "" msgid "Reset password" msgstr "Скинути пароль" -#: src/view/screens/Settings/index.tsx:881 -#: src/view/screens/Settings/index.tsx:884 +#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:885 msgid "Reset preferences state" msgstr "" -#: src/view/screens/Settings/index.tsx:902 +#: src/view/screens/Settings/index.tsx:903 msgid "Resets the onboarding state" msgstr "" -#: src/view/screens/Settings/index.tsx:882 +#: src/view/screens/Settings/index.tsx:883 msgid "Resets the preferences state" msgstr "" @@ -5201,7 +5275,7 @@ msgstr "Повторити спробу" msgid "Retries the last action, which errored out" msgstr "Повторити останню дію, яка спричинила помилку" -#: src/components/dms/MessageItem.tsx:241 +#: src/components/dms/MessageItem.tsx:235 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 @@ -5237,7 +5311,7 @@ msgstr "Повертає до попередньої сторінки" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/dialogs/ThreadgateEditor.tsx:88 -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:187 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5246,7 +5320,7 @@ msgstr "Повертає до попередньої сторінки" msgid "Save" msgstr "Зберегти" -#: src/view/com/lightbox/Lightbox.tsx:135 +#: src/view/com/lightbox/Lightbox.tsx:139 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5268,8 +5342,8 @@ msgstr "Зберегти зміни" msgid "Save handle change" msgstr "Зберегти новий псевдонім" -#: src/components/StarterPack/ShareDialog.tsx:150 -#: src/components/StarterPack/ShareDialog.tsx:157 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "" @@ -5277,12 +5351,12 @@ msgstr "" msgid "Save image crop" msgstr "Обрізати зображення" -#: src/components/StarterPack/QrCodeDialog.tsx:178 +#: src/components/StarterPack/QrCodeDialog.tsx:181 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 +#: src/view/screens/ProfileFeed.tsx:334 +#: src/view/screens/ProfileFeed.tsx:340 msgid "Save to my feeds" msgstr "Зберегти до моїх стрічок" @@ -5290,7 +5364,7 @@ msgstr "Зберегти до моїх стрічок" msgid "Saved Feeds" msgstr "Збережені стрічки" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:88 msgid "Saved to your camera roll" msgstr "" @@ -5317,8 +5391,8 @@ msgstr "Зберігає налаштування обрізання зобра #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:383 -#: src/view/com/notifications/FeedItem.tsx:408 +#: src/view/com/notifications/FeedItem.tsx:386 +#: src/view/com/notifications/FeedItem.tsx:411 msgid "Say hello!" msgstr "" @@ -5332,9 +5406,9 @@ msgid "Scroll to top" msgstr "Прогорнути вгору" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:524 +#: src/Navigation.tsx:537 #: src/view/com/auth/LoggedOut.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 @@ -5342,14 +5416,14 @@ msgstr "Прогорнути вгору" #: src/view/screens/Search/Search.tsx:813 #: src/view/shell/bottom-bar/BottomBar.tsx:182 #: src/view/shell/desktop/LeftNav.tsx:354 -#: src/view/shell/desktop/Search.tsx:194 -#: src/view/shell/desktop/Search.tsx:203 -#: src/view/shell/Drawer.tsx:394 -#: src/view/shell/Drawer.tsx:395 +#: src/view/shell/desktop/Search.tsx:195 +#: src/view/shell/desktop/Search.tsx:204 +#: src/view/shell/Drawer.tsx:384 +#: src/view/shell/Drawer.tsx:385 msgid "Search" msgstr "Пошук" -#: src/view/shell/desktop/Search.tsx:235 +#: src/view/shell/desktop/Search.tsx:236 msgid "Search for \"{query}\"" msgstr "Шукати \"{query}\"" @@ -5375,7 +5449,7 @@ msgstr "" #: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/auth/LoggedOut.tsx:107 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "Пошук користувачів" @@ -5479,7 +5553,7 @@ msgstr "Обрати варіант {i} із {numItems}" msgid "Select the {emojiName} emoji as your avatar" msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:135 +#: src/components/ReportDialog/SubmitView.tsx:152 msgid "Select the moderation service(s) to report to" msgstr "Оберіть сервіс модерації для скарги" @@ -5491,6 +5565,10 @@ msgstr "Виберіть хостинг-провайдера для ваших #~ msgid "Select topical feeds to follow from the list below" #~ msgstr "Підпишіться на тематичні стрічки зі списку нижче" +#: src/view/com/composer/videos/SelectVideoBtn.tsx:53 +msgid "Select video" +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:63 #~ msgid "Select what you want to see (or not see), and we’ll handle the rest." #~ msgstr "Виберіть, що ви хочете бачити (або не бачити), а решту ми зробимо за вас." @@ -5541,8 +5619,7 @@ msgctxt "action" msgid "Send Email" msgstr "Надіслати ел. лист" -#: src/view/shell/Drawer.tsx:329 -#: src/view/shell/Drawer.tsx:350 +#: src/view/shell/Drawer.tsx:325 msgid "Send feedback" msgstr "Надіслати відгук" @@ -5551,14 +5628,14 @@ msgstr "Надіслати відгук" msgid "Send message" msgstr "" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 msgid "Send post to..." msgstr "" #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 -#: src/components/ReportDialog/SubmitView.tsx:215 -#: src/components/ReportDialog/SubmitView.tsx:219 +#: src/components/ReportDialog/SubmitView.tsx:232 +#: src/components/ReportDialog/SubmitView.tsx:236 msgid "Send report" msgstr "Поскаржитись" @@ -5571,8 +5648,8 @@ msgstr "Надіслати скаргу до {0}" msgid "Send verification email" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 +#: src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" msgstr "" @@ -5592,23 +5669,23 @@ msgstr "Додати дату народження" msgid "Set new password" msgstr "Зміна пароля" -#: src/view/screens/PreferencesFollowingFeed.tsx:224 +#: src/view/screens/PreferencesFollowingFeed.tsx:223 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "Вимкніть цей параметр, щоб приховати всі цитовані пости у вашій стрічці. Не впливає на репости без цитування." -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:120 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "Вимкніть цей параметр, щоб приховати всі відповіді у вашій стрічці." -#: src/view/screens/PreferencesFollowingFeed.tsx:190 +#: src/view/screens/PreferencesFollowingFeed.tsx:189 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "Вимкніть цей параметр, щоб приховати всі репости у вашій стрічці." -#: src/view/screens/PreferencesThreads.tsx:122 +#: src/view/screens/PreferencesThreads.tsx:116 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "Увімкніть це налаштування, щоб показувати відповіді у вигляді гілок. Це експериментальна функція." -#: src/view/screens/PreferencesFollowingFeed.tsx:260 +#: src/view/screens/PreferencesFollowingFeed.tsx:259 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "Увімкніть це налаштування, щоб іноді бачити пости зі збережених стрічок у вашій домашній стрічці. Це експериментальна функція." @@ -5620,23 +5697,23 @@ msgstr "Налаштуйте ваш обліковий запис" msgid "Sets Bluesky username" msgstr "Встановлює псевдонім Bluesky" -#: src/view/screens/Settings/index.tsx:462 +#: src/view/screens/Settings/index.tsx:463 msgid "Sets color theme to dark" msgstr "Встановлює темну тему" -#: src/view/screens/Settings/index.tsx:455 +#: src/view/screens/Settings/index.tsx:456 msgid "Sets color theme to light" msgstr "Встановлює світлу тему" -#: src/view/screens/Settings/index.tsx:449 +#: src/view/screens/Settings/index.tsx:450 msgid "Sets color theme to system setting" msgstr "Встановлює тему відповідно до системних налаштувань" -#: src/view/screens/Settings/index.tsx:488 +#: src/view/screens/Settings/index.tsx:489 msgid "Sets dark theme to the dark theme" msgstr "Встановлює чорний колір для темної теми" -#: src/view/screens/Settings/index.tsx:481 +#: src/view/screens/Settings/index.tsx:482 msgid "Sets dark theme to the dim theme" msgstr "Встановлює тьмяний колір для темної теми" @@ -5656,11 +5733,11 @@ msgstr "Встановлює співвідношення сторін зобр msgid "Sets image aspect ratio to wide" msgstr "Встановлює співвідношення сторін зображення до ширини" -#: src/Navigation.tsx:150 -#: src/view/screens/Settings/index.tsx:333 +#: src/Navigation.tsx:153 +#: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 -#: src/view/shell/Drawer.tsx:559 -#: src/view/shell/Drawer.tsx:560 +#: src/view/shell/Drawer.tsx:549 +#: src/view/shell/Drawer.tsx:550 msgid "Settings" msgstr "Налаштування" @@ -5672,19 +5749,19 @@ msgstr "Сексуальна активність або еротична ого msgid "Sexually Suggestive" msgstr "З сексуальним підтекстом" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:177 #: src/screens/StarterPack/StarterPackScreen.tsx:400 #: src/screens/StarterPack/StarterPackScreen.tsx:571 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 #: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Поширити" -#: src/view/com/lightbox/Lightbox.tsx:144 +#: src/view/com/lightbox/Lightbox.tsx:148 msgctxt "action" msgid "Share" msgstr "Поширити" @@ -5698,18 +5775,18 @@ msgid "Share a fun fact!" msgstr "" #: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:464 #: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "Все одно поширити" -#: src/view/screens/ProfileFeed.tsx:359 -#: src/view/screens/ProfileFeed.tsx:361 +#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:362 msgid "Share feed" msgstr "Поширити стрічку" -#: src/components/StarterPack/ShareDialog.tsx:123 -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 #: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -5719,12 +5796,12 @@ msgstr "" msgid "Share Link" msgstr "Поділитись посиланням" -#: src/components/StarterPack/ShareDialog.tsx:87 +#: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:134 -#: src/components/StarterPack/ShareDialog.tsx:145 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "" @@ -5732,7 +5809,7 @@ msgstr "" msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:99 +#: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5740,6 +5817,10 @@ msgstr "" msgid "Share your favorite feed!" msgstr "" +#: src/Navigation.tsx:242 +msgid "Shared Preferences Tester" +msgstr "" + #: src/view/com/modals/LinkWarning.tsx:92 msgid "Shares the linked website" msgstr "Поширює посилання" @@ -5747,7 +5828,7 @@ msgstr "Поширює посилання" #: src/components/moderation/ContentHider.tsx:116 #: src/components/moderation/LabelPreference.tsx:136 #: src/components/moderation/PostHider.tsx:122 -#: src/view/screens/Settings/index.tsx:382 +#: src/view/screens/Settings/index.tsx:383 msgid "Show" msgstr "Показувати" @@ -5755,7 +5836,7 @@ msgstr "Показувати" #~ msgid "Show all replies" #~ msgstr "Показати всі відповіді" -#: src/view/com/util/post-embeds/GifEmbed.tsx:166 +#: src/view/com/util/post-embeds/GifEmbed.tsx:175 msgid "Show alt text" msgstr "" @@ -5781,19 +5862,19 @@ msgstr "Показати підписки, схожі на {0}" msgid "Show hidden replies" msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#: src/view/com/util/forms/PostDropdownBtn.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:349 +#: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" msgstr "" #: src/view/com/post-thread/PostThreadItem.tsx:530 -#: src/view/com/post/Post.tsx:227 -#: src/view/com/posts/FeedItem.tsx:396 +#: src/view/com/post/Post.tsx:235 +#: src/view/com/posts/FeedItem.tsx:410 msgid "Show More" msgstr "Показати більше" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 -#: src/view/com/util/forms/PostDropdownBtn.tsx:340 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:343 msgid "Show more like this" msgstr "" @@ -5801,11 +5882,11 @@ msgstr "" msgid "Show muted replies" msgstr "" -#: src/view/screens/PreferencesFollowingFeed.tsx:257 +#: src/view/screens/PreferencesFollowingFeed.tsx:256 msgid "Show Posts from My Feeds" msgstr "Показувати пости зі збережених стрічок" -#: src/view/screens/PreferencesFollowingFeed.tsx:221 +#: src/view/screens/PreferencesFollowingFeed.tsx:220 msgid "Show Quote Posts" msgstr "Показувати цитати" @@ -5821,11 +5902,11 @@ msgstr "Показувати цитати" #~ msgid "Show re-posts in Following feed" #~ msgstr "Показувати репости у стрічці \"Following\"" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:117 msgid "Show Replies" msgstr "Показувати відповіді" -#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:94 msgid "Show replies by people you follow before all other replies." msgstr "Показувати відповіді від людей, за якими ви слідкуєте, вище інших." @@ -5841,7 +5922,7 @@ msgstr "Показувати відповіді від людей, за яким #~ msgid "Show replies with at least {value} {0}" #~ msgstr "Показувати відповіді від {value} {0}" -#: src/view/screens/PreferencesFollowingFeed.tsx:187 +#: src/view/screens/PreferencesFollowingFeed.tsx:186 msgid "Show Reposts" msgstr "Показувати репости" @@ -5907,8 +5988,8 @@ msgstr "Увійдіть або створіть обліковий запис, msgid "Sign into Bluesky or create a new account" msgstr "Увійдіть у Bluesky або створіть новий обліковий запис" -#: src/view/screens/Settings/index.tsx:129 -#: src/view/screens/Settings/index.tsx:133 +#: src/view/screens/Settings/index.tsx:130 +#: src/view/screens/Settings/index.tsx:134 msgid "Sign out" msgstr "Вийти" @@ -5933,7 +6014,7 @@ msgstr "Зареєструйтеся або увійдіть, щоб приєд msgid "Sign-in Required" msgstr "Необхідно увійти для перегляду" -#: src/view/screens/Settings/index.tsx:392 +#: src/view/screens/Settings/index.tsx:393 msgid "Signed in as" msgstr "Ви увійшли як" @@ -5942,12 +6023,12 @@ msgstr "Ви увійшли як" msgid "Signed in as @{0}" msgstr "Ви увійшли як @{0}" -#: src/view/com/notifications/FeedItem.tsx:208 +#: src/view/com/notifications/FeedItem.tsx:209 msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:301 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:308 msgid "Signup without a starter pack" msgstr "" @@ -5965,7 +6046,7 @@ msgstr "Пропустити цей процес" msgid "Software Dev" msgstr "Розробка П/З" -#: src/components/FeedInterstitials.tsx:378 +#: src/components/FeedInterstitials.tsx:382 msgid "Some other feeds you might like" msgstr "" @@ -5993,16 +6074,21 @@ msgstr "" msgid "Something went wrong, please try again." msgstr "Щось пішло не так. Будь ласка, спробуйте ще раз." -#: src/App.native.tsx:98 -#: src/App.web.tsx:80 +#: src/components/Lists.tsx:192 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "" + +#: src/App.native.tsx:99 +#: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "Даруйте! Ваш сеанс вичерпався. Будь ласка, увійдіть знову." -#: src/view/screens/PreferencesThreads.tsx:69 +#: src/view/screens/PreferencesThreads.tsx:63 msgid "Sort Replies" msgstr "Сортувати відповіді" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:66 msgid "Sort replies to the same post by:" msgstr "Оберіть, як сортувати відповіді до постів:" @@ -6010,7 +6096,7 @@ msgstr "Оберіть, як сортувати відповіді до пост #~ msgid "Source:" #~ msgstr "Джерело:" -#: src/components/moderation/LabelsOnMeDialog.tsx:168 +#: src/components/moderation/LabelsOnMeDialog.tsx:169 msgid "Source: <0>{0}" msgstr "" @@ -6032,7 +6118,7 @@ msgstr "Спорт" msgid "Square" msgstr "Квадратне" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:63 msgid "Start a new chat" msgstr "" @@ -6049,8 +6135,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:328 -#: src/Navigation.tsx:333 +#: src/Navigation.tsx:341 +#: src/Navigation.tsx:346 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -6075,7 +6161,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Сторінка стану" -#: src/view/screens/Settings/index.tsx:964 +#: src/view/screens/Settings/index.tsx:965 msgid "Status Page" msgstr "" @@ -6087,17 +6173,17 @@ msgstr "" msgid "Step {0} of {1}" msgstr "" -#: src/view/screens/Settings/index.tsx:305 +#: src/view/screens/Settings/index.tsx:306 msgid "Storage cleared, you need to restart the app now." msgstr "Сховище очищено, тепер вам треба перезапустити застосунок." -#: src/Navigation.tsx:229 -#: src/view/screens/Settings/index.tsx:864 +#: src/Navigation.tsx:232 +#: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:290 -#: src/components/moderation/LabelsOnMeDialog.tsx:291 +#: src/components/moderation/LabelsOnMeDialog.tsx:311 +#: src/components/moderation/LabelsOnMeDialog.tsx:312 #: src/screens/Messages/Conversation/ChatDisabled.tsx:142 #: src/screens/Messages/Conversation/ChatDisabled.tsx:143 msgid "Submit" @@ -6120,7 +6206,7 @@ msgstr "Підписатися на маркувальника" #~ msgid "Subscribe to the {0} feed" #~ msgstr "Підписатися на {0} стрічку" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 msgid "Subscribe to this labeler" msgstr "Підписатися на цього маркувальника" @@ -6128,7 +6214,7 @@ msgstr "Підписатися на цього маркувальника" msgid "Subscribe to this list" msgstr "Підписатися на цей список" -#: src/view/screens/Search/Explore.tsx:331 +#: src/view/screens/Search/Explore.tsx:333 msgid "Suggested accounts" msgstr "" @@ -6136,7 +6222,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "Пропоновані підписки" -#: src/components/FeedInterstitials.tsx:246 +#: src/components/FeedInterstitials.tsx:250 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Пропозиції для вас" @@ -6145,7 +6231,7 @@ msgstr "Пропозиції для вас" msgid "Suggestive" msgstr "Непристойний" -#: src/Navigation.tsx:244 +#: src/Navigation.tsx:252 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6160,19 +6246,19 @@ msgstr "Перемикнути обліковий запис" msgid "Switch between feeds to control your experience." msgstr "" -#: src/view/screens/Settings/index.tsx:160 +#: src/view/screens/Settings/index.tsx:161 msgid "Switch to {0}" msgstr "Переключитися на {0}" -#: src/view/screens/Settings/index.tsx:161 +#: src/view/screens/Settings/index.tsx:162 msgid "Switches the account you are logged in to" msgstr "Переключає обліковий запис" -#: src/view/screens/Settings/index.tsx:446 +#: src/view/screens/Settings/index.tsx:447 msgid "System" msgstr "Системне" -#: src/view/screens/Settings/index.tsx:852 +#: src/view/screens/Settings/index.tsx:853 msgid "System log" msgstr "Системний журнал" @@ -6221,11 +6307,11 @@ msgstr "" msgid "Terms" msgstr "Умови" -#: src/Navigation.tsx:254 +#: src/Navigation.tsx:262 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:952 +#: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 -#: src/view/shell/Drawer.tsx:279 +#: src/view/shell/Drawer.tsx:278 msgid "Terms of Service" msgstr "Умови Використання" @@ -6240,13 +6326,13 @@ msgstr "Використані терміни порушують стандар msgid "text" msgstr "текст" -#: src/components/moderation/LabelsOnMeDialog.tsx:254 +#: src/components/moderation/LabelsOnMeDialog.tsx:275 #: src/screens/Messages/Conversation/ChatDisabled.tsx:108 msgid "Text input field" msgstr "Поле вводу тексту" #: src/components/dms/ReportDialog.tsx:134 -#: src/components/ReportDialog/SubmitView.tsx:77 +#: src/components/ReportDialog/SubmitView.tsx:93 msgid "Thank you. Your report has been sent." msgstr "Дякуємо. Вашу скаргу було надіслано." @@ -6289,19 +6375,19 @@ msgstr "Політику захисту авторського права пер msgid "The Discover feed now knows what you like" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:322 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:66 +#: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:65 +#: src/components/moderation/LabelsOnMeDialog.tsx:66 msgid "The following labels were applied to your account." msgstr "Наступні мітки були додано до вашого облікового запису." -#: src/components/moderation/LabelsOnMeDialog.tsx:66 +#: src/components/moderation/LabelsOnMeDialog.tsx:67 msgid "The following labels were applied to your content." msgstr "Наступні мітки були додано до вашого контенту." @@ -6338,8 +6424,8 @@ msgstr "Умови Використання перенесено до" msgid "There is no time limit for account deactivation, come back any time." msgstr "" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:115 -#: src/view/screens/ProfileFeed.tsx:544 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 +#: src/view/screens/ProfileFeed.tsx:545 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Виникла проблема з доступом до сервера. Перевірте підключення до Інтернету і повторіть спробу знову." @@ -6348,7 +6434,7 @@ msgid "There was an an issue removing this feed. Please check your internet conn msgstr "Виникла проблема при видаленні цієї стрічки. Перевірте підключення до Інтернету і повторіть спробу." #: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Виникла проблема з оновленням ваших стрічок. Перевірте підключення до Інтернету і повторіть спробу." @@ -6362,7 +6448,7 @@ msgstr "" #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:234 +#: src/view/screens/ProfileFeed.tsx:235 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6376,7 +6462,7 @@ msgstr "При з'єднанні з сервером виникла пробле msgid "There was an issue contacting your server" msgstr "При з'єднанні з вашим сервером виникла проблема" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Виникла проблема з завантаженням сповіщень. Натисніть тут, щоб повторити спробу." @@ -6394,7 +6480,7 @@ msgid "There was an issue fetching your lists. Tap here to try again." msgstr "Виникла проблема з завантаженням ваших списків. Натисніть тут, щоб повторити спробу." #: src/components/dms/ReportDialog.tsx:222 -#: src/components/ReportDialog/SubmitView.tsx:82 +#: src/components/ReportDialog/SubmitView.tsx:98 msgid "There was an issue sending your report. Please check your internet connection." msgstr "Виникла проблема з надсиланням вашої скарги. Будь ласка, перевірте підключення до Інтернету." @@ -6454,7 +6540,7 @@ msgstr "Цей користувач вказав, що не хоче, аби й 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/moderation/LabelsOnMeDialog.tsx:239 +#: src/components/moderation/LabelsOnMeDialog.tsx:260 msgid "This appeal will be sent to <0>{0}." msgstr "Це звернення буде надіслано до <0>{0}." @@ -6514,12 +6600,12 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "Ця стрічка порожня! Можливо, вам треба підписатися на більшу кількість користувачів або змінити ваші налаштування мови." #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:473 +#: src/view/screens/ProfileFeed.tsx:474 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" -#: src/view/com/posts/FeedShutdownMsg.tsx:97 +#: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "" @@ -6547,7 +6633,7 @@ msgstr "" #~ msgid "This label was applied by you" #~ msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:166 +#: src/components/moderation/LabelsOnMeDialog.tsx:167 msgid "This label was applied by you." msgstr "" @@ -6575,12 +6661,12 @@ msgstr "Це ім'я вже використовується" msgid "This post has been deleted." msgstr "Цей пост було видалено." -#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 #: src/view/com/util/post-ctrls/PostCtrls.tsx:324 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "Цей пост видно лише користувачам, які увійшли до системи. Воно не буде видимим для людей, які не ввійшли до системи." -#: src/view/com/util/forms/PostDropdownBtn.tsx:440 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "This post will be hidden from feeds." msgstr "Цей пост буде приховано зі стрічок." @@ -6637,12 +6723,12 @@ msgstr "Цей користувач не підписаний ні на кого msgid "This will delete {0} from your muted words. You can always add it back later." msgstr "Це видалить {0} зі ваших ігнорованих слів. Ви завжди можете додати його назад." -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Thread preferences" msgstr "Налаштування гілок" -#: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:605 +#: src/view/screens/PreferencesThreads.tsx:51 +#: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "Налаштування гілок" @@ -6650,11 +6736,11 @@ msgstr "Налаштування гілок" msgid "Thread settings updated" msgstr "" -#: src/view/screens/PreferencesThreads.tsx:119 +#: src/view/screens/PreferencesThreads.tsx:113 msgid "Threaded Mode" msgstr "Режим гілок" -#: src/Navigation.tsx:287 +#: src/Navigation.tsx:295 msgid "Threads Preferences" msgstr "Налаштування обговорень" @@ -6695,8 +6781,8 @@ msgstr "Редагування" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:676 #: src/view/com/post-thread/PostThreadItem.tsx:678 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 -#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "Перекласти" @@ -6709,7 +6795,7 @@ msgstr "Спробувати ще раз" msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:746 +#: src/view/screens/Settings/index.tsx:747 msgid "Two-factor authentication" msgstr "" @@ -6801,7 +6887,7 @@ msgstr "Відписатися від облікового запису" #~ msgid "Unlike" #~ msgstr "Прибрати вподобання" -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Unlike this feed" msgstr "Видалити вподобання цієї стрічки" @@ -6831,17 +6917,17 @@ msgstr "" #~ msgid "Unmute notifications" #~ msgstr "" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:367 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Unmute thread" msgstr "Перестати ігнорувати" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Відкріпити" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 msgid "Unpin from home" msgstr "Відкріпити від головної сторінки" @@ -6857,7 +6943,7 @@ msgstr "" msgid "Unsubscribe" msgstr "Відписатися" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:193 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Unsubscribe from this labeler" msgstr "Відписатися від цього маркувальника" @@ -6890,20 +6976,20 @@ msgstr "" msgid "Upload a text file to:" msgstr "Завантажити текстовий файл до:" -#: src/view/com/util/UserAvatar.tsx:352 -#: src/view/com/util/UserAvatar.tsx:355 +#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "Завантажити з камери" -#: src/view/com/util/UserAvatar.tsx:369 +#: src/view/com/util/UserAvatar.tsx:381 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "Завантажити з файлів" -#: src/view/com/util/UserAvatar.tsx:363 -#: src/view/com/util/UserAvatar.tsx:367 +#: src/view/com/util/UserAvatar.tsx:375 +#: src/view/com/util/UserAvatar.tsx:379 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -6943,7 +7029,7 @@ msgstr "" msgid "Use the DNS panel" msgstr "Використати панель DNS" -#: src/view/com/modals/AddAppPasswords.tsx:205 +#: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." msgstr "Скористайтесь ним для входу в інші застосунки." @@ -7011,7 +7097,7 @@ msgstr "Ім'я користувача або електронна адреса" msgid "Users" msgstr "Користувачі" -#: src/components/WhoCanReply.tsx:279 +#: src/components/WhoCanReply.tsx:280 msgid "users followed by <0/>" msgstr "користувачі, на яких підписані <0/>" @@ -7042,15 +7128,15 @@ msgstr "Значення:" msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:983 +#: src/view/screens/Settings/index.tsx:984 msgid "Verify email" msgstr "Підтвердити електронну адресу" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Verify my email" msgstr "Підтвердити мою електронну адресу" -#: src/view/screens/Settings/index.tsx:1017 +#: src/view/screens/Settings/index.tsx:1018 msgid "Verify My Email" msgstr "Підтвердити мою електронну адресу" @@ -7071,7 +7157,7 @@ msgstr "Підтвердьте адресу вашої електронної п #~ msgid "Version {0}" #~ msgstr "Версія {0}" -#: src/view/screens/Settings/index.tsx:936 +#: src/view/screens/Settings/index.tsx:937 msgid "Version {appVersion} {bundleInfo}" msgstr "" @@ -7080,11 +7166,15 @@ msgstr "" msgid "Video Games" msgstr "Відеоігри" +#: src/view/com/composer/videos/state.ts:27 +msgid "Videos cannot be larger than 100MB" +msgstr "" + #: src/screens/Profile/Header/Shell.tsx:113 msgid "View {0}'s avatar" msgstr "Переглянути аватар {0}" -#: src/view/com/notifications/FeedItem.tsx:245 +#: src/view/com/notifications/FeedItem.tsx:246 msgid "View {0}'s profile" msgstr "" @@ -7116,7 +7206,7 @@ msgstr "Переглянути інформацію про мітки" #: src/components/ProfileHoverCard/index.web.tsx:436 #: src/components/ProfileHoverCard/index.web.tsx:463 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "Переглянути профіль" @@ -7128,7 +7218,7 @@ msgstr "Переглянути аватар" msgid "View the labeling service provided by @{0}" msgstr "Переглянути послуги маркування, який надає @{0}" -#: src/view/screens/ProfileFeed.tsx:585 +#: src/view/screens/ProfileFeed.tsx:587 msgid "View users who like this feed" msgstr "Переглянути користувачів, які вподобали цю стрічку" @@ -7224,7 +7314,7 @@ msgstr "На жаль, ми не змогли зараз завантажити msgid "We're sorry, but your search could not be completed. Please try again in a few minutes." msgstr "Даруйте, нам не вдалося виконати пошук за вашим запитом. Будь ласка, спробуйте ще раз через кілька хвилин." -#: src/view/com/composer/Composer.tsx:335 +#: src/view/com/composer/Composer.tsx:347 msgid "We're sorry! The post you are replying to has been deleted." msgstr "" @@ -7237,7 +7327,7 @@ msgstr "Нам дуже прикро! Ми не можемо знайти сто #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." #~ msgstr "На жаль, ви можете підписатися тільки на 10 маркувальників, і ви вже досягли цього ліміту." -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "" @@ -7263,7 +7353,7 @@ msgstr "" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 -#: src/view/com/composer/Composer.tsx:376 +#: src/view/com/composer/Composer.tsx:388 msgid "What's up?" msgstr "Як справи?" @@ -7280,15 +7370,15 @@ msgstr "Якими мовами ви хочете бачити пости у а msgid "Who can message you?" msgstr "" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Who can reply" msgstr "Хто може відповідати" -#: src/components/WhoCanReply.tsx:211 +#: src/components/WhoCanReply.tsx:212 msgid "Who can reply dialog" msgstr "" -#: src/components/WhoCanReply.tsx:215 +#: src/components/WhoCanReply.tsx:216 msgid "Who can reply?" msgstr "" @@ -7334,11 +7424,11 @@ msgstr "Широке" msgid "Write a message" msgstr "" -#: src/view/com/composer/Composer.tsx:568 +#: src/view/com/composer/Composer.tsx:580 msgid "Write post" msgstr "Написати пост" -#: src/view/com/composer/Composer.tsx:375 +#: src/view/com/composer/Composer.tsx:387 #: src/view/com/composer/Prompt.tsx:39 msgid "Write your reply" msgstr "Написати відповідь" @@ -7349,12 +7439,12 @@ msgid "Writers" msgstr "Письменники" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:200 -#: src/view/screens/PreferencesFollowingFeed.tsx:235 -#: src/view/screens/PreferencesFollowingFeed.tsx:270 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:199 +#: src/view/screens/PreferencesFollowingFeed.tsx:234 +#: src/view/screens/PreferencesFollowingFeed.tsx:269 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "Yes" msgstr "Так" @@ -7371,7 +7461,7 @@ msgstr "" msgid "Yes, reactivate my account" msgstr "" -#: src/components/dms/MessageItem.tsx:188 +#: src/components/dms/MessageItem.tsx:182 msgid "Yesterday, {time}" msgstr "" @@ -7524,19 +7614,19 @@ msgstr "" msgid "You haven't muted any words or tags yet" msgstr "У вас ще немає ігнорованих слів чи тегів" -#: src/components/moderation/LabelsOnMeDialog.tsx:86 +#: src/components/moderation/LabelsOnMeDialog.tsx:87 msgid "You may appeal non-self labels if you feel they were placed in error." msgstr "" -#: src/components/moderation/LabelsOnMeDialog.tsx:91 +#: src/components/moderation/LabelsOnMeDialog.tsx:92 msgid "You may appeal these labels if you feel they were placed in error." msgstr "Ви можете оскаржувати мітки, якщо вважаєте, що вони були розміщені помилково." -#: src/screens/StarterPack/Wizard/State.tsx:92 +#: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 50 feeds" msgstr "" -#: src/screens/StarterPack/Wizard/State.tsx:77 +#: src/screens/StarterPack/Wizard/State.tsx:78 msgid "You may only add up to 50 profiles" msgstr "" @@ -7560,7 +7650,7 @@ msgstr "" msgid "You must grant access to your photo library to save the image." msgstr "" -#: src/components/ReportDialog/SubmitView.tsx:205 +#: src/components/ReportDialog/SubmitView.tsx:222 msgid "You must select at least one labeler for a report" msgstr "Ви повинні обрати хоча б одного маркувальника для скарги" @@ -7600,15 +7690,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:234 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:232 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:272 msgid "You'll stay updated with these feeds" msgstr "" @@ -7707,7 +7797,7 @@ msgstr "Ваші ігноровані слова" msgid "Your password has been changed successfully!" msgstr "Ваш пароль успішно змінено!" -#: src/view/com/composer/Composer.tsx:366 +#: src/view/com/composer/Composer.tsx:378 msgid "Your post has been published" msgstr "Пост опубліковано" @@ -7715,7 +7805,7 @@ msgstr "Пост опубліковано" msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Ваші повідомлення, вподобання і блоки є публічними. Ігнорування - приватні." -#: src/view/screens/Settings/index.tsx:148 +#: src/view/screens/Settings/index.tsx:149 msgid "Your profile" msgstr "Ваш профіль" @@ -7723,7 +7813,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:365 +#: src/view/com/composer/Composer.tsx:377 msgid "Your reply has been published" msgstr "Відповідь опубліковано" diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po index c006cffb96..fbd01ccc94 100644 --- a/src/locale/locales/zh-CN/messages.po +++ b/src/locale/locales/zh-CN/messages.po @@ -231,7 +231,7 @@ msgstr "无障碍" msgid "Accessibility settings" msgstr "无障碍设置" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:309 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "无障碍设置" @@ -375,7 +375,7 @@ msgstr "已添加至列表" msgid "Added to my feeds" msgstr "已添加至自定义资讯源" -#: src/view/screens/PreferencesFollowingFeed.tsx:172 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "调整会在你的资讯源中显示的回复至少需要含有多少喜欢数。" @@ -539,7 +539,7 @@ msgstr "应用专用密码必须至少为 4 个字符。" msgid "App password settings" msgstr "应用专用密码设置" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:277 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" @@ -696,7 +696,7 @@ msgstr "已屏蔽" msgid "Blocked accounts" msgstr "已屏蔽账户" -#: src/Navigation.tsx:147 +#: src/Navigation.tsx:148 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "已屏蔽账户" @@ -926,7 +926,7 @@ msgstr "更改帖文的发布语言至 {0}" msgid "Change Your Email" msgstr "更改你的邮箱地址" -#: src/Navigation.tsx:320 +#: src/Navigation.tsx:321 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -938,7 +938,7 @@ msgstr "已隐藏对话" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:326 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" @@ -1154,7 +1154,7 @@ msgstr "喜剧" msgid "Comics" msgstr "漫画" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:267 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "社群准则" @@ -1188,8 +1188,6 @@ msgstr "在 <0>内容审核设置 中配置。" #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/PreferencesFollowingFeed.tsx:307 -#: src/view/screens/PreferencesThreads.tsx:159 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 msgid "Confirm" @@ -1365,7 +1363,7 @@ msgstr "复制帖文文字" msgid "Copy QR code" msgstr "复制二维码" -#: src/Navigation.tsx:271 +#: src/Navigation.tsx:272 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "版权许可" @@ -1409,7 +1407,7 @@ msgstr "为入门包创建二维码" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:345 +#: src/Navigation.tsx:351 msgid "Create a starter pack" msgstr "创建入门包" @@ -1722,7 +1720,6 @@ msgstr "域名已认证!" #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:143 -#: src/view/screens/PreferencesFollowingFeed.tsx:310 msgid "Done" msgstr "完成" @@ -1731,7 +1728,6 @@ msgstr "完成" #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" msgstr "完成" @@ -1828,7 +1824,7 @@ msgstr "编辑列表详情" msgid "Edit Moderation List" msgstr "编辑内容审核列表" -#: src/Navigation.tsx:281 +#: src/Navigation.tsx:282 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -1873,7 +1869,7 @@ msgstr "编辑你的显示名称" msgid "Edit your profile description" msgstr "编辑你的账户描述" -#: src/Navigation.tsx:350 +#: src/Navigation.tsx:356 msgid "Edit your starter pack" msgstr "编辑你的入门包" @@ -1943,11 +1939,16 @@ msgstr "启用成人内容" msgid "Enable external media" msgstr "启用外部媒体" -#: src/view/screens/PreferencesExternalEmbeds.tsx:76 +#: src/view/screens/PreferencesExternalEmbeds.tsx:73 msgid "Enable media players for" msgstr "启用媒体播放器" -#: src/view/screens/PreferencesFollowingFeed.tsx:146 +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 msgid "Enable this setting to only see replies between people you follow." msgstr "启用这个设置项将仅显示你已关注用户的回复。" @@ -2091,6 +2092,10 @@ msgstr "展开用户列表" msgid "Expand or collapse the full post you are replying to" msgstr "展开或折叠你要回复的完整帖文" +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." msgstr "明确或潜在引起不适的媒体内容。" @@ -2114,11 +2119,11 @@ msgid "External Media" msgstr "外部媒体" #: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/view/screens/PreferencesExternalEmbeds.tsx:64 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:300 +#: src/Navigation.tsx:301 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" @@ -2181,6 +2186,10 @@ msgstr "无法加载建议关注" msgid "Failed to save image: {0}" msgstr "无法保存这张图片:{0}" +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + #: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "无法发送私信" @@ -2203,7 +2212,7 @@ msgstr "无法更新资讯源" msgid "Failed to update settings" msgstr "无法更新设置" -#: src/Navigation.tsx:216 +#: src/Navigation.tsx:217 msgid "Feed" msgstr "资讯源" @@ -2221,7 +2230,7 @@ msgstr "切换资讯源" msgid "Feedback" msgstr "反馈" -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:336 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 @@ -2271,11 +2280,11 @@ msgstr "在探索页面中寻找更多资讯源与账户关注。" msgid "Find posts and users on Bluesky" msgstr "在 Bluesky 寻找帖文和用户" -#: src/view/screens/PreferencesFollowingFeed.tsx:110 +#: src/view/screens/PreferencesFollowingFeed.tsx:108 msgid "Fine-tune the content you see on your Following feed." msgstr "调整你在\"正在关注\"资讯源上所看到的内容。" -#: src/view/screens/PreferencesThreads.tsx:60 +#: src/view/screens/PreferencesThreads.tsx:54 msgid "Fine-tune the discussion threads." msgstr "调整讨论主题。" @@ -2370,7 +2379,7 @@ msgstr "由 <0>{0}、<1>{1} 以及 {2, plural, one {其他#人} other { msgid "Followed users" msgstr "已关注的用户" -#: src/view/screens/PreferencesFollowingFeed.tsx:153 +#: src/view/screens/PreferencesFollowingFeed.tsx:152 msgid "Followed users only" msgstr "仅限已关注的用户" @@ -2387,7 +2396,7 @@ msgstr "回关" msgid "Followers" msgstr "关注者" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:185 msgid "Followers of @{0} that you know" msgstr "由你所认识的 @{0} 所关注" @@ -2422,8 +2431,8 @@ msgstr "已关注 {name}" msgid "Following feed preferences" msgstr "\"正在关注\"资讯源首选项" -#: src/Navigation.tsx:287 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesFollowingFeed.tsx:105 #: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "\"正在关注\"资讯源首选项" @@ -2599,7 +2608,7 @@ msgstr "触感" msgid "Harassment, trolling, or intolerance" msgstr "骚扰、恶作剧或其他无法容忍的行为" -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:316 msgid "Hashtag" msgstr "标签" @@ -2686,8 +2695,8 @@ msgstr "看起来在加载数据时遇到了问题,请查看下方获取更多 msgid "Hmmmm, we couldn't load that moderation service." msgstr "无法加载此内容审核提供服务。" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:552 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 #: src/view/shell/Drawer.tsx:415 @@ -2926,7 +2935,7 @@ msgstr "选择语言" msgid "Language settings" msgstr "语言设置" -#: src/Navigation.tsx:157 +#: src/Navigation.tsx:158 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "语言设置" @@ -3028,8 +3037,8 @@ msgid "Like this feed" msgstr "喜欢这个资讯源" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:221 -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:222 +#: src/Navigation.tsx:227 msgid "Liked by" msgstr "喜欢" @@ -3055,7 +3064,7 @@ msgstr "喜欢" msgid "Likes on this post" msgstr "这条帖文的喜欢数" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:191 msgid "List" msgstr "列表" @@ -3092,7 +3101,7 @@ msgstr "解除对列表的屏蔽" msgid "List unmuted" msgstr "解除对列表的隐藏" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:128 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 @@ -3117,7 +3126,7 @@ msgstr "加载更多建议的资讯源" msgid "Load more suggested follows" msgstr "加载更多建议关注" -#: src/view/screens/Notifications.tsx:184 +#: src/view/screens/Notifications.tsx:219 msgid "Load new notifications" msgstr "加载新的通知" @@ -3132,7 +3141,7 @@ msgstr "加载新的帖文" msgid "Loading..." msgstr "加载中..." -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Log" msgstr "日志" @@ -3237,7 +3246,7 @@ msgstr "私信过长" msgid "Message settings" msgstr "私信设置" -#: src/Navigation.tsx:541 +#: src/Navigation.tsx:547 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3248,7 +3257,7 @@ msgstr "私信" msgid "Misleading Account" msgstr "误导性账户" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:133 #: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:563 msgid "Moderation" @@ -3286,7 +3295,7 @@ msgstr "内容审核列表已更新" msgid "Moderation lists" msgstr "内容审核列表" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:138 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "内容审核列表" @@ -3295,7 +3304,7 @@ msgstr "内容审核列表" msgid "Moderation settings" msgstr "内容审核设置" -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:237 msgid "Moderation states" msgstr "内容审核状态" @@ -3320,7 +3329,7 @@ msgstr "更多资讯源" msgid "More options" msgstr "更多选项" -#: src/view/screens/PreferencesThreads.tsx:82 +#: src/view/screens/PreferencesThreads.tsx:76 msgid "Most-liked replies first" msgstr "优先显示最多喜欢" @@ -3400,7 +3409,7 @@ msgstr "已隐藏" msgid "Muted accounts" msgstr "已隐藏账户" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:143 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "已隐藏账户" @@ -3530,7 +3539,7 @@ msgid "New post" msgstr "新帖文" #: src/view/screens/Feeds.tsx:581 -#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Notifications.tsx:228 #: src/view/screens/Profile.tsx:478 #: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 @@ -3552,7 +3561,7 @@ msgstr "新的用户信息对话框" msgid "New User List" msgstr "新的用户列表" -#: src/view/screens/PreferencesThreads.tsx:79 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Newest replies first" msgstr "优先显示最新回复" @@ -3582,12 +3591,12 @@ msgstr "下一步" msgid "Next image" msgstr "下一张图片" -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:199 -#: src/view/screens/PreferencesFollowingFeed.tsx:234 -#: src/view/screens/PreferencesFollowingFeed.tsx:271 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:198 +#: src/view/screens/PreferencesFollowingFeed.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:270 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "No" msgstr "停用" @@ -3626,7 +3635,7 @@ msgstr "目前还没有任何私信" msgid "No more conversations to show" msgstr "没有更多对话可显示" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:122 msgid "No notifications yet!" msgstr "还没有通知!" @@ -3696,7 +3705,7 @@ msgstr "未找到用户,尝试搜索点别的。" msgid "Non-sexual Nudity" msgstr "非性暗示裸露" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:123 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "未找到" @@ -3720,6 +3729,19 @@ msgstr "注意:Bluesky 是一个开放的公共网络。这个设置项仅限 msgid "Nothing here" msgstr "这里什么也没有" +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:331 +#: src/view/screens/Notifications.tsx:119 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "" + #: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "通知提示音" @@ -3728,9 +3750,10 @@ msgstr "通知提示音" msgid "Notification Sounds" msgstr "通知提示音" -#: src/Navigation.tsx:536 -#: src/view/screens/Notifications.tsx:132 -#: src/view/screens/Notifications.tsx:169 +#: src/Navigation.tsx:542 +#: src/view/screens/Notifications.tsx:145 +#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:203 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 #: src/view/shell/Drawer.tsx:447 @@ -3776,7 +3799,7 @@ msgstr "好的" msgid "Okay" msgstr "好的" -#: src/view/screens/PreferencesThreads.tsx:78 +#: src/view/screens/PreferencesThreads.tsx:72 msgid "Oldest replies first" msgstr "优先显示最旧的回复" @@ -3820,6 +3843,7 @@ msgstr "糟糕,发生了一些错误!" #: src/components/StarterPack/ProfileStarterPacks.tsx:304 #: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/NotificationsSettings.tsx:45 #: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Oops!" @@ -4089,11 +4113,11 @@ msgstr "暂停" msgid "People" msgstr "用户" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:178 msgid "People followed by @{0}" msgstr "@{0} 关注的用户" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:171 msgid "People following @{0}" msgstr "关注 @{0} 的用户" @@ -4247,9 +4271,9 @@ msgstr "帖文" msgid "Post by {0}" msgstr "{0} 的帖文" -#: src/Navigation.tsx:196 -#: src/Navigation.tsx:203 -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:197 +#: src/Navigation.tsx:204 +#: src/Navigation.tsx:211 msgid "Post by @{0}" msgstr "@{0} 的帖文" @@ -4305,6 +4329,10 @@ msgstr "帖文已隐藏" msgid "Potentially Misleading Link" msgstr "潜在误导性链接" +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "点击以重试连接" @@ -4332,16 +4360,20 @@ msgstr "上一张图片" msgid "Primary Language" msgstr "首选语言" -#: src/view/screens/PreferencesThreads.tsx:97 +#: src/view/screens/PreferencesThreads.tsx:91 msgid "Prioritize Your Follows" msgstr "优先显示关注者" +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "" + #: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "隐私" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:257 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:959 @@ -4421,7 +4453,7 @@ msgstr "小建议" msgid "Quote post" msgstr "引用帖文" -#: src/view/screens/PreferencesThreads.tsx:86 +#: src/view/screens/PreferencesThreads.tsx:80 msgid "Random (aka \"Poster's Roulette\")" msgstr "随机显示 (手气不错)" @@ -4445,6 +4477,10 @@ msgstr "最近的搜索" msgid "Reconnect" msgstr "重新连接" +#: src/view/screens/Notifications.tsx:146 +msgid "Refresh notifications" +msgstr "" + #: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "重新加载对话" @@ -4582,7 +4618,7 @@ msgctxt "action" msgid "Reply" msgstr "回复" -#: src/view/screens/PreferencesFollowingFeed.tsx:143 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 msgid "Reply Filters" msgstr "回复过滤器" @@ -4910,7 +4946,7 @@ msgid "Scroll to top" msgstr "滚动到顶部" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:537 #: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 @@ -5140,23 +5176,23 @@ msgstr "设置生日" msgid "Set new password" msgstr "设置新密码" -#: src/view/screens/PreferencesFollowingFeed.tsx:224 +#: src/view/screens/PreferencesFollowingFeed.tsx:223 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "停用这个设置项将从资讯源中隐藏所有引用帖文,但转发仍将可见。" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:120 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "停用这个设置项将从资讯源中隐藏所有回复。" -#: src/view/screens/PreferencesFollowingFeed.tsx:190 +#: src/view/screens/PreferencesFollowingFeed.tsx:189 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "停用这个设置项将从资讯源中隐藏所有转发。" -#: src/view/screens/PreferencesThreads.tsx:122 +#: src/view/screens/PreferencesThreads.tsx:116 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "启用这个设置项将在分层视图中显示回复。这是一个实验性功能。" -#: src/view/screens/PreferencesFollowingFeed.tsx:260 +#: src/view/screens/PreferencesFollowingFeed.tsx:259 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "启用这个设置项将在\"正在关注\"资讯源中显示已保存资讯源的样例。这是一个实验性功能。" @@ -5204,7 +5240,7 @@ msgstr "将图片纵横比设置为高" msgid "Sets image aspect ratio to wide" msgstr "将图片纵横比设置为宽" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:153 #: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:549 @@ -5288,7 +5324,7 @@ msgstr "分享这个入门包以帮助其他人加入你在 Bluesky 上的社交 msgid "Share your favorite feed!" msgstr "分享你最喜欢的资讯源!" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:242 msgid "Shared Preferences Tester" msgstr "共享首选项测试器" @@ -5349,23 +5385,23 @@ msgstr "更多显示类似这样的" msgid "Show muted replies" msgstr "显示已隐藏的回复" -#: src/view/screens/PreferencesFollowingFeed.tsx:257 +#: src/view/screens/PreferencesFollowingFeed.tsx:256 msgid "Show Posts from My Feeds" msgstr "显示来自已储存资讯源的帖文" -#: src/view/screens/PreferencesFollowingFeed.tsx:221 +#: src/view/screens/PreferencesFollowingFeed.tsx:220 msgid "Show Quote Posts" msgstr "显示引用帖文" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:117 msgid "Show Replies" msgstr "显示回复" -#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:94 msgid "Show replies by people you follow before all other replies." msgstr "将你关注的用户的回复置于其他回复之前。" -#: src/view/screens/PreferencesFollowingFeed.tsx:187 +#: src/view/screens/PreferencesFollowingFeed.tsx:186 msgid "Show Reposts" msgstr "显示转发" @@ -5505,16 +5541,21 @@ msgstr "出了点问题,请重试" msgid "Something went wrong, please try again." msgstr "出了点问题,请重试。" +#: src/components/Lists.tsx:192 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "" + #: src/App.native.tsx:99 #: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "很抱歉,你的登录会话已过期,请重新登录。" -#: src/view/screens/PreferencesThreads.tsx:69 +#: src/view/screens/PreferencesThreads.tsx:63 msgid "Sort Replies" msgstr "回复排序" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:66 msgid "Sort replies to the same post by:" msgstr "对同一帖文的回复进行排序:" @@ -5557,8 +5598,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "开始入门指南吧,若需获取更多选项请点击下一步,或点按跳过。" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:335 -#: src/Navigation.tsx:340 +#: src/Navigation.tsx:341 +#: src/Navigation.tsx:346 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "入门包" @@ -5591,7 +5632,7 @@ msgstr "步骤 {1} 共 {0} 步" msgid "Storage cleared, you need to restart the app now." msgstr "已清除存储,请立即重启应用。" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:232 #: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "Storybook" @@ -5636,7 +5677,7 @@ msgstr "为你推荐" msgid "Suggestive" msgstr "建议" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:252 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5712,7 +5753,7 @@ msgstr "告诉我们更多" msgid "Terms" msgstr "条款" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:262 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 @@ -5855,7 +5896,7 @@ msgstr "连接服务器时出现问题" msgid "There was an issue contacting your server" msgstr "连接服务器时出现问题" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "刷新通知时出现问题,点击重试。" @@ -6090,7 +6131,7 @@ msgstr "这将从你的隐藏词汇中删除 {0}。你随时可以重新添加 msgid "Thread preferences" msgstr "讨论串首选项" -#: src/view/screens/PreferencesThreads.tsx:53 +#: src/view/screens/PreferencesThreads.tsx:51 #: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "讨论串首选项" @@ -6099,11 +6140,11 @@ msgstr "讨论串首选项" msgid "Thread settings updated" msgstr "讨论串首选项已更新" -#: src/view/screens/PreferencesThreads.tsx:119 +#: src/view/screens/PreferencesThreads.tsx:113 msgid "Threaded Mode" msgstr "讨论串模式" -#: src/Navigation.tsx:294 +#: src/Navigation.tsx:295 msgid "Threads Preferences" msgstr "讨论串首选项" @@ -6770,12 +6811,12 @@ msgid "Writers" msgstr "作家" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:200 -#: src/view/screens/PreferencesFollowingFeed.tsx:235 -#: src/view/screens/PreferencesFollowingFeed.tsx:270 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:199 +#: src/view/screens/PreferencesFollowingFeed.tsx:234 +#: src/view/screens/PreferencesFollowingFeed.tsx:269 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "Yes" msgstr "启用" diff --git a/src/locale/locales/zh-TW/messages.po b/src/locale/locales/zh-TW/messages.po index 0222ad6bfe..de42c5dd5a 100644 --- a/src/locale/locales/zh-TW/messages.po +++ b/src/locale/locales/zh-TW/messages.po @@ -84,7 +84,7 @@ msgstr "本週加入了 {0} 人" msgid "{0} people have used this starter pack!" msgstr "{0} 人已使用此入門包!" -#: src/view/com/util/UserAvatar.tsx:419 +#: src/view/com/util/UserAvatar.tsx:431 msgid "{0}'s avatar" msgstr "「{0}」的頭像" @@ -141,9 +141,9 @@ msgstr "{following} 個跟隨中" msgid "{handle} can't be messaged" msgstr "無法傳送訊息給 {handle}" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:285 -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:298 -#: src/view/screens/ProfileFeed.tsx:588 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 +#: src/view/screens/ProfileFeed.tsx:590 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {# 個用戶表示喜歡} other {# 個用戶表示喜歡}}" @@ -163,7 +163,7 @@ msgstr "「{profileName}」在 {0} 前使用入門包加入了 Bluesky" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "{value, plural, =0 {顯示所有回覆} one {顯示至少 # 個喜歡的回覆} other {顯示至少 # 個喜歡的回覆}}" -#: src/components/WhoCanReply.tsx:295 +#: src/components/WhoCanReply.tsx:296 msgid "<0/> members" msgstr "<0/> 個成員" @@ -231,7 +231,7 @@ msgstr "無障礙" msgid "Accessibility settings" msgstr "無障礙設定" -#: src/Navigation.tsx:308 +#: src/Navigation.tsx:309 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "無障礙設定" @@ -285,7 +285,7 @@ msgid "Account unmuted" msgstr "已取消靜音帳號" #: src/components/dialogs/MutedWords.tsx:164 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/UserAddRemoveLists.tsx:230 #: src/view/screens/ProfileList.tsx:881 msgid "Add" @@ -366,7 +366,7 @@ msgstr "新增至列表" msgid "Add to my feeds" msgstr "加入到我的動態源" -#: src/view/com/modals/ListAddRemoveUsers.tsx:191 +#: src/view/com/modals/ListAddRemoveUsers.tsx:192 #: src/view/com/modals/UserAddRemoveLists.tsx:157 msgid "Added to list" msgstr "新增至列表" @@ -375,7 +375,7 @@ msgstr "新增至列表" msgid "Added to my feeds" msgstr "加入到我的動態源" -#: src/view/screens/PreferencesFollowingFeed.tsx:172 +#: src/view/screens/PreferencesFollowingFeed.tsx:171 msgid "Adjust the number of likes a reply must have to be shown in your feed." msgstr "調整回覆貼文在您的動態中顯示所需的最低喜歡數量。" @@ -409,8 +409,8 @@ msgstr "已跟隨所有帳號!" msgid "All the feeds you've saved, right in one place." msgstr "以下是您儲存的動態源。" -#: src/view/com/modals/AddAppPasswords.tsx:187 -#: src/view/com/modals/AddAppPasswords.tsx:194 +#: src/view/com/modals/AddAppPasswords.tsx:188 +#: src/view/com/modals/AddAppPasswords.tsx:195 msgid "Allow access to your direct messages" msgstr "允許存取您的私人訊息" @@ -465,8 +465,8 @@ msgstr "發生錯誤" msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "建立您的入門包時發生錯誤。是否要重試?" -#: src/components/StarterPack/QrCodeDialog.tsx:70 -#: src/components/StarterPack/ShareDialog.tsx:78 +#: src/components/StarterPack/QrCodeDialog.tsx:71 +#: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the QR code!" msgstr "儲存 QR Code 時發生錯誤!" @@ -478,6 +478,14 @@ msgstr "跟隨所有帳號時發生錯誤" msgid "An issue not included in these options" msgstr "問題不在上述選項" +#: src/components/dms/dialogs/NewChatDialog.tsx:36 +msgid "An issue occurred starting the chat" +msgstr "" + +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:49 +msgid "An issue occurred while trying to open the chat" +msgstr "" + #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 #: src/components/ProfileCard.tsx:311 @@ -493,7 +501,7 @@ msgstr "出現問題,請再試一次。" msgid "an unknown error occurred" msgstr "出現未知錯誤" -#: src/components/WhoCanReply.tsx:316 +#: src/components/WhoCanReply.tsx:317 #: src/view/com/notifications/FeedItem.tsx:294 msgid "and" msgstr "和" @@ -531,7 +539,7 @@ msgstr "應用程式專用密碼名稱必須至少有 4 個字元。" msgid "App password settings" msgstr "應用程式專用密碼設定" -#: src/Navigation.tsx:276 +#: src/Navigation.tsx:277 #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:708 msgid "App Passwords" @@ -688,7 +696,7 @@ msgstr "已被封鎖" msgid "Blocked accounts" msgstr "已封鎖帳號" -#: src/Navigation.tsx:147 +#: src/Navigation.tsx:148 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "已封鎖帳號" @@ -806,7 +814,7 @@ msgstr "來自您" msgid "Camera" msgstr "相機" -#: src/view/com/modals/AddAppPasswords.tsx:179 +#: src/view/com/modals/AddAppPasswords.tsx:180 msgid "Can only contain letters, numbers, spaces, dashes, and underscores. Must be at least 4 characters long, but no more than 32 characters long." msgstr "只能包含字母、數字、空格、破折號及底線。長度必須至少有 4 個字元,但不超過 32 個字元。" @@ -870,7 +878,7 @@ msgstr "取消引用貼文" msgid "Cancel reactivation and log out" msgstr "取消重新啟用並登出" -#: src/view/com/modals/ListAddRemoveUsers.tsx:87 +#: src/view/com/modals/ListAddRemoveUsers.tsx:88 #: src/view/shell/desktop/Search.tsx:215 msgid "Cancel search" msgstr "取消搜尋" @@ -918,7 +926,7 @@ msgstr "變更貼文的發佈語言為 {0}" msgid "Change Your Email" msgstr "變更您的電子郵件地址" -#: src/Navigation.tsx:320 +#: src/Navigation.tsx:321 #: src/view/shell/bottom-bar/BottomBar.tsx:204 #: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" @@ -930,7 +938,7 @@ msgstr "對話已靜音" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:326 #: src/screens/Messages/List/index.tsx:88 #: src/view/screens/Settings/index.tsx:640 msgid "Chat settings" @@ -1146,7 +1154,7 @@ msgstr "喜劇" msgid "Comics" msgstr "漫畫" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:267 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "社群守則" @@ -1180,8 +1188,6 @@ msgstr "已在<0>內容管理設定中配置。" #: src/view/com/modals/SelfLabel.tsx:155 #: src/view/com/modals/VerifyEmail.tsx:239 #: src/view/com/modals/VerifyEmail.tsx:241 -#: src/view/screens/PreferencesFollowingFeed.tsx:307 -#: src/view/screens/PreferencesThreads.tsx:159 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:180 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:183 msgid "Confirm" @@ -1286,7 +1292,7 @@ msgstr "對話已刪除" msgid "Cooking" msgstr "烹飪" -#: src/view/com/modals/AddAppPasswords.tsx:220 +#: src/view/com/modals/AddAppPasswords.tsx:221 #: src/view/com/modals/InviteCodes.tsx:183 msgid "Copied" msgstr "已複製" @@ -1299,7 +1305,7 @@ msgstr "已複製建構版本號至剪貼簿" #: src/view/com/modals/AddAppPasswords.tsx:80 #: src/view/com/modals/ChangeHandle.tsx:320 #: src/view/com/modals/InviteCodes.tsx:153 -#: src/view/com/util/forms/PostDropdownBtn.tsx:189 +#: src/view/com/util/forms/PostDropdownBtn.tsx:192 #: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "已複製至剪貼簿" @@ -1308,12 +1314,12 @@ msgstr "已複製至剪貼簿" msgid "Copied!" msgstr "已複製!" -#: src/view/com/modals/AddAppPasswords.tsx:214 +#: src/view/com/modals/AddAppPasswords.tsx:215 msgid "Copies app password" msgstr "複製應用程式專用密碼" -#: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/view/com/modals/AddAppPasswords.tsx:213 +#: src/components/StarterPack/QrCodeDialog.tsx:177 +#: src/view/com/modals/AddAppPasswords.tsx:214 msgid "Copy" msgstr "複製" @@ -1326,11 +1332,11 @@ msgstr "複製{0}" msgid "Copy code" msgstr "複製程式碼" -#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:124 msgid "Copy link" msgstr "複製連結" -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:131 msgid "Copy Link" msgstr "複製連結" @@ -1338,8 +1344,8 @@ msgstr "複製連結" msgid "Copy link to list" msgstr "複製列表連結" -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 msgid "Copy link to post" msgstr "複製貼文連結" @@ -1348,16 +1354,16 @@ msgstr "複製貼文連結" msgid "Copy message text" msgstr "複製訊息文字" -#: src/view/com/util/forms/PostDropdownBtn.tsx:285 -#: src/view/com/util/forms/PostDropdownBtn.tsx:287 +#: src/view/com/util/forms/PostDropdownBtn.tsx:288 +#: src/view/com/util/forms/PostDropdownBtn.tsx:290 msgid "Copy post text" msgstr "複製貼文文字" -#: src/components/StarterPack/QrCodeDialog.tsx:168 +#: src/components/StarterPack/QrCodeDialog.tsx:171 msgid "Copy QR code" msgstr "複製 QR Code" -#: src/Navigation.tsx:271 +#: src/Navigation.tsx:272 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "著作權政策" @@ -1395,13 +1401,13 @@ msgstr "建立新帳號" msgid "Create a new Bluesky account" msgstr "建立新的 Bluesky 帳號" -#: src/components/StarterPack/QrCodeDialog.tsx:151 +#: src/components/StarterPack/QrCodeDialog.tsx:154 msgid "Create a QR code for a starter pack" msgstr "為入門包建立 QR Code" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:345 +#: src/Navigation.tsx:351 msgid "Create a starter pack" msgstr "選擇一個入門包" @@ -1426,7 +1432,7 @@ msgstr "或是建立一個頭像" msgid "Create another" msgstr "建立另外一個" -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 msgid "Create App Password" msgstr "建立應用程式專用密碼" @@ -1504,7 +1510,7 @@ msgstr "偵錯面板" #: src/screens/StarterPack/StarterPackScreen.tsx:562 #: src/screens/StarterPack/StarterPackScreen.tsx:641 #: src/screens/StarterPack/StarterPackScreen.tsx:721 -#: src/view/com/util/forms/PostDropdownBtn.tsx:433 +#: src/view/com/util/forms/PostDropdownBtn.tsx:436 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" @@ -1555,8 +1561,8 @@ msgstr "刪除我的帳號" msgid "Delete My Account…" msgstr "刪除我的帳號…" -#: src/view/com/util/forms/PostDropdownBtn.tsx:414 -#: src/view/com/util/forms/PostDropdownBtn.tsx:416 +#: src/view/com/util/forms/PostDropdownBtn.tsx:417 +#: src/view/com/util/forms/PostDropdownBtn.tsx:419 msgid "Delete post" msgstr "刪除貼文" @@ -1573,7 +1579,7 @@ msgstr "刪除入門包?" msgid "Delete this list?" msgstr "刪除此列表?" -#: src/view/com/util/forms/PostDropdownBtn.tsx:428 +#: src/view/com/util/forms/PostDropdownBtn.tsx:431 msgid "Delete this post?" msgstr "刪除這條貼文?" @@ -1708,22 +1714,20 @@ msgstr "網域已驗證!" #: src/screens/Onboarding/StepProfile/index.tsx:325 #: src/view/com/auth/server-input/index.tsx:169 #: src/view/com/auth/server-input/index.tsx:170 -#: src/view/com/modals/AddAppPasswords.tsx:242 +#: src/view/com/modals/AddAppPasswords.tsx:243 #: src/view/com/modals/AltImage.tsx:141 #: src/view/com/modals/crop-image/CropImage.web.tsx:177 #: src/view/com/modals/InviteCodes.tsx:81 #: src/view/com/modals/InviteCodes.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:142 -#: src/view/screens/PreferencesFollowingFeed.tsx:310 +#: src/view/com/modals/ListAddRemoveUsers.tsx:143 msgid "Done" msgstr "完成" #: src/view/com/modals/EditImage.tsx:334 -#: src/view/com/modals/ListAddRemoveUsers.tsx:144 +#: src/view/com/modals/ListAddRemoveUsers.tsx:145 #: src/view/com/modals/SelfLabel.tsx:158 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 -#: src/view/screens/PreferencesThreads.tsx:162 msgctxt "action" msgid "Done" msgstr "完成" @@ -1798,7 +1802,7 @@ msgctxt "action" msgid "Edit" msgstr "編輯" -#: src/view/com/util/UserAvatar.tsx:325 +#: src/view/com/util/UserAvatar.tsx:337 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" msgstr "編輯頭像" @@ -1820,7 +1824,7 @@ msgstr "編輯列表詳情" msgid "Edit Moderation List" msgstr "編輯內容管理列表" -#: src/Navigation.tsx:281 +#: src/Navigation.tsx:282 #: src/view/screens/Feeds.tsx:384 #: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 @@ -1835,12 +1839,12 @@ msgstr "編輯我的個人檔案" msgid "Edit People" msgstr "編輯人物" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:183 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:184 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 msgid "Edit profile" msgstr "編輯個人檔案" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:186 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:187 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:182 msgid "Edit Profile" msgstr "編輯個人檔案" @@ -1853,7 +1857,7 @@ msgstr "編輯入門包" msgid "Edit User List" msgstr "編輯用戶列表" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Edit who can reply" msgstr "編輯「誰可以回覆」" @@ -1865,7 +1869,7 @@ msgstr "編輯您的顯示名稱" msgid "Edit your profile description" msgstr "編輯您的帳號描述" -#: src/Navigation.tsx:350 +#: src/Navigation.tsx:356 msgid "Edit your starter pack" msgstr "編輯您的入門包" @@ -1913,8 +1917,8 @@ msgid "Embed HTML code" msgstr "嵌入 HTML 程式碼" #: src/components/dialogs/Embed.tsx:97 -#: src/view/com/util/forms/PostDropdownBtn.tsx:324 -#: src/view/com/util/forms/PostDropdownBtn.tsx:326 +#: src/view/com/util/forms/PostDropdownBtn.tsx:327 +#: src/view/com/util/forms/PostDropdownBtn.tsx:329 msgid "Embed post" msgstr "嵌入貼文" @@ -1935,11 +1939,16 @@ msgstr "顯示成人內容" msgid "Enable external media" msgstr "啟用外部媒體" -#: src/view/screens/PreferencesExternalEmbeds.tsx:76 +#: src/view/screens/PreferencesExternalEmbeds.tsx:73 msgid "Enable media players for" msgstr "啟用媒體播放器" -#: src/view/screens/PreferencesFollowingFeed.tsx:146 +#: src/view/screens/NotificationsSettings.tsx:65 +#: src/view/screens/NotificationsSettings.tsx:68 +msgid "Enable priority notifications" +msgstr "" + +#: src/view/screens/PreferencesFollowingFeed.tsx:145 msgid "Enable this setting to only see replies between people you follow." msgstr "啟用此設定將只顯示您跟隨的人之間的回覆。" @@ -1961,7 +1970,7 @@ msgstr "已經到底部啦!" msgid "End of onboarding tour window. Do not move forward. Instead, go backward for more options, or press to skip." msgstr "入門指南已結束,沒有進一步的選項。若仍需取得更多選項請返回上一步,或點擊跳過。" -#: src/view/com/modals/AddAppPasswords.tsx:160 +#: src/view/com/modals/AddAppPasswords.tsx:161 msgid "Enter a name for this App Password" msgstr "輸入此應用程式專用密碼的名稱" @@ -2029,7 +2038,7 @@ msgid "Everybody" msgstr "所有人" #: src/components/WhoCanReply.tsx:69 -#: src/components/WhoCanReply.tsx:240 +#: src/components/WhoCanReply.tsx:241 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "所有人都可以回覆" @@ -2065,7 +2074,7 @@ msgstr "離開圖片裁剪流程" msgid "Exits image view" msgstr "離開圖片檢視器" -#: src/view/com/modals/ListAddRemoveUsers.tsx:88 +#: src/view/com/modals/ListAddRemoveUsers.tsx:89 #: src/view/shell/desktop/Search.tsx:216 msgid "Exits inputting search query" msgstr "退出輸入搜索查詢" @@ -2083,6 +2092,10 @@ msgstr "展開用戶清單" msgid "Expand or collapse the full post you are replying to" msgstr "展開或摺疊您正在回覆的完整貼文" +#: src/view/screens/NotificationsSettings.tsx:83 +msgid "Experimental: When this preference is enabled, you'll only receive reply and quote notifications from users you follow. We'll continue to add more controls here over time." +msgstr "" + #: src/lib/moderation/useGlobalLabelStrings.ts:47 msgid "Explicit or potentially disturbing media." msgstr "露骨或可能令人不安的媒體內容。" @@ -2106,11 +2119,11 @@ msgid "External Media" msgstr "外部媒體" #: src/components/dialogs/EmbedConsent.tsx:71 -#: src/view/screens/PreferencesExternalEmbeds.tsx:67 +#: src/view/screens/PreferencesExternalEmbeds.tsx:64 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:300 +#: src/Navigation.tsx:301 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 #: src/view/screens/Settings/index.tsx:681 msgid "External Media Preferences" @@ -2169,10 +2182,14 @@ msgstr "無法載入建議的動態源" msgid "Failed to load suggested follows" msgstr "無法載入建議的跟隨者" -#: src/view/com/lightbox/Lightbox.tsx:86 +#: src/view/com/lightbox/Lightbox.tsx:90 msgid "Failed to save image: {0}" msgstr "無法儲存圖片:{0}" +#: src/state/queries/notifications/settings.ts:39 +msgid "Failed to save notification preferences, please try again" +msgstr "" + #: src/components/dms/MessageItem.tsx:224 msgid "Failed to send" msgstr "無法傳送" @@ -2182,7 +2199,7 @@ msgstr "無法傳送" msgid "Failed to submit appeal, please try again." msgstr "無法提交申訴,請再試一次。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:180 +#: src/view/com/util/forms/PostDropdownBtn.tsx:181 msgid "Failed to toggle thread mute, please try again" msgstr "無法將討論串設為靜音,請再試一次" @@ -2195,7 +2212,7 @@ msgstr "無法更新動態" msgid "Failed to update settings" msgstr "無法更新設定" -#: src/Navigation.tsx:216 +#: src/Navigation.tsx:217 msgid "Feed" msgstr "動態" @@ -2213,7 +2230,7 @@ msgstr "切換動態源" msgid "Feedback" msgstr "意見回饋" -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:336 #: src/screens/StarterPack/StarterPackScreen.tsx:171 #: src/view/screens/Feeds.tsx:446 #: src/view/screens/Feeds.tsx:551 @@ -2263,11 +2280,11 @@ msgstr "在探索頁面中尋找更多想要跟隨的動態源和帳號。" msgid "Find posts and users on Bluesky" msgstr "在 Bluesky 上尋找貼文和用戶" -#: src/view/screens/PreferencesFollowingFeed.tsx:110 +#: src/view/screens/PreferencesFollowingFeed.tsx:108 msgid "Fine-tune the content you see on your Following feed." msgstr "調整您在「Following」動態源中所看到的內容。" -#: src/view/screens/PreferencesThreads.tsx:60 +#: src/view/screens/PreferencesThreads.tsx:54 msgid "Fine-tune the discussion threads." msgstr "微調討論串。" @@ -2362,7 +2379,7 @@ msgstr "已被您跟隨的 <0>{0}, <1>{1} 和{2, plural, one {其他 # msgid "Followed users" msgstr "您跟隨的用戶" -#: src/view/screens/PreferencesFollowingFeed.tsx:153 +#: src/view/screens/PreferencesFollowingFeed.tsx:152 msgid "Followed users only" msgstr "僅限已跟隨的用戶" @@ -2379,7 +2396,7 @@ msgstr "已回跟您" msgid "Followers" msgstr "跟隨者" -#: src/Navigation.tsx:184 +#: src/Navigation.tsx:185 msgid "Followers of @{0} that you know" msgstr "您所認識的這些人也跟隨了 @{0}" @@ -2414,8 +2431,8 @@ msgstr "已跟隨 {name}" msgid "Following feed preferences" msgstr "「Following」動態源偏好" -#: src/Navigation.tsx:287 -#: src/view/screens/PreferencesFollowingFeed.tsx:103 +#: src/Navigation.tsx:288 +#: src/view/screens/PreferencesFollowingFeed.tsx:105 #: src/view/screens/Settings/index.tsx:584 msgid "Following Feed Preferences" msgstr "「Following」動態源偏好" @@ -2441,7 +2458,7 @@ msgstr "食物" msgid "For security reasons, we'll need to send a confirmation code to your email address." msgstr "為了保護您的帳號安全,我們需要將驗證碼發送到您的電子郵件地址。" -#: src/view/com/modals/AddAppPasswords.tsx:232 +#: src/view/com/modals/AddAppPasswords.tsx:233 msgid "For security reasons, you won't be able to view this again. If you lose this password, you'll need to generate a new one." msgstr "為了保護您的帳號安全,您將無法再次查看此內容。如果您丟失了此密碼,您將需要再產生一個新的密碼。" @@ -2591,7 +2608,7 @@ msgstr "觸覺" msgid "Harassment, trolling, or intolerance" msgstr "騷擾、惡作劇或其他無法容忍的行為" -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:316 msgid "Hashtag" msgstr "標籤" @@ -2612,7 +2629,7 @@ msgstr "幫助" msgid "Help people know you're not a bot by uploading a picture or creating an avatar." msgstr "透過上傳圖片或建立頭像來幫助人們知道您不是機器人。" -#: src/view/com/modals/AddAppPasswords.tsx:203 +#: src/view/com/modals/AddAppPasswords.tsx:204 msgid "Here is your app password." msgstr "這是您的應用程式專用密碼。" @@ -2623,7 +2640,7 @@ msgstr "這是您的應用程式專用密碼。" #: src/lib/moderation/useLabelBehaviorDescription.ts:20 #: src/lib/moderation/useLabelBehaviorDescription.ts:25 #: src/lib/moderation/useLabelBehaviorDescription.ts:30 -#: src/view/com/util/forms/PostDropdownBtn.tsx:442 +#: src/view/com/util/forms/PostDropdownBtn.tsx:445 msgid "Hide" msgstr "隱藏" @@ -2632,8 +2649,8 @@ msgctxt "action" msgid "Hide" msgstr "隱藏" -#: src/view/com/util/forms/PostDropdownBtn.tsx:387 -#: src/view/com/util/forms/PostDropdownBtn.tsx:389 +#: src/view/com/util/forms/PostDropdownBtn.tsx:390 +#: src/view/com/util/forms/PostDropdownBtn.tsx:392 msgid "Hide post" msgstr "隱藏貼文" @@ -2642,7 +2659,7 @@ msgstr "隱藏貼文" msgid "Hide the content" msgstr "隱藏內容" -#: src/view/com/util/forms/PostDropdownBtn.tsx:439 +#: src/view/com/util/forms/PostDropdownBtn.tsx:442 msgid "Hide this post?" msgstr "隱藏這則貼文?" @@ -2678,8 +2695,8 @@ msgstr "抱歉,看起來我們在載入這些資料時遇到了問題,請參 msgid "Hmmmm, we couldn't load that moderation service." msgstr "抱歉,我們無法載入該內容管理服務。" -#: src/Navigation.tsx:526 -#: src/Navigation.tsx:546 +#: src/Navigation.tsx:532 +#: src/Navigation.tsx:552 #: src/view/shell/bottom-bar/BottomBar.tsx:160 #: src/view/shell/desktop/LeftNav.tsx:342 #: src/view/shell/Drawer.tsx:415 @@ -2737,7 +2754,7 @@ msgstr "如果根據您所在國家的法律,您尚未成年,則您的父母 msgid "If you delete this list, you won't be able to recover it." msgstr "如果刪除這個列表,您將無法恢復它。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:430 +#: src/view/com/util/forms/PostDropdownBtn.tsx:433 msgid "If you remove this post, you won't be able to recover it." msgstr "如果刪除這則貼文,您將無法恢復它。" @@ -2761,7 +2778,7 @@ msgstr "圖片" msgid "Image alt text" msgstr "圖片替代文字" -#: src/components/StarterPack/ShareDialog.tsx:75 +#: src/components/StarterPack/ShareDialog.tsx:76 msgid "Image saved to your camera roll!" msgstr "圖片已儲存至您的圖片庫!" @@ -2781,7 +2798,7 @@ msgstr "輸入發送到您電子郵件地址的重設碼以重設密碼" msgid "Input confirmation code for account deletion" msgstr "輸入刪除帳號的驗證碼" -#: src/view/com/modals/AddAppPasswords.tsx:174 +#: src/view/com/modals/AddAppPasswords.tsx:175 msgid "Input name for app password" msgstr "輸入應用程式專用密碼名稱" @@ -2850,7 +2867,7 @@ msgstr "邀請碼:{0} 個可用" msgid "Invite codes: 1 available" msgstr "邀請碼:1 個可用" -#: src/components/StarterPack/ShareDialog.tsx:96 +#: src/components/StarterPack/ShareDialog.tsx:97 msgid "Invite people to this starter pack!" msgstr "用這個入門包來邀請他人!" @@ -2918,7 +2935,7 @@ msgstr "語言選擇" msgid "Language settings" msgstr "語言設定" -#: src/Navigation.tsx:157 +#: src/Navigation.tsx:158 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "語言設定" @@ -3014,14 +3031,14 @@ msgstr "喜歡 10 個貼文" msgid "Like 10 posts to train the Discover feed" msgstr "喜歡 10 個貼文以訓練「Discover」動態源" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:266 -#: src/view/screens/ProfileFeed.tsx:573 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Like this feed" msgstr "對這個動態源表示喜歡" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:221 -#: src/Navigation.tsx:226 +#: src/Navigation.tsx:222 +#: src/Navigation.tsx:227 msgid "Liked by" msgstr "表示喜歡的用戶" @@ -3047,7 +3064,7 @@ msgstr "喜歡" msgid "Likes on this post" msgstr "這條貼文的喜歡數" -#: src/Navigation.tsx:190 +#: src/Navigation.tsx:191 msgid "List" msgstr "列表" @@ -3084,7 +3101,7 @@ msgstr "已解除封鎖的列表" msgid "List unmuted" msgstr "已解除靜音的列表" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:128 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 #: src/view/shell/desktop/LeftNav.tsx:385 @@ -3109,13 +3126,13 @@ msgstr "載入更多推薦動態" msgid "Load more suggested follows" msgstr "載入更多推薦跟隨者" -#: src/view/screens/Notifications.tsx:184 +#: src/view/screens/Notifications.tsx:219 msgid "Load new notifications" msgstr "載入新的通知" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:494 +#: src/view/screens/ProfileFeed.tsx:495 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "載入新的貼文" @@ -3124,7 +3141,7 @@ msgstr "載入新的貼文" msgid "Loading..." msgstr "載入中…" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:247 msgid "Log" msgstr "日誌" @@ -3190,7 +3207,7 @@ msgstr "標記為已讀" msgid "Media" msgstr "媒體" -#: src/components/WhoCanReply.tsx:275 +#: src/components/WhoCanReply.tsx:276 msgid "mentioned users" msgstr "被提及的用戶" @@ -3212,7 +3229,7 @@ msgstr "給 {0} 傳送訊息" msgid "Message deleted" msgstr "訊息已刪除" -#: src/view/com/posts/FeedErrorMessage.tsx:200 +#: src/view/com/posts/FeedErrorMessage.tsx:201 msgid "Message from server: {0}" msgstr "來自伺服器的訊息:{0}" @@ -3229,7 +3246,7 @@ msgstr "訊息太長了" msgid "Message settings" msgstr "訊息設定" -#: src/Navigation.tsx:541 +#: src/Navigation.tsx:547 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3240,7 +3257,7 @@ msgstr "訊息" msgid "Misleading Account" msgstr "誤導性帳號" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:133 #: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:563 msgid "Moderation" @@ -3278,7 +3295,7 @@ msgstr "內容管理列表已更新" msgid "Moderation lists" msgstr "內容管理列表" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:138 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "內容管理列表" @@ -3287,7 +3304,7 @@ msgstr "內容管理列表" msgid "Moderation settings" msgstr "內容管理設定" -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:237 msgid "Moderation states" msgstr "內容管理狀態" @@ -3312,7 +3329,7 @@ msgstr "更多動態源" msgid "More options" msgstr "更多選項" -#: src/view/screens/PreferencesThreads.tsx:82 +#: src/view/screens/PreferencesThreads.tsx:76 msgid "Most-liked replies first" msgstr "最多喜歡數優先" @@ -3374,13 +3391,13 @@ msgstr "在貼文內容和話題標籤中隱藏該文字" msgid "Mute this word in tags only" msgstr "僅在話題標籤中隱藏該文字" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:368 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:371 msgid "Mute thread" msgstr "靜音討論串" -#: src/view/com/util/forms/PostDropdownBtn.tsx:378 -#: src/view/com/util/forms/PostDropdownBtn.tsx:380 +#: src/view/com/util/forms/PostDropdownBtn.tsx:381 +#: src/view/com/util/forms/PostDropdownBtn.tsx:383 msgid "Mute words & tags" msgstr "靜音文字和標籤" @@ -3392,7 +3409,7 @@ msgstr "已靜音" msgid "Muted accounts" msgstr "已靜音帳號" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:143 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "已靜音帳號" @@ -3434,7 +3451,7 @@ msgstr "儲存的動態源" msgid "My Saved Feeds" msgstr "儲存的動態源" -#: src/view/com/modals/AddAppPasswords.tsx:173 +#: src/view/com/modals/AddAppPasswords.tsx:174 #: src/view/com/modals/CreateOrEditList.tsx:279 msgid "Name" msgstr "名稱" @@ -3494,7 +3511,7 @@ msgstr "新增" msgid "New" msgstr "新增" -#: src/components/dms/dialogs/NewChatDialog.tsx:52 +#: src/components/dms/dialogs/NewChatDialog.tsx:54 #: src/screens/Messages/List/index.tsx:331 #: src/screens/Messages/List/index.tsx:338 msgid "New chat" @@ -3522,9 +3539,9 @@ msgid "New post" msgstr "新貼文" #: src/view/screens/Feeds.tsx:581 -#: src/view/screens/Notifications.tsx:193 +#: src/view/screens/Notifications.tsx:228 #: src/view/screens/Profile.tsx:478 -#: src/view/screens/ProfileFeed.tsx:428 +#: src/view/screens/ProfileFeed.tsx:429 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:278 @@ -3544,7 +3561,7 @@ msgstr "新用戶資訊對話框" msgid "New User List" msgstr "新的用戶列表" -#: src/view/screens/PreferencesThreads.tsx:79 +#: src/view/screens/PreferencesThreads.tsx:73 msgid "Newest replies first" msgstr "最新回覆優先" @@ -3574,16 +3591,16 @@ msgstr "下一個" msgid "Next image" msgstr "下一張圖片" -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:199 -#: src/view/screens/PreferencesFollowingFeed.tsx:234 -#: src/view/screens/PreferencesFollowingFeed.tsx:271 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:198 +#: src/view/screens/PreferencesFollowingFeed.tsx:233 +#: src/view/screens/PreferencesFollowingFeed.tsx:270 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "No" msgstr "關" -#: src/view/screens/ProfileFeed.tsx:562 +#: src/view/screens/ProfileFeed.tsx:564 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "沒有描述" @@ -3618,7 +3635,7 @@ msgstr "還沒有訊息" msgid "No more conversations to show" msgstr "已經沒有對話啦!" -#: src/view/com/notifications/Feed.tsx:117 +#: src/view/com/notifications/Feed.tsx:122 msgid "No notifications yet!" msgstr "還沒有通知!" @@ -3650,7 +3667,7 @@ msgstr "未找到結果" msgid "No results found for \"{query}\"" msgstr "未找到符合「{query}」的結果" -#: src/view/com/modals/ListAddRemoveUsers.tsx:127 +#: src/view/com/modals/ListAddRemoveUsers.tsx:128 #: src/view/screens/Search/Search.tsx:233 #: src/view/screens/Search/Search.tsx:272 #: src/view/screens/Search/Search.tsx:318 @@ -3688,7 +3705,7 @@ msgstr "沒有找到任何人。請嘗試以其他關鍵字搜尋。" msgid "Non-sexual Nudity" msgstr "非色情裸露" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:123 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "未找到" @@ -3699,7 +3716,7 @@ msgid "Not right now" msgstr "暫時不需要" #: src/view/com/profile/ProfileMenu.tsx:372 -#: src/view/com/util/forms/PostDropdownBtn.tsx:456 +#: src/view/com/util/forms/PostDropdownBtn.tsx:459 #: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "關於分享的注意事項" @@ -3712,6 +3729,19 @@ msgstr "注意:Bluesky 是一個開放且公開的網路。此設定僅限制 msgid "Nothing here" msgstr "這裡什麼也沒有" +#: src/view/screens/NotificationsSettings.tsx:54 +msgid "Notification filters" +msgstr "" + +#: src/Navigation.tsx:331 +#: src/view/screens/Notifications.tsx:119 +msgid "Notification settings" +msgstr "" + +#: src/view/screens/NotificationsSettings.tsx:39 +msgid "Notification Settings" +msgstr "" + #: src/screens/Messages/Settings.tsx:124 msgid "Notification sounds" msgstr "通知音效" @@ -3720,9 +3750,10 @@ msgstr "通知音效" msgid "Notification Sounds" msgstr "通知音效" -#: src/Navigation.tsx:536 -#: src/view/screens/Notifications.tsx:132 -#: src/view/screens/Notifications.tsx:169 +#: src/Navigation.tsx:542 +#: src/view/screens/Notifications.tsx:145 +#: src/view/screens/Notifications.tsx:155 +#: src/view/screens/Notifications.tsx:203 #: src/view/shell/bottom-bar/BottomBar.tsx:230 #: src/view/shell/desktop/LeftNav.tsx:362 #: src/view/shell/Drawer.tsx:447 @@ -3760,7 +3791,7 @@ msgstr "糟糕!" msgid "Oh no! Something went wrong." msgstr "糟糕!發生了一些錯誤。" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:338 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:339 msgid "OK" msgstr "好的" @@ -3768,7 +3799,7 @@ msgstr "好的" msgid "Okay" msgstr "好的" -#: src/view/screens/PreferencesThreads.tsx:78 +#: src/view/screens/PreferencesThreads.tsx:72 msgid "Oldest replies first" msgstr "最舊的回覆優先" @@ -3796,7 +3827,7 @@ msgstr "至少有一張圖片缺失了替代文字。" msgid "Only .jpg and .png files are supported" msgstr "僅支援 .jpg 或 .png 格式的圖片" -#: src/components/WhoCanReply.tsx:244 +#: src/components/WhoCanReply.tsx:245 msgid "Only {0} can reply" msgstr "只有{0}可以回覆" @@ -3812,6 +3843,7 @@ msgstr "糟糕,發生了錯誤!" #: src/components/StarterPack/ProfileStarterPacks.tsx:304 #: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 +#: src/view/screens/NotificationsSettings.tsx:45 #: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "糟糕!" @@ -3838,7 +3870,7 @@ msgstr "開啟對話選項" msgid "Open emoji picker" msgstr "開啟表情符號選擇器" -#: src/view/screens/ProfileFeed.tsx:296 +#: src/view/screens/ProfileFeed.tsx:297 msgid "Open feed options menu" msgstr "開啟動態選項選單" @@ -3858,7 +3890,7 @@ msgstr "開啟靜音文字和標籤設定" msgid "Open navigation" msgstr "開啟導覽" -#: src/view/com/util/forms/PostDropdownBtn.tsx:247 +#: src/view/com/util/forms/PostDropdownBtn.tsx:250 msgid "Open post options menu" msgstr "開啟貼文選項選單" @@ -3999,7 +4031,7 @@ msgid "Opens the threads preferences" msgstr "開啟討論串偏好" #: src/view/com/notifications/FeedItem.tsx:527 -#: src/view/com/util/UserAvatar.tsx:422 +#: src/view/com/util/UserAvatar.tsx:434 msgid "Opens this profile" msgstr "開啟這個個人檔案" @@ -4081,19 +4113,19 @@ msgstr "暫停" msgid "People" msgstr "用戶" -#: src/Navigation.tsx:177 +#: src/Navigation.tsx:178 msgid "People followed by @{0}" msgstr "被 @{0} 跟隨的人" -#: src/Navigation.tsx:170 +#: src/Navigation.tsx:171 msgid "People following @{0}" msgstr "跟隨 @{0} 的人" -#: src/view/com/lightbox/Lightbox.tsx:69 +#: src/view/com/lightbox/Lightbox.tsx:70 msgid "Permission to access camera roll is required." msgstr "需要相簿權限。" -#: src/view/com/lightbox/Lightbox.tsx:75 +#: src/view/com/lightbox/Lightbox.tsx:78 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "相簿權限已遭拒絕,請在系統設定中啟用。" @@ -4114,12 +4146,12 @@ msgstr "攝影" msgid "Pictures meant for adults." msgstr "不適合未成年人的圖片。" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "釘選到首頁" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 msgid "Pin to Home" msgstr "釘選到首頁" @@ -4173,7 +4205,7 @@ msgstr "更改前請先確認您的電子郵件地址。這是電子郵件更新 msgid "Please enter a name for your app password. All spaces is not allowed." msgstr "請輸入應用程式專用密碼的名稱。不允許包含任何空格。" -#: src/view/com/modals/AddAppPasswords.tsx:150 +#: src/view/com/modals/AddAppPasswords.tsx:151 msgid "Please enter a unique name for this App Password or use our randomly generated one." msgstr "請輸入此應用程式專用密碼的唯一名稱,或使用我們提供的隨機生成名稱。" @@ -4239,9 +4271,9 @@ msgstr "貼文" msgid "Post by {0}" msgstr "{0} 的貼文" -#: src/Navigation.tsx:196 -#: src/Navigation.tsx:203 -#: src/Navigation.tsx:210 +#: src/Navigation.tsx:197 +#: src/Navigation.tsx:204 +#: src/Navigation.tsx:211 msgid "Post by @{0}" msgstr "@{0} 的貼文" @@ -4297,6 +4329,10 @@ msgstr "貼文已隱藏" msgid "Potentially Misleading Link" msgstr "潛在誤導性連結" +#: src/state/queries/notifications/settings.ts:44 +msgid "Preference saved" +msgstr "" + #: src/screens/Messages/Conversation/MessageListError.tsx:19 msgid "Press to attempt reconnection" msgstr "點擊以重試連線" @@ -4324,16 +4360,20 @@ msgstr "上一張圖片" msgid "Primary Language" msgstr "主要語言" -#: src/view/screens/PreferencesThreads.tsx:97 +#: src/view/screens/PreferencesThreads.tsx:91 msgid "Prioritize Your Follows" msgstr "優先顯示跟隨者" +#: src/view/screens/NotificationsSettings.tsx:57 +msgid "Priority notifications" +msgstr "" + #: src/view/screens/Settings/index.tsx:656 #: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "隱私" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:257 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 #: src/view/screens/Settings/index.tsx:959 @@ -4390,15 +4430,15 @@ msgstr "發佈貼文" msgid "Publish reply" msgstr "發佈回覆" -#: src/components/StarterPack/QrCodeDialog.tsx:125 +#: src/components/StarterPack/QrCodeDialog.tsx:128 msgid "QR code copied to your clipboard!" msgstr "QR Code 已複製到您的剪貼簿!" -#: src/components/StarterPack/QrCodeDialog.tsx:103 +#: src/components/StarterPack/QrCodeDialog.tsx:106 msgid "QR code has been downloaded!" msgstr "QR Code 下載成功!" -#: src/components/StarterPack/QrCodeDialog.tsx:104 +#: src/components/StarterPack/QrCodeDialog.tsx:107 msgid "QR code saved to your camera roll!" msgstr "QR Code 已儲存至您的圖片庫!" @@ -4413,7 +4453,7 @@ msgstr "小建議" msgid "Quote post" msgstr "引用貼文" -#: src/view/screens/PreferencesThreads.tsx:86 +#: src/view/screens/PreferencesThreads.tsx:80 msgid "Random (aka \"Poster's Roulette\")" msgstr "隨機顯示 (又名試試手氣)" @@ -4437,6 +4477,10 @@ msgstr "最近的搜尋結果" msgid "Reconnect" msgstr "重新連線" +#: src/view/screens/Notifications.tsx:146 +msgid "Refresh notifications" +msgstr "" + #: src/screens/Messages/List/index.tsx:200 msgid "Reload conversations" msgstr "重新載入對話" @@ -4446,10 +4490,10 @@ msgstr "重新載入對話" #: src/components/StarterPack/Wizard/WizardListCard.tsx:101 #: src/components/StarterPack/Wizard/WizardListCard.tsx:108 #: src/view/com/feeds/FeedSourceCard.tsx:317 -#: src/view/com/modals/ListAddRemoveUsers.tsx:268 +#: src/view/com/modals/ListAddRemoveUsers.tsx:269 #: src/view/com/modals/SelfLabel.tsx:84 #: src/view/com/modals/UserAddRemoveLists.tsx:230 -#: src/view/com/posts/FeedErrorMessage.tsx:212 +#: src/view/com/posts/FeedErrorMessage.tsx:213 msgid "Remove" msgstr "刪除" @@ -4461,7 +4505,7 @@ msgstr "從您的入門包刪除 {displayName}" msgid "Remove account" msgstr "移除帳號" -#: src/view/com/util/UserAvatar.tsx:384 +#: src/view/com/util/UserAvatar.tsx:396 msgid "Remove Avatar" msgstr "刪除頭像" @@ -4473,20 +4517,20 @@ msgstr "刪除橫幅" msgid "Remove embed" msgstr "刪除嵌入" -#: src/view/com/posts/FeedErrorMessage.tsx:168 -#: src/view/com/posts/FeedShutdownMsg.tsx:113 -#: src/view/com/posts/FeedShutdownMsg.tsx:117 +#: src/view/com/posts/FeedErrorMessage.tsx:169 +#: src/view/com/posts/FeedShutdownMsg.tsx:115 +#: src/view/com/posts/FeedShutdownMsg.tsx:119 msgid "Remove feed" msgstr "刪除動態源" -#: src/view/com/posts/FeedErrorMessage.tsx:209 +#: src/view/com/posts/FeedErrorMessage.tsx:210 msgid "Remove feed?" msgstr "刪除動態源?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "從我的動態源中刪除" @@ -4525,11 +4569,11 @@ msgstr "刪除引用貼文" msgid "Remove repost" msgstr "刪除轉貼貼文" -#: src/view/com/posts/FeedErrorMessage.tsx:210 +#: src/view/com/posts/FeedErrorMessage.tsx:211 msgid "Remove this feed from your saved feeds" msgstr "將這個動態源從您已儲存之動態源列表中刪除" -#: src/view/com/modals/ListAddRemoveUsers.tsx:199 +#: src/view/com/modals/ListAddRemoveUsers.tsx:200 #: src/view/com/modals/UserAddRemoveLists.tsx:165 msgid "Removed from list" msgstr "從列表中刪除" @@ -4552,8 +4596,8 @@ msgstr "刪除已轉貼貼文" msgid "Removes the image preview" msgstr "移除圖片預覽" -#: src/view/com/posts/FeedShutdownMsg.tsx:126 -#: src/view/com/posts/FeedShutdownMsg.tsx:130 +#: src/view/com/posts/FeedShutdownMsg.tsx:128 +#: src/view/com/posts/FeedShutdownMsg.tsx:132 msgid "Replace with Discover" msgstr "用「Discover」動態源取代" @@ -4565,7 +4609,7 @@ msgstr "回覆" msgid "Replies disabled" msgstr "回覆已被停用" -#: src/components/WhoCanReply.tsx:242 +#: src/components/WhoCanReply.tsx:243 msgid "Replies to this thread are disabled" msgstr "此討論串的回覆已停用" @@ -4574,7 +4618,7 @@ msgctxt "action" msgid "Reply" msgstr "回覆" -#: src/view/screens/PreferencesFollowingFeed.tsx:143 +#: src/view/screens/PreferencesFollowingFeed.tsx:142 msgid "Reply Filters" msgstr "回覆過濾器" @@ -4616,8 +4660,8 @@ msgstr "檢舉對話" msgid "Report dialog" msgstr "檢舉對話框" -#: src/view/screens/ProfileFeed.tsx:349 -#: src/view/screens/ProfileFeed.tsx:351 +#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:352 msgid "Report feed" msgstr "檢舉動態源" @@ -4629,8 +4673,8 @@ msgstr "檢舉列表" msgid "Report message" msgstr "檢舉訊息" -#: src/view/com/util/forms/PostDropdownBtn.tsx:404 -#: src/view/com/util/forms/PostDropdownBtn.tsx:406 +#: src/view/com/util/forms/PostDropdownBtn.tsx:407 +#: src/view/com/util/forms/PostDropdownBtn.tsx:409 msgid "Report post" msgstr "檢舉貼文" @@ -4811,7 +4855,7 @@ msgstr "返回上一頁" #: src/components/dialogs/BirthDateSettings.tsx:125 #: src/components/dialogs/ThreadgateEditor.tsx:88 -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:187 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -4820,7 +4864,7 @@ msgstr "返回上一頁" msgid "Save" msgstr "儲存" -#: src/view/com/lightbox/Lightbox.tsx:135 +#: src/view/com/lightbox/Lightbox.tsx:139 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -4842,8 +4886,8 @@ msgstr "儲存更改" msgid "Save handle change" msgstr "儲存帳號代碼更改" -#: src/components/StarterPack/ShareDialog.tsx:150 -#: src/components/StarterPack/ShareDialog.tsx:157 +#: src/components/StarterPack/ShareDialog.tsx:151 +#: src/components/StarterPack/ShareDialog.tsx:158 msgid "Save image" msgstr "儲存圖片" @@ -4851,12 +4895,12 @@ msgstr "儲存圖片" msgid "Save image crop" msgstr "儲存圖片裁剪" -#: src/components/StarterPack/QrCodeDialog.tsx:178 +#: src/components/StarterPack/QrCodeDialog.tsx:181 msgid "Save QR code" msgstr "儲存 QR Code" -#: src/view/screens/ProfileFeed.tsx:333 -#: src/view/screens/ProfileFeed.tsx:339 +#: src/view/screens/ProfileFeed.tsx:334 +#: src/view/screens/ProfileFeed.tsx:340 msgid "Save to my feeds" msgstr "儲存到我的動態源" @@ -4864,7 +4908,7 @@ msgstr "儲存到我的動態源" msgid "Saved Feeds" msgstr "已儲存之動態源" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:88 msgid "Saved to your camera roll" msgstr "儲存至裝置相簿" @@ -4902,9 +4946,9 @@ msgid "Scroll to top" msgstr "滾動到頂部" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:531 +#: src/Navigation.tsx:537 #: src/view/com/auth/LoggedOut.tsx:124 -#: src/view/com/modals/ListAddRemoveUsers.tsx:75 +#: src/view/com/modals/ListAddRemoveUsers.tsx:76 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 @@ -4941,7 +4985,7 @@ msgstr "搜尋您想推薦給別人的動態源。" #: src/view/com/auth/LoggedOut.tsx:106 #: src/view/com/auth/LoggedOut.tsx:107 -#: src/view/com/modals/ListAddRemoveUsers.tsx:70 +#: src/view/com/modals/ListAddRemoveUsers.tsx:71 msgid "Search for users" msgstr "搜尋用戶" @@ -5091,7 +5135,7 @@ msgstr "提交意見" msgid "Send message" msgstr "重送訊息" -#: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 +#: src/components/dms/dialogs/ShareViaChatDialog.tsx:64 msgid "Send post to..." msgstr "傳送貼文給…" @@ -5111,8 +5155,8 @@ msgstr "將檢舉提交至 {0}" msgid "Send verification email" msgstr "發送驗證電子郵件" -#: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 +#: src/view/com/util/forms/PostDropdownBtn.tsx:302 msgid "Send via direct message" msgstr "透過私人訊息發送" @@ -5132,23 +5176,23 @@ msgstr "設定生日" msgid "Set new password" msgstr "設定新密碼" -#: src/view/screens/PreferencesFollowingFeed.tsx:224 +#: src/view/screens/PreferencesFollowingFeed.tsx:223 msgid "Set this setting to \"No\" to hide all quote posts from your feed. Reposts will still be visible." msgstr "將此選項設為「關」以隱藏動態中所有引用的貼文,但轉貼依然會顯示。" -#: src/view/screens/PreferencesFollowingFeed.tsx:121 +#: src/view/screens/PreferencesFollowingFeed.tsx:120 msgid "Set this setting to \"No\" to hide all replies from your feed." msgstr "將此選項設為「關」以隱藏動態中所有回覆貼文。" -#: src/view/screens/PreferencesFollowingFeed.tsx:190 +#: src/view/screens/PreferencesFollowingFeed.tsx:189 msgid "Set this setting to \"No\" to hide all reposts from your feed." msgstr "將此選項設為「關」以隱藏動態的所有轉貼貼文。" -#: src/view/screens/PreferencesThreads.tsx:122 +#: src/view/screens/PreferencesThreads.tsx:116 msgid "Set this setting to \"Yes\" to show replies in a threaded view. This is an experimental feature." msgstr "將此選項設為「開」以單頁顯示樹狀回覆,這是一項實驗性功能。" -#: src/view/screens/PreferencesFollowingFeed.tsx:260 +#: src/view/screens/PreferencesFollowingFeed.tsx:259 msgid "Set this setting to \"Yes\" to show samples of your saved feeds in your Following feed. This is an experimental feature." msgstr "將此選項設為「是」以在「Following」動態源中顯示您已儲存之動態源中的選錄貼文,這是一項實驗性功能。" @@ -5196,7 +5240,7 @@ msgstr "將圖片比例設定為高" msgid "Sets image aspect ratio to wide" msgstr "將圖片比例設定為寬" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:153 #: src/view/screens/Settings/index.tsx:334 #: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:549 @@ -5212,19 +5256,19 @@ msgstr "性行為或色情裸露。" msgid "Sexually Suggestive" msgstr "性暗示" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:177 #: src/screens/StarterPack/StarterPackScreen.tsx:400 #: src/screens/StarterPack/StarterPackScreen.tsx:571 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 -#: src/view/com/util/forms/PostDropdownBtn.tsx:307 -#: src/view/com/util/forms/PostDropdownBtn.tsx:316 +#: src/view/com/util/forms/PostDropdownBtn.tsx:310 +#: src/view/com/util/forms/PostDropdownBtn.tsx:319 #: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "分享" -#: src/view/com/lightbox/Lightbox.tsx:144 +#: src/view/com/lightbox/Lightbox.tsx:148 msgctxt "action" msgid "Share" msgstr "分享" @@ -5238,18 +5282,18 @@ msgid "Share a fun fact!" msgstr "分享一個趣聞!📰" #: src/view/com/profile/ProfileMenu.tsx:377 -#: src/view/com/util/forms/PostDropdownBtn.tsx:461 +#: src/view/com/util/forms/PostDropdownBtn.tsx:464 #: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "仍然分享" -#: src/view/screens/ProfileFeed.tsx:359 -#: src/view/screens/ProfileFeed.tsx:361 +#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:362 msgid "Share feed" msgstr "分享動態源" -#: src/components/StarterPack/ShareDialog.tsx:123 -#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/components/StarterPack/ShareDialog.tsx:124 +#: src/components/StarterPack/ShareDialog.tsx:131 #: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "分享連結" @@ -5259,12 +5303,12 @@ msgstr "分享連結" msgid "Share Link" msgstr "分享連結" -#: src/components/StarterPack/ShareDialog.tsx:87 +#: src/components/StarterPack/ShareDialog.tsx:88 msgid "Share link dialog" msgstr "分享連結對話窗" -#: src/components/StarterPack/ShareDialog.tsx:134 -#: src/components/StarterPack/ShareDialog.tsx:145 +#: src/components/StarterPack/ShareDialog.tsx:135 +#: src/components/StarterPack/ShareDialog.tsx:146 msgid "Share QR code" msgstr "分享 QR Code" @@ -5272,7 +5316,7 @@ msgstr "分享 QR Code" msgid "Share this starter pack" msgstr "分享這個入門包" -#: src/components/StarterPack/ShareDialog.tsx:99 +#: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "分享這個入門包,以幫助別人加入您在 Bluesky 的社群。" @@ -5280,7 +5324,7 @@ msgstr "分享這個入門包,以幫助別人加入您在 Bluesky 的社群。 msgid "Share your favorite feed!" msgstr "分享您喜愛的動態!" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:242 msgid "Shared Preferences Tester" msgstr "共享偏好測試器" @@ -5321,8 +5365,8 @@ msgstr "顯示類似於 {0} 的跟隨者" msgid "Show hidden replies" msgstr "顯示隱藏回覆" -#: src/view/com/util/forms/PostDropdownBtn.tsx:346 -#: src/view/com/util/forms/PostDropdownBtn.tsx:348 +#: src/view/com/util/forms/PostDropdownBtn.tsx:349 +#: src/view/com/util/forms/PostDropdownBtn.tsx:351 msgid "Show less like this" msgstr "減少顯示此類內容" @@ -5332,8 +5376,8 @@ msgstr "減少顯示此類內容" msgid "Show More" msgstr "顯示更多" -#: src/view/com/util/forms/PostDropdownBtn.tsx:338 -#: src/view/com/util/forms/PostDropdownBtn.tsx:340 +#: src/view/com/util/forms/PostDropdownBtn.tsx:341 +#: src/view/com/util/forms/PostDropdownBtn.tsx:343 msgid "Show more like this" msgstr "顯示更多此類內容" @@ -5341,23 +5385,23 @@ msgstr "顯示更多此類內容" msgid "Show muted replies" msgstr "顯示靜音回覆" -#: src/view/screens/PreferencesFollowingFeed.tsx:257 +#: src/view/screens/PreferencesFollowingFeed.tsx:256 msgid "Show Posts from My Feeds" msgstr "顯示來自我的動態源之貼文" -#: src/view/screens/PreferencesFollowingFeed.tsx:221 +#: src/view/screens/PreferencesFollowingFeed.tsx:220 msgid "Show Quote Posts" msgstr "顯示引用貼文" -#: src/view/screens/PreferencesFollowingFeed.tsx:118 +#: src/view/screens/PreferencesFollowingFeed.tsx:117 msgid "Show Replies" msgstr "顯示回覆" -#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:94 msgid "Show replies by people you follow before all other replies." msgstr "在所有其他回覆之前顯示您跟隨的人的回覆。" -#: src/view/screens/PreferencesFollowingFeed.tsx:187 +#: src/view/screens/PreferencesFollowingFeed.tsx:186 msgid "Show Reposts" msgstr "顯示轉貼貼文" @@ -5497,16 +5541,21 @@ msgstr "發生了一些問題,請再試一次" msgid "Something went wrong, please try again." msgstr "發生了一些問題,請再試一次。" -#: src/App.native.tsx:98 -#: src/App.web.tsx:80 +#: src/components/Lists.tsx:192 +#: src/view/screens/NotificationsSettings.tsx:46 +msgid "Something went wrong!" +msgstr "" + +#: src/App.native.tsx:99 +#: src/App.web.tsx:81 msgid "Sorry! Your session expired. Please log in again." msgstr "抱歉!您的登入會話已過期。請重新登入。" -#: src/view/screens/PreferencesThreads.tsx:69 +#: src/view/screens/PreferencesThreads.tsx:63 msgid "Sort Replies" msgstr "排序回覆" -#: src/view/screens/PreferencesThreads.tsx:72 +#: src/view/screens/PreferencesThreads.tsx:66 msgid "Sort replies to the same post by:" msgstr "對同一貼文的回覆進行排序:" @@ -5532,7 +5581,7 @@ msgstr "運動" msgid "Square" msgstr "方塊" -#: src/components/dms/dialogs/NewChatDialog.tsx:61 +#: src/components/dms/dialogs/NewChatDialog.tsx:63 msgid "Start a new chat" msgstr "開始新對話" @@ -5549,8 +5598,8 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "開始入門指南吧!若需取得更多選項請點選下一步,或點選跳過。" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:335 -#: src/Navigation.tsx:340 +#: src/Navigation.tsx:341 +#: src/Navigation.tsx:346 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "入門包" @@ -5583,7 +5632,7 @@ msgstr "第 {0} 步(共 {1} 步)" msgid "Storage cleared, you need to restart the app now." msgstr "已清除儲存資料,您需要立即重啟應用程式。" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:232 #: src/view/screens/Settings/index.tsx:865 msgid "Storybook" msgstr "故事書" @@ -5603,11 +5652,11 @@ msgstr "訂閱" msgid "Subscribe to @{0} to use these labels:" msgstr "訂閱 @{0} 以使用這些標記:" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:229 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:230 msgid "Subscribe to Labeler" msgstr "訂閱標記者" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:197 msgid "Subscribe to this labeler" msgstr "訂閱這個標記者" @@ -5628,7 +5677,7 @@ msgstr "為您推薦" msgid "Suggestive" msgstr "性暗示" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:252 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5704,7 +5753,7 @@ msgstr "告訴我們更多" msgid "Terms" msgstr "條款" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:262 #: src/screens/Signup/StepInfo/Policies.tsx:49 #: src/view/screens/Settings/index.tsx:953 #: src/view/screens/TermsOfService.tsx:29 @@ -5772,7 +5821,7 @@ msgstr "「Discover」動態源現在知道您喜歡什麼" msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "使用應用程式的體驗會更好。現在就下載 Bluesky,我們將從您離開的地方繼續。" -#: src/view/com/posts/FeedShutdownMsg.tsx:66 +#: src/view/com/posts/FeedShutdownMsg.tsx:67 msgid "The feed has been replaced with Discover." msgstr "此動態源已由「Discover」取代。" @@ -5814,7 +5863,7 @@ msgid "There is no time limit for account deactivation, come back any time." msgstr "帳號停用沒有時間限制,隨時都可以重新啟用。" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:117 -#: src/view/screens/ProfileFeed.tsx:544 +#: src/view/screens/ProfileFeed.tsx:545 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "連線至伺服器時出現問題,請檢查您的網路連線並重試。" @@ -5823,7 +5872,7 @@ msgid "There was an an issue removing this feed. Please check your internet conn msgstr "刪除動態源時出現問題,請檢查您的網路連線並重試。" #: src/view/com/posts/FeedShutdownMsg.tsx:52 -#: src/view/com/posts/FeedShutdownMsg.tsx:70 +#: src/view/com/posts/FeedShutdownMsg.tsx:71 #: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "更新動態時出現問題,請檢查您的網路連線並重試。" @@ -5833,7 +5882,7 @@ msgstr "更新動態時出現問題,請檢查您的網路連線並重試。" msgid "There was an issue connecting to Tenor." msgstr "連線到 Tenor 時出現問題。" -#: src/view/screens/ProfileFeed.tsx:234 +#: src/view/screens/ProfileFeed.tsx:235 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -5847,7 +5896,7 @@ msgstr "連線伺服器時出現問題" msgid "There was an issue contacting your server" msgstr "連線伺服器時出現問題" -#: src/view/com/notifications/Feed.tsx:125 +#: src/view/com/notifications/Feed.tsx:130 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "取得通知時發生問題,點擊這裡重試。" @@ -5967,12 +6016,12 @@ msgid "This feed is empty! You may need to follow more users or tune your langua msgstr "這個動態源是空的!您或許需要先跟隨更多的人或檢查您的語言設定。" #: src/components/StarterPack/Main/PostsList.tsx:36 -#: src/view/screens/ProfileFeed.tsx:473 +#: src/view/screens/ProfileFeed.tsx:474 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "這裡是空的。" -#: src/view/com/posts/FeedShutdownMsg.tsx:97 +#: src/view/com/posts/FeedShutdownMsg.tsx:99 msgid "This feed is no longer online. We are showing <0>Discover instead." msgstr "此動態源已經下線。我們將展示「<0>Discover」動態源。" @@ -6020,12 +6069,12 @@ msgstr "此名稱已被使用" msgid "This post has been deleted." msgstr "這則貼文已被刪除。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:458 +#: src/view/com/util/forms/PostDropdownBtn.tsx:461 #: src/view/com/util/post-ctrls/PostCtrls.tsx:324 msgid "This post is only visible to logged-in users. It won't be visible to people who aren't logged in." msgstr "只有登入用戶能見到這則貼文,未登入的人將看不到它。" -#: src/view/com/util/forms/PostDropdownBtn.tsx:440 +#: src/view/com/util/forms/PostDropdownBtn.tsx:443 msgid "This post will be hidden from feeds." msgstr "這則貼文將從動態隱藏。" @@ -6082,7 +6131,7 @@ msgstr "這將從您的靜音文字中刪除 {0},您隨時可以新增回來 msgid "Thread preferences" msgstr "討論串偏好" -#: src/view/screens/PreferencesThreads.tsx:53 +#: src/view/screens/PreferencesThreads.tsx:51 #: src/view/screens/Settings/index.tsx:606 msgid "Thread Preferences" msgstr "討論串偏好" @@ -6091,11 +6140,11 @@ msgstr "討論串偏好" msgid "Thread settings updated" msgstr "討論串設定已更新" -#: src/view/screens/PreferencesThreads.tsx:119 +#: src/view/screens/PreferencesThreads.tsx:113 msgid "Threaded Mode" msgstr "樹狀顯示模式" -#: src/Navigation.tsx:294 +#: src/Navigation.tsx:295 msgid "Threads Preferences" msgstr "討論串偏好" @@ -6136,8 +6185,8 @@ msgstr "轉換" #: src/components/dms/MessageMenu.tsx:105 #: src/view/com/post-thread/PostThreadItem.tsx:676 #: src/view/com/post-thread/PostThreadItem.tsx:678 -#: src/view/com/util/forms/PostDropdownBtn.tsx:277 -#: src/view/com/util/forms/PostDropdownBtn.tsx:279 +#: src/view/com/util/forms/PostDropdownBtn.tsx:280 +#: src/view/com/util/forms/PostDropdownBtn.tsx:282 msgid "Translate" msgstr "翻譯" @@ -6238,7 +6287,7 @@ msgstr "取消跟隨 {0}" msgid "Unfollow Account" msgstr "取消跟隨" -#: src/view/screens/ProfileFeed.tsx:573 +#: src/view/screens/ProfileFeed.tsx:575 msgid "Unlike this feed" msgstr "取消喜歡這個動態源" @@ -6264,17 +6313,17 @@ msgstr "取消對所有 {displayTag} 貼文的靜音" msgid "Unmute conversation" msgstr "取消靜音對話" -#: src/view/com/util/forms/PostDropdownBtn.tsx:362 -#: src/view/com/util/forms/PostDropdownBtn.tsx:367 +#: src/view/com/util/forms/PostDropdownBtn.tsx:365 +#: src/view/com/util/forms/PostDropdownBtn.tsx:370 msgid "Unmute thread" msgstr "取消靜音討論串" -#: src/view/screens/ProfileFeed.tsx:291 +#: src/view/screens/ProfileFeed.tsx:292 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "取消釘選" -#: src/view/screens/ProfileFeed.tsx:288 +#: src/view/screens/ProfileFeed.tsx:289 msgid "Unpin from home" msgstr "自首頁取消釘選" @@ -6286,11 +6335,11 @@ msgstr "取消釘選內容管理列表" msgid "Unpinned from your feeds" msgstr "已從您的動態源取消釘選" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:227 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Unsubscribe" msgstr "取消訂閱" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:195 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:196 msgid "Unsubscribe from this labeler" msgstr "取消訂閱這個標記者" @@ -6319,20 +6368,20 @@ msgstr "或是上傳圖片" msgid "Upload a text file to:" msgstr "上傳文字檔案至:" -#: src/view/com/util/UserAvatar.tsx:352 -#: src/view/com/util/UserAvatar.tsx:355 +#: src/view/com/util/UserAvatar.tsx:364 +#: src/view/com/util/UserAvatar.tsx:367 #: src/view/com/util/UserBanner.tsx:123 #: src/view/com/util/UserBanner.tsx:126 msgid "Upload from Camera" msgstr "從相機上傳" -#: src/view/com/util/UserAvatar.tsx:369 +#: src/view/com/util/UserAvatar.tsx:381 #: src/view/com/util/UserBanner.tsx:140 msgid "Upload from Files" msgstr "從檔案上傳" -#: src/view/com/util/UserAvatar.tsx:363 -#: src/view/com/util/UserAvatar.tsx:367 +#: src/view/com/util/UserAvatar.tsx:375 +#: src/view/com/util/UserAvatar.tsx:379 #: src/view/com/util/UserBanner.tsx:134 #: src/view/com/util/UserBanner.tsx:138 msgid "Upload from Library" @@ -6372,7 +6421,7 @@ msgstr "使用推薦" msgid "Use the DNS panel" msgstr "使用 DNS 控制台" -#: src/view/com/modals/AddAppPasswords.tsx:205 +#: src/view/com/modals/AddAppPasswords.tsx:206 msgid "Use this to sign into the other app along with your handle." msgstr "使用這個和您的帳號代碼一起登入其他應用程式。" @@ -6440,7 +6489,7 @@ msgstr "帳號代碼或電子郵件地址" msgid "Users" msgstr "用戶" -#: src/components/WhoCanReply.tsx:279 +#: src/components/WhoCanReply.tsx:280 msgid "users followed by <0/>" msgstr "被 <0/> 跟隨的用戶" @@ -6541,7 +6590,7 @@ msgstr "查看有關這些標記的資訊" #: src/components/ProfileHoverCard/index.web.tsx:436 #: src/components/ProfileHoverCard/index.web.tsx:463 #: src/view/com/posts/AviFollowButton.tsx:58 -#: src/view/com/posts/FeedErrorMessage.tsx:174 +#: src/view/com/posts/FeedErrorMessage.tsx:175 msgid "View profile" msgstr "查看資料" @@ -6553,7 +6602,7 @@ msgstr "查看頭像" msgid "View the labeling service provided by @{0}" msgstr "查看由 @{0} 提供的標記服務" -#: src/view/screens/ProfileFeed.tsx:585 +#: src/view/screens/ProfileFeed.tsx:587 msgid "View users who like this feed" msgstr "查看喜歡此動態源的用戶" @@ -6654,7 +6703,7 @@ msgstr "很抱歉!您回覆的貼文已被刪除。" msgid "We're sorry! We can't find the page you were looking for." msgstr "很抱歉!我們找不到您正在尋找的頁面。" -#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:332 +#: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:333 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." msgstr "抱歉!您只能訂閱二十個標記者,您已達到二十個的限制。" @@ -6693,15 +6742,15 @@ msgstr "您想在演算法動態源中看到哪些語言?" msgid "Who can message you?" msgstr "誰可以傳送訊息給您?" -#: src/components/WhoCanReply.tsx:127 +#: src/components/WhoCanReply.tsx:128 msgid "Who can reply" msgstr "誰可以回覆" -#: src/components/WhoCanReply.tsx:211 +#: src/components/WhoCanReply.tsx:212 msgid "Who can reply dialog" msgstr "「誰可以回覆」對話窗" -#: src/components/WhoCanReply.tsx:215 +#: src/components/WhoCanReply.tsx:216 msgid "Who can reply?" msgstr "誰可以回覆?" @@ -6762,12 +6811,12 @@ msgid "Writers" msgstr "作家" #: src/view/com/composer/select-language/SuggestedLanguage.tsx:77 -#: src/view/screens/PreferencesFollowingFeed.tsx:128 -#: src/view/screens/PreferencesFollowingFeed.tsx:200 -#: src/view/screens/PreferencesFollowingFeed.tsx:235 -#: src/view/screens/PreferencesFollowingFeed.tsx:270 -#: src/view/screens/PreferencesThreads.tsx:106 -#: src/view/screens/PreferencesThreads.tsx:129 +#: src/view/screens/PreferencesFollowingFeed.tsx:127 +#: src/view/screens/PreferencesFollowingFeed.tsx:199 +#: src/view/screens/PreferencesFollowingFeed.tsx:234 +#: src/view/screens/PreferencesFollowingFeed.tsx:269 +#: src/view/screens/PreferencesThreads.tsx:100 +#: src/view/screens/PreferencesThreads.tsx:123 msgid "Yes" msgstr "開" @@ -6933,11 +6982,11 @@ msgstr "如果您認為這些標記有誤,且標記並非由您新增,您可 msgid "You may appeal these labels if you feel they were placed in error." msgstr "如果您覺得這些標記有誤,您可以提出申訴。" -#: src/screens/StarterPack/Wizard/State.tsx:92 +#: src/screens/StarterPack/Wizard/State.tsx:95 msgid "You may only add up to 50 feeds" msgstr "您最多只能新增 50 個動態源" -#: src/screens/StarterPack/Wizard/State.tsx:77 +#: src/screens/StarterPack/Wizard/State.tsx:78 msgid "You may only add up to 50 profiles" msgstr "您最多只能新增 50 個個人檔案" From fac1af43b0300e9d9be16641afc4fbeef0a91ccf Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 25 Jul 2024 13:16:21 -0500 Subject: [PATCH 11/30] Fuggedaboudit (#4829) --- src/view/com/notifications/FeedItem.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx index d31962ff35..3171f88dbc 100644 --- a/src/view/com/notifications/FeedItem.tsx +++ b/src/view/com/notifications/FeedItem.tsx @@ -171,7 +171,6 @@ let FeedItem = ({ ) } - let isFollowBack = false let action = '' let icon = ( From 4291711f1d4bf3921b1e805d7726b0764757f257 Mon Sep 17 00:00:00 2001 From: dan Date: Thu, 25 Jul 2024 19:53:12 +0100 Subject: [PATCH 12/30] Fix sloppy filter(Boolean) types (#4830) * Fix sloppy filter(Boolean) in threadgate * Fix sloppy filter(Boolean) in Explore * Fix sloppy filter(Boolean) in post-feed * Harden FeedPostSliceItem.reason type def * Harden parentAuthor types * Fix lying component types, handle blocks --- src/state/queries/post-feed.ts | 29 ++++++++--- src/state/queries/threadgate.ts | 22 ++++----- src/view/com/posts/FeedItem.tsx | 76 ++++++++++++++++++----------- src/view/screens/Search/Explore.tsx | 17 ++++--- 4 files changed, 88 insertions(+), 56 deletions(-) diff --git a/src/state/queries/post-feed.ts b/src/state/queries/post-feed.ts index 315c9cfadd..c1484a59e7 100644 --- a/src/state/queries/post-feed.ts +++ b/src/state/queries/post-feed.ts @@ -78,7 +78,10 @@ export interface FeedPostSliceItem { uri: string post: AppBskyFeedDefs.PostView record: AppBskyFeedPost.Record - reason?: AppBskyFeedDefs.ReasonRepost | ReasonFeedSource + reason?: + | AppBskyFeedDefs.ReasonRepost + | ReasonFeedSource + | {[k: string]: unknown; $type: string} feedContext: string | undefined moderation: ModerationDecision parentAuthor?: AppBskyActorDefs.ProfileViewBasic @@ -323,7 +326,7 @@ export function usePostFeedQuery( ) } - return { + const feedPostSlice: FeedPostSlice = { _reactKey: slice._reactKey, _isFeedPostSlice: true, rootUri: slice.rootItem.post.uri, @@ -341,15 +344,23 @@ export function usePostFeedQuery( AppBskyFeedPost.validateRecord(item.post.record) .success ) { - const parentAuthor = - item.reply?.parent?.author ?? - slice.items[i + 1]?.reply?.grandparentAuthor + const parent = item.reply?.parent + let parentAuthor: + | AppBskyActorDefs.ProfileViewBasic + | undefined + if (AppBskyFeedDefs.isPostView(parent)) { + parentAuthor = parent.author + } + if (!parentAuthor) { + parentAuthor = + slice.items[i + 1]?.reply?.grandparentAuthor + } const replyRef = item.reply const isParentBlocked = AppBskyFeedDefs.isBlockedPost( replyRef?.parent, ) - return { + const feedPostSliceItem: FeedPostSliceItem = { _reactKey: `${slice._reactKey}-${i}-${item.post.uri}`, uri: item.post.uri, post: item.post, @@ -363,13 +374,15 @@ export function usePostFeedQuery( parentAuthor, isParentBlocked, } + return feedPostSliceItem } return undefined }) - .filter(Boolean) as FeedPostSliceItem[], + .filter((n?: T): n is T => Boolean(n)), } + return feedPostSlice }) - .filter(Boolean) as FeedPostSlice[], + .filter((n?: T): n is T => Boolean(n)), })), ], } diff --git a/src/state/queries/threadgate.ts b/src/state/queries/threadgate.ts index 67c6f8c084..c05d1f5644 100644 --- a/src/state/queries/threadgate.ts +++ b/src/state/queries/threadgate.ts @@ -4,7 +4,7 @@ export type ThreadgateSetting = | {type: 'nobody'} | {type: 'mention'} | {type: 'following'} - | {type: 'list'; list: string} + | {type: 'list'; list: unknown} export function threadgateViewToSettings( threadgate: AppBskyFeedDefs.ThreadgateView | undefined, @@ -21,18 +21,18 @@ export function threadgateViewToSettings( if (!record.allow?.length) { return [{type: 'nobody'}] } - return record.allow + const settings: ThreadgateSetting[] = record.allow .map(allow => { + let setting: ThreadgateSetting | undefined if (allow.$type === 'app.bsky.feed.threadgate#mentionRule') { - return {type: 'mention'} + setting = {type: 'mention'} + } else if (allow.$type === 'app.bsky.feed.threadgate#followingRule') { + setting = {type: 'following'} + } else if (allow.$type === 'app.bsky.feed.threadgate#listRule') { + setting = {type: 'list', list: allow.list} } - if (allow.$type === 'app.bsky.feed.threadgate#followingRule') { - return {type: 'following'} - } - if (allow.$type === 'app.bsky.feed.threadgate#listRule') { - return {type: 'list', list: allow.list} - } - return undefined + return setting }) - .filter(Boolean) as ThreadgateSetting[] + .filter((n?: T): n is T => Boolean(n)) + return settings } diff --git a/src/view/com/posts/FeedItem.tsx b/src/view/com/posts/FeedItem.tsx index a59eeea52e..dbc5796db5 100644 --- a/src/view/com/posts/FeedItem.tsx +++ b/src/view/com/posts/FeedItem.tsx @@ -48,7 +48,11 @@ import {Repost_Stroke2_Corner2_Rounded as Repost} from '#/components/icons/Repos interface FeedItemProps { record: AppBskyFeedPost.Record - reason: AppBskyFeedDefs.ReasonRepost | ReasonFeedSource | undefined + reason: + | AppBskyFeedDefs.ReasonRepost + | ReasonFeedSource + | {[k: string]: unknown; $type: string} + | undefined moderation: ModerationDecision parentAuthor: AppBskyActorDefs.ProfileViewBasic | undefined showReplyTo: boolean @@ -337,9 +341,11 @@ let FeedItemInner = ({ postHref={href} onOpenAuthor={onOpenAuthor} /> - {!isThreadChild && showReplyTo && parentAuthor && ( - - )} + {!isThreadChild && + showReplyTo && + (parentAuthor || isParentBlocked) && ( + + )} Reply to a blocked post + } else if (profile != null) { + const isMe = profile.did === currentAccount?.did + if (isMe) { + label = Reply to you + } else { + label = ( + + Reply to{' '} + + + + + ) + } + } + + if (!label) { + // Should not happen. + return null + } return ( @@ -450,29 +490,7 @@ function ReplyToLabel({ style={[pal.textLight, s.mr2]} lineHeight={1.2} numberOfLines={1}> - {isMe ? ( - Reply to you - ) : blocked ? ( - Reply to a blocked post - ) : ( - - Reply to{' '} - - - - - )} + {label} ) diff --git a/src/view/screens/Search/Explore.tsx b/src/view/screens/Search/Explore.tsx index 05fd85effe..e9b7445276 100644 --- a/src/view/screens/Search/Explore.tsx +++ b/src/view/screens/Search/Explore.tsx @@ -75,17 +75,17 @@ function SuggestedItemsHeader({ ) } -type LoadMoreItems = +type LoadMoreItem = | { type: 'profile' key: string - avatar: string + avatar: string | undefined moderation: ModerationDecision } | { type: 'feed' key: string - avatar: string + avatar: string | undefined moderation: undefined } @@ -98,27 +98,28 @@ function LoadMore({ }) { const t = useTheme() const {_} = useLingui() - const items = React.useMemo(() => { + const items: LoadMoreItem[] = React.useMemo(() => { return item.items .map(_item => { + let loadMoreItem: LoadMoreItem | undefined if (_item.type === 'profile') { - return { + loadMoreItem = { type: 'profile', key: _item.profile.did, avatar: _item.profile.avatar, moderation: moderateProfile(_item.profile, moderationOpts!), } } else if (_item.type === 'feed') { - return { + loadMoreItem = { type: 'feed', key: _item.feed.uri, avatar: _item.feed.avatar, moderation: undefined, } } - return undefined + return loadMoreItem }) - .filter(Boolean) as LoadMoreItems[] + .filter((n?: T): n is T => Boolean(n)) }, [item.items, moderationOpts]) if (items.length === 0) return null From 4ec999cab7104a381c8c7a3202ebb2d01599a513 Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 25 Jul 2024 12:41:32 -0700 Subject: [PATCH 13/30] Bump 1.90 (#4832) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 51177943bb..be22209b0d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bsky.app", - "version": "1.89.0", + "version": "1.90.0", "private": true, "engines": { "node": ">=18" From 00240b95b90847f6691f7fa19c19f37d2ffc6624 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Thu, 25 Jul 2024 20:41:50 +0100 Subject: [PATCH 14/30] [Videos] Video player - PR #1 - basic player (#4731) * add ffmpeg-kit-react-native * get select video button + compression working * up res to 1080p * add progress component * move logic out of compressVideo * (WIP) add lonestar compression * rework web compression a bit * mess around with adding a thumbnail * 3mbps * replace * use 3mbps * add expo-video * remove unnecessary try/catch * rm ToastAndroid * fix web * wrap lazy component in suspense * gate video select button * rm web compression * flip sign * remove expo-video from web * review nits * add video picker permissions + rm temp buttons * add ffmpeg-kit-react-native * replace * hls-capable player * start trying to hoist up video player instance * hoist video player and move things around * always show native controls * fix controls on expo video android * gate temp video player in feed * rm IS_DEV, doesn't do what I thought it did * use __DEV__ instead --------- Co-authored-by: Samuel Newman <10959775+mozzius@users.noreply.github.com> Co-authored-by: Hailey --- assets/icons/play_filled_corner2_rounded.svg | 1 + assets/icons/play_stroke2_corner2_rounded.svg | 1 + package.json | 1 + patches/expo-video+1.1.10.patch | 20 +++ src/App.native.tsx | 79 +++++----- src/App.web.tsx | 73 ++++----- src/components/icons/Play.tsx | 9 ++ src/view/com/post/Post.tsx | 62 ++++---- src/view/com/posts/FeedItem.tsx | 11 +- .../util/post-embeds/ActiveVideoContext.tsx | 48 ++++++ src/view/com/util/post-embeds/VideoEmbed.tsx | 44 ++++++ .../com/util/post-embeds/VideoEmbedInner.tsx | 138 ++++++++++++++++++ .../util/post-embeds/VideoEmbedInner.web.tsx | 52 +++++++ .../util/post-embeds/VideoPlayerContext.tsx | 41 ++++++ .../post-embeds/VideoPlayerContext.web.tsx | 9 ++ yarn.lock | 5 + 16 files changed, 489 insertions(+), 105 deletions(-) create mode 100644 assets/icons/play_filled_corner2_rounded.svg create mode 100644 assets/icons/play_stroke2_corner2_rounded.svg create mode 100644 patches/expo-video+1.1.10.patch create mode 100644 src/components/icons/Play.tsx create mode 100644 src/view/com/util/post-embeds/ActiveVideoContext.tsx create mode 100644 src/view/com/util/post-embeds/VideoEmbed.tsx create mode 100644 src/view/com/util/post-embeds/VideoEmbedInner.tsx create mode 100644 src/view/com/util/post-embeds/VideoEmbedInner.web.tsx create mode 100644 src/view/com/util/post-embeds/VideoPlayerContext.tsx create mode 100644 src/view/com/util/post-embeds/VideoPlayerContext.web.tsx diff --git a/assets/icons/play_filled_corner2_rounded.svg b/assets/icons/play_filled_corner2_rounded.svg new file mode 100644 index 0000000000..e25e8d4628 --- /dev/null +++ b/assets/icons/play_filled_corner2_rounded.svg @@ -0,0 +1 @@ + diff --git a/assets/icons/play_stroke2_corner2_rounded.svg b/assets/icons/play_stroke2_corner2_rounded.svg new file mode 100644 index 0000000000..54bba91fb9 --- /dev/null +++ b/assets/icons/play_stroke2_corner2_rounded.svg @@ -0,0 +1 @@ + diff --git a/package.json b/package.json index be22209b0d..091fb2fd70 100644 --- a/package.json +++ b/package.json @@ -143,6 +143,7 @@ "expo-web-browser": "~13.0.3", "fast-text-encoding": "^1.0.6", "history": "^5.3.0", + "hls.js": "^1.5.11", "js-sha256": "^0.9.0", "jwt-decode": "^4.0.0", "lande": "^1.0.10", diff --git a/patches/expo-video+1.1.10.patch b/patches/expo-video+1.1.10.patch new file mode 100644 index 0000000000..b183be9d41 --- /dev/null +++ b/patches/expo-video+1.1.10.patch @@ -0,0 +1,20 @@ +--- a/node_modules/expo-video/android/src/main/java/expo/modules/video/PlayerViewExtension.kt ++++ b/node_modules/expo-video/android/src/main/java/expo/modules/video/PlayerViewExtension.kt +@@ -11,6 +11,7 @@ internal fun PlayerView.applyRequiresLinearPlayback(requireLinearPlayback: Boole + setShowPreviousButton(!requireLinearPlayback) + setShowNextButton(!requireLinearPlayback) + setTimeBarInteractive(requireLinearPlayback) ++ setShowSubtitleButton(true) + } + + @androidx.annotation.OptIn(androidx.media3.common.util.UnstableApi::class) +@@ -27,7 +28,8 @@ internal fun PlayerView.setTimeBarInteractive(interactive: Boolean) { + + @androidx.annotation.OptIn(androidx.media3.common.util.UnstableApi::class) + internal fun PlayerView.setFullscreenButtonVisibility(visible: Boolean) { +- val fullscreenButton = findViewById(androidx.media3.ui.R.id.exo_fullscreen) ++ val fullscreenButton = ++ findViewById(androidx.media3.ui.R.id.exo_fullscreen) + fullscreenButton?.visibility = if (visible) { + android.view.View.VISIBLE + } else { diff --git a/src/App.native.tsx b/src/App.native.tsx index ed76c753b5..d2c20fc8e7 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -23,10 +23,12 @@ import { } from '#/lib/statsig/statsig' import {s} from '#/lib/styles' import {ThemeProvider} from '#/lib/ThemeContext' +import I18nProvider from '#/locale/i18nProvider' import {logger} from '#/logger' import {Provider as A11yProvider} from '#/state/a11y' import {Provider as MutedThreadsProvider} from '#/state/cache/thread-mutes' import {Provider as DialogStateProvider} from '#/state/dialogs' +import {listenSessionDropped} from '#/state/events' import {Provider as InvitesStateProvider} from '#/state/invites' import {Provider as LightboxStateProvider} from '#/state/lightbox' import {MessagesProvider} from '#/state/messages' @@ -49,6 +51,7 @@ import {Provider as ProgressGuideProvider} from '#/state/shell/progress-guide' import {Provider as SelectedFeedProvider} from '#/state/shell/selected-feed' import {Provider as StarterPackProvider} from '#/state/shell/starter-pack' import {TestCtrls} from '#/view/com/testing/TestCtrls' +import {ActiveVideoProvider} from '#/view/com/util/post-embeds/ActiveVideoContext' import * as Toast from '#/view/com/util/Toast' import {Shell} from '#/view/shell' import {ThemeProvider as Alf} from '#/alf' @@ -58,8 +61,6 @@ import {Provider as PortalProvider} from '#/components/Portal' import {Splash} from '#/Splash' import {Provider as TourProvider} from '#/tours' import {BackgroundNotificationPreferencesProvider} from '../modules/expo-background-notification-handler/src/BackgroundNotificationHandlerProvider' -import I18nProvider from './locale/i18nProvider' -import {listenSessionDropped} from './state/events' SplashScreen.preventAutoHideAsync() @@ -107,42 +108,44 @@ function InnerApp() { - - - - - - {/* LabelDefsProvider MUST come before ModerationOptsProvider */} - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + {/* LabelDefsProvider MUST come before ModerationOptsProvider */} + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/App.web.tsx b/src/App.web.tsx index a64988f380..df6fbf2449 100644 --- a/src/App.web.tsx +++ b/src/App.web.tsx @@ -12,10 +12,12 @@ import {useIntentHandler} from '#/lib/hooks/useIntentHandler' import {QueryProvider} from '#/lib/react-query' import {Provider as StatsigProvider} from '#/lib/statsig/statsig' import {ThemeProvider} from '#/lib/ThemeContext' +import I18nProvider from '#/locale/i18nProvider' import {logger} from '#/logger' import {Provider as A11yProvider} from '#/state/a11y' import {Provider as MutedThreadsProvider} from '#/state/cache/thread-mutes' import {Provider as DialogStateProvider} from '#/state/dialogs' +import {listenSessionDropped} from '#/state/events' import {Provider as InvitesStateProvider} from '#/state/invites' import {Provider as LightboxStateProvider} from '#/state/lightbox' import {MessagesProvider} from '#/state/messages' @@ -37,6 +39,7 @@ import {Provider as LoggedOutViewProvider} from '#/state/shell/logged-out' import {Provider as ProgressGuideProvider} from '#/state/shell/progress-guide' import {Provider as SelectedFeedProvider} from '#/state/shell/selected-feed' import {Provider as StarterPackProvider} from '#/state/shell/starter-pack' +import {ActiveVideoProvider} from '#/view/com/util/post-embeds/ActiveVideoContext' import * as Toast from '#/view/com/util/Toast' import {ToastContainer} from '#/view/com/util/Toast.web' import {Shell} from '#/view/shell/index' @@ -46,8 +49,6 @@ import {useStarterPackEntry} from '#/components/hooks/useStarterPackEntry' import {Provider as PortalProvider} from '#/components/Portal' import {Provider as TourProvider} from '#/tours' import {BackgroundNotificationPreferencesProvider} from '../modules/expo-background-notification-handler/src/BackgroundNotificationHandlerProvider' -import I18nProvider from './locale/i18nProvider' -import {listenSessionDropped} from './state/events' function InnerApp() { const [isReady, setIsReady] = React.useState(false) @@ -92,39 +93,41 @@ function InnerApp() { - - - - - {/* LabelDefsProvider MUST come before ModerationOptsProvider */} - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + {/* LabelDefsProvider MUST come before ModerationOptsProvider */} + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/components/icons/Play.tsx b/src/components/icons/Play.tsx new file mode 100644 index 0000000000..acf421d57c --- /dev/null +++ b/src/components/icons/Play.tsx @@ -0,0 +1,9 @@ +import {createSinglePathSVG} from './TEMPLATE' + +export const Play_Stroke2_Corner2_Rounded = createSinglePathSVG({ + path: 'M5 5.086C5 2.736 7.578 1.3 9.576 2.534L20.77 9.448c1.899 1.172 1.899 3.932 0 5.104L9.576 21.466C7.578 22.701 5 21.263 5 18.914V5.086Zm3.525-.85A1 1 0 0 0 7 5.085v13.828a1 1 0 0 0 1.525.85l11.194-6.913a1 1 0 0 0 0-1.702L8.525 4.235Z', +}) + +export const Play_Filled_Corner2_Rounded = createSinglePathSVG({ + path: 'M9.576 2.534C7.578 1.299 5 2.737 5 5.086v13.828c0 2.35 2.578 3.787 4.576 2.552l11.194-6.914c1.899-1.172 1.899-3.932 0-5.104L9.576 2.534Z', +}) diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx index a05339d4dc..425a2257f6 100644 --- a/src/view/com/post/Post.tsx +++ b/src/view/com/post/Post.tsx @@ -210,38 +210,40 @@ function PostInner({ )} - - - {richText.text ? ( - - - - ) : undefined} - {limitLines ? ( - + - ) : undefined} - {post.embed ? ( - - ) : null} - + {richText.text ? ( + + + + ) : undefined} + {limitLines ? ( + + ) : undefined} + {post.embed ? ( + + ) : null} + + )} { const urip = new AtUri(post.uri) return makeProfileLink(post.author, 'post', urip.rkey) @@ -354,6 +358,9 @@ let FeedItemInner = ({ postAuthor={post.author} onOpenEmbed={onOpenEmbed} /> + {__DEV__ && gate('videos') && ( + + )} void +} | null>(null) + +export function ActiveVideoProvider({children}: {children: React.ReactNode}) { + const [activeViewId, setActiveViewId] = useState(null) + const [source, setSource] = useState(null) + + const value = useMemo( + () => ({ + activeViewId, + setActiveView: (viewId: string, src: string) => { + setActiveViewId(viewId) + setSource(src) + }, + }), + [activeViewId], + ) + + return ( + + + {children} + + + ) +} + +export function useActiveVideoView() { + const context = React.useContext(ActiveVideoContext) + if (!context) { + throw new Error('useActiveVideo must be used within a ActiveVideoProvider') + } + const id = useId() + + return { + active: context.activeViewId === id, + setActive: useCallback( + (source: string) => context.setActiveView(id, source), + [context, id], + ), + } +} diff --git a/src/view/com/util/post-embeds/VideoEmbed.tsx b/src/view/com/util/post-embeds/VideoEmbed.tsx new file mode 100644 index 0000000000..5e5293a553 --- /dev/null +++ b/src/view/com/util/post-embeds/VideoEmbed.tsx @@ -0,0 +1,44 @@ +import React, {useCallback} from 'react' +import {View} from 'react-native' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {atoms as a, useTheme} from '#/alf' +import {Button, ButtonIcon} from '#/components/Button' +import {Play_Filled_Corner2_Rounded as PlayIcon} from '#/components/icons/Play' +import {useActiveVideoView} from './ActiveVideoContext' +import {VideoEmbedInner} from './VideoEmbedInner' + +export function VideoEmbed({source}: {source: string}) { + const t = useTheme() + const {active, setActive} = useActiveVideoView() + const {_} = useLingui() + + const onPress = useCallback(() => setActive(source), [setActive, source]) + + return ( + + {active ? ( + + ) : ( + + )} + + ) +} diff --git a/src/view/com/util/post-embeds/VideoEmbedInner.tsx b/src/view/com/util/post-embeds/VideoEmbedInner.tsx new file mode 100644 index 0000000000..ef06787097 --- /dev/null +++ b/src/view/com/util/post-embeds/VideoEmbedInner.tsx @@ -0,0 +1,138 @@ +import React, {useCallback, useEffect, useRef, useState} from 'react' +import {Pressable, StyleSheet, useWindowDimensions, View} from 'react-native' +import Animated, { + measure, + runOnJS, + useAnimatedRef, + useFrameCallback, + useSharedValue, +} from 'react-native-reanimated' +import {VideoPlayer, VideoView} from 'expo-video' + +import {atoms as a} from '#/alf' +import {Text} from '#/components/Typography' +import {useVideoPlayer} from './VideoPlayerContext' + +export const VideoEmbedInner = ({}: {source: string}) => { + const player = useVideoPlayer() + const aref = useAnimatedRef() + const {height: windowHeight} = useWindowDimensions() + const hasLeftView = useSharedValue(false) + const ref = useRef(null) + + const onEnterView = useCallback(() => { + if (player.status === 'readyToPlay') { + player.play() + } + }, [player]) + + const onLeaveView = useCallback(() => { + player.pause() + }, [player]) + + const enterFullscreen = useCallback(() => { + if (ref.current) { + ref.current.enterFullscreen() + } + }, []) + + useFrameCallback(() => { + const measurement = measure(aref) + + if (measurement) { + if (hasLeftView.value) { + // Check if the video is in view + if ( + measurement.pageY >= 0 && + measurement.pageY + measurement.height <= windowHeight + ) { + runOnJS(onEnterView)() + hasLeftView.value = false + } + } else { + // Check if the video is out of view + if ( + measurement.pageY + measurement.height < 0 || + measurement.pageY > windowHeight + ) { + runOnJS(onLeaveView)() + hasLeftView.value = true + } + } + } + }) + + return ( + + + + + ) +} + +function VideoControls({ + player, + enterFullscreen, +}: { + player: VideoPlayer + enterFullscreen: () => void +}) { + const [currentTime, setCurrentTime] = useState(Math.floor(player.currentTime)) + + useEffect(() => { + const interval = setInterval(() => { + setCurrentTime(Math.floor(player.duration - player.currentTime)) + // how often should we update the time? + // 1000 gets out of sync with the video time + }, 250) + + return () => { + clearInterval(interval) + } + }, [player]) + + const minutes = Math.floor(currentTime / 60) + const seconds = String(currentTime % 60).padStart(2, '0') + + return ( + + + + {minutes}:{seconds} + + + + + ) +} + +const styles = StyleSheet.create({ + timeContainer: { + backgroundColor: 'rgba(0, 0, 0, 0.75)', + borderRadius: 6, + paddingHorizontal: 6, + paddingVertical: 3, + position: 'absolute', + left: 5, + bottom: 5, + }, + timeElapsed: { + color: 'white', + fontSize: 12, + fontWeight: 'bold', + }, +}) diff --git a/src/view/com/util/post-embeds/VideoEmbedInner.web.tsx b/src/view/com/util/post-embeds/VideoEmbedInner.web.tsx new file mode 100644 index 0000000000..cb02743c6f --- /dev/null +++ b/src/view/com/util/post-embeds/VideoEmbedInner.web.tsx @@ -0,0 +1,52 @@ +import React, {useEffect, useRef} from 'react' +import Hls from 'hls.js' + +import {atoms as a} from '#/alf' + +export const VideoEmbedInner = ({source}: {source: string}) => { + const ref = useRef(null) + + // Use HLS.js to play HLS video + useEffect(() => { + if (ref.current) { + if (ref.current.canPlayType('application/vnd.apple.mpegurl')) { + ref.current.src = source + } else if (Hls.isSupported()) { + var hls = new Hls() + hls.loadSource(source) + hls.attachMedia(ref.current) + } else { + // TODO: fallback + } + } + }, [source]) + + useEffect(() => { + if (ref.current) { + const observer = new IntersectionObserver( + ([entry]) => { + if (ref.current) { + if (entry.isIntersecting) { + if (ref.current.paused) { + ref.current.play() + } + } else { + if (!ref.current.paused) { + ref.current.pause() + } + } + } + }, + {threshold: 0}, + ) + + observer.observe(ref.current) + + return () => { + observer.disconnect() + } + } + }, []) + + return