From f769564edfea3ec6406c49ef639685d942e14e09 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Mon, 24 Jun 2024 10:11:43 -0700 Subject: [PATCH 001/153] Remove the 'Who can reply' element except when viewing root, and add "edit" (#4615) * Remove the 'Who can reply' element except when viewing root, and add the edit text to authors * Switch to icon --- .../threadgate => components}/WhoCanReply.tsx | 95 +----- src/view/com/post-thread/PostThreadItem.tsx | 307 +++++++++--------- 2 files changed, 165 insertions(+), 237 deletions(-) rename src/{view/com/threadgate => components}/WhoCanReply.tsx (79%) diff --git a/src/view/com/threadgate/WhoCanReply.tsx b/src/components/WhoCanReply.tsx similarity index 79% rename from src/view/com/threadgate/WhoCanReply.tsx rename to src/components/WhoCanReply.tsx index 3f9970f5fb..cd171a0a46 100644 --- a/src/view/com/threadgate/WhoCanReply.tsx +++ b/src/components/WhoCanReply.tsx @@ -33,7 +33,8 @@ import {CircleBanSign_Stroke2_Corner0_Rounded as CircleBanSign} from '#/componen import {Earth_Stroke2_Corner0_Rounded as Earth} from '#/components/icons/Globe' import {Group3_Stroke2_Corner0_Rounded as Group} from '#/components/icons/Group' import {Text} from '#/components/Typography' -import {TextLink} from '../util/Link' +import {TextLink} from '../view/com/util/Link' +import {PencilLine_Stroke2_Corner0_Rounded as PencilLine} from './icons/Pencil' interface WhoCanReplyProps { post: AppBskyFeedDefs.PostView @@ -41,11 +42,7 @@ interface WhoCanReplyProps { style?: StyleProp } -export function WhoCanReplyInline({ - post, - isThreadAuthor, - style, -}: WhoCanReplyProps) { +export function WhoCanReply({post, isThreadAuthor, style}: WhoCanReplyProps) { const {_} = useLingui() const t = useTheme() const infoDialogControl = useDialogControl() @@ -90,73 +87,13 @@ export function WhoCanReplyInline({ ]}> {description} + {isThreadAuthor && ( + + )} )} - - - ) -} - -export function WhoCanReplyBlock({ - post, - isThreadAuthor, - style, -}: WhoCanReplyProps) { - const {_} = useLingui() - const t = useTheme() - const infoDialogControl = useDialogControl() - const {settings, isRootPost, onPressEdit} = useWhoCanReply(post) - - if (!isRootPost) { - return null - } - if (!settings.length && !isThreadAuthor) { - return null - } - - const isEverybody = settings.length === 0 - const isNobody = !!settings.find(gate => gate.type === 'nobody') - const description = isEverybody - ? _(msg`Everybody can reply`) - : isNobody - ? _(msg`Replies on this thread are disabled`) - : _(msg`Some people can reply`) - - return ( - <> - - + ) } @@ -176,31 +113,24 @@ function Icon({ return } -function InfoDialog({ +export function WhoCanReplyDialog({ control, post, - settings, }: { control: Dialog.DialogControlProps post: AppBskyFeedDefs.PostView - settings: ThreadgateSetting[] }) { return ( - + ) } -function InfoDialogInner({ - post, - settings, -}: { - post: AppBskyFeedDefs.PostView - settings: ThreadgateSetting[] -}) { +function WhoCanReplyDialogInner({post}: {post: AppBskyFeedDefs.PostView}) { const {_} = useLingui() + const {settings} = useWhoCanReply(post) return ( - - - - - {!isThreadedChild && showParentReplyLine && ( + + + + + {!isThreadedChild && showParentReplyLine && ( + + )} + + + + + {/* If we are in threaded mode, the avatar is rendered in PostMeta */} + {!isThreadedChild && ( + + + + {showChildReplyLine && ( )} - + )} - {/* If we are in threaded mode, the avatar is rendered in PostMeta */} - {!isThreadedChild && ( - - + + + + {richText?.text ? ( + + - - {showChildReplyLine && ( - - )} + + ) : undefined} + {limitLines ? ( + + ) : undefined} + {post.embed && ( + + )} - - - - - - {richText?.text ? ( - - - - ) : undefined} - {limitLines ? ( - - ) : undefined} - {post.embed && ( - - - - )} - - + - {hasMore ? ( - - - More - - - - ) : undefined} - - - - + + {hasMore ? ( + + + More + + + + ) : undefined} + + ) } } @@ -671,7 +666,7 @@ function ExpandedPostDetails({ s.mb10, ]}> {niceDate(post.indexedAt)} - + {needsTranslation && ( <> · From 77a512ae32eb1aae6be2b67779ffd9d8a1e28cb6 Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 24 Jun 2024 10:24:39 -0700 Subject: [PATCH 002/153] Couple of starter packs tweaks (#4604) --- app.config.js | 4 +- src/components/StarterPack/QrCodeDialog.tsx | 10 +---- src/components/StarterPack/ShareDialog.tsx | 23 +++-------- .../Wizard/WizardEditListDialog.tsx | 2 + .../StarterPack/Wizard/WizardListCard.tsx | 29 ++++++++++++-- src/screens/StarterPack/Wizard/StepFeeds.tsx | 13 ++++--- .../StarterPack/Wizard/StepProfiles.tsx | 1 + src/screens/StarterPack/Wizard/index.tsx | 38 ++++++------------- 8 files changed, 57 insertions(+), 63 deletions(-) diff --git a/app.config.js b/app.config.js index 57d4305865..4a44912289 100644 --- a/app.config.js +++ b/app.config.js @@ -45,9 +45,7 @@ module.exports = function (config) { 'appclips:bsky.app', 'appclips:go.bsky.app', // Allows App Clip to work when scanning QR codes // When testing local services, enter an ngrok (et al) domain here. It must use a standard HTTP/HTTPS port. - ...(IS_DEV || IS_TESTFLIGHT - ? ['appclips:sptesting.haileyok.com', 'applinks:sptesting.haileyok.com'] - : []), + ...(IS_DEV || IS_TESTFLIGHT ? [] : []), ] const UPDATES_CHANNEL = IS_TESTFLIGHT diff --git a/src/components/StarterPack/QrCodeDialog.tsx b/src/components/StarterPack/QrCodeDialog.tsx index 580c6cc7c8..39eb3076d8 100644 --- a/src/components/StarterPack/QrCodeDialog.tsx +++ b/src/components/StarterPack/QrCodeDialog.tsx @@ -1,16 +1,14 @@ import React from 'react' import {View} from 'react-native' import ViewShot from 'react-native-view-shot' -import * as FS from 'expo-file-system' import {requestMediaLibraryPermissionsAsync} from 'expo-image-picker' +import {createAssetAsync} from 'expo-media-library' import * as Sharing from 'expo-sharing' import {AppBskyGraphDefs, AppBskyGraphStarterpack} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {nanoid} from 'nanoid/non-secure' import {logger} from '#/logger' -import {saveImageToMediaLibrary} from 'lib/media/manip' import {logEvent} from 'lib/statsig/statsig' import {isNative, isWeb} from 'platform/detection' import * as Toast from '#/view/com/util/Toast' @@ -65,13 +63,9 @@ export function QrCodeDialog({ return } - const filename = `${FS.documentDirectory}/${nanoid(12)}.png` - // Incase of a FS failure, don't crash the app try { - await FS.copyAsync({from: uri, to: filename}) - await saveImageToMediaLibrary({uri: filename}) - await FS.deleteAsync(filename) + await createAssetAsync(`file://${uri}`) } catch (e: unknown) { Toast.show(_(msg`An error occurred while saving the QR code!`)) logger.error('Failed to save QR code', {error: e}) diff --git a/src/components/StarterPack/ShareDialog.tsx b/src/components/StarterPack/ShareDialog.tsx index 23fa10fb39..61e238081d 100644 --- a/src/components/StarterPack/ShareDialog.tsx +++ b/src/components/StarterPack/ShareDialog.tsx @@ -1,12 +1,10 @@ import React from 'react' import {View} from 'react-native' -import * as FS from 'expo-file-system' import {Image} from 'expo-image' import {requestMediaLibraryPermissionsAsync} from 'expo-image-picker' import {AppBskyGraphDefs} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {nanoid} from 'nanoid/non-secure' import {logger} from '#/logger' import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' @@ -72,19 +70,8 @@ function ShareDialogInner({ return } - const cachePath = await Image.getCachePathAsync(imageUrl) - const filename = `${FS.documentDirectory}/${nanoid(12)}.png` - - if (!cachePath) { - Toast.show(_(msg`An error occurred while saving the image.`)) - return - } - try { - await FS.copyAsync({from: cachePath, to: filename}) - await saveImageToMediaLibrary({uri: filename}) - await FS.deleteAsync(filename) - + await saveImageToMediaLibrary({uri: imageUrl}) Toast.show(_(msg`Image saved to your camera roll!`)) control.close() } catch (e: unknown) { @@ -133,18 +120,18 @@ function ShareDialogInner({ isWeb && [a.gap_sm, a.flex_row_reverse, {marginLeft: 'auto'}], ]}> {isNative && ( diff --git a/src/components/StarterPack/Wizard/WizardEditListDialog.tsx b/src/components/StarterPack/Wizard/WizardEditListDialog.tsx index bf250ac354..cf755e1bcf 100644 --- a/src/components/StarterPack/Wizard/WizardEditListDialog.tsx +++ b/src/components/StarterPack/Wizard/WizardEditListDialog.tsx @@ -58,6 +58,7 @@ export function WizardEditListDialog({ state.currentStep === 'Profiles' ? ( - + {btnType === 'checkbox' ? ( + + ) : !disabled ? ( + + ) : null} ) } export function WizardProfileCard({ + btnType, state, dispatch, profile, moderationOpts, }: { + btnType: 'checkbox' | 'remove' state: WizardState dispatch: (action: WizardAction) => void profile: AppBskyActorDefs.ProfileViewBasic @@ -127,6 +146,7 @@ export function WizardProfileCard({ return ( void @@ -170,6 +192,7 @@ export function WizardFeedCard({ return ( page.feeds) - .filter(f => !savedFeeds?.some(sf => sf?.uri === f.uri)) ?? [] + const popularFeeds = popularFeedsPages?.pages.flatMap(p => p.feeds) ?? [] - const suggestedFeeds = savedFeeds?.concat(popularFeeds) + const suggestedFeeds = + savedFeeds.length === 0 + ? popularFeeds + : savedFeeds.concat( + popularFeeds.filter(f => !savedFeeds.some(sf => sf.uri === f.uri)), + ) const {data: searchedFeeds, isLoading: isLoadingSearch} = useSearchPopularFeedsQuery({q: throttledQuery}) @@ -56,6 +58,7 @@ export function StepFeeds({moderationOpts}: {moderationOpts: ModerationOpts}) { return ( { - let displayName - if ( - currentProfile?.displayName != null && - currentProfile?.displayName !== '' - ) { - displayName = sanitizeDisplayName(currentProfile.displayName) - } else { - displayName = sanitizeHandle(currentProfile!.handle) - } + const displayName = createSanitizedDisplayName(currentProfile!, true) return _(msg`${displayName}'s Starter Pack`).slice(0, 50) } @@ -191,16 +184,12 @@ function WizardInner({ nextBtn: _(msg`Next`), }, Profiles: { - header: _(msg`People`), + header: _(msg`Choose People`), nextBtn: _(msg`Next`), - subtitle: _( - msg`Add people to your starter pack that you think others will enjoy following`, - ), }, Feeds: { - header: _(msg`Feeds`), + header: _(msg`Choose Feeds`), nextBtn: state.feeds.length === 0 ? _(msg`Skip`) : _(msg`Finish`), - subtitle: _(msg`Some subtitle`), }, } const currUiStrings = wizardUiStrings[state.currentStep] @@ -254,8 +243,8 @@ function WizardInner({ dispatch({type: 'SetProcessing', processing: true}) if (currentStarterPack && currentListItems) { editStarterPack({ - name: state.name ?? getDefaultName(), - description: state.description, + name: state.name?.trim() || getDefaultName(), + description: state.description?.trim(), descriptionFacets: [], profiles: state.profiles, feeds: state.feeds, @@ -264,8 +253,8 @@ function WizardInner({ }) } else { createStarterPack({ - name: state.name ?? getDefaultName(), - description: state.description, + name: state.name?.trim() || getDefaultName(), + description: state.description?.trim(), descriptionFacets: [], profiles: state.profiles, feeds: state.feeds, @@ -483,13 +472,10 @@ function Footer({ ) : items.length === 2 ? ( - - {getName(items[initialNamesIndex])}{' '} - - and + You and - {getName(items[state.currentStep === 'Profiles' ? 0 : 1])}{' '} + {getName(items[initialNamesIndex])}{' '} are included in your starter pack @@ -579,9 +565,9 @@ function Footer({ function getName(item: AppBskyActorDefs.ProfileViewBasic | GeneratorView) { if (typeof item.displayName === 'string') { - return enforceLen(sanitizeDisplayName(item.displayName), 16, true) + return enforceLen(sanitizeDisplayName(item.displayName), 28, true) } else if (typeof item.handle === 'string') { - return enforceLen(sanitizeHandle(item.handle), 16, true) + return enforceLen(sanitizeHandle(item.handle), 28, true) } return '' } From 873d91d4664403577fff0438bfc81304f1fafe5b Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 24 Jun 2024 11:14:40 -0700 Subject: [PATCH 003/153] use granular permission of for media perm request (#4609) --- src/lib/hooks/usePermissions.ts | 4 +++- src/view/com/composer/photos/OpenCameraBtn.tsx | 2 +- src/view/com/lightbox/Lightbox.tsx | 4 +++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/lib/hooks/usePermissions.ts b/src/lib/hooks/usePermissions.ts index baf9f7b8af..9f1f8fb6f7 100644 --- a/src/lib/hooks/usePermissions.ts +++ b/src/lib/hooks/usePermissions.ts @@ -20,7 +20,9 @@ const openPermissionAlert = (perm: string) => { } export function usePhotoLibraryPermission() { - const [res, requestPermission] = MediaLibrary.usePermissions() + const [res, requestPermission] = MediaLibrary.usePermissions({ + granularPermissions: ['photo'], + }) const requestPhotoAccessIfNeeded = async () => { // On the, we use to produce a filepicker // This does not need any permission granting. diff --git a/src/view/com/composer/photos/OpenCameraBtn.tsx b/src/view/com/composer/photos/OpenCameraBtn.tsx index 8f9152e34d..f1f984103e 100644 --- a/src/view/com/composer/photos/OpenCameraBtn.tsx +++ b/src/view/com/composer/photos/OpenCameraBtn.tsx @@ -24,7 +24,7 @@ export function OpenCameraBtn({gallery, disabled}: Props) { const {_} = useLingui() const {requestCameraAccessIfNeeded} = useCameraPermission() const [mediaPermissionRes, requestMediaPermission] = - MediaLibrary.usePermissions() + MediaLibrary.usePermissions({granularPermissions: ['photo']}) const t = useTheme() const onPressTakePicture = useCallback(async () => { diff --git a/src/view/com/lightbox/Lightbox.tsx b/src/view/com/lightbox/Lightbox.tsx index a95a948357..858116fdf7 100644 --- a/src/view/com/lightbox/Lightbox.tsx +++ b/src/view/com/lightbox/Lightbox.tsx @@ -59,7 +59,9 @@ function LightboxFooter({imageIndex}: {imageIndex: number}) { const {_} = useLingui() const {activeLightbox} = useLightbox() const [isAltExpanded, setAltExpanded] = React.useState(false) - const [permissionResponse, requestPermission] = MediaLibrary.usePermissions() + const [permissionResponse, requestPermission] = MediaLibrary.usePermissions({ + granularPermissions: ['photo'], + }) const saveImageToAlbumWithToasts = React.useCallback( async (uri: string) => { From f64245c1fb0b590edf1959ea0f30ec3bee507ad1 Mon Sep 17 00:00:00 2001 From: dan Date: Mon, 24 Jun 2024 21:34:42 +0100 Subject: [PATCH 004/153] Fix crash in Feeds and Starter Packs (#4616) * Remove useless check * Fix the bug by only adding resolved feeds/lists * Clarify the purpose of the count field --- src/screens/StarterPack/Wizard/StepFeeds.tsx | 10 ++--- src/state/queries/feed.ts | 44 +++++++++++++------- 2 files changed, 31 insertions(+), 23 deletions(-) diff --git a/src/screens/StarterPack/Wizard/StepFeeds.tsx b/src/screens/StarterPack/Wizard/StepFeeds.tsx index fbd8e7389d..46c4d4404e 100644 --- a/src/screens/StarterPack/Wizard/StepFeeds.tsx +++ b/src/screens/StarterPack/Wizard/StepFeeds.tsx @@ -41,13 +41,9 @@ export function StepFeeds({moderationOpts}: {moderationOpts: ModerationOpts}) { limit: 30, }) const popularFeeds = popularFeedsPages?.pages.flatMap(p => p.feeds) ?? [] - - const suggestedFeeds = - savedFeeds.length === 0 - ? popularFeeds - : savedFeeds.concat( - popularFeeds.filter(f => !savedFeeds.some(sf => sf.uri === f.uri)), - ) + const suggestedFeeds = savedFeeds.concat( + popularFeeds.filter(f => !savedFeeds.some(sf => sf.uri === f.uri)), + ) const {data: searchedFeeds, isLoading: isLoadingSearch} = useSearchPopularFeedsQuery({q: throttledQuery}) diff --git a/src/state/queries/feed.ts b/src/state/queries/feed.ts index dea6f5d774..36555c1813 100644 --- a/src/state/queries/feed.ts +++ b/src/state/queries/feed.ts @@ -509,6 +509,7 @@ export function useSavedFeeds() { placeholderData: previousData => { return ( previousData || { + // The likely count before we try to resolve them. count: savedItems.length, feeds: [], } @@ -556,28 +557,39 @@ export function useSavedFeeds() { precacheList(queryClient, list) }) - const res: SavedFeedItem[] = savedItems.map(s => { - if (s.type === 'timeline') { - return { + const result: SavedFeedItem[] = [] + for (let savedItem of savedItems) { + if (savedItem.type === 'timeline') { + result.push({ type: 'timeline', - config: s, + config: savedItem, view: undefined, + }) + } else if (savedItem.type === 'feed') { + const resolvedFeed = resolvedFeeds.get(savedItem.value) + if (resolvedFeed) { + result.push({ + type: 'feed', + config: savedItem, + view: resolvedFeed, + }) + } + } else if (savedItem.type === 'list') { + const resolvedList = resolvedLists.get(savedItem.value) + if (resolvedList) { + result.push({ + type: 'list', + config: savedItem, + view: resolvedList, + }) } } - - return { - type: s.type, - config: s, - view: - s.type === 'feed' - ? resolvedFeeds.get(s.value) - : resolvedLists.get(s.value), - } - }) as SavedFeedItem[] + } return { - count: savedItems.length, - feeds: res, + // By this point we know the real count. + count: result.length, + feeds: result, } }, }) From e0ac7d5bdcb096d6c23658c34da04bfa19579e4f Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 24 Jun 2024 13:37:08 -0700 Subject: [PATCH 005/153] handle each possible loading state (#4617) --- src/screens/StarterPack/Wizard/StepFeeds.tsx | 16 ++++++++++++---- src/screens/StarterPack/Wizard/StepProfiles.tsx | 12 +++++++++--- 2 files changed, 21 insertions(+), 7 deletions(-) diff --git a/src/screens/StarterPack/Wizard/StepFeeds.tsx b/src/screens/StarterPack/Wizard/StepFeeds.tsx index 46c4d4404e..5170edc6ef 100644 --- a/src/screens/StarterPack/Wizard/StepFeeds.tsx +++ b/src/screens/StarterPack/Wizard/StepFeeds.tsx @@ -32,12 +32,17 @@ export function StepFeeds({moderationOpts}: {moderationOpts: ModerationOpts}) { const throttledQuery = useThrottledValue(query, 500) const {screenReaderEnabled} = useA11y() - const {data: savedFeedsAndLists} = useSavedFeeds() + const {data: savedFeedsAndLists, isLoading: isLoadingSavedFeeds} = + useSavedFeeds() const savedFeeds = savedFeedsAndLists?.feeds .filter(f => f.type === 'feed' && f.view.uri !== DISCOVER_FEED_URI) .map(f => f.view) as AppBskyFeedDefs.GeneratorView[] - const {data: popularFeedsPages, fetchNextPage} = useGetPopularFeedsQuery({ + const { + data: popularFeedsPages, + fetchNextPage, + isLoading: isLoadingPopularFeeds, + } = useGetPopularFeedsQuery({ limit: 30, }) const popularFeeds = popularFeedsPages?.pages.flatMap(p => p.feeds) ?? [] @@ -45,9 +50,12 @@ export function StepFeeds({moderationOpts}: {moderationOpts: ModerationOpts}) { popularFeeds.filter(f => !savedFeeds.some(sf => sf.uri === f.uri)), ) - const {data: searchedFeeds, isLoading: isLoadingSearch} = + const {data: searchedFeeds, isFetching: isFetchingSearchedFeeds} = useSearchPopularFeedsQuery({q: throttledQuery}) + const isLoading = + isLoadingSavedFeeds || isLoadingPopularFeeds || isFetchingSearchedFeeds + const renderItem = ({ item, }: ListRenderItemInfo) => { @@ -90,7 +98,7 @@ export function StepFeeds({moderationOpts}: {moderationOpts: ModerationOpts}) { style={{flex: 1}} ListEmptyComponent={ - {isLoadingSearch ? ( + {isLoading ? ( ) : ( p.actors) - const {data: results, isLoading: isLoadingResults} = + const {data: results, isFetching: isFetchingResults} = useActorAutocompleteQuery(query, true, 12) + const isLoading = isLoadingTopPages || isFetchingResults + const renderItem = ({ item, }: ListRenderItemInfo) => { @@ -80,7 +86,7 @@ export function StepProfiles({ onEndReachedThreshold={isNative ? 2 : 0.25} ListEmptyComponent={ - {isLoadingResults ? ( + {isLoading ? ( ) : ( Date: Mon, 24 Jun 2024 23:15:11 +0100 Subject: [PATCH 006/153] Composer - replace threadgate modal with alf dialog (#4329) * replace threadgate modal with alf dialog * add accessibility to selectable * add aria * hide spinner once fetched * add `hasOpenDialogs` value to context * remove state * Rm loading state * Update the threadgate dialog button theming * Factor out the threadgate editor and add editing to post views * Mark messages for localization * Use colors from mute dialog * Remove unnecessary effect * Reset state on dialog dismiss * Clearer CTA * Fix bugs * Scope keyboard fix * Rm getAreDialogsActive (no longer needed) --------- Co-authored-by: Dan Abramov Co-authored-by: Paul Frazee --- src/components/Dialog/index.web.tsx | 5 +- src/components/WhoCanReply.tsx | 150 ++++++------ src/components/dialogs/EmbedConsent.tsx | 1 + src/components/dialogs/ThreadgateEditor.tsx | 218 ++++++++++++++++++ src/state/modals/index.tsx | 9 - .../com/composer/threadgate/ThreadgateBtn.tsx | 50 ++-- src/view/com/modals/Modal.tsx | 4 - src/view/com/modals/Modal.web.tsx | 3 - src/view/com/modals/Threadgate.tsx | 208 ----------------- 9 files changed, 334 insertions(+), 314 deletions(-) create mode 100644 src/components/dialogs/ThreadgateEditor.tsx delete mode 100644 src/view/com/modals/Threadgate.tsx diff --git a/src/components/Dialog/index.web.tsx b/src/components/Dialog/index.web.tsx index 35d807b4be..aff1842f77 100644 --- a/src/components/Dialog/index.web.tsx +++ b/src/components/Dialog/index.web.tsx @@ -88,7 +88,10 @@ export function Outer({ if (!isOpen) return function handler(e: KeyboardEvent) { - if (e.key === 'Escape') close() + if (e.key === 'Escape') { + e.stopPropagation() + close() + } } document.addEventListener('keydown', handler) diff --git a/src/components/WhoCanReply.tsx b/src/components/WhoCanReply.tsx index cd171a0a46..a73aae850b 100644 --- a/src/components/WhoCanReply.tsx +++ b/src/components/WhoCanReply.tsx @@ -17,7 +17,6 @@ import {HITSLOP_10} from '#/lib/constants' import {makeListLink, makeProfileLink} from '#/lib/routes/links' import {logger} from '#/logger' import {isNative} from '#/platform/detection' -import {useModalControls} from '#/state/modals' import {RQKEY_ROOT as POST_THREAD_RQKEY_ROOT} from '#/state/queries/post-thread' import { ThreadgateSetting, @@ -34,6 +33,7 @@ import {Earth_Stroke2_Corner0_Rounded as Earth} from '#/components/icons/Globe' import {Group3_Stroke2_Corner0_Rounded as Group} from '#/components/icons/Group' import {Text} from '#/components/Typography' import {TextLink} from '../view/com/util/Link' +import {ThreadgateEditorDialog} from './dialogs/ThreadgateEditor' import {PencilLine_Stroke2_Corner0_Rounded as PencilLine} from './icons/Pencil' interface WhoCanReplyProps { @@ -46,7 +46,15 @@ export function WhoCanReply({post, isThreadAuthor, style}: WhoCanReplyProps) { const {_} = useLingui() const t = useTheme() const infoDialogControl = useDialogControl() - const {settings, isRootPost, onPressEdit} = useWhoCanReply(post) + const editDialogControl = useDialogControl() + const agent = useAgent() + const queryClient = useQueryClient() + + const settings = React.useMemo( + () => threadgateViewToSettings(post.threadgate), + [post], + ) + const isRootPost = !('reply' in post.record) if (!isRootPost) { return null @@ -63,6 +71,55 @@ export function WhoCanReply({post, isThreadAuthor, style}: WhoCanReplyProps) { ? _(msg`Replies disabled`) : _(msg`Some people can reply`) + const onPressEdit = () => { + if (isNative && Keyboard.isVisible()) { + Keyboard.dismiss() + } + if (isThreadAuthor) { + editDialogControl.open() + } else { + infoDialogControl.open() + } + } + + const onEditConfirm = async (newSettings: ThreadgateSetting[]) => { + if (JSON.stringify(settings) === JSON.stringify(newSettings)) { + return + } + try { + if (newSettings.length) { + await createThreadgate(agent, post.uri, newSettings) + } else { + await agent.api.com.atproto.repo.deleteRecord({ + repo: agent.session!.did, + collection: 'app.bsky.feed.threadgate', + rkey: new AtUri(post.uri).rkey, + }) + } + await whenAppViewReady(agent, post.uri, res => { + const thread = res.data.thread + if (AppBskyFeedDefs.isThreadViewPost(thread)) { + const fetchedSettings = threadgateViewToSettings( + thread.post.threadgate, + ) + return JSON.stringify(fetchedSettings) === JSON.stringify(newSettings) + } + return false + }) + Toast.show(_(msg`Thread settings updated`)) + queryClient.invalidateQueries({ + queryKey: [POST_THREAD_RQKEY_ROOT], + }) + } catch (err) { + Toast.show( + _( + msg`There was an issue. Please check your internet connection and try again.`, + ), + ) + logger.error('Failed to edit threadgate', {message: err}) + } + } + return ( <> - + + {isThreadAuthor && ( + + )} ) } @@ -113,24 +181,31 @@ function Icon({ return } -export function WhoCanReplyDialog({ +function WhoCanReplyDialog({ control, post, + settings, }: { control: Dialog.DialogControlProps post: AppBskyFeedDefs.PostView + settings: ThreadgateSetting[] }) { return ( - + ) } -function WhoCanReplyDialogInner({post}: {post: AppBskyFeedDefs.PostView}) { +function WhoCanReplyDialogInner({ + post, + settings, +}: { + post: AppBskyFeedDefs.PostView + settings: ThreadgateSetting[] +}) { const {_} = useLingui() - const {settings} = useWhoCanReply(post) return ( , } -function useWhoCanReply(post: AppBskyFeedDefs.PostView) { - const agent = useAgent() - const queryClient = useQueryClient() - const {openModal} = useModalControls() - - const settings = React.useMemo( - () => threadgateViewToSettings(post.threadgate), - [post], - ) - const isRootPost = !('reply' in post.record) - - const onPressEdit = () => { - if (isNative && Keyboard.isVisible()) { - Keyboard.dismiss() - } - openModal({ - name: 'threadgate', - settings, - async onConfirm(newSettings: ThreadgateSetting[]) { - if (JSON.stringify(settings) === JSON.stringify(newSettings)) { - return - } - try { - if (newSettings.length) { - await createThreadgate(agent, post.uri, newSettings) - } else { - await agent.api.com.atproto.repo.deleteRecord({ - repo: agent.session!.did, - collection: 'app.bsky.feed.threadgate', - rkey: new AtUri(post.uri).rkey, - }) - } - await whenAppViewReady(agent, post.uri, res => { - const thread = res.data.thread - if (AppBskyFeedDefs.isThreadViewPost(thread)) { - const fetchedSettings = threadgateViewToSettings( - thread.post.threadgate, - ) - return ( - JSON.stringify(fetchedSettings) === JSON.stringify(newSettings) - ) - } - return false - }) - Toast.show('Thread settings updated') - queryClient.invalidateQueries({ - queryKey: [POST_THREAD_RQKEY_ROOT], - }) - } catch (err) { - Toast.show( - 'There was an issue. Please check your internet connection and try again.', - ) - logger.error('Failed to edit threadgate', {message: err}) - } - }, - }) - } - - return {settings, isRootPost, onPressEdit} -} - async function whenAppViewReady( agent: BskyAgent, uri: string, diff --git a/src/components/dialogs/EmbedConsent.tsx b/src/components/dialogs/EmbedConsent.tsx index c3fefd9f09..f7e6145975 100644 --- a/src/components/dialogs/EmbedConsent.tsx +++ b/src/components/dialogs/EmbedConsent.tsx @@ -113,6 +113,7 @@ export function EmbedConsentDialog({ + ) diff --git a/src/components/dialogs/ThreadgateEditor.tsx b/src/components/dialogs/ThreadgateEditor.tsx new file mode 100644 index 0000000000..75383764fc --- /dev/null +++ b/src/components/dialogs/ThreadgateEditor.tsx @@ -0,0 +1,218 @@ +import React from 'react' +import {StyleProp, View, ViewStyle} from 'react-native' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' +import isEqual from 'lodash.isequal' + +import {useMyListsQuery} from '#/state/queries/my-lists' +import {ThreadgateSetting} from '#/state/queries/threadgate' +import {atoms as a, useTheme} from '#/alf' +import {Button, ButtonText} from '#/components/Button' +import * as Dialog from '#/components/Dialog' +import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check' +import {Text} from '#/components/Typography' + +interface ThreadgateEditorDialogProps { + control: Dialog.DialogControlProps + threadgate: ThreadgateSetting[] + onChange?: (v: ThreadgateSetting[]) => void + onConfirm?: (v: ThreadgateSetting[]) => void +} + +export function ThreadgateEditorDialog({ + control, + threadgate, + onChange, + onConfirm, +}: ThreadgateEditorDialogProps) { + return ( + + + + + ) +} + +function DialogContent({ + seedThreadgate, + onChange, + onConfirm, +}: { + seedThreadgate: ThreadgateSetting[] + onChange?: (v: ThreadgateSetting[]) => void + onConfirm?: (v: ThreadgateSetting[]) => void +}) { + const {_} = useLingui() + const control = Dialog.useDialogContext() + const {data: lists} = useMyListsQuery('curate') + const [draft, setDraft] = React.useState(seedThreadgate) + + const [prevSeedThreadgate, setPrevSeedThreadgate] = + React.useState(seedThreadgate) + if (seedThreadgate !== prevSeedThreadgate) { + // New data flowed from above (e.g. due to update coming through). + setPrevSeedThreadgate(seedThreadgate) + setDraft(seedThreadgate) // Reset draft. + } + + function updateThreadgate(nextThreadgate: ThreadgateSetting[]) { + setDraft(nextThreadgate) + onChange?.(nextThreadgate) + } + + const onPressEverybody = () => { + updateThreadgate([]) + } + + const onPressNobody = () => { + updateThreadgate([{type: 'nobody'}]) + } + + const onPressAudience = (setting: ThreadgateSetting) => { + // remove nobody + let newSelected = draft.filter(v => v.type !== 'nobody') + // toggle + const i = newSelected.findIndex(v => isEqual(v, setting)) + if (i === -1) { + newSelected.push(setting) + } else { + newSelected.splice(i, 1) + } + updateThreadgate(newSelected) + } + + const doneLabel = onConfirm ? _(msg`Save`) : _(msg`Done`) + return ( + + + + Chose who can reply + + + Either choose "Everybody" or "Nobody" + + + + v.type === 'nobody')} + onPress={onPressNobody} + style={{flex: 1}} + /> + + + Or combine these options: + + + v.type === 'mention')} + onPress={() => onPressAudience({type: 'mention'})} + /> + v.type === 'following')} + onPress={() => onPressAudience({type: 'following'})} + /> + {lists && lists.length > 0 + ? lists.map(list => ( + v.type === 'list' && v.list === list.uri) + } + onPress={() => + onPressAudience({type: 'list', list: list.uri}) + } + /> + )) + : // No loading states to avoid jumps for the common case (no lists) + null} + + + + + + ) +} + +function Selectable({ + label, + isSelected, + onPress, + style, +}: { + label: string + isSelected: boolean + onPress: () => void + style?: StyleProp +}) { + const t = useTheme() + return ( + + ) +} diff --git a/src/state/modals/index.tsx b/src/state/modals/index.tsx index 685b10bd85..529dc55907 100644 --- a/src/state/modals/index.tsx +++ b/src/state/modals/index.tsx @@ -5,7 +5,6 @@ import {AppBskyActorDefs, AppBskyGraphDefs} from '@atproto/api' import {useNonReactiveCallback} from '#/lib/hooks/useNonReactiveCallback' import {GalleryModel} from '#/state/models/media/gallery' import {ImageModel} from '#/state/models/media/image' -import {ThreadgateSetting} from '../queries/threadgate' export interface EditProfileModal { name: 'edit-profile' @@ -67,13 +66,6 @@ export interface SelfLabelModal { onChange: (labels: string[]) => void } -export interface ThreadgateModal { - name: 'threadgate' - settings: ThreadgateSetting[] - onChange?: (settings: ThreadgateSetting[]) => void - onConfirm?: (settings: ThreadgateSetting[]) => void -} - export interface ChangeHandleModal { name: 'change-handle' onChanged: () => void @@ -149,7 +141,6 @@ export type Modal = | CropImageModal | EditImageModal | SelfLabelModal - | ThreadgateModal // Bluesky access | WaitlistModal diff --git a/src/view/com/composer/threadgate/ThreadgateBtn.tsx b/src/view/com/composer/threadgate/ThreadgateBtn.tsx index 2aefdfbbf3..6cf2eea2c4 100644 --- a/src/view/com/composer/threadgate/ThreadgateBtn.tsx +++ b/src/view/com/composer/threadgate/ThreadgateBtn.tsx @@ -5,11 +5,12 @@ import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' import {isNative} from '#/platform/detection' -import {useModalControls} from '#/state/modals' import {ThreadgateSetting} from '#/state/queries/threadgate' import {useAnalytics} from 'lib/analytics/analytics' import {atoms as a, useTheme} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' +import * as Dialog from '#/components/Dialog' +import {ThreadgateEditorDialog} from '#/components/dialogs/ThreadgateEditor' import {CircleBanSign_Stroke2_Corner0_Rounded as CircleBanSign} from '#/components/icons/CircleBanSign' import {Earth_Stroke2_Corner0_Rounded as Earth} from '#/components/icons/Globe' import {Group3_Stroke2_Corner0_Rounded as Group} from '#/components/icons/Group' @@ -26,18 +27,15 @@ export function ThreadgateBtn({ const {track} = useAnalytics() const {_} = useLingui() const t = useTheme() - const {openModal} = useModalControls() + const control = Dialog.useDialogControl() const onPress = () => { track('Composer:ThreadgateOpened') if (isNative && Keyboard.isVisible()) { Keyboard.dismiss() } - openModal({ - name: 'threadgate', - settings: threadgate, - onChange, - }) + + control.open() } const isEverybody = threadgate.length === 0 @@ -49,19 +47,29 @@ export function ThreadgateBtn({ : _(msg`Some people can reply`) return ( - - - + <> + + + + + ) } diff --git a/src/view/com/modals/Modal.tsx b/src/view/com/modals/Modal.tsx index ecfe5806ef..3455e1cdf8 100644 --- a/src/view/com/modals/Modal.tsx +++ b/src/view/com/modals/Modal.tsx @@ -23,7 +23,6 @@ import * as PostLanguagesSettingsModal from './lang-settings/PostLanguagesSettin import * as LinkWarningModal from './LinkWarning' import * as ListAddUserModal from './ListAddRemoveUsers' import * as SelfLabelModal from './SelfLabel' -import * as ThreadgateModal from './Threadgate' import * as UserAddRemoveListsModal from './UserAddRemoveLists' import * as VerifyEmailModal from './VerifyEmail' @@ -76,9 +75,6 @@ export function ModalsContainer() { } else if (activeModal?.name === 'self-label') { snapPoints = SelfLabelModal.snapPoints element = - } else if (activeModal?.name === 'threadgate') { - snapPoints = ThreadgateModal.snapPoints - element = } else if (activeModal?.name === 'alt-text-image') { snapPoints = AltImageModal.snapPoints element = diff --git a/src/view/com/modals/Modal.web.tsx b/src/view/com/modals/Modal.web.tsx index 14ee99e576..c4bab6fb18 100644 --- a/src/view/com/modals/Modal.web.tsx +++ b/src/view/com/modals/Modal.web.tsx @@ -23,7 +23,6 @@ import * as PostLanguagesSettingsModal from './lang-settings/PostLanguagesSettin import * as LinkWarningModal from './LinkWarning' import * as ListAddUserModal from './ListAddRemoveUsers' import * as SelfLabelModal from './SelfLabel' -import * as ThreadgateModal from './Threadgate' import * as UserAddRemoveLists from './UserAddRemoveLists' import * as VerifyEmailModal from './VerifyEmail' @@ -84,8 +83,6 @@ function Modal({modal}: {modal: ModalIface}) { element = } else if (modal.name === 'self-label') { element = - } else if (modal.name === 'threadgate') { - element = } else if (modal.name === 'change-handle') { element = } else if (modal.name === 'invite-codes') { diff --git a/src/view/com/modals/Threadgate.tsx b/src/view/com/modals/Threadgate.tsx deleted file mode 100644 index 4a9a9e2ab5..0000000000 --- a/src/view/com/modals/Threadgate.tsx +++ /dev/null @@ -1,208 +0,0 @@ -import React, {useState} from 'react' -import { - Pressable, - StyleProp, - StyleSheet, - TouchableOpacity, - View, - ViewStyle, -} from 'react-native' -import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' -import {msg, Trans} from '@lingui/macro' -import {useLingui} from '@lingui/react' -import isEqual from 'lodash.isequal' - -import {useModalControls} from '#/state/modals' -import {useMyListsQuery} from '#/state/queries/my-lists' -import {ThreadgateSetting} from '#/state/queries/threadgate' -import {usePalette} from 'lib/hooks/usePalette' -import {colors, s} from 'lib/styles' -import {isWeb} from 'platform/detection' -import {ScrollView} from 'view/com/modals/util' -import {Text} from '../util/text/Text' - -export const snapPoints = ['60%'] - -export function Component({ - settings, - onChange, - onConfirm, -}: { - settings: ThreadgateSetting[] - onChange?: (settings: ThreadgateSetting[]) => void - onConfirm?: (settings: ThreadgateSetting[]) => void -}) { - const pal = usePalette('default') - const {closeModal} = useModalControls() - const [selected, setSelected] = useState(settings) - const {_} = useLingui() - const {data: lists} = useMyListsQuery('curate') - - const onPressEverybody = () => { - setSelected([]) - onChange?.([]) - } - - const onPressNobody = () => { - setSelected([{type: 'nobody'}]) - onChange?.([{type: 'nobody'}]) - } - - const onPressAudience = (setting: ThreadgateSetting) => { - // remove nobody - let newSelected = selected.filter(v => v.type !== 'nobody') - // toggle - const i = newSelected.findIndex(v => isEqual(v, setting)) - if (i === -1) { - newSelected.push(setting) - } else { - newSelected.splice(i, 1) - } - setSelected(newSelected) - onChange?.(newSelected) - } - - return ( - - - - Who can reply - - - - - - Choose "Everybody" or "Nobody" - - - - v.type === 'nobody')} - onPress={onPressNobody} - style={{flex: 1}} - /> - - - Or combine these options: - - - v.type === 'mention')} - onPress={() => onPressAudience({type: 'mention'})} - /> - v.type === 'following')} - onPress={() => onPressAudience({type: 'following'})} - /> - {lists?.length - ? lists.map(list => ( - v.type === 'list' && v.list === list.uri, - ) - } - onPress={() => - onPressAudience({type: 'list', list: list.uri}) - } - /> - )) - : null} - - - - - { - closeModal() - onConfirm?.(selected) - }} - style={styles.btn} - accessibilityRole="button" - accessibilityLabel={_(msg({message: `Done`, context: 'action'}))} - accessibilityHint=""> - - Done - - - - - ) -} - -function Selectable({ - label, - isSelected, - onPress, - style, -}: { - label: string - isSelected: boolean - onPress: () => void - style?: StyleProp -}) { - const pal = usePalette(isSelected ? 'inverted' : 'default') - return ( - - - {label} - - {isSelected ? ( - - ) : null} - - ) -} - -const styles = StyleSheet.create({ - container: { - flex: 1, - paddingBottom: isWeb ? 0 : 40, - }, - titleSection: { - paddingTop: isWeb ? 0 : 4, - }, - title: { - textAlign: 'center', - fontWeight: '600', - }, - description: { - textAlign: 'center', - paddingVertical: 16, - }, - selectable: { - flexDirection: 'row', - justifyContent: 'space-between', - paddingHorizontal: 18, - paddingVertical: 16, - borderWidth: 1, - borderRadius: 6, - }, - btn: { - flexDirection: 'row', - alignItems: 'center', - justifyContent: 'center', - borderRadius: 32, - padding: 14, - backgroundColor: colors.blue3, - }, - btnContainer: { - paddingTop: 20, - paddingHorizontal: 20, - }, -}) From ffb67397e7106dce1e05fe86af0d8db12a1991f3 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 24 Jun 2024 17:34:12 -0500 Subject: [PATCH 007/153] Newskie dialog tweaks (#4623) --- src/components/NewskieDialog.tsx | 55 ++++++++++++++++++++------------ 1 file changed, 34 insertions(+), 21 deletions(-) diff --git a/src/components/NewskieDialog.tsx b/src/components/NewskieDialog.tsx index 6743a592ba..d456bd6dab 100644 --- a/src/components/NewskieDialog.tsx +++ b/src/components/NewskieDialog.tsx @@ -6,10 +6,10 @@ import {useLingui} from '@lingui/react' import {differenceInSeconds} from 'date-fns' import {useGetTimeAgo} from '#/lib/hooks/useTimeAgo' +import {isNative} from '#/platform/detection' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {HITSLOP_10} from 'lib/constants' import {sanitizeDisplayName} from 'lib/strings/display-names' -import {isWeb} from 'platform/detection' import {atoms as a, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' import * as Dialog from '#/components/Dialog' @@ -70,19 +70,27 @@ export function NewskieDialog({ - + - - + + + + Say hello! - + {profile.joinedViaStarterPack ? ( {profileName} joined Bluesky using a starter pack{' '} @@ -116,18 +124,23 @@ export function NewskieDialog({ ) : null} - + + {isNative && ( + + )} + + From bce3338a0236cdce2ef620c1f344b077390df0f5 Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 24 Jun 2024 15:43:52 -0700 Subject: [PATCH 008/153] use `.push` instead of `.concat` (#4624) --- src/screens/Onboarding/StepFinished.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/screens/Onboarding/StepFinished.tsx b/src/screens/Onboarding/StepFinished.tsx index c7a459659f..9613ce660d 100644 --- a/src/screens/Onboarding/StepFinished.tsx +++ b/src/screens/Onboarding/StepFinished.tsx @@ -110,8 +110,8 @@ export function StepFinished() { // Any starter pack feeds will be pinned _after_ the defaults if (starterPack && starterPack.feeds?.length) { - feedsToSave.concat( - starterPack.feeds.map(f => ({ + feedsToSave.push( + ...starterPack.feeds.map(f => ({ type: 'feed', value: f.uri, pinned: true, From 9e89ddeb1c6bd84594f5b9a9152cd0d9b974b9a8 Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 24 Jun 2024 15:48:10 -0700 Subject: [PATCH 009/153] Wait for preferences before showing suggested feeds (#4618) --- src/screens/StarterPack/Wizard/StepFeeds.tsx | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/screens/StarterPack/Wizard/StepFeeds.tsx b/src/screens/StarterPack/Wizard/StepFeeds.tsx index 5170edc6ef..878d17ce01 100644 --- a/src/screens/StarterPack/Wizard/StepFeeds.tsx +++ b/src/screens/StarterPack/Wizard/StepFeeds.tsx @@ -32,7 +32,7 @@ export function StepFeeds({moderationOpts}: {moderationOpts: ModerationOpts}) { const throttledQuery = useThrottledValue(query, 500) const {screenReaderEnabled} = useA11y() - const {data: savedFeedsAndLists, isLoading: isLoadingSavedFeeds} = + const {data: savedFeedsAndLists, isFetchedAfterMount: isFetchedSavedFeeds} = useSavedFeeds() const savedFeeds = savedFeedsAndLists?.feeds .filter(f => f.type === 'feed' && f.view.uri !== DISCOVER_FEED_URI) @@ -46,15 +46,23 @@ export function StepFeeds({moderationOpts}: {moderationOpts: ModerationOpts}) { limit: 30, }) const popularFeeds = popularFeedsPages?.pages.flatMap(p => p.feeds) ?? [] - const suggestedFeeds = savedFeeds.concat( - popularFeeds.filter(f => !savedFeeds.some(sf => sf.uri === f.uri)), - ) + + // If we have saved feeds already loaded, display them immediately + // Then, when popular feeds have loaded we can concat them to the saved feeds + const suggestedFeeds = + savedFeeds || isFetchedSavedFeeds + ? popularFeeds + ? savedFeeds.concat( + popularFeeds.filter(f => !savedFeeds.some(sf => sf.uri === f.uri)), + ) + : savedFeeds + : undefined const {data: searchedFeeds, isFetching: isFetchingSearchedFeeds} = useSearchPopularFeedsQuery({q: throttledQuery}) const isLoading = - isLoadingSavedFeeds || isLoadingPopularFeeds || isFetchingSearchedFeeds + !isFetchedSavedFeeds || isLoadingPopularFeeds || isFetchingSearchedFeeds const renderItem = ({ item, From ed940c637edda3f7a39b2aefb242e30f8ad8c7ff Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Mon, 24 Jun 2024 16:03:32 -0700 Subject: [PATCH 010/153] Set up the global 'joined this week' (#4625) --- src/lib/constants.ts | 9 +++++ .../StarterPack/StarterPackLandingScreen.tsx | 38 +++++++++---------- 2 files changed, 28 insertions(+), 19 deletions(-) diff --git a/src/lib/constants.ts b/src/lib/constants.ts index e0b8998007..0efaed44dd 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -13,6 +13,15 @@ export const EMBED_SERVICE = 'https://embed.bsky.app' export const EMBED_SCRIPT = `${EMBED_SERVICE}/static/embed.js` export const BSKY_DOWNLOAD_URL = 'https://bsky.app/download' +// HACK +// Yes, this is exactly what it looks like. It's a hard-coded constant +// reflecting the number of new users in the last week. We don't have +// time to add a route to the servers for this so we're just going to hard +// code and update this number with each release until we can get the +// server route done. +// -prf +export const JOINED_THIS_WEEK = 37115 // as of June24 2024 + const BASE_FEEDBACK_FORM_URL = `${HELP_DESK_URL}/requests/new` export function FEEDBACK_FORM_URL({ email, diff --git a/src/screens/StarterPack/StarterPackLandingScreen.tsx b/src/screens/StarterPack/StarterPackLandingScreen.tsx index 1c9587a79e..cd4ca151a3 100644 --- a/src/screens/StarterPack/StarterPackLandingScreen.tsx +++ b/src/screens/StarterPack/StarterPackLandingScreen.tsx @@ -11,6 +11,7 @@ import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {JOINED_THIS_WEEK} from '#/lib/constants' import {isAndroidWeb} from 'lib/browser' import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' import {createStarterPackGooglePlayUri} from 'lib/strings/starter-pack' @@ -21,6 +22,7 @@ import { useActiveStarterPack, useSetActiveStarterPack, } from 'state/shell/starter-pack' +import {formatCount} from '#/view/com/util/numeric/format' import {LoggedOutScreenState} from 'view/com/auth/LoggedOut' import {CenteredView} from 'view/com/util/Views' import {Logo} from 'view/icons/Logo' @@ -95,7 +97,7 @@ function LandingScreenLoaded({ setScreenState: (state: LoggedOutScreenState) => void moderationOpts: ModerationOpts }) { - const {record, creator, listItemsSample, feeds, joinedWeekCount} = starterPack + const {record, creator, listItemsSample, feeds} = starterPack const {_} = useLingui() const t = useTheme() const activeStarterPack = useActiveStarterPack() @@ -200,24 +202,22 @@ function LandingScreenLoaded({ Join Bluesky - {joinedWeekCount && joinedWeekCount >= 25 ? ( - - - - 123,659 joined this week - - - ) : null} + + + + {formatCount(JOINED_THIS_WEEK)} joined this week + + {Boolean(listItemsSample?.length) && ( From 51fca956699ab2b686d137a9604c755c6d42ac78 Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 24 Jun 2024 16:04:34 -0700 Subject: [PATCH 011/153] add rich text facets to description (#4619) --- src/screens/StarterPack/StarterPackScreen.tsx | 17 +++++-- src/screens/StarterPack/Wizard/index.tsx | 2 - src/state/queries/starter-packs.ts | 50 +++++++++++++------ 3 files changed, 48 insertions(+), 21 deletions(-) diff --git a/src/screens/StarterPack/StarterPackScreen.tsx b/src/screens/StarterPack/StarterPackScreen.tsx index 46ce252364..d89bda1371 100644 --- a/src/screens/StarterPack/StarterPackScreen.tsx +++ b/src/screens/StarterPack/StarterPackScreen.tsx @@ -7,6 +7,7 @@ import { AppBskyGraphStarterpack, AtUri, ModerationOpts, + RichText as RichTextAPI, } from '@atproto/api' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import {msg, Trans} from '@lingui/macro' @@ -52,6 +53,7 @@ import {Loader} from '#/components/Loader' import * as Menu from '#/components/Menu' import * as Prompt from '#/components/Prompt' import {ReportDialog, useReportDialogControl} from '#/components/ReportDialog' +import {RichText} from '#/components/RichText' import {FeedsList} from '#/components/StarterPack/Main/FeedsList' import {ProfilesList} from '#/components/StarterPack/Main/ProfilesList' import {QrCodeDialog} from '#/components/StarterPack/QrCodeDialog' @@ -280,6 +282,13 @@ function Header({ return null } + const richText = record.description + ? new RichTextAPI({ + text: record.description, + facets: record.descriptionFacets, + }) + : undefined + return ( <> - {record.description || joinedAllTimeCount >= 25 ? ( + {richText || joinedAllTimeCount >= 25 ? ( - {record.description ? ( - - {record.description} - + {richText ? ( + ) : null} {joinedAllTimeCount >= 25 ? ( diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx index fd16fd20ae..b231e317e3 100644 --- a/src/screens/StarterPack/Wizard/index.tsx +++ b/src/screens/StarterPack/Wizard/index.tsx @@ -245,7 +245,6 @@ function WizardInner({ editStarterPack({ name: state.name?.trim() || getDefaultName(), description: state.description?.trim(), - descriptionFacets: [], profiles: state.profiles, feeds: state.feeds, currentStarterPack: currentStarterPack, @@ -255,7 +254,6 @@ function WizardInner({ createStarterPack({ name: state.name?.trim() || getDefaultName(), description: state.description?.trim(), - descriptionFacets: [], profiles: state.profiles, feeds: state.feeds, }) diff --git a/src/state/queries/starter-packs.ts b/src/state/queries/starter-packs.ts index 241bc6419c..ca7fa2d0ce 100644 --- a/src/state/queries/starter-packs.ts +++ b/src/state/queries/starter-packs.ts @@ -4,8 +4,10 @@ import { AppBskyGraphDefs, AppBskyGraphGetStarterPack, AppBskyGraphStarterpack, + AppBskyRichtextFacet, AtUri, BskyAgent, + RichText, } from '@atproto/api' import {StarterPackView} from '@atproto/api/dist/client/types/app/bsky/graph/defs' import { @@ -80,7 +82,6 @@ export async function invalidateStarterPack({ interface UseCreateStarterPackMutationParams { name: string description?: string - descriptionFacets: [] profiles: AppBskyActorDefs.ProfileViewBasic[] feeds?: AppBskyFeedDefs.GeneratorView[] } @@ -100,16 +101,33 @@ export function useCreateStarterPackMutation({ Error, UseCreateStarterPackMutationParams >({ - mutationFn: async params => { + mutationFn: async ({name, description, feeds, profiles}) => { + let descriptionFacets: AppBskyRichtextFacet.Main[] | undefined + if (description) { + const rt = new RichText({text: description}) + await rt.detectFacets(agent) + descriptionFacets = rt.facets + } + let listRes - listRes = await createStarterPackList({...params, agent}) + listRes = await createStarterPackList({ + name, + description, + profiles, + descriptionFacets, + agent, + }) + return await agent.app.bsky.graph.starterpack.create( { repo: agent.session?.did, }, { - ...params, + name, + description, + descriptionFacets, list: listRes?.uri, + feeds, createdAt: new Date().toISOString(), }, ) @@ -148,16 +166,20 @@ export function useEditStarterPackMutation({ currentListItems: AppBskyGraphDefs.ListItemView[] } >({ - mutationFn: async params => { - const { - name, - description, - descriptionFacets, - feeds, - profiles, - currentStarterPack, - currentListItems, - } = params + mutationFn: async ({ + name, + description, + feeds, + profiles, + currentStarterPack, + currentListItems, + }) => { + let descriptionFacets: AppBskyRichtextFacet.Main[] | undefined + if (description) { + const rt = new RichText({text: description}) + await rt.detectFacets(agent) + descriptionFacets = rt.facets + } if (!AppBskyGraphStarterpack.isRecord(currentStarterPack.record)) { throw new Error('Invalid starter pack') From d79891a8584001db81895dac483f40d45cfa4f87 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 24 Jun 2024 18:10:18 -0500 Subject: [PATCH 012/153] Disable clicks on profile cards on starter pack lander (#4621) --- src/screens/StarterPack/StarterPackLandingScreen.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/screens/StarterPack/StarterPackLandingScreen.tsx b/src/screens/StarterPack/StarterPackLandingScreen.tsx index cd4ca151a3..b781419efe 100644 --- a/src/screens/StarterPack/StarterPackLandingScreen.tsx +++ b/src/screens/StarterPack/StarterPackLandingScreen.tsx @@ -240,6 +240,7 @@ function LandingScreenLoaded({ a.px_md, a.border_t, t.atoms.border_contrast_low, + {pointerEvents: 'none'}, ]}> Date: Tue, 25 Jun 2024 01:28:03 +0200 Subject: [PATCH 013/153] Update catalan messages.po (#4388) * Update catalan messages.po Keeping it at 100% Check it please @jordimas @darccio @surfdude29 * Update src/locale/locales/ca/messages.po Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> * Update src/locale/locales/ca/messages.po Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> * Update messages.po apply @jordimas correction --------- Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> --- src/locale/locales/ca/messages.po | 88 +++++++++++++++---------------- 1 file changed, 44 insertions(+), 44 deletions(-) diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po index 93d004f00c..6ec1268338 100644 --- a/src/locale/locales/ca/messages.po +++ b/src/locale/locales/ca/messages.po @@ -18,7 +18,7 @@ msgstr "" #: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" -msgstr "" +msgstr "(té contingut incrustat)" #: src/view/com/modals/VerifyEmail.tsx:150 msgid "(no email)" @@ -113,7 +113,7 @@ msgstr "" #: src/view/com/util/UserAvatar.tsx:419 msgid "{0}'s avatar" -msgstr "" +msgstr "Avatar de {0}" #: src/screens/StarterPack/Wizard/StepDetails.tsx:68 msgid "{0}'s favorite feeds and people - join me!" @@ -505,7 +505,7 @@ 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 msgid "Allow access to your direct messages" -msgstr "" +msgstr "Permet l'accés als teus missatges directes" #: src/screens/Messages/Settings.tsx:61 #: src/screens/Messages/Settings.tsx:64 @@ -515,7 +515,7 @@ msgstr "" #: src/screens/Messages/Settings.tsx:62 #: src/screens/Messages/Settings.tsx:65 msgid "Allow new messages from" -msgstr "" +msgstr "Permet missatges nou de" #: src/screens/Login/ForgotPasswordForm.tsx:178 #: src/view/com/modals/ChangePassword.tsx:171 @@ -1039,7 +1039,7 @@ msgstr "Cancel·la la citació de la publicació" #: src/screens/Deactivated.tsx:155 msgid "Cancel reactivation and log out" -msgstr "" +msgstr "Cancel·la la reactivació i surt" #: src/view/com/modals/ListAddRemoveUsers.tsx:87 #: src/view/shell/desktop/Search.tsx:214 @@ -1118,7 +1118,7 @@ msgstr "Configuració del xat" #: src/screens/Messages/Settings.tsx:59 #: src/view/screens/Settings/index.tsx:647 msgid "Chat Settings" -msgstr "" +msgstr "Configuració del xat" #: src/components/dms/ConvoMenu.tsx:84 msgid "Chat unmuted" @@ -1221,11 +1221,11 @@ msgstr "clica aquí" #: src/view/com/modals/DeleteAccount.tsx:208 msgid "Click here for more information on deactivating your account" -msgstr "" +msgstr "Clica aquí per a més informació sobre desactivar el teu compte" #: src/view/com/modals/DeleteAccount.tsx:216 msgid "Click here for more information." -msgstr "" +msgstr "Clica aquí per a més informació." #: src/screens/Feeds/NoFollowingFeed.tsx:46 #~ msgid "Click here to add one." @@ -1325,7 +1325,7 @@ msgstr "Tanca la visualització de la imatge de la capçalera" #: src/view/com/notifications/FeedItem.tsx:226 msgid "Collapse list of users" -msgstr "" +msgstr "Plega la llista d'usuaris" #: src/view/com/notifications/FeedItem.tsx:426 msgid "Collapses list of users for a given notification" @@ -1744,11 +1744,11 @@ msgstr "Data de naixement" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 #: src/view/screens/Settings/index.tsx:806 msgid "Deactivate account" -msgstr "" +msgstr "Desactiva el compte" #: src/view/screens/Settings/index.tsx:818 msgid "Deactivate my account" -msgstr "" +msgstr "Desactiva el meu compte" #: src/view/screens/Settings/index.tsx:873 msgid "Debug Moderation" @@ -2402,7 +2402,7 @@ msgstr "Expandeix el text alternatiu" #: src/view/com/notifications/FeedItem.tsx:227 msgid "Expand list of users" -msgstr "" +msgstr "Expandeix la llista d'usuaris" #: src/view/com/composer/ComposerReplyTo.tsx:82 #: src/view/com/composer/ComposerReplyTo.tsx:85 @@ -2679,7 +2679,7 @@ msgstr "Segueix {0}" #: src/view/com/posts/AviFollowButton.tsx:71 msgid "Follow {name}" -msgstr "" +msgstr "Segueix a {name}" #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 @@ -2782,7 +2782,7 @@ msgstr "Seguint {0}" #: src/view/com/posts/AviFollowButton.tsx:53 msgid "Following {name}" -msgstr "" +msgstr "Seguint a {name}" #: src/view/screens/Settings/index.tsx:573 msgid "Following feed preferences" @@ -3145,7 +3145,7 @@ msgstr "Si vols canviar la contrasenya t'enviarem un codi per a verificar que aq #: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 msgid "If you're trying to change your handle or email, do so before you deactivate." -msgstr "" +msgstr "Si vols canviar el teu identificador o el correu fes-ho abans de desactivar el compte." #: src/lib/moderation/useReportOptions.ts:38 msgid "Illegal and Urgent" @@ -3622,7 +3622,7 @@ msgstr "Registre" #: src/screens/Deactivated.tsx:214 #: src/screens/Deactivated.tsx:220 msgid "Log in or sign up" -msgstr "" +msgstr "Inicia sessió o registra't" #: src/screens/SignupQueued.tsx:155 #: src/screens/SignupQueued.tsx:158 @@ -4380,7 +4380,7 @@ msgstr "Obre" #: src/view/com/posts/AviFollowButton.tsx:89 msgid "Open {name} profile shortcut menu" -msgstr "" +msgstr "Obre el menú de drecera del perfil {name}" #: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" @@ -4463,7 +4463,7 @@ msgstr "Obre la càmera del dispositiu" #: src/view/screens/Settings/index.tsx:639 msgid "Opens chat settings" -msgstr "" +msgstr "Obre la configuració del xat" #: src/view/com/composer/Prompt.tsx:27 msgid "Opens composer" @@ -4517,7 +4517,7 @@ msgstr "Obre la llista de codis d'invitació" #: src/view/screens/Settings/index.tsx:808 msgid "Opens modal for account deactivation confirmation" -msgstr "" +msgstr "Obre el modal per a la confirmació de la desactivació del compte" #: src/view/screens/Settings/index.tsx:830 msgid "Opens modal for account deletion confirmation. Requires email code" @@ -4604,7 +4604,7 @@ msgstr "Obre les preferències dels fils de debat" #: src/view/com/notifications/FeedItem.tsx:513 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" -msgstr "" +msgstr "Obre aquest perfil" #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" @@ -4621,11 +4621,11 @@ msgstr "O combina aquestes opcions:" #: src/screens/Deactivated.tsx:211 msgid "Or, continue with another account." -msgstr "" +msgstr "O continua amb un altre compte." #: src/screens/Deactivated.tsx:194 msgid "Or, log into one of your other accounts." -msgstr "" +msgstr "O inicia sessió en un altre dels teus comptes." #: src/lib/moderation/useReportOptions.ts:27 msgid "Other" @@ -5067,7 +5067,7 @@ msgstr "Proporcions" #: src/screens/Deactivated.tsx:144 msgid "Reactivate your account" -msgstr "" +msgstr "Torna a activar el teu compte" #: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" @@ -5129,7 +5129,7 @@ msgstr "Elimina el bàner" #: src/screens/Messages/Conversation/MessageInputEmbed.tsx:218 msgid "Remove embed" -msgstr "" +msgstr "Elimina l'incrustat" #: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 @@ -5168,11 +5168,11 @@ msgstr "Elimina la paraula silenciada de la teva llista" #: src/view/screens/Search/Search.tsx:974 msgid "Remove profile" -msgstr "" +msgstr "Elimina el perfil" #: src/view/screens/Search/Search.tsx:976 msgid "Remove profile from search history" -msgstr "" +msgstr "Elimina el perfil de l'historial de cerca" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:238 msgid "Remove quote" @@ -5868,7 +5868,7 @@ msgstr "Envia el missatge" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." -msgstr "" +msgstr "Envia el missatge a..." #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 @@ -5893,7 +5893,7 @@ msgstr "Envia un correu de verificació" #: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "Send via direct message" -msgstr "" +msgstr "Envia per missatge directe" #: src/view/com/modals/DeleteAccount.tsx:151 msgid "Sends email with confirmation code for account deletion" @@ -6143,7 +6143,7 @@ msgstr "Mostra seguidors semblants a {0}" #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 msgid "Show hidden replies" -msgstr "" +msgstr "Mostra les respostes ocultes" #: src/view/com/util/forms/PostDropdownBtn.tsx:346 #: src/view/com/util/forms/PostDropdownBtn.tsx:348 @@ -6163,7 +6163,7 @@ msgstr "Mostra'n més com aquest" #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 msgid "Show muted replies" -msgstr "" +msgstr "Mostra les respostes silenciades" #: src/view/screens/PreferencesFollowingFeed.tsx:257 msgid "Show Posts from My Feeds" @@ -6371,7 +6371,7 @@ msgstr "Alguna cosa ha fallat" #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 msgid "Something went wrong, please try again" -msgstr "" +msgstr "Alguna cosa ha fallat, torna-ho a provar" #: src/components/ReportDialog/index.tsx:59 #: src/screens/Moderation/index.tsx:114 @@ -6715,7 +6715,7 @@ msgstr "Les condicions del servei han estat traslladades a" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." -msgstr "" +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:542 @@ -7517,7 +7517,7 @@ msgstr "Veure l'avatar de {0}" #: src/view/com/notifications/FeedItem.tsx:234 msgid "View {0}'s profile" -msgstr "" +msgstr "Veure el perfil de {0}" #: src/components/ProfileHoverCard/index.web.tsx:430 msgid "View blocked user's profile" @@ -7682,7 +7682,7 @@ msgstr "" #: src/screens/Deactivated.tsx:128 msgid "Welcome back!" -msgstr "" +msgstr "Bentornat!" #: src/view/com/auth/onboarding/WelcomeMobile.tsx:48 #~ msgid "Welcome to <0>Bluesky" @@ -7808,7 +7808,7 @@ msgstr "Sí" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 msgid "Yes, deactivate" -msgstr "" +msgstr "Sí, desactiva'l" #: src/screens/StarterPack/StarterPackScreen.tsx:525 msgid "Yes, delete this starter pack" @@ -7816,7 +7816,7 @@ msgstr "" #: src/screens/Deactivated.tsx:150 msgid "Yes, reactivate my account" -msgstr "" +msgstr "Sí, torna a activar el meu compte" #: src/components/dms/MessageItem.tsx:188 msgid "Yesterday, {time}" @@ -7841,7 +7841,7 @@ msgstr "També pots descobrir nous canals personalitzats per a seguir." #: src/view/com/modals/DeleteAccount.tsx:202 msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." -msgstr "" +msgstr "També pots desactivar el teu compte temporalment i reactivar-lo en qualsevol moment." #: src/view/com/auth/create/Step1.tsx:106 #~ msgid "You can change hosting providers at any time." @@ -7857,7 +7857,7 @@ msgstr "Pots canviar-ho quan vulguis." #: src/screens/Messages/Settings.tsx:111 msgid "You can continue ongoing conversations regardless of which setting you choose." -msgstr "" +msgstr "Pots continuar les converses en curs independentment de la configuració que triïs." #: src/screens/Login/index.tsx:158 #: src/screens/Login/PasswordUpdatedForm.tsx:33 @@ -7866,7 +7866,7 @@ msgstr "Ara pots iniciar sessió amb la nova contrasenya." #: src/screens/Deactivated.tsx:136 msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." -msgstr "" +msgstr "Pots reactivar el teu compte per continuar iniciant la sessió. El teu perfil i les publicacions seran visibles per a altres usuaris." #: src/view/com/profile/ProfileFollowers.tsx:86 msgid "You do not have any followers." @@ -8025,7 +8025,7 @@ msgstr "Has d'escollir almenys un etiquetador per a un informe" #: src/screens/Deactivated.tsx:131 msgid "You previously deactivated @{0}." -msgstr "" +msgstr "Abans has desactivat @{0}." #: src/view/com/util/forms/PostDropdownBtn.tsx:174 msgid "You will no longer receive notifications for this thread" @@ -8045,11 +8045,11 @@ msgstr "Tu: {0}" #: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" -msgstr "" +msgstr "Tu: {defaultEmbeddedContentMessage}" #: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" -msgstr "" +msgstr "Tu: {short}" #: src/screens/Signup/index.tsx:169 msgid "You'll follow the suggested users and feeds once you finish creating your account!" @@ -8084,7 +8084,7 @@ msgstr "Estàs a la cua" #: src/screens/Deactivated.tsx:89 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." -msgstr "" +msgstr "Has iniciat sessió amb una contrasenya d'aplicació. Inicia sessió amb la teva contrasenya principal per continuar la desactivació del teu compte." #: src/screens/Onboarding/StepFinished.tsx:228 msgid "You're ready to go!" @@ -8189,7 +8189,7 @@ msgstr "El teu perfil" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." -msgstr "" +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 msgid "Your reply has been published" From dc9e51dca19822bb1c0ae688d581bdb27ace6747 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Mon, 24 Jun 2024 16:31:07 -0700 Subject: [PATCH 014/153] Add borders around starter pack landing page when tablet or deskto (#4626) --- .../StarterPack/StarterPackLandingScreen.tsx | 27 ++++++++++++++----- 1 file changed, 21 insertions(+), 6 deletions(-) diff --git a/src/screens/StarterPack/StarterPackLandingScreen.tsx b/src/screens/StarterPack/StarterPackLandingScreen.tsx index b781419efe..a7bc451b7b 100644 --- a/src/screens/StarterPack/StarterPackLandingScreen.tsx +++ b/src/screens/StarterPack/StarterPackLandingScreen.tsx @@ -231,14 +231,21 @@ function LandingScreenLoaded({ )} - - {starterPack.listItemsSample?.slice(0, 8).map(item => ( + + {starterPack.listItemsSample?.slice(0, 8).map((item, i) => ( @@ -257,13 +264,21 @@ function LandingScreenLoaded({ You'll stay updated with these feeds - - {feeds?.map(feed => ( + + {feeds?.map((feed, i) => ( From 795fe7455b77c01fe6d9274c172e3e9c9ec1464e Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 24 Jun 2024 18:55:29 -0500 Subject: [PATCH 015/153] Clicky newsky androidy (#4627) * Clicky newsky androidy * tweak --------- Co-authored-by: Hailey --- src/screens/Profile/Header/Handle.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/screens/Profile/Header/Handle.tsx b/src/screens/Profile/Header/Handle.tsx index 268b7350f8..0344f1a234 100644 --- a/src/screens/Profile/Header/Handle.tsx +++ b/src/screens/Profile/Header/Handle.tsx @@ -5,7 +5,7 @@ import {Trans} from '@lingui/macro' import {Shadow} from '#/state/cache/types' import {isInvalidHandle} from 'lib/strings/handles' -import {isAndroid} from 'platform/detection' +import {isIOS} from 'platform/detection' import {atoms as a, useTheme, web} from '#/alf' import {NewskieDialog} from '#/components/NewskieDialog' import {Text} from '#/components/Typography' @@ -23,7 +23,7 @@ export function ProfileHeaderHandle({ return ( + pointerEvents={disableTaps ? 'none' : isIOS ? 'auto' : 'box-none'}> {profile.viewer?.followedBy && !blockHide ? ( From 340c2c5eaf4666bd064f69d3520e7bc2b6cfa8c2 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 24 Jun 2024 19:06:04 -0500 Subject: [PATCH 016/153] Resolve facets in feed description on feed lander (#4628) --- src/view/screens/ProfileFeed.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/view/screens/ProfileFeed.tsx b/src/view/screens/ProfileFeed.tsx index 30f8dbebe3..17d1214b2f 100644 --- a/src/view/screens/ProfileFeed.tsx +++ b/src/view/screens/ProfileFeed.tsx @@ -53,6 +53,7 @@ import * as Toast from 'view/com/util/Toast' import {CenteredView} from 'view/com/util/Views' import {atoms as a, useTheme} from '#/alf' import {Button as NewButton, ButtonText} from '#/components/Button' +import {useRichText} from '#/components/hooks/useRichText' import {ArrowOutOfBox_Stroke2_Corner0_Rounded as Share} from '#/components/icons/ArrowOutOfBox' import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo' import { @@ -518,6 +519,7 @@ function AboutSection({ const {mutateAsync: likeFeed, isPending: isLikePending} = useLikeMutation() const {mutateAsync: unlikeFeed, isPending: isUnlikePending} = useUnlikeMutation() + const [resolvedRT] = useRichText(feedInfo.description.text || '') const isLiked = !!likeUri const likeCount = @@ -553,7 +555,7 @@ function AboutSection({ ) : ( From dd5198f317fb722f348560f0b0dbe805553ae83b Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 24 Jun 2024 17:07:29 -0700 Subject: [PATCH 017/153] explicitly filter out labelers (#4629) --- .../StarterPack/Main/ProfilesList.tsx | 1 + .../StarterPack/StarterPackLandingScreen.tsx | 35 ++++++++++--------- .../StarterPack/Wizard/StepProfiles.tsx | 7 ++-- 3 files changed, 25 insertions(+), 18 deletions(-) diff --git a/src/components/StarterPack/Main/ProfilesList.tsx b/src/components/StarterPack/Main/ProfilesList.tsx index 72d35fe2b2..7691e72229 100644 --- a/src/components/StarterPack/Main/ProfilesList.tsx +++ b/src/components/StarterPack/Main/ProfilesList.tsx @@ -47,6 +47,7 @@ export const ProfilesList = React.forwardRef( // The server returns these sorted by descending creation date, so we want to invert const profiles = data?.pages .flatMap(p => p.items.map(i => i.subject)) + .filter(p => !p.associated?.labeler) .reverse() const isOwn = new AtUri(listUri).host === currentAccount?.did diff --git a/src/screens/StarterPack/StarterPackLandingScreen.tsx b/src/screens/StarterPack/StarterPackLandingScreen.tsx index a7bc451b7b..2b450494b8 100644 --- a/src/screens/StarterPack/StarterPackLandingScreen.tsx +++ b/src/screens/StarterPack/StarterPackLandingScreen.tsx @@ -239,22 +239,25 @@ function LandingScreenLoaded({ t.atoms.border_contrast_low, ] }> - {starterPack.listItemsSample?.slice(0, 8).map((item, i) => ( - - - - ))} + {starterPack.listItemsSample + ?.filter(p => !p.subject.associated?.labeler) + .slice(0, 8) + .map((item, i) => ( + + + + ))} )} diff --git a/src/screens/StarterPack/Wizard/StepProfiles.tsx b/src/screens/StarterPack/Wizard/StepProfiles.tsx index 33caa12f2e..f77a46e7ab 100644 --- a/src/screens/StarterPack/Wizard/StepProfiles.tsx +++ b/src/screens/StarterPack/Wizard/StepProfiles.tsx @@ -38,10 +38,13 @@ export function StepProfiles({ } = useActorSearchPaginated({ query: encodeURIComponent('*'), }) - const topFollowers = topPages?.pages.flatMap(p => p.actors) + const topFollowers = topPages?.pages + .flatMap(p => p.actors) + .filter(p => !p.associated?.labeler) - const {data: results, isFetching: isFetchingResults} = + const {data: resultsUnfiltered, isFetching: isFetchingResults} = useActorAutocompleteQuery(query, true, 12) + const results = resultsUnfiltered?.filter(p => !p.associated?.labeler) const isLoading = isLoadingTopPages || isFetchingResults From f94edc3f445c10db5a6b11db62532dc66fc8a968 Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 24 Jun 2024 17:41:40 -0700 Subject: [PATCH 018/153] tweak wording for own badge (#4631) --- src/components/NewskieDialog.tsx | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/src/components/NewskieDialog.tsx b/src/components/NewskieDialog.tsx index d456bd6dab..1a523a839d 100644 --- a/src/components/NewskieDialog.tsx +++ b/src/components/NewskieDialog.tsx @@ -10,6 +10,7 @@ import {isNative} from '#/platform/detection' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {HITSLOP_10} from 'lib/constants' import {sanitizeDisplayName} from 'lib/strings/display-names' +import {useSession} from 'state/session' import {atoms as a, useTheme} from '#/alf' import {Button, ButtonText} from '#/components/Button' import * as Dialog from '#/components/Dialog' @@ -28,16 +29,27 @@ export function NewskieDialog({ const {_} = useLingui() const t = useTheme() const moderationOpts = useModerationOpts() + const {currentAccount} = useSession() + const timeAgo = useGetTimeAgo() const control = useDialogControl() + + const isMe = profile.did === currentAccount?.did + const createdAt = profile.createdAt as string | undefined + const profileName = React.useMemo(() => { const name = profile.displayName || profile.handle + + if (isMe) { + return _(msg`You`) + } + if (!moderationOpts) return name const moderation = moderateProfile(profile, moderationOpts) + return sanitizeDisplayName(name, moderation.ui('displayName')) - }, [moderationOpts, profile]) + }, [_, isMe, moderationOpts, profile]) + const [now] = React.useState(() => Date.now()) - const timeAgo = useGetTimeAgo() - const createdAt = profile.createdAt as string | undefined const daysOld = React.useMemo(() => { if (!createdAt) return Infinity return differenceInSeconds(now, new Date(createdAt)) / 86400 @@ -87,7 +99,11 @@ export function NewskieDialog({ /> - Say hello! + {isMe ? ( + Welcome, friend! + ) : ( + Say hello! + )} From 2ed133cb638d830aed8ce7a1d6b897eb25087f25 Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 24 Jun 2024 17:47:20 -0700 Subject: [PATCH 019/153] Maintain portrait in app clip (#4630) --- plugins/starterPackAppClipExtension/withClipInfoPlist.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/plugins/starterPackAppClipExtension/withClipInfoPlist.js b/plugins/starterPackAppClipExtension/withClipInfoPlist.js index 59fbed1a9e..4f104a6543 100644 --- a/plugins/starterPackAppClipExtension/withClipInfoPlist.js +++ b/plugins/starterPackAppClipExtension/withClipInfoPlist.js @@ -26,6 +26,14 @@ const withClipInfoPlist = (config, {targetName}) => { CFBundleShortVersionString: config.version, CFBundleIconName: 'AppIcon', UIViewControllerBasedStatusBarAppearance: 'NO', + UISupportedInterfaceOrientations: [ + 'UIInterfaceOrientationPortrait', + 'UIInterfaceOrientationPortraitUpsideDown', + ], + 'UISupportedInterfaceOrientations~ipad': [ + 'UIInterfaceOrientationPortrait', + 'UIInterfaceOrientationPortraitUpsideDown', + ], }) fs.mkdirSync(path.dirname(targetPath), {recursive: true}) From 615c0c851e424b0179bb15a16cff05abe7affaf2 Mon Sep 17 00:00:00 2001 From: surfdude29 <149612116+surfdude29@users.noreply.github.com> Date: Tue, 25 Jun 2024 02:53:47 +0200 Subject: [PATCH 020/153] Update French localization (#4611) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update French localization * minor fix * `pack de démarrage` --> `kit de démarrage` * Apply suggestions from code review Co-authored-by: Stanislas Signoud * Apply suggestions from @Signez code review * Update messages.po --------- Co-authored-by: Stanislas Signoud --- src/locale/locales/fr/messages.po | 324 ++++++++++++++---------------- 1 file changed, 148 insertions(+), 176 deletions(-) diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index 74ac60c521..95efb00a5d 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-06-11 14:30+0100\n" +"PO-Revision-Date: 2024-06-23 20:10+0100\n" "Last-Translator: surfdude29\n" "Language-Team: Stanislas Signoud (@signez.fr), surfdude29\n" "Plural-Forms: \n" @@ -37,10 +37,6 @@ msgstr "{0, plural, one {# étiquette a été placée sur ce contenu} other {# msgid "{0, plural, one {# repost} other {# reposts}}" msgstr "{0, plural, one {# repost} other {# reposts}}" -#: src/components/KnownFollowers.tsx:179 -#~ msgid "{0, plural, one {and # other} other {and # others}}" -#~ msgstr "" - #: src/components/ProfileHoverCard/index.web.tsx:398 #: src/screens/Profile/Header/Metrics.tsx:23 msgid "{0, plural, one {follower} other {followers}}" @@ -82,7 +78,7 @@ msgstr "{0, plural, one {Déliker (# like)} other {Déliker (# likes)}}" #: src/screens/StarterPack/StarterPackScreen.tsx:343 msgid "{0} people have used this starter pack!" -msgstr "" +msgstr "{0} personnes ont utilisé ce kit de démarrage !" #: src/view/com/util/UserAvatar.tsx:419 msgid "{0}'s avatar" @@ -90,11 +86,11 @@ msgstr "Avatar de {0}" #: src/screens/StarterPack/Wizard/StepDetails.tsx:68 msgid "{0}'s favorite feeds and people - join me!" -msgstr "" +msgstr "Les fils d’actu et les personnes préférées de {0} – faites comme moi !" #: src/screens/StarterPack/Wizard/StepDetails.tsx:47 msgid "{0}'s starter pack" -msgstr "" +msgstr "Kit de démarrage de {0}" #: src/components/LabelingServiceCard/index.tsx:71 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" @@ -102,27 +98,27 @@ msgstr "{count, plural, one {Liké par # compte} other {Liké par # comptes}}" #: src/lib/hooks/useTimeAgo.ts:69 msgid "{diff, plural, one {day} other {days}}" -msgstr "" +msgstr "{diff, plural, one {jour} other {jours}}" #: src/lib/hooks/useTimeAgo.ts:64 msgid "{diff, plural, one {hour} other {hours}}" -msgstr "" +msgstr "{diff, plural, one {heure} other {heures}}" #: src/lib/hooks/useTimeAgo.ts:59 msgid "{diff, plural, one {minute} other {minutes}}" -msgstr "" +msgstr "{diff, plural, one {minute} other {minutes}}" #: src/lib/hooks/useTimeAgo.ts:75 msgid "{diff, plural, one {month} other {months}}" -msgstr "" +msgstr "{diff, plural, one {mois} other {mois}}" #: src/lib/hooks/useTimeAgo.ts:54 msgid "{diffSeconds, plural, one {second} other {seconds}}" -msgstr "" +msgstr "{diffSeconds, plural, one {seconde} other {secondes}}" #: src/screens/StarterPack/Wizard/index.tsx:182 msgid "{displayName}'s Starter Pack" -msgstr "" +msgstr "Kit de démarrage de {displayName}" #: src/screens/SignupQueued.tsx:207 msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" @@ -153,11 +149,11 @@ msgstr "{numUnreadNotifications} non lus" #: src/components/NewskieDialog.tsx:92 msgid "{profileName} joined Bluesky {0} ago" -msgstr "" +msgstr "{profileName} a rejoint Bluesky il y a {0}" #: src/components/NewskieDialog.tsx:87 msgid "{profileName} joined Bluesky using a starter pack {0} ago" -msgstr "" +msgstr "{profileName} a rejoint Bluesky en utilisant un kit de démarrage il y a {0}" #: 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}}" @@ -169,11 +165,17 @@ msgstr "<0/> membres" #: src/screens/StarterPack/Wizard/index.tsx:485 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" -msgstr "" +msgstr "<0>{0} et<1> <2>{1} sont inclus dans votre kit de démarrage" #: 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 "" +msgctxt "profiles" +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}} font partie de votre kit de démarrage" + +#: src/screens/StarterPack/Wizard/index.tsx:509 +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 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -185,7 +187,7 @@ msgstr "<0>{0} {1, plural, one {abonnement} other {abonnements}}" #: src/screens/StarterPack/Wizard/index.tsx:478 msgid "<0>{0} is included in your starter pack" -msgstr "" +msgstr "<0>{0} fait partie de votre kit de démarrage" #: src/view/com/modals/SelfLabel.tsx:135 msgid "<0>Not Applicable. This warning is only available for posts with media attached." @@ -279,11 +281,11 @@ msgstr "Ajouter" #: src/screens/StarterPack/Wizard/index.tsx:539 msgid "Add {0} more to continue" -msgstr "" +msgstr "Ajouter {0} autres pour continuer" #: src/components/StarterPack/Wizard/WizardListCard.tsx:56 msgid "Add {displayName} to starter pack" -msgstr "" +msgstr "Ajouter {displayName} au kit de démarrage" #: src/view/com/modals/SelfLabel.tsx:57 msgid "Add a content warning" @@ -325,7 +327,7 @@ msgstr "Ajouter des mots et des mots-clés masqués" #: src/screens/StarterPack/Wizard/index.tsx:197 msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "" +msgstr "Ajoutez à votre kit de démarrage des personnes que vous pensez que d’autres aimeront suivre" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" @@ -333,7 +335,7 @@ msgstr "Ajouter les fils d’actu recommandés" #: src/screens/StarterPack/Wizard/index.tsx:464 msgid "Add some feeds to your starter pack!" -msgstr "" +msgstr "Ajoutez des fils d’actu à votre kit de démarrage !" #: src/screens/Feeds/NoFollowingFeed.tsx:41 msgid "Add the default feed of only people you follow" @@ -345,7 +347,7 @@ msgstr "Ajoutez l’enregistrement DNS suivant à votre domaine :" #: src/components/FeedCard.tsx:300 msgid "Add this feed to your feeds" -msgstr "" +msgstr "Ajouter ce fil à vos fils d’actu" #: src/view/com/profile/ProfileMenu.tsx:267 #: src/view/com/profile/ProfileMenu.tsx:270 @@ -385,7 +387,7 @@ msgstr "Avancé" #: src/screens/StarterPack/StarterPackScreen.tsx:271 msgid "All accounts have been followed!" -msgstr "" +msgstr "Tous les comptes ont été suivis !" #: src/view/screens/Feeds.tsx:721 msgid "All the feeds you've saved, right in one place." @@ -445,20 +447,20 @@ msgstr "Une erreur s’est produite" #: src/components/StarterPack/ProfileStarterPacks.tsx:313 msgid "An error occurred while generating your starter pack. Want to try again?" -msgstr "" +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/ShareDialog.tsx:79 msgid "An error occurred while saving the image." -msgstr "" +msgstr "Une erreur s’est produite lors de l’enregistrement de l’image." #: src/components/StarterPack/QrCodeDialog.tsx:76 #: src/components/StarterPack/ShareDialog.tsx:91 msgid "An error occurred while saving the QR code!" -msgstr "" +msgstr "Une erreur s’est produite lors de l’enregistrement du code QR !" #: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "An error occurred while trying to follow all" -msgstr "" +msgstr "Une erreur s’est produite en essayant de suivre tous les comptes" #: src/lib/moderation/useReportOptions.ts:28 msgid "An issue not included in these options" @@ -552,7 +554,7 @@ msgstr "Utiliser les fils d’actu recommandés par défaut" #: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Are you sure you want delete this starter pack?" -msgstr "" +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}\"?" @@ -572,7 +574,7 @@ msgstr "Êtes-vous sûr de vouloir supprimer {0} de vos fils d’actu ?" #: src/components/FeedCard.tsx:317 msgid "Are you sure you want to remove this from your feeds?" -msgstr "" +msgstr "Êtes-vous sûr de vouloir supprimer cela de vos fils d’actu ?" #: src/view/com/composer/Composer.tsx:649 msgid "Are you sure you'd like to discard this draft?" @@ -714,7 +716,7 @@ msgstr "Bluesky est un réseau ouvert où vous pouvez choisir votre hébergeur. #: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Bluesky will choose a set of recommended accounts from people in your network." -msgstr "" +msgstr "Bluesky choisira un ensemble de comptes recommandés parmi les personnes de votre réseau." #: src/screens/Moderation/index.tsx:533 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." @@ -923,7 +925,7 @@ msgstr "Choisir « Tout le monde » ou « Personne »" #: src/components/StarterPack/ProfileStarterPacks.tsx:288 msgid "Choose for me" -msgstr "" +msgstr "Choisir pour moi" #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" @@ -1210,7 +1212,7 @@ msgstr "Continuer comme {0} (actuellement connecté)" #: src/view/com/post-thread/PostThreadLoadMore.tsx:52 msgid "Continue thread..." -msgstr "" +msgstr "Poursuivre le fil de discussion…" #: src/screens/Onboarding/StepInterests/index.tsx:250 #: src/screens/Onboarding/StepProfile/index.tsx:266 @@ -1268,7 +1270,7 @@ msgstr "Copier ce code" #: src/components/StarterPack/ShareDialog.tsx:143 msgid "Copy Link" -msgstr "" +msgstr "Copier le lien" #: src/view/screens/ProfileList.tsx:428 msgid "Copy link to list" @@ -1291,7 +1293,7 @@ msgstr "Copier le texte du post" #: src/components/StarterPack/QrCodeDialog.tsx:174 msgid "Copy QR code" -msgstr "" +msgstr "Copier le code QR" #: src/Navigation.tsx:261 #: src/view/screens/CopyrightPolicy.tsx:29 @@ -1316,7 +1318,7 @@ msgstr "Impossible de masquer la discussion" #: src/components/StarterPack/ProfileStarterPacks.tsx:270 msgid "Create" -msgstr "" +msgstr "Créer" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 @@ -1329,17 +1331,17 @@ msgstr "Créer un compte Bluesky" #: src/components/StarterPack/QrCodeDialog.tsx:157 msgid "Create a QR code for a starter pack" -msgstr "" +msgstr "Créer un code QR pour un kit de démarrage" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:257 #: src/Navigation.tsx:330 msgid "Create a starter pack" -msgstr "" +msgstr "Créer un kit de démarrage" #: src/components/StarterPack/ProfileStarterPacks.tsx:244 msgid "Create a starter pack for me" -msgstr "" +msgstr "Créer un kit de démarrage pour moi" #: src/screens/Signup/index.tsx:154 msgid "Create Account" @@ -1356,7 +1358,7 @@ msgstr "Créer plutôt un avatar" #: src/components/StarterPack/ProfileStarterPacks.tsx:172 msgid "Create another" -msgstr "" +msgstr "Créer un autre" #: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" @@ -1369,7 +1371,7 @@ msgstr "Créer un nouveau compte" #: src/components/StarterPack/ShareDialog.tsx:158 msgid "Create QR code" -msgstr "" +msgstr "Créer un code QR" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1498,11 +1500,11 @@ msgstr "Supprimer le post" #: src/screens/StarterPack/StarterPackScreen.tsx:443 #: src/screens/StarterPack/StarterPackScreen.tsx:599 msgid "Delete starter pack" -msgstr "" +msgstr "Supprimer le kit de démarrage" #: src/screens/StarterPack/StarterPackScreen.tsx:494 msgid "Delete starter pack?" -msgstr "" +msgstr "Supprimer le kit de démarrage ?" #: src/view/screens/ProfileList.tsx:662 msgid "Delete this list?" @@ -1588,7 +1590,7 @@ msgstr "Découvrir des fils d’actu personnalisés" #: src/view/screens/Search/Explore.tsx:388 msgid "Discover new feeds" -msgstr "" +msgstr "Découvrir de nouveaux fils d’actu" #: src/view/screens/Feeds.tsx:744 msgid "Discover New Feeds" @@ -1596,7 +1598,7 @@ msgstr "Découvrir de nouveaux fils d’actu" #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" -msgstr "" +msgstr "Afficher des badges de texte alt plus grands" #: src/view/com/modals/EditProfile.tsx:193 msgid "Display name" @@ -1662,7 +1664,7 @@ msgstr "Terminé{extraText}" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 msgid "Download Bluesky" -msgstr "" +msgstr "Télécharger Bluesky" #: src/view/screens/Settings/ExportCarDialog.tsx:77 #: src/view/screens/Settings/ExportCarDialog.tsx:81 @@ -1719,7 +1721,7 @@ msgstr "Chaque code ne fonctionne qu’une seule fois. Vous recevrez régulière #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" -msgstr "" +msgstr "Modifier" #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" @@ -1733,7 +1735,7 @@ msgstr "Modifier l’avatar" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit Feeds" -msgstr "" +msgstr "Modifier les fils d’actu" #: src/view/com/composer/photos/Gallery.tsx:151 #: src/view/com/modals/EditImage.tsx:208 @@ -1761,7 +1763,7 @@ msgstr "Modifier mon profil" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 msgid "Edit People" -msgstr "" +msgstr "Modifier les personnes" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 @@ -1773,14 +1775,9 @@ msgstr "Modifier le profil" msgid "Edit Profile" msgstr "Modifier le profil" -#: src/view/com/home/HomeHeaderLayout.web.tsx:76 -#: src/view/screens/Feeds.tsx:416 -#~ msgid "Edit Saved Feeds" -#~ msgstr "Modifier les fils d’actu enregistrés" - #: src/screens/StarterPack/StarterPackScreen.tsx:430 msgid "Edit starter pack" -msgstr "" +msgstr "Modifier le kit de démarrage" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1789,7 +1786,7 @@ msgstr "Modifier la liste de comptes" #: src/view/com/threadgate/WhoCanReply.tsx:73 #: src/view/com/threadgate/WhoCanReply.tsx:130 msgid "Edit who can reply" -msgstr "" +msgstr "Modifier qui peut répondre" #: src/view/com/modals/EditProfile.tsx:194 msgid "Edit your display name" @@ -1801,7 +1798,7 @@ msgstr "Modifier votre description de profil" #: src/Navigation.tsx:335 msgid "Edit your starter pack" -msgstr "" +msgstr "Modifier votre kit de démarrage" #: src/screens/Onboarding/index.tsx:31 msgid "Education" @@ -2054,7 +2051,7 @@ msgstr "Échec de la création du mot de passe d’application." #: src/screens/StarterPack/Wizard/index.tsx:241 #: src/screens/StarterPack/Wizard/index.tsx:249 msgid "Failed to create starter pack" -msgstr "" +msgstr "Échec de la création du kit de démarrage" #: src/view/com/modals/CreateOrEditList.tsx:194 msgid "Failed to create the list. Check your internet connection and try again." @@ -2070,12 +2067,12 @@ msgstr "Échec de la suppression du post, veuillez réessayer" #: src/screens/StarterPack/StarterPackScreen.tsx:562 msgid "Failed to delete starter pack" -msgstr "" +msgstr "Échec de la suppression du kit de démarrage" #: src/view/screens/Search/Explore.tsx:426 #: src/view/screens/Search/Explore.tsx:454 msgid "Failed to load feeds preferences" -msgstr "" +msgstr "Échec du chargement des fils d’actu" #: src/components/dialogs/GifSelect.ios.tsx:196 #: src/components/dialogs/GifSelect.tsx:212 @@ -2089,11 +2086,11 @@ msgstr "Échec du chargement de l’historique" #: src/view/screens/Search/Explore.tsx:419 #: src/view/screens/Search/Explore.tsx:447 msgid "Failed to load suggested feeds" -msgstr "" +msgstr "Échec du chargement des fils d’actu suggerés" #: src/view/screens/Search/Explore.tsx:377 msgid "Failed to load suggested follows" -msgstr "" +msgstr "Échec du chargement des suivis suggérés" #: src/view/com/lightbox/Lightbox.tsx:84 msgid "Failed to save image: {0}" @@ -2110,11 +2107,11 @@ msgstr "Échec de l’envoi de l’appel, veuillez réessayer." #: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Failed to toggle thread mute, please try again" -msgstr "" +msgstr "Échec de l’activation ou désactivation du masquage du fil de discussion, veuillez réessayer" #: src/components/FeedCard.tsx:280 msgid "Failed to update feeds" -msgstr "" +msgstr "Échec de la mise à jour des fils d’actu" #: src/components/dms/MessagesNUX.tsx:60 #: src/screens/Messages/Settings.tsx:35 @@ -2130,13 +2127,9 @@ msgstr "Fil d’actu" msgid "Feed by {0}" msgstr "Fil d’actu par {0}" -#: src/view/screens/Feeds.tsx:709 -#~ msgid "Feed offline" -#~ msgstr "Fil d’actu hors ligne" - #: src/components/StarterPack/Wizard/WizardListCard.tsx:52 msgid "Feed toggle" -msgstr "" +msgstr "Ajouter/enlever le fil d’actu" #: src/view/shell/desktop/RightNav.tsx:66 #: src/view/shell/Drawer.tsx:345 @@ -2161,7 +2154,7 @@ msgstr "Les fils d’actu sont des algorithmes personnalisés qui se construisen #: src/components/FeedCard.tsx:277 msgid "Feeds updated!" -msgstr "" +msgstr "Fils d’actu mis à jour !" #: src/view/com/modals/ChangeHandle.tsx:475 msgid "File Contents" @@ -2199,7 +2192,7 @@ msgstr "Affine les fils de discussion." #: src/screens/StarterPack/Wizard/index.tsx:202 msgid "Finish" -msgstr "" +msgstr "Terminer" #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" @@ -2248,7 +2241,7 @@ msgstr "Suivre le compte" #: src/screens/StarterPack/StarterPackScreen.tsx:308 #: src/screens/StarterPack/StarterPackScreen.tsx:315 msgid "Follow all" -msgstr "" +msgstr "Suivre tous" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 msgid "Follow Back" @@ -2256,11 +2249,7 @@ msgstr "Suivre en retour" #: src/view/screens/Search/Explore.tsx:333 msgid "Follow more accounts to get connected to your interests and build your network." -msgstr "" - -#: src/components/KnownFollowers.tsx:169 -#~ msgid "Followed by" -#~ msgstr "" +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:227 msgid "Followed by {0}" @@ -2268,19 +2257,19 @@ msgstr "Suivi par {0}" #: src/components/KnownFollowers.tsx:223 msgid "Followed by <0>{0}" -msgstr "" +msgstr "Suivi par <0>{0}" #: src/components/KnownFollowers.tsx:209 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" -msgstr "" +msgstr "Suivi par <0>{0} et {1, plural, one {# autre} other {# autres}}" #: src/components/KnownFollowers.tsx:196 msgid "Followed by <0>{0} and <1>{1}" -msgstr "" +msgstr "Suivi par <0>{0} et <1>{1}" #: src/components/KnownFollowers.tsx:178 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" -msgstr "" +msgstr "Suivi par <0>{0}, <1>{1} et {2, plural, one {# autre} other {# autres}}" #: src/view/com/modals/Threadgate.tsx:101 msgid "Followed users" @@ -2301,12 +2290,12 @@ msgstr "Abonné·e·s" #: src/Navigation.tsx:179 msgid "Followers of @{0} that you know" -msgstr "" +msgstr "Abonné·e·s de @{0} que vous connaissez" #: src/screens/Profile/KnownFollowers.tsx:108 #: src/screens/Profile/KnownFollowers.tsx:118 msgid "Followers you know" -msgstr "" +msgstr "Abonné·e·s que vous connaissez" #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 @@ -2389,7 +2378,7 @@ msgstr "Galerie" #: src/components/StarterPack/ProfileStarterPacks.tsx:277 msgid "Generate a starter pack" -msgstr "" +msgstr "Générer un kit de démarrage" #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" @@ -2402,7 +2391,7 @@ msgstr "C’est parti" #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" -msgstr "" +msgstr "GIF" #: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" @@ -2444,7 +2433,7 @@ msgstr "Retour à l’étape précédente" #: src/screens/StarterPack/Wizard/index.tsx:313 msgid "Go back to the previous step" -msgstr "" +msgstr "Retour à l’étape précédente" #: src/view/screens/NotFound.tsx:55 msgid "Go home" @@ -2659,7 +2648,7 @@ msgstr "Texte alt de l’image" #: src/components/StarterPack/ShareDialog.tsx:88 msgid "Image saved to your camera roll!" -msgstr "" +msgstr "Image enregistrée dans votre photothèque !" #: src/lib/moderation/useReportOptions.ts:49 msgid "Impersonation or false claims about identity or affiliation" @@ -2752,19 +2741,19 @@ msgstr "Invitations : 1 code dispo" #: src/components/StarterPack/ShareDialog.tsx:109 msgid "Invite people to this starter pack!" -msgstr "" +msgstr "Invitez les gens à ce kit de démarrage !" #: src/screens/StarterPack/Wizard/StepDetails.tsx:35 msgid "Invite your friends to follow your favorite feeds and people" -msgstr "" +msgstr "Invitez vos amis à suivre vos fils d’actu et vos personnes préférées" #: src/screens/StarterPack/Wizard/StepDetails.tsx:32 msgid "Invites, but personal" -msgstr "" +msgstr "Invitations, mais personnelles" #: src/screens/StarterPack/Wizard/index.tsx:473 msgid "It's just you right now! Add more people to your starter pack by searching above." -msgstr "" +msgstr "Il n’y a que vous pour l’instant ! Ajoutez d’autres personnes à votre kit de démarrage en effectuant une recherche ci-dessus." #: src/view/com/auth/SplashScreen.web.tsx:157 msgid "Jobs" @@ -2773,11 +2762,11 @@ msgstr "Emplois" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 msgid "Join Bluesky" -msgstr "" +msgstr "Rejoignez Bluesky" #: src/components/StarterPack/QrCode.tsx:56 msgid "Join the conversation" -msgstr "" +msgstr "Participez à la conversation" #: src/screens/Onboarding/index.tsx:21 msgid "Journalism" @@ -2886,7 +2875,7 @@ msgstr "Stockage ancien effacé, vous devez redémarrer l’application maintena #: src/components/StarterPack/ProfileStarterPacks.tsx:293 msgid "Let me choose" -msgstr "" +msgstr "Laissez-moi choisir" #: src/screens/Login/index.tsx:130 #: src/screens/Login/index.tsx:145 @@ -2986,15 +2975,15 @@ msgstr "Listes qui bloquent ce compte :" #: src/view/screens/Search/Explore.tsx:130 msgid "Load more" -msgstr "" +msgstr "Charger plus" #: src/view/screens/Search/Explore.tsx:218 msgid "Load more suggested feeds" -msgstr "" +msgstr "Charger d’autres fils d’actu suggérés" #: src/view/screens/Search/Explore.tsx:216 msgid "Load more suggested follows" -msgstr "" +msgstr "Charger d’autres suggestions de suivis" #: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" @@ -3057,7 +3046,7 @@ msgstr "On dirait que vous n’avez plus de fil d’actu « Following ». <0>C #: src/components/StarterPack/ProfileStarterPacks.tsx:252 msgid "Make one for me" -msgstr "" +msgstr "En faire un pour moi" #: src/view/com/modals/LinkWarning.tsx:79 msgid "Make sure this is where you intend to go!" @@ -3408,7 +3397,7 @@ msgstr "Nouveau post" #: src/components/NewskieDialog.tsx:71 msgid "New user info dialog" -msgstr "" +msgstr "Dialogue d’information sur un nouveau compte" #: src/view/com/modals/CreateOrEditList.tsx:236 msgid "New User List" @@ -3467,7 +3456,7 @@ msgstr "Aucun GIFs vedettes à afficher. Il y a peut-être un souci chez Tenor." #: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 msgid "No feeds found. Try searching for something else." -msgstr "" +msgstr "Aucun fil d’actu n’a été trouvé. Essayez de chercher autre chose." #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" @@ -3549,7 +3538,7 @@ msgstr "Personne n’a encore liké. Peut-être devriez-vous ouvrir la voie !" #: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 msgid "Nobody was found. Try searching for someone else." -msgstr "" +msgstr "Personne n’a été trouvé. Essayez de chercher quelqu’un d’autre." #: src/lib/moderation/useGlobalLabelStrings.ts:42 msgid "Non-sexual Nudity" @@ -3599,7 +3588,7 @@ msgstr "Notifications" #: src/lib/hooks/useTimeAgo.ts:51 msgid "now" -msgstr "" +msgstr "maintenant" #: src/components/dms/MessageItem.tsx:175 msgid "Now" @@ -3641,11 +3630,11 @@ msgstr "Plus anciennes réponses en premier" #: src/components/StarterPack/QrCode.tsx:69 msgid "on" -msgstr "" +msgstr "sur" #: src/lib/hooks/useTimeAgo.ts:81 msgid "on {str}" -msgstr "" +msgstr "le {str}" #: src/view/screens/Settings/index.tsx:256 msgid "Onboarding reset" @@ -3661,11 +3650,7 @@ msgstr "Seuls les fichiers .jpg et .png sont acceptés" #: src/view/com/threadgate/WhoCanReply.tsx:239 msgid "Only {0} can reply" -msgstr "" - -#: src/view/com/threadgate/WhoCanReply.tsx:100 -#~ msgid "Only {0} can reply." -#~ msgstr "Seul {0} peut répondre." +msgstr "Seul {0} peut répondre" #: src/screens/Signup/StepHandle.tsx:98 msgid "Only contains letters, numbers, and hyphens" @@ -3731,7 +3716,7 @@ msgstr "Ouvrir le menu d’options du post" #: src/screens/StarterPack/StarterPackScreen.tsx:416 msgid "Open starter pack menu" -msgstr "" +msgstr "Ouvrir le menu du kit de démarrage" #: src/view/screens/Settings/index.tsx:860 #: src/view/screens/Settings/index.tsx:870 @@ -3832,11 +3817,6 @@ 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/com/home/HomeHeaderLayout.web.tsx:77 -#: src/view/screens/Feeds.tsx:417 -#~ msgid "Opens screen to edit Saved Feeds" -#~ msgstr "Ouvre l’écran pour modifier les fils d’actu enregistrés" - #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" msgstr "Ouvre l’écran avec tous les fils d’actu enregistrés" @@ -3963,7 +3943,7 @@ msgstr "Permission d’accès à la pellicule refusée. Veuillez l’activer dan #: src/components/StarterPack/Wizard/WizardListCard.tsx:52 msgid "Person toggle" -msgstr "" +msgstr "Ajouter/enlever per les personnes" #: src/screens/Onboarding/index.tsx:28 msgid "Pets" @@ -4165,7 +4145,7 @@ msgstr "Appuyer pour réessayer" #: src/components/KnownFollowers.tsx:116 msgid "Press to view followers of this account that you also follow" -msgstr "" +msgstr "Appuyer pour voir les personnes qui suivent ce compte et que vous suivez également" #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" @@ -4243,15 +4223,15 @@ msgstr "Publier la réponse" #: src/components/StarterPack/QrCodeDialog.tsx:131 msgid "QR code copied to your clipboard!" -msgstr "" +msgstr "Code QR copié dans votre presse-papier !" #: src/components/StarterPack/QrCodeDialog.tsx:109 msgid "QR code has been downloaded!" -msgstr "" +msgstr "Code QR a été téléchargé !" #: src/components/StarterPack/QrCodeDialog.tsx:110 msgid "QR code saved to your camera roll!" -msgstr "" +msgstr "Code QR enregistré dans votre photothèque !" #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 @@ -4300,7 +4280,7 @@ msgstr "Supprimer" #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Remove {displayName} from starter pack" -msgstr "" +msgstr "Supprimer {displayName} du kit de démarrage" #: src/view/com/util/AccountDropdownBtn.tsx:22 msgid "Remove account" @@ -4408,11 +4388,11 @@ msgstr "Réponses" #: src/view/com/threadgate/WhoCanReply.tsx:66 msgid "Replies disabled" -msgstr "" +msgstr "Les réponses sont désactivées" #: src/view/com/threadgate/WhoCanReply.tsx:123 msgid "Replies on this thread are disabled" -msgstr "" +msgstr "Les réponses à ce fil de discussion sont désactivées" #: src/view/com/threadgate/WhoCanReply.tsx:237 msgid "Replies to this thread are disabled" @@ -4436,7 +4416,7 @@ msgstr "Réponse à <0><1/>" #: src/view/com/posts/FeedItem.tsx:437 msgctxt "description" msgid "Reply to a blocked post" -msgstr "" +msgstr "Réponse à un post bloqué" #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 @@ -4480,7 +4460,7 @@ msgstr "Signaler le post" #: src/screens/StarterPack/StarterPackScreen.tsx:469 #: src/screens/StarterPack/StarterPackScreen.tsx:472 msgid "Report starter pack" -msgstr "" +msgstr "Signaler le kit de démarrage" #: src/components/ReportDialog/SelectReportOptionView.tsx:43 msgid "Report this content" @@ -4506,7 +4486,7 @@ msgstr "Signaler ce post" #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this starter pack" -msgstr "" +msgstr "Signaler ce kit de démarrage" #: src/components/ReportDialog/SelectReportOptionView.tsx:47 msgid "Report this user" @@ -4682,7 +4662,7 @@ msgstr "Enregistrer le changement de pseudo" #: src/components/StarterPack/ShareDialog.tsx:163 #: src/components/StarterPack/ShareDialog.tsx:170 msgid "Save image" -msgstr "" +msgstr "Enregistrer l’image" #: src/view/com/modals/crop-image/CropImage.web.tsx:169 msgid "Save image crop" @@ -4690,7 +4670,7 @@ msgstr "Enregistrer le recadrage de l’image" #: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Save QR code" -msgstr "" +msgstr "Enregistrer le code QR" #: src/view/screens/ProfileFeed.tsx:332 #: src/view/screens/ProfileFeed.tsx:338 @@ -4773,7 +4753,7 @@ msgstr "Rechercher tous les posts avec le mot-clé {displayTag}" #: src/screens/StarterPack/Wizard/index.tsx:467 msgid "Search for feeds that you want to suggest to others." -msgstr "" +msgstr "Recherchez des fils d’actu que vous voulez suggérer à d’autres personnes." #: src/view/com/auth/LoggedOut.tsx:101 #: src/view/com/auth/LoggedOut.tsx:102 @@ -5083,7 +5063,7 @@ msgstr "Partager le fil d’actu" #: src/screens/StarterPack/StarterPackScreen.tsx:462 msgid "Share link" -msgstr "" +msgstr "Partager le lien" #: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 @@ -5093,15 +5073,15 @@ msgstr "Partager le lien" #: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share link dialog" -msgstr "" +msgstr "Dialogue pour le partage d’un lien" #: src/screens/StarterPack/StarterPackScreen.tsx:296 msgid "Share this starter pack" -msgstr "" +msgstr "Partagez ce kit de démarrage" #: src/components/StarterPack/ShareDialog.tsx:112 msgid "Share this starter pack and help people join your community on Bluesky." -msgstr "" +msgstr "Partagez ce kit de démarrage et aidez les gens à rejoindre votre communauté sur Bluesky." #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" @@ -5275,12 +5255,12 @@ msgstr "Connecté en tant que @{0}" #: src/view/com/notifications/FeedItem.tsx:197 msgid "signed up with your starter pack" -msgstr "" +msgstr "s’est inscrit·e avec votre kit de démarrage" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 msgid "Signup without a starter pack" -msgstr "" +msgstr "S’inscrire sans kit de démarrage" #: src/screens/Onboarding/StepInterests/index.tsx:240 #: src/screens/StarterPack/Wizard/index.tsx:202 @@ -5370,19 +5350,19 @@ msgstr "Démarrer les discussions" #: src/Navigation.tsx:325 #: src/screens/StarterPack/Wizard/index.tsx:190 msgid "Starter Pack" -msgstr "" +msgstr "Kit de démarrage" #: src/components/StarterPack/StarterPackCard.tsx:65 msgid "Starter pack by {0}" -msgstr "" +msgstr "Kit de démarrage par {0}" #: src/screens/StarterPack/StarterPackScreen.tsx:579 msgid "Starter pack is invalid" -msgstr "" +msgstr "Le kit de démarrage n’est pas valide" #: src/view/screens/Profile.tsx:221 msgid "Starter Packs" -msgstr "" +msgstr "Packs de démarrage" #: src/view/screens/Settings/index.tsx:963 msgid "Status Page" @@ -5430,11 +5410,7 @@ msgstr "S’abonner à cette liste" #: src/view/screens/Search/Explore.tsx:331 msgid "Suggested accounts" -msgstr "" - -#: src/view/screens/Search/Search.tsx:425 -#~ msgid "Suggested Follows" -#~ msgstr "Suivis suggérés" +msgstr "Comptes suggérés" #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" @@ -5497,7 +5473,7 @@ msgstr "Racontez une blague !" #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" -msgstr "" +msgstr "Dites-nous en un peu plus" #: src/view/shell/desktop/RightNav.tsx:86 msgid "Terms" @@ -5545,7 +5521,7 @@ msgstr "Ce pseudo est déjà occupé." #: src/screens/StarterPack/Wizard/index.tsx:105 #: src/screens/StarterPack/Wizard/index.tsx:113 msgid "That starter pack could not be found." -msgstr "" +msgstr "Ce kit de démarrage n’a pas pu être trouvé." #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 #: src/view/com/profile/ProfileMenu.tsx:353 @@ -5562,7 +5538,7 @@ msgstr "Notre politique de droits d’auteur a été déplacée vers <0/>" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." -msgstr "" +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 msgid "The feed has been replaced with Discover." @@ -5591,7 +5567,7 @@ msgstr "Notre politique de confidentialité a été déplacée vers <0/>" #: src/screens/StarterPack/StarterPackScreen.tsx:589 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." -msgstr "" +msgstr "Le kit de démarrage que vous essayez de consulter n’est pas valide. Vous pouvez supprimer ce kit de démarrage à la place." #: src/view/screens/Support.tsx:36 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." @@ -5858,7 +5834,7 @@ msgstr "Ce compte est inclus dans la liste <0>{0} que vous avez masquée." #: src/components/NewskieDialog.tsx:53 msgid "This user is new here. Press for more info about when they joined." -msgstr "" +msgstr "Ce compte est nouveau ici. Appuyez pour obtenir plus d’informations sur sa date d’arrivée." #: src/view/com/profile/ProfileFollows.tsx:87 msgid "This user isn't following anyone." @@ -5963,7 +5939,7 @@ msgstr "Impossible de contacter votre service. Veuillez vérifier votre connexio #: src/screens/StarterPack/StarterPackScreen.tsx:513 msgid "Unable to delete" -msgstr "" +msgstr "Impossible de supprimer" #: src/components/dms/MessagesListBlockedFooter.tsx:89 #: src/components/dms/MessagesListBlockedFooter.tsx:96 @@ -6292,7 +6268,7 @@ msgstr "Voir le profil de {0}" #: src/components/ProfileHoverCard/index.web.tsx:430 msgid "View blocked user's profile" -msgstr "" +msgstr "Voir le profil du compte bloqué" #: src/view/screens/Log.tsx:56 msgid "View debug entry" @@ -6337,7 +6313,7 @@ msgstr "Voir les comptes qui a liké ce fil d’actu" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 #: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 msgid "View your feeds and explore more" -msgstr "" +msgstr "Consultez vos fils d’actu et explorez-en plus" #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 @@ -6431,13 +6407,9 @@ 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 -#~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." -#~ msgstr "Nous sommes désolés ! Vous ne pouvez vous abonner qu’à dix étiqueteurs, et vous avez atteint votre limite de dix." - #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." -msgstr "" +msgstr "Nous sommes désolés ! Vous ne pouvez vous abonner qu’à vingt étiqueteurs, et vous avez atteint votre limite de vingt." #: src/screens/Deactivated.tsx:128 msgid "Welcome back!" @@ -6449,7 +6421,7 @@ msgstr "Quels sont vos centres d’intérêt ?" #: src/screens/StarterPack/Wizard/StepDetails.tsx:42 msgid "What do you want to call your starter pack?" -msgstr "" +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 @@ -6478,11 +6450,11 @@ msgstr "Qui peut répondre ?" #: src/view/com/threadgate/WhoCanReply.tsx:206 msgid "Who can reply dialog" -msgstr "" +msgstr "Dialogue qui permet de changer qui peut répondre" #: src/view/com/threadgate/WhoCanReply.tsx:210 msgid "Who can reply?" -msgstr "" +msgstr "Qui peut répondre ?" #: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 @@ -6511,7 +6483,7 @@ msgstr "Pourquoi ce post devrait-il être examiné ?" #: src/components/ReportDialog/SelectReportOptionView.tsx:60 msgid "Why should this starter pack be reviewed?" -msgstr "" +msgstr "Pourquoi ce kit de démarrage devrait-il être examiné ?" #: src/components/ReportDialog/SelectReportOptionView.tsx:48 msgid "Why should this user be reviewed?" @@ -6556,7 +6528,7 @@ msgstr "Oui, désactiver" #: src/screens/StarterPack/StarterPackScreen.tsx:525 msgid "Yes, delete this starter pack" -msgstr "" +msgstr "Oui, supprimer ce kit de démarrage" #: src/screens/Deactivated.tsx:150 msgid "Yes, reactivate my account" @@ -6568,7 +6540,7 @@ msgstr "Hier, {time}" #: src/components/StarterPack/StarterPackCard.tsx:68 msgid "you" -msgstr "" +msgstr "vous" #: src/screens/SignupQueued.tsx:136 msgid "You are in line." @@ -6610,7 +6582,7 @@ msgstr "Vous n’avez pas d’abonné·e·s." #: src/screens/Profile/KnownFollowers.tsx:99 msgid "You don't follow any users who follow @{name}." -msgstr "" +msgstr "Vous ne suivez aucun des comptes qui suivent @{name}." #: src/view/com/modals/InviteCodes.tsx:67 msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." @@ -6705,11 +6677,11 @@ msgstr "Vous pouvez faire appel de ces étiquettes si vous estimez qu’elles on #: src/screens/StarterPack/Wizard/State.tsx:92 msgid "You may only add up to 50 feeds" -msgstr "" +msgstr "Vous ne pouvez ajouter que 50 fils d’actu au maximum" #: src/screens/StarterPack/Wizard/State.tsx:77 msgid "You may only add up to 50 profiles" -msgstr "" +msgstr "Vous ne pouvez ajouter que 50 profils au maximum" #: src/screens/Signup/StepInfo/Policies.tsx:79 msgid "You must be 13 years of age or older to sign up." @@ -6717,15 +6689,15 @@ msgstr "Vous devez avoir 13 ans ou plus pour vous inscrire." #: src/components/StarterPack/ProfileStarterPacks.tsx:304 msgid "You must be following at least seven other people to generate a starter pack." -msgstr "" +msgstr "Vous devez suivre au moins sept autres personnes pour générer un kit de démarrage." #: src/components/StarterPack/QrCodeDialog.tsx:62 msgid "You must grant access to your photo library to save a QR code" -msgstr "" +msgstr "Vous devez autoriser l’accès à votre photothèque pour enregistrer un code QR" #: src/components/StarterPack/ShareDialog.tsx:70 msgid "You must grant access to your photo library to save the image." -msgstr "" +msgstr "Vous devez autoriser l’accès à votre photothèque pour enregistrer l’image." #: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" @@ -6761,23 +6733,23 @@ msgstr "Vous : {short}" #: src/screens/Signup/index.tsx:169 msgid "You'll follow the suggested users and feeds once you finish creating your account!" -msgstr "" +msgstr "Vous suivrez les comptes et fils d’actu suggérés une fois que vous aurez créé votre compte !" #: src/screens/Signup/index.tsx:174 msgid "You'll follow the suggested users once you finish creating your account!" -msgstr "" +msgstr "Vous suivrez les comptes suggérés une fois que vous aurez créé votre compte !" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 msgid "You'll follow these people and {0} others" -msgstr "" +msgstr "Vous suivrez ces personnes et {0} autres" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 msgid "You'll follow these people right away" -msgstr "" +msgstr "Vous suivrez ces personnes immédiatement" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 msgid "You'll stay updated with these feeds" -msgstr "" +msgstr "Vous resterez informé grâce à ces fils d’actu" #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:94 From 6cda6412502c9af9ca07194d598ed37e880df23d Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Mon, 24 Jun 2024 20:05:06 -0500 Subject: [PATCH 021/153] Disable facets in `FeedCard.Description` component (#4620) --- src/components/FeedCard.tsx | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/components/FeedCard.tsx b/src/components/FeedCard.tsx index 7f3cb88ff3..ecf0a1b91a 100644 --- a/src/components/FeedCard.tsx +++ b/src/components/FeedCard.tsx @@ -5,6 +5,7 @@ import { AppBskyFeedDefs, AppBskyGraphDefs, AtUri, + RichText as RichTextApi, } from '@atproto/api' import {msg, plural, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -24,7 +25,6 @@ import * as Toast from 'view/com/util/Toast' import {useTheme} from '#/alf' import {atoms as a} from '#/alf' import {Button, ButtonIcon} from '#/components/Button' -import {useRichText} from '#/components/hooks/useRichText' import {PlusLarge_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus' import {Trash_Stroke2_Corner0_Rounded as Trash} from '#/components/icons/Trash' import {Link as InternalLink, LinkProps} from '#/components/Link' @@ -199,13 +199,14 @@ export function TitleAndBylinePlaceholder({creator}: {creator?: boolean}) { } export function Description({description}: {description?: string}) { - const [rt, isResolving] = useRichText(description || '') - if (!description) return null - return isResolving ? ( - - ) : ( - - ) + const rt = React.useMemo(() => { + if (!description) return + const rt = new RichTextApi({text: description || ''}) + rt.detectFacetsWithoutResolution() + return rt + }, [description]) + if (!rt) return null + return } export function Likes({count}: {count: number}) { From 682f31ec9df290a63ec5b91c5943399da675b96f Mon Sep 17 00:00:00 2001 From: devin ivy Date: Mon, 24 Jun 2024 21:06:53 -0400 Subject: [PATCH 022/153] Add og meta tags to starter pack detail (#4585) * add og meta tags to starter pack detail * tidy * bskyweb: add starter pack title to og meta * bskyweb build * go version to 1.22 * tidy --- .../workflows/build-and-push-bskyweb-aws.yaml | 1 - Dockerfile | 2 +- bskyweb/README.md | 2 +- bskyweb/cmd/bskyweb/main.go | 6 ++ bskyweb/cmd/bskyweb/server.go | 62 ++++++++++++++- bskyweb/go.mod | 30 ++++---- bskyweb/go.sum | 76 +++++++------------ bskyweb/templates/starterpack.html | 26 +++++++ 8 files changed, 137 insertions(+), 68 deletions(-) create mode 100644 bskyweb/templates/starterpack.html diff --git a/.github/workflows/build-and-push-bskyweb-aws.yaml b/.github/workflows/build-and-push-bskyweb-aws.yaml index bcd759b0ce..6eb9485b14 100644 --- a/.github/workflows/build-and-push-bskyweb-aws.yaml +++ b/.github/workflows/build-and-push-bskyweb-aws.yaml @@ -4,7 +4,6 @@ on: push: branches: - main - - divy/bskylink env: REGISTRY: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_REGISTRY }} diff --git a/Dockerfile b/Dockerfile index 74106fd7f6..0fa0065a10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21-bullseye AS build-env +FROM golang:1.22-bullseye AS build-env WORKDIR /usr/src/social-app diff --git a/bskyweb/README.md b/bskyweb/README.md index 640c30f4ad..4717c45e0c 100644 --- a/bskyweb/README.md +++ b/bskyweb/README.md @@ -24,7 +24,7 @@ Then build and copy over the big 'ol `bundle.web.js` file: ### Golang Daemon -Install golang. We are generally using v1.21+. +Install golang. We are generally using v1.22+. In this directory (`bskyweb/`): diff --git a/bskyweb/cmd/bskyweb/main.go b/bskyweb/cmd/bskyweb/main.go index 49629e3f2b..908486aa7e 100644 --- a/bskyweb/cmd/bskyweb/main.go +++ b/bskyweb/cmd/bskyweb/main.go @@ -40,6 +40,12 @@ func run(args []string) { // retain old PDS env var for easy transition EnvVars: []string{"ATP_APPVIEW_HOST", "ATP_PDS_HOST"}, }, + &cli.StringFlag{ + Name: "ogcard-host", + Usage: "scheme, hostname, and port of ogcard service", + Required: false, + EnvVars: []string{"OGCARD_HOST"}, + }, &cli.StringFlag{ Name: "http-address", Usage: "Specify the local IP/port to bind to", diff --git a/bskyweb/cmd/bskyweb/server.go b/bskyweb/cmd/bskyweb/server.go index 96fb07ddfe..d7e41a4ca8 100644 --- a/bskyweb/cmd/bskyweb/server.go +++ b/bskyweb/cmd/bskyweb/server.go @@ -31,12 +31,22 @@ type Server struct { echo *echo.Echo httpd *http.Server xrpcc *xrpc.Client + cfg *Config +} + +type Config struct { + debug bool + httpAddress string + appviewHost string + ogcardHost string + linkHost string } func serve(cctx *cli.Context) error { debug := cctx.Bool("debug") httpAddress := cctx.String("http-address") appviewHost := cctx.String("appview-host") + ogcardHost := cctx.String("ogcard-host") linkHost := cctx.String("link-host") // Echo @@ -73,6 +83,13 @@ func serve(cctx *cli.Context) error { server := &Server{ echo: e, xrpcc: xrpcc, + cfg: &Config{ + debug: debug, + httpAddress: httpAddress, + appviewHost: appviewHost, + ogcardHost: ogcardHost, + linkHost: linkHost, + }, } // Create the HTTP server. @@ -223,9 +240,9 @@ func serve(cctx *cli.Context) error { e.GET("/profile/:handleOrDID/post/:rkey/liked-by", server.WebGeneric) e.GET("/profile/:handleOrDID/post/:rkey/reposted-by", server.WebGeneric) - // starter packs - e.GET("/starter-pack/:handleOrDID/:rkey", server.WebGeneric) - e.GET("/start/:handleOrDID/:rkey", server.WebGeneric) + // starter packs + e.GET("/starter-pack/:handleOrDID/:rkey", server.WebStarterPack) + e.GET("/start/:handleOrDID/:rkey", server.WebStarterPack) if linkHost != "" { linkUrl, err := url.Parse(linkHost) @@ -415,6 +432,45 @@ func (srv *Server) WebPost(c echo.Context) error { return c.Render(http.StatusOK, "post.html", data) } +func (srv *Server) WebStarterPack(c echo.Context) error { + req := c.Request() + ctx := req.Context() + data := pongo2.Context{} + data["requestURI"] = fmt.Sprintf("https://%s%s", req.Host, req.URL.Path) + // sanity check arguments. don't 4xx, just let app handle if not expected format + rkeyParam := c.Param("rkey") + rkey, err := syntax.ParseRecordKey(rkeyParam) + if err != nil { + log.Errorf("bad rkey: %v", err) + return c.Render(http.StatusOK, "starterpack.html", data) + } + handleOrDIDParam := c.Param("handleOrDID") + handleOrDID, err := syntax.ParseAtIdentifier(handleOrDIDParam) + if err != nil { + log.Errorf("bad identifier: %v", err) + return c.Render(http.StatusOK, "starterpack.html", data) + } + identifier := handleOrDID.Normalize().String() + starterPackURI := fmt.Sprintf("at://%s/app.bsky.graph.starterpack/%s", identifier, rkey) + spv, err := appbsky.GraphGetStarterPack(ctx, srv.xrpcc, starterPackURI) + if err != nil { + log.Errorf("failed to fetch starter pack view for: %s\t%v", starterPackURI, err) + return c.Render(http.StatusOK, "starterpack.html", data) + } + if spv.StarterPack == nil || spv.StarterPack.Record == nil { + return c.Render(http.StatusOK, "starterpack.html", data) + } + rec, ok := spv.StarterPack.Record.Val.(*appbsky.GraphStarterpack) + if !ok { + return c.Render(http.StatusOK, "starterpack.html", data) + } + data["title"] = rec.Name + if srv.cfg.ogcardHost != "" { + data["imgThumbUrl"] = fmt.Sprintf("%s/start/%s/%s", srv.cfg.ogcardHost, identifier, rkey) + } + return c.Render(http.StatusOK, "starterpack.html", data) +} + func (srv *Server) WebProfile(c echo.Context) error { ctx := c.Request().Context() data := pongo2.Context{} diff --git a/bskyweb/go.mod b/bskyweb/go.mod index 0989217cac..d07bb7f89b 100644 --- a/bskyweb/go.mod +++ b/bskyweb/go.mod @@ -1,9 +1,11 @@ module github.com/bluesky-social/social-app/bskyweb -go 1.21 +go 1.22 + +toolchain go1.22.4 require ( - github.com/bluesky-social/indigo v0.0.0-20231216010655-ad730a7da4f5 + github.com/bluesky-social/indigo v0.0.0-20240624223826-fd66f93ce141 github.com/flosch/pongo2/v6 v6.0.0 github.com/ipfs/go-log v1.0.5 github.com/joho/godotenv v1.5.1 @@ -19,7 +21,7 @@ require ( github.com/cpuguy83/go-md2man/v2 v2.0.3 // indirect github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect - github.com/go-logr/logr v1.3.0 // indirect + github.com/go-logr/logr v1.4.1 // indirect github.com/go-logr/stdr v1.2.2 // indirect github.com/goccy/go-json v0.10.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect @@ -48,7 +50,7 @@ require ( github.com/jbenet/goprocess v0.1.4 // indirect github.com/jinzhu/inflection v1.0.0 // indirect github.com/jinzhu/now v1.1.5 // indirect - github.com/klauspost/cpuid/v2 v2.2.6 // indirect + github.com/klauspost/cpuid/v2 v2.2.7 // indirect github.com/labstack/gommon v0.4.1 // indirect github.com/lestrrat-go/blackmagic v1.0.1 // indirect github.com/lestrrat-go/httpcc v1.0.1 // indirect @@ -58,10 +60,9 @@ require ( github.com/lestrrat-go/option v1.0.1 // indirect github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-isatty v0.0.20 // indirect - github.com/mattn/go-sqlite3 v1.14.18 // indirect + github.com/mattn/go-sqlite3 v1.14.22 // indirect github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect github.com/minio/sha256-simd v1.0.1 // indirect - github.com/mitchellh/go-homedir v1.1.0 // indirect github.com/mr-tron/base58 v1.2.0 // indirect github.com/multiformats/go-base32 v0.1.0 // indirect github.com/multiformats/go-base36 v0.2.0 // indirect @@ -69,6 +70,7 @@ require ( github.com/multiformats/go-multihash v0.2.3 // indirect github.com/multiformats/go-varint v0.0.7 // indirect github.com/opentracing/opentracing-go v1.2.0 // indirect + github.com/orandin/slog-gorm v1.3.2 // indirect github.com/polydawn/refmt v0.89.1-0.20221221234430-40501e09de1f // indirect github.com/prometheus/client_golang v1.17.0 // indirect github.com/prometheus/client_model v0.5.0 // indirect @@ -79,28 +81,28 @@ require ( github.com/spaolacci/murmur3 v1.1.0 // indirect github.com/valyala/bytebufferpool v1.0.0 // indirect github.com/valyala/fasttemplate v1.2.2 // indirect - github.com/whyrusleeping/cbor-gen v0.0.0-20230923211252-36a87e1ba72f // indirect + github.com/whyrusleeping/cbor-gen v0.1.1-0.20240311221002-68b9f235c302 // indirect github.com/whyrusleeping/go-did v0.0.0-20230824162731-404d1707d5d6 // indirect github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect gitlab.com/yawning/secp256k1-voi v0.0.0-20230925100816-f2616030848b // indirect gitlab.com/yawning/tuplehash v0.0.0-20230713102510-df83abbf9a02 // indirect - go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.42.0 // indirect + go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 // indirect go.opentelemetry.io/otel v1.21.0 // indirect go.opentelemetry.io/otel/metric v1.21.0 // indirect go.opentelemetry.io/otel/trace v1.21.0 // indirect go.uber.org/atomic v1.11.0 // indirect go.uber.org/multierr v1.11.0 // indirect go.uber.org/zap v1.26.0 // indirect - golang.org/x/crypto v0.15.0 // indirect - golang.org/x/net v0.18.0 // indirect + golang.org/x/crypto v0.21.0 // indirect + golang.org/x/net v0.21.0 // indirect golang.org/x/sync v0.5.0 // indirect - golang.org/x/sys v0.14.0 // indirect + golang.org/x/sys v0.18.0 // indirect golang.org/x/text v0.14.0 // indirect golang.org/x/time v0.3.0 // indirect golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect google.golang.org/protobuf v1.31.0 // indirect - gorm.io/driver/postgres v1.5.0 // indirect - gorm.io/driver/sqlite v1.5.4 // indirect - gorm.io/gorm v1.25.5 // indirect + gorm.io/driver/postgres v1.5.7 // indirect + gorm.io/driver/sqlite v1.5.5 // indirect + gorm.io/gorm v1.25.9 // indirect lukechampine.com/blake3 v1.2.1 // indirect ) diff --git a/bskyweb/go.sum b/bskyweb/go.sum index 59797e35db..57b127b863 100644 --- a/bskyweb/go.sum +++ b/bskyweb/go.sum @@ -2,8 +2,8 @@ github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03 github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= -github.com/bluesky-social/indigo v0.0.0-20231216010655-ad730a7da4f5 h1:Zk1c+mxCYH6G/vLL0+9lO2Eci4OT3AFy73qPWa9auDM= -github.com/bluesky-social/indigo v0.0.0-20231216010655-ad730a7da4f5/go.mod h1:a8cPbqDkRX+aPwJnXF7kAi3PF26hYiR4w5H8624MB7k= +github.com/bluesky-social/indigo v0.0.0-20240624223826-fd66f93ce141 h1:F3ZceqS82fFfVV3ychWRLNDRFaFlbOwrPic0qJiUVqw= +github.com/bluesky-social/indigo v0.0.0-20240624223826-fd66f93ce141/go.mod h1:dBIOGhsiK0rgEETnxiGiuEyrSx6DKxEotHIPbiKD6WU= github.com/carlmjohnson/versioninfo v0.22.5 h1:O00sjOLUAFxYQjlN/bzYTuZiS0y6fWDQjMRvwtKgwwc= github.com/carlmjohnson/versioninfo v0.22.5/go.mod h1:QT9mph3wcVfISUKd0i9sZfVrPviHuSF+cUtLjm2WSf8= github.com/cespare/xxhash/v2 v2.2.0 h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44= @@ -11,7 +11,6 @@ github.com/cespare/xxhash/v2 v2.2.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XL github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d/go.mod h1:maD7wRr/U5Z6m/iR4s+kqSMx2CaBsrgA7czyZG/E6dU= github.com/cpuguy83/go-md2man/v2 v2.0.3 h1:qMCsGGgs+MAzDFyp9LpAe1Lqy/fY/qCovCm0qnXZOBM= github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o= -github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= @@ -23,8 +22,8 @@ github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSw github.com/flosch/pongo2/v6 v6.0.0 h1:lsGru8IAzHgIAw6H2m4PCyleO58I40ow6apih0WprMU= github.com/flosch/pongo2/v6 v6.0.0/go.mod h1:CuDpFm47R0uGGE7z13/tTlt1Y6zdxvr2RLT5LJhsHEU= github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= -github.com/go-logr/logr v1.3.0 h1:2y3SDp0ZXuc6/cjLSZ+Q3ir+QB9T/iG5yYRXqsagWSY= -github.com/go-logr/logr v1.3.0/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= +github.com/go-logr/logr v1.4.1 h1:pKouT5E8xu9zeFC39JXRDukb6JFQPXM5p5I91188VAQ= +github.com/go-logr/logr v1.4.1/go.mod h1:9T104GzyrTigFIr8wt5mBrctHMim0Nb2HLGrmQ40KvY= github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag= github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE= github.com/go-yaml/yaml v2.1.0+incompatible/go.mod h1:w2MrLa16VYP0jy6N7M5kHaCkaLENm+P+Tv+MfurjSw0= @@ -35,7 +34,6 @@ github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69 github.com/golang-jwt/jwt v3.2.2+incompatible h1:IfV12K8xAKAnZqdXVzCZ+TOjboZ2keLg81eXfW3O+oY= github.com/golang-jwt/jwt v3.2.2+incompatible/go.mod h1:8pz2t5EyA70fFQQSrl6XZXzqecmYZeUEB8OUGHkxJ+I= github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk= -github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE= github.com/google/go-cmp v0.6.0 h1:ofyhxvXcZhMsU5ulbFiLKl/XBFqE1GSq7atu8tAmTRI= github.com/google/go-cmp v0.6.0/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY= @@ -60,7 +58,6 @@ github.com/ipfs/bbloom v0.0.4 h1:Gi+8EGJ2y5qiD5FbsbpX/TMNcJw8gSqr7eyjHa4Fhvs= github.com/ipfs/bbloom v0.0.4/go.mod h1:cS9YprKXpoZ9lT0n/Mw/a6/aFV6DTjTLYHeA+gyqMG0= github.com/ipfs/go-block-format v0.2.0 h1:ZqrkxBA2ICbDRbK8KJs/u0O3dlp6gmAuuXUJNiW1Ycs= github.com/ipfs/go-block-format v0.2.0/go.mod h1:+jpL11nFx5A/SPpsoBn6Bzkra/zaArfSmsknbPMYgzM= -github.com/ipfs/go-cid v0.0.6/go.mod h1:6Ux9z5e+HpkQdckYoX1PG/6xqKspzlEIR5SDmgqgC/I= github.com/ipfs/go-cid v0.4.1 h1:A/T3qGvxi4kpKWWcPC/PgbvDA2bjVLO7n4UeVwnbs/s= github.com/ipfs/go-cid v0.4.1/go.mod h1:uQHwDeX4c6CtyrFwdqyhpNcxVewur1M7l7fNU7LKwZk= github.com/ipfs/go-datastore v0.6.0 h1:JKyz+Gvz1QEZw0LsX1IBn+JFCJQH4SJVFtM4uWU0Myk= @@ -88,10 +85,8 @@ github.com/jackc/pgpassfile v1.0.0 h1:/6Hmqy13Ss2zCq62VdNG8tM1wchn8zjSGOBJ6icpsI github.com/jackc/pgpassfile v1.0.0/go.mod h1:CEx0iS5ambNFdcRtxPj5JhEz+xB6uRky5eyVu/W2HEg= github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a h1:bbPeKD0xmW/Y25WS6cokEszi5g+S0QxI/d45PkRi7Nk= github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a/go.mod h1:5TJZWKEWniPve33vlWYSoGYefn3gLQRzjfDlhSJ9ZKM= -github.com/jackc/pgx/v5 v5.3.0/go.mod h1:t3JDKnCBlYIc0ewLF0Q7B8MXmoIaBOZj/ic7iHozM/8= github.com/jackc/pgx/v5 v5.5.0 h1:NxstgwndsTRy7eq9/kqYc/BZh5w2hHJV86wjvO+1xPw= github.com/jackc/pgx/v5 v5.5.0/go.mod h1:Ig06C2Vu0t5qXC60W8sqIthScaEnFvojjj9dSljmHRA= -github.com/jackc/puddle/v2 v2.2.0/go.mod h1:vriiEXHvEE654aYKXXjOvZM39qJ0q+azkZFrfEOc3H4= github.com/jackc/puddle/v2 v2.2.1 h1:RhxXJtFG022u4ibrCSMSiu5aOq1i77R3OHKNJj77OAk= github.com/jackc/puddle/v2 v2.2.1/go.mod h1:vriiEXHvEE654aYKXXjOvZM39qJ0q+azkZFrfEOc3H4= github.com/jbenet/go-cienv v0.1.0/go.mod h1:TqNnHUmJgXau0nCzC7kXWeotg3J9W34CUv5Djy1+FlA= @@ -109,11 +104,9 @@ github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck= github.com/klauspost/compress v1.17.3 h1:qkRjuerhUU1EmXLYGkSH6EZL+vPSxIrYjLNAK4slzwA= github.com/klauspost/compress v1.17.3/go.mod h1:/dCuZOvVtNoHsyb+cuJD3itjs3NbnF6KH9zAO4BDxPM= -github.com/klauspost/cpuid/v2 v2.2.6 h1:ndNyv040zDGIDh8thGkXYjnFtiN02M1PVVF+JE/48xc= -github.com/klauspost/cpuid/v2 v2.2.6/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= +github.com/klauspost/cpuid/v2 v2.2.7 h1:ZWSB3igEs+d0qvnxR/ZBzXVmxkgt8DdzP6m9pfuVLDM= +github.com/klauspost/cpuid/v2 v2.2.7/go.mod h1:Lcz8mBdAVJIBVzewtcLocK12l3Y+JytZYpaMropDUws= github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo= -github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI= -github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk= github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ= @@ -143,37 +136,28 @@ github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27k github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= github.com/mattn/go-isatty v0.0.20 h1:xfD0iDuEKnDkl03q4limB+vH+GxLEtL/jb4xVJSWWEY= github.com/mattn/go-isatty v0.0.20/go.mod h1:W+V8PltTTMOvKvAeJH7IuucS94S2C6jfK/D7dTCTo3Y= -github.com/mattn/go-sqlite3 v1.14.18 h1:JL0eqdCOq6DJVNPSvArO/bIV9/P7fbGrV00LZHc+5aI= -github.com/mattn/go-sqlite3 v1.14.18/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg= +github.com/mattn/go-sqlite3 v1.14.22 h1:2gZY6PC6kBnID23Tichd1K+Z0oS6nE/XwU+Vz/5o4kU= +github.com/mattn/go-sqlite3 v1.14.22/go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y= github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 h1:jWpvCLoY8Z/e3VKvlsiIGKtc+UG6U5vzxaoagmhXfyg= github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0/go.mod h1:QUyp042oQthUoa9bqDv0ER0wrtXnBruoNd7aNjkbP+k= -github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1/go.mod h1:pD8RvIylQ358TN4wwqatJ8rNavkEINozVn9DtGI3dfQ= -github.com/minio/sha256-simd v0.1.1-0.20190913151208-6de447530771/go.mod h1:B5e1o+1/KgNmWrSQK08Y6Z1Vb5pwIktudl0J58iy0KM= github.com/minio/sha256-simd v1.0.1 h1:6kaan5IFmwTNynnKKpDHe6FWHohJOHhCPchzK49dzMM= github.com/minio/sha256-simd v1.0.1/go.mod h1:Pz6AKMiUdngCLpeTL/RJY1M9rUuPMYujV5xJjtbRSN8= -github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG+4E0Y= -github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0= -github.com/mr-tron/base58 v1.1.0/go.mod h1:xcD2VGqlgYjBdcBLw+TuYLr8afG+Hj8g2eTVqeSzSU8= -github.com/mr-tron/base58 v1.1.3/go.mod h1:BinMc/sQntlIE1frQmRFPUoPA1Zkr8VRgBdjWI2mNwc= github.com/mr-tron/base58 v1.2.0 h1:T/HDJBh4ZCPbU39/+c3rRvE0uKBQlU27+QI8LJ4t64o= github.com/mr-tron/base58 v1.2.0/go.mod h1:BinMc/sQntlIE1frQmRFPUoPA1Zkr8VRgBdjWI2mNwc= -github.com/multiformats/go-base32 v0.0.3/go.mod h1:pLiuGC8y0QR3Ue4Zug5UzK9LjgbkL8NSQj0zQ5Nz/AA= github.com/multiformats/go-base32 v0.1.0 h1:pVx9xoSPqEIQG8o+UbAe7DNi51oej1NtK+aGkbLYxPE= github.com/multiformats/go-base32 v0.1.0/go.mod h1:Kj3tFY6zNr+ABYMqeUNeGvkIC/UYgtWibDcT0rExnbI= -github.com/multiformats/go-base36 v0.1.0/go.mod h1:kFGE83c6s80PklsHO9sRn2NCoffoRdUUOENyW/Vv6sM= github.com/multiformats/go-base36 v0.2.0 h1:lFsAbNOGeKtuKozrtBsAkSVhv1p9D0/qedU9rQyccr0= github.com/multiformats/go-base36 v0.2.0/go.mod h1:qvnKE++v+2MWCfePClUEjE78Z7P2a1UV0xHgWc0hkp4= -github.com/multiformats/go-multibase v0.0.3/go.mod h1:5+1R4eQrT3PkYZ24C3W2Ue2tPwIdYQD509ZjSb5y9Oc= github.com/multiformats/go-multibase v0.2.0 h1:isdYCVLvksgWlMW9OZRYJEa9pZETFivncJHmHnnd87g= github.com/multiformats/go-multibase v0.2.0/go.mod h1:bFBZX4lKCA/2lyOFSAoKH5SS6oPyjtnzK/XTFDPkNuk= -github.com/multiformats/go-multihash v0.0.13/go.mod h1:VdAWLKTwram9oKAatUcLxBNUjdtcVwxObEQBtRfuyjc= github.com/multiformats/go-multihash v0.2.3 h1:7Lyc8XfX/IY2jWb/gI7JP+o7JEq9hOa7BFvVU9RSh+U= github.com/multiformats/go-multihash v0.2.3/go.mod h1:dXgKXCXjBzdscBLk9JkjINiEsCKRVch90MdaGiKsvSM= -github.com/multiformats/go-varint v0.0.5/go.mod h1:3Ls8CIEsrijN6+B7PbrXRPxHRPuXSrVKRY101jdMZYE= github.com/multiformats/go-varint v0.0.7 h1:sWSGR+f/eu5ABZA2ZpYKBILXTTs9JWpdEM/nEGOHFS8= github.com/multiformats/go-varint v0.0.7/go.mod h1:r8PUYw/fD/SjBCiKOoDlGF6QawOELpZAu9eioSos/OU= github.com/opentracing/opentracing-go v1.2.0 h1:uEJPy/1a5RIPAJ0Ov+OIO8OxWu77jEv+1B0VhjKrZUs= github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYrxe9dPLANfrWvHYVTgc= +github.com/orandin/slog-gorm v1.3.2 h1:C0lKDQPAx/pF+8K2HL7bdShPwOEJpPM0Bn80zTzxU1g= +github.com/orandin/slog-gorm v1.3.2/go.mod h1:MoZ51+b7xE9lwGNPYEhxcUtRNrYzjdcKvA8QXQQGEPA= github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0= github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= @@ -188,7 +172,6 @@ github.com/prometheus/common v0.45.0/go.mod h1:YJmSTw9BoKxJplESWWxlbyttQR4uaEcGy github.com/prometheus/procfs v0.12.0 h1:jluTpSng7V9hY0O2R9DzzJHYb2xULk9VTR1V1R/k6Bo= github.com/prometheus/procfs v0.12.0/go.mod h1:pcuDEFsWDnvcgNzo4EEweacyhjeA9Zk3cnaOZAZEfOo= github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4= -github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc= github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjRBZyWFQ= github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog= github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= @@ -213,9 +196,9 @@ github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/ github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg= github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU= -github.com/stretchr/testify v1.8.1/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4= -github.com/stretchr/testify v1.8.4 h1:CcVxjf3Q8PM0mHUKJCdn+eZZtm5yQwehR5yeSVQQcUk= github.com/stretchr/testify v1.8.4/go.mod h1:sz/lmYIOXD/1dqDmKjjqLyZ2RngseejIcXlSw2iwfAo= +github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= +github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/urfave/cli v1.22.10/go.mod h1:Gos4lmkARVdJ6EkW0WaNv/tZAAMe9V7XWyB60NtXRu0= github.com/urfave/cli/v2 v2.25.7 h1:VAzn5oq403l5pHjc4OhD54+XGO9cdKVL/7lDjF+iKUs= github.com/urfave/cli/v2 v2.25.7/go.mod h1:8qnjx1vcq5s2/wpsqoZFndg2CE5tNFyrTvS6SinrnYQ= @@ -225,8 +208,8 @@ github.com/valyala/fasttemplate v1.2.2 h1:lxLXG0uE3Qnshl9QyaK6XJxMXlQZELvChBOCmQ github.com/valyala/fasttemplate v1.2.2/go.mod h1:KHLXt3tVN2HBp8eijSv/kGJopbvo7S+qRAEEKiv+SiQ= github.com/warpfork/go-wish v0.0.0-20220906213052-39a1cc7a02d0 h1:GDDkbFiaK8jsSDJfjId/PEGEShv6ugrt4kYsC5UIDaQ= github.com/warpfork/go-wish v0.0.0-20220906213052-39a1cc7a02d0/go.mod h1:x6AKhvSSexNrVSrViXSHUEbICjmGXhtgABaHIySUSGw= -github.com/whyrusleeping/cbor-gen v0.0.0-20230923211252-36a87e1ba72f h1:SBuSxXJL0/ZJMtTxbXZgHZkThl9dNrzyaNhlyaqscRo= -github.com/whyrusleeping/cbor-gen v0.0.0-20230923211252-36a87e1ba72f/go.mod h1:fgkXqYy7bV2cFeIEOkVTZS/WjXARfBqSH6Q2qHL33hQ= +github.com/whyrusleeping/cbor-gen v0.1.1-0.20240311221002-68b9f235c302 h1:MhInbXe4SzcImAKktUvWBCWZgcw6MYf5NfumTj1BhAw= +github.com/whyrusleeping/cbor-gen v0.1.1-0.20240311221002-68b9f235c302/go.mod h1:pM99HXyEbSQHcosHc0iW7YFmwnscr+t9Te4ibko05so= github.com/whyrusleeping/go-did v0.0.0-20230824162731-404d1707d5d6 h1:yJ9/LwIGIk/c0CdoavpC9RNSGSruIspSZtxG3Nnldic= github.com/whyrusleeping/go-did v0.0.0-20230824162731-404d1707d5d6/go.mod h1:39U9RRVr4CKbXpXYopWn+FSH5s+vWu6+RmguSPWAq5s= github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 h1:bAn7/zixMGCfxrRTfdpNzjtPYqr8smhKouy9mxVdGPU= @@ -239,8 +222,8 @@ gitlab.com/yawning/secp256k1-voi v0.0.0-20230925100816-f2616030848b h1:CzigHMRyS gitlab.com/yawning/secp256k1-voi v0.0.0-20230925100816-f2616030848b/go.mod h1:/y/V339mxv2sZmYYR64O07VuCpdNZqCTwO8ZcouTMI8= gitlab.com/yawning/tuplehash v0.0.0-20230713102510-df83abbf9a02 h1:qwDnMxjkyLmAFgcfgTnfJrmYKWhHnci3GjDqcZp1M3Q= gitlab.com/yawning/tuplehash v0.0.0-20230713102510-df83abbf9a02/go.mod h1:JTnUj0mpYiAsuZLmKjTx/ex3AtMowcCgnE7YNyCEP0I= -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.42.0 h1:pginetY7+onl4qN1vl0xW/V/v6OBZ0vVdH+esuJgvmM= -go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.42.0/go.mod h1:XiYsayHc36K3EByOO6nbAXnAWbrUxdjUROCEeeROOH8= +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 h1:aFJWCqJMNjENlcleuuOkGAPH82y0yULBScfXcIEdS24= +go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1/go.mod h1:sEGXWArGqc3tVa+ekntsN65DmVbVeW+7lTKTjZF3/Fo= go.opentelemetry.io/otel v1.21.0 h1:hzLeKBZEL7Okw2mGzZ0cc4k/A7Fta0uoPgaJCr8fsFc= go.opentelemetry.io/otel v1.21.0/go.mod h1:QZzNPQPm1zLX4gZK4cMi+71eaorMSGT3A4znnUvNNEo= go.opentelemetry.io/otel/metric v1.21.0 h1:tlYWfeo+Bocx5kLEloTjbcDwBuELRrIFxwdQ36PlJu4= @@ -265,14 +248,12 @@ go.uber.org/zap v1.26.0 h1:sI7k6L95XOKS281NhVKOFCUNIvv9e0w4BF8N3u+tCRo= go.uber.org/zap v1.26.0/go.mod h1:dtElttAiwGvoJ/vj4IwHBS/gXsEu/pZ50mUIRWuG0so= golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w= golang.org/x/crypto v0.0.0-20190510104115-cbcb75029529/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= -golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI= golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto= golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= -golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58= golang.org/x/crypto v0.12.0/go.mod h1:NF0Gs7EO5K4qLn+Ylc+fih8BSTeIjAP05siRnAh98yw= -golang.org/x/crypto v0.15.0 h1:frVn1TEaCEaZcn3Tmd7Y2b5KKPaZ+I32Q2OA3kYp5TA= -golang.org/x/crypto v0.15.0/go.mod h1:4ChreQoLWfG3xLDer1WdlH5NdlQ3+mwnQq1YTKY+72g= +golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA= +golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs= golang.org/x/lint v0.0.0-20190930215403-16217165b5de/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc= golang.org/x/mod v0.0.0-20190513183733-4bf6d317e70e/go.mod h1:mXi4GBBbnImb6dmsKGUJ2LatrhH/nqhxcFungHvyanc= golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA= @@ -290,8 +271,8 @@ golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96b golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c= golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= -golang.org/x/net v0.18.0 h1:mIYleuAkSbHh0tCv7RvjL3F6ZVbLjq4+R7zbOn3Kokg= -golang.org/x/net v0.18.0/go.mod h1:/czyP5RqHAH4odGYxBJ1qz0+CE5WZ+2j1YgoEo8F2jQ= +golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4= +golang.org/x/net v0.21.0/go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44= golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= @@ -316,8 +297,8 @@ golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= golang.org/x/sys v0.11.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg= -golang.org/x/sys v0.14.0 h1:Vz7Qs629MkJkGyHxUlRHizWJRG2j8fbQKjELVSNhy7Q= -golang.org/x/sys v0.14.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= +golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4= +golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA= golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo= golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= @@ -365,13 +346,12 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= -gorm.io/driver/postgres v1.5.0 h1:u2FXTy14l45qc3UeCJ7QaAXZmZfDDv0YrthvmRq1l0U= -gorm.io/driver/postgres v1.5.0/go.mod h1:FUZXzO+5Uqg5zzwzv4KK49R8lvGIyscBOqYrtI1Ce9A= -gorm.io/driver/sqlite v1.5.4 h1:IqXwXi8M/ZlPzH/947tn5uik3aYQslP9BVveoax0nV0= -gorm.io/driver/sqlite v1.5.4/go.mod h1:qxAuCol+2r6PannQDpOP1FP6ag3mKi4esLnB/jHed+4= -gorm.io/gorm v1.24.7-0.20230306060331-85eaf9eeda11/go.mod h1:L4uxeKpfBml98NYqVqwAdmV1a2nBtAec/cf3fpucW/k= -gorm.io/gorm v1.25.5 h1:zR9lOiiYf09VNh5Q1gphfyia1JpiClIWG9hQaxB/mls= -gorm.io/gorm v1.25.5/go.mod h1:hbnx/Oo0ChWMn1BIhpy1oYozzpM15i4YPuHDmfYtwg8= +gorm.io/driver/postgres v1.5.7 h1:8ptbNJTDbEmhdr62uReG5BGkdQyeasu/FZHxI0IMGnM= +gorm.io/driver/postgres v1.5.7/go.mod h1:3e019WlBaYI5o5LIdNV+LyxCMNtLOQETBXL2h4chKpA= +gorm.io/driver/sqlite v1.5.5 h1:7MDMtUZhV065SilG62E0MquljeArQZNfJnjd9i9gx3E= +gorm.io/driver/sqlite v1.5.5/go.mod h1:6NgQ7sQWAIFsPrJJl1lSNSu2TABh0ZZ/zm5fosATavE= +gorm.io/gorm v1.25.9 h1:wct0gxZIELDk8+ZqF/MVnHLkA1rvYlBWUMv2EdsK1g8= +gorm.io/gorm v1.25.9/go.mod h1:hbnx/Oo0ChWMn1BIhpy1oYozzpM15i4YPuHDmfYtwg8= honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg= lukechampine.com/blake3 v1.2.1 h1:YuqqRuaqsGV71BV/nm9xlI0MKUv4QC54jQnBChWbGnI= lukechampine.com/blake3 v1.2.1/go.mod h1:0OFRp7fBtAylGVCO40o87sbupkyIGgbpv1+M1k1LM6k= diff --git a/bskyweb/templates/starterpack.html b/bskyweb/templates/starterpack.html new file mode 100644 index 0000000000..80cbfc80a6 --- /dev/null +++ b/bskyweb/templates/starterpack.html @@ -0,0 +1,26 @@ +{% extends "base.html" %} + +{% block html_head_extra -%} + + {%- if requestURI %} + + {% endif -%} + {%- if imgThumbUrl %} + + + {%- else -%} + + + {% endif -%} + + {%- if title %} + + + {%- else -%} + + + {% endif -%} + + + +{%- endblock %} From efbc6d4f1b96c1ea08639b9ed459d81f2520dd73 Mon Sep 17 00:00:00 2001 From: devin ivy Date: Mon, 24 Jun 2024 21:56:32 -0400 Subject: [PATCH 023/153] go version for embedr (#4632) --- Dockerfile.embedr | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.embedr b/Dockerfile.embedr index 63f0609809..9ff04aa5c7 100644 --- a/Dockerfile.embedr +++ b/Dockerfile.embedr @@ -1,4 +1,4 @@ -FROM golang:1.21-bullseye AS build-env +FROM golang:1.22-bullseye AS build-env WORKDIR /usr/src/social-app From 363d18a40e158950b5fd88d071b1726ee98e6f26 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Mon, 24 Jun 2024 19:10:29 -0700 Subject: [PATCH 024/153] CI: bump some more golang versions to v1.22 (#4635) --- .github/workflows/golang-test-lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/golang-test-lint.yml b/.github/workflows/golang-test-lint.yml index a87e7f1443..36e28841d5 100644 --- a/.github/workflows/golang-test-lint.yml +++ b/.github/workflows/golang-test-lint.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Go tooling uses: actions/setup-go@v3 with: - go-version: '1.21' + go-version: '1.22' - name: Dummy Static Files run: touch bskyweb/static/js/blah.js && touch bskyweb/static/media/blah.txt - name: Check @@ -36,7 +36,7 @@ jobs: - name: Set up Go tooling uses: actions/setup-go@v3 with: - go-version: '1.21' + go-version: '1.22' - name: Dummy Static Files run: touch bskyweb/static/js/blah.js && touch bskyweb/static/media/blah.txt - name: Lint From 12faa005af946e809a6c972265d8582063e61895 Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 24 Jun 2024 21:01:56 -0700 Subject: [PATCH 025/153] bump (#4634) --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 6577703099..f3e2e0c662 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "open-analyzer": "EXPO_PUBLIC_OPEN_ANALYZER=1 yarn build-web" }, "dependencies": { - "@atproto/api": "0.12.22-next.0", + "@atproto/api": "^0.12.22", "@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/yarn.lock b/yarn.lock index b93f933044..eeaea01c32 100644 --- a/yarn.lock +++ b/yarn.lock @@ -34,10 +34,10 @@ jsonpointer "^5.0.0" leven "^3.1.0" -"@atproto/api@0.12.22-next.0": - version "0.12.22-next.0" - resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.12.22-next.0.tgz#7996f651468e3fb151663df28a9938d92bd0660a" - integrity sha512-LKmOrQvBvIlheLv+ns85bCrP23DbYfk8UQkFikLBEqPKQW10F9ZwsJ6oBUfrWv6pEI4Mn0mrn8cFQkvdZ2i2sg== +"@atproto/api@^0.12.22": + version "0.12.22" + resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.12.22.tgz#1880a93a0caa4485cd8463bd1e10bf2424b9826c" + integrity sha512-TIXSnf3qqyX40Ei/FkK4H24w+7s5rOc63TPwrGakRBOqIgSNBKOggei8I600fJ/AXB7HO6Vp9tBmDVOt2+021A== dependencies: "@atproto/common-web" "^0.3.0" "@atproto/lexicon" "^0.4.0" From fc2fba0981225dc49257cfda9d0c13b393544597 Mon Sep 17 00:00:00 2001 From: surfdude29 <149612116+surfdude29@users.noreply.github.com> Date: Tue, 25 Jun 2024 12:32:30 +0200 Subject: [PATCH 026/153] Fix typo in ThreadgateEditor.tsx (#4636) --- src/components/dialogs/ThreadgateEditor.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/dialogs/ThreadgateEditor.tsx b/src/components/dialogs/ThreadgateEditor.tsx index 75383764fc..104766e267 100644 --- a/src/components/dialogs/ThreadgateEditor.tsx +++ b/src/components/dialogs/ThreadgateEditor.tsx @@ -92,7 +92,7 @@ function DialogContent({ style={[{maxWidth: 500}, a.w_full]}> - Chose who can reply + Choose who can reply Either choose "Everybody" or "Nobody" From e5b9f130a9be7a8fb2628adbefd75a1c7140b140 Mon Sep 17 00:00:00 2001 From: Hailey Date: Tue, 25 Jun 2024 09:24:05 -0700 Subject: [PATCH 027/153] Only add the URI to the record (#4639) --- src/state/queries/starter-packs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/state/queries/starter-packs.ts b/src/state/queries/starter-packs.ts index ca7fa2d0ce..c279b6dc41 100644 --- a/src/state/queries/starter-packs.ts +++ b/src/state/queries/starter-packs.ts @@ -127,7 +127,7 @@ export function useCreateStarterPackMutation({ description, descriptionFacets, list: listRes?.uri, - feeds, + feeds: feeds?.map(f => ({uri: f.uri})), createdAt: new Date().toISOString(), }, ) From d11b552710dc08b7cb12d5fe590b44dd30745c52 Mon Sep 17 00:00:00 2001 From: Hailey Date: Tue, 25 Jun 2024 09:36:54 -0700 Subject: [PATCH 028/153] ensure we get navigated away to starter pack when signed in (#4640) * ensure we get navigated away to starter pack when signed in * clean --- src/view/screens/Home.tsx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/view/screens/Home.tsx b/src/view/screens/Home.tsx index dfadf9bbec..98694219a6 100644 --- a/src/view/screens/Home.tsx +++ b/src/view/screens/Home.tsx @@ -33,8 +33,25 @@ import {HomeHeader} from '../com/home/HomeHeader' type Props = NativeStackScreenProps export function HomeScreen(props: Props) { const {data: preferences} = usePreferencesQuery() + const {currentAccount} = useSession() const {data: pinnedFeedInfos, isLoading: isPinnedFeedsLoading} = usePinnedFeedsInfos() + + React.useEffect(() => { + const params = props.route.params + if ( + currentAccount && + props.route.name === 'Start' && + params?.name && + params?.rkey + ) { + props.navigation.navigate('StarterPack', { + rkey: params.rkey, + name: params.name, + }) + } + }, [currentAccount, props.navigation, props.route.name, props.route.params]) + if (preferences && pinnedFeedInfos && !isPinnedFeedsLoading) { return ( Date: Tue, 25 Jun 2024 19:08:40 +0200 Subject: [PATCH 029/153] Update French localization (#4637) * Update French localization * fix apostrophe * Apply suggestions from code review Co-authored-by: Stanislas Signoud * update revision date * quick fix after #4636 merged --------- Co-authored-by: Stanislas Signoud --- src/locale/locales/fr/messages.po | 56 ++++++++++++++++++++++++++++--- 1 file changed, 51 insertions(+), 5 deletions(-) diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index 95efb00a5d..a4e6fab248 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-06-23 20:10+0100\n" +"PO-Revision-Date: 2024-06-25 11:00+0100\n" "Last-Translator: surfdude29\n" "Language-Team: Stanislas Signoud (@signez.fr), surfdude29\n" "Plural-Forms: \n" @@ -76,6 +76,10 @@ 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:218 +msgid "{0} joined this week" +msgstr "{0} personnes se sont inscrites cette semaine" + #: src/screens/StarterPack/StarterPackScreen.tsx:343 msgid "{0} people have used this starter pack!" msgstr "{0} personnes ont utilisé ce kit de démarrage !" @@ -193,6 +197,10 @@ msgstr "<0>{0} fait partie de votre kit de démarrage" msgid "<0>Not Applicable. This warning is only available for posts with media attached." msgstr "<0>Pas applicable. Cet avertissement est seulement disponible pour les posts qui ont des médias qui leur sont attachés." +#: src/screens/StarterPack/Wizard/index.tsx:472 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "<0>Vous et<1> <2>{0} faites partie de votre pack de démarrage" + #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠Pseudo invalide" @@ -923,10 +931,18 @@ msgstr "Consultez votre boîte de réception, vous avez du recevoir un e-mail co msgid "Choose \"Everybody\" or \"Nobody\"" msgstr "Choisir « Tout le monde » ou « Personne »" +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Choose Feeds" +msgstr "Choisissez des fils d’actu" + #: src/components/StarterPack/ProfileStarterPacks.tsx:288 msgid "Choose for me" msgstr "Choisir pour moi" +#: src/screens/StarterPack/Wizard/index.tsx:187 +msgid "Choose People" +msgstr "Choisissez des personnes" + #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Choisir un service" @@ -939,6 +955,11 @@ msgstr "Choisissez les algorithmes qui alimentent vos fils d’actu personnalis msgid "Choose this color as your avatar" msgstr "Choisir cette couleur comme avatar" +#: src/components/dialogs/ThreadgateEditor.tsx:91 +#: src/components/dialogs/ThreadgateEditor.tsx:95 +msgid "Choose who can reply" +msgstr "Choisissez qui peut répondre" + #: src/screens/Signup/StepInfo/index.tsx:114 msgid "Choose your password" msgstr "Choisissez votre mot de passe" @@ -1268,6 +1289,10 @@ msgstr "Copier {0}" msgid "Copy code" msgstr "Copier ce code" +#: src/components/StarterPack/ShareDialog.tsx:123 +msgid "Copy link" +msgstr "Copier le lien" + #: src/components/StarterPack/ShareDialog.tsx:143 msgid "Copy Link" msgstr "Copier le lien" @@ -1804,6 +1829,10 @@ msgstr "Modifier votre kit de démarrage" msgid "Education" msgstr "Éducation" +#: src/components/dialogs/ThreadgateEditor.tsx:98 +msgid "Either choose \"Everybody\" or \"Nobody\"" +msgstr "Choisissez soit « Tout le monde », soit « Personne »" + #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" @@ -3731,6 +3760,10 @@ msgstr "Ouvrir le journal du système" msgid "Opens {numItems} options" msgstr "Ouvre {numItems} options" +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 +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:510 msgid "Opens accessibility settings" msgstr "Ouvre les paramètres d’accessibilité" @@ -5075,6 +5108,11 @@ msgstr "Partager le lien" msgid "Share link dialog" msgstr "Dialogue pour le partage d’un lien" +#: src/components/StarterPack/ShareDialog.tsx:134 +#: src/components/StarterPack/ShareDialog.tsx:145 +msgid "Share QR code" +msgstr "Partager le code QR" + #: src/screens/StarterPack/StarterPackScreen.tsx:296 msgid "Share this starter pack" msgstr "Partagez ce kit de démarrage" @@ -5281,10 +5319,6 @@ msgstr "Développement de logiciels" msgid "Some people can reply" msgstr "Quelques comptes peuvent répondre" -#: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "" - #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "Quelque chose n’a pas marché" @@ -5853,6 +5887,10 @@ msgstr "Préférences des fils de discussion" msgid "Thread Preferences" msgstr "Préférences des fils de discussion" +#: src/components/WhoCanReply.tsx:109 +msgid "Thread settings updated" +msgstr "Paramètres du fil de discussion mis à jour" + #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "Mode arborescent" @@ -6415,6 +6453,10 @@ msgstr "Nous sommes désolés ! Vous ne pouvez vous abonner qu’à vingt étiq msgid "Welcome back!" msgstr "Bienvenue !" +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "Bienvenue et enchanté !" + #: src/screens/Onboarding/StepInterests/index.tsx:135 msgid "What are your interests?" msgstr "Quels sont vos centres d’intérêt ?" @@ -6542,6 +6584,10 @@ msgstr "Hier, {time}" msgid "you" msgstr "vous" +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "Vous" + #: src/screens/SignupQueued.tsx:136 msgid "You are in line." msgstr "Vous êtes dans la file d’attente." From b6a38e7d649c50de05436cb553ebd9582de2db34 Mon Sep 17 00:00:00 2001 From: Takayuki KUSANO <65759+tkusano@users.noreply.github.com> Date: Wed, 26 Jun 2024 02:10:56 +0900 Subject: [PATCH 030/153] Updated Japanese translation (#4591) * Updated Japanese translation * Updated * Updated Japanese translation * Fix some translations * Updated translation (see #4607) * Update translation * Fixed some translations * Update messages.po --------- Co-authored-by: dan --- src/locale/locales/ja/messages.po | 299 ++++++++++++++++-------------- 1 file changed, 157 insertions(+), 142 deletions(-) diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po index beadaf4e01..908bd5d4ac 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-06-19 11:10+0900\n" +"PO-Revision-Date: 2024-06-25 14:14+0900\n" "Last-Translator: tkusano\n" "Language-Team: Hima-Zinn, tkusano, dolciss, oboenikui, noritada, middlingphys, hibiki, reindex-ot, haoyayoi, vyv03354\n" "Plural-Forms: \n" @@ -76,9 +76,13 @@ msgstr "{0, plural, other {リポスト}}" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, other {いいねを外す(#個のいいね)}}" +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +msgid "{0} joined this week" +msgstr "今週、{0}人が参加しました" + #: src/screens/StarterPack/StarterPackScreen.tsx:343 msgid "{0} people have used this starter pack!" -msgstr "" +msgstr "{0}人がこのスターターパックを使用しました!" #: src/view/com/util/UserAvatar.tsx:419 msgid "{0}'s avatar" @@ -86,11 +90,11 @@ msgstr "{0}のアバター" #: src/screens/StarterPack/Wizard/StepDetails.tsx:68 msgid "{0}'s favorite feeds and people - join me!" -msgstr "" +msgstr "{0}のお気に入りのフィードとユーザーです - 参加してね!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:47 msgid "{0}'s starter pack" -msgstr "" +msgstr "{0}のスターターパック" #: src/components/LabelingServiceCard/index.tsx:71 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" @@ -118,7 +122,7 @@ msgstr "{diffSeconds, plural, other {秒}}" #: src/screens/StarterPack/Wizard/index.tsx:182 msgid "{displayName}'s Starter Pack" -msgstr "" +msgstr "{displayName}のスターターパック" #: src/screens/SignupQueued.tsx:207 msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" @@ -153,7 +157,7 @@ msgstr "{profileName}はBlueskyに{0}前に参加しました" #: src/components/NewskieDialog.tsx:87 msgid "{profileName} joined Bluesky using a starter pack {0} ago" -msgstr "" +msgstr "{profileName}はスターターパックを使って{0}前に参加しました" #: 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}}" @@ -163,13 +167,15 @@ msgstr "{value, plural, =0 {すべての返信を表示} other {#個以上のい msgid "<0/> members" msgstr "<0/>のメンバー" -#: 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:497 -msgid "<0>{0}, <1>{1}, and {2} {3, plural, one {other} other {others}} are included in your starter pack" -msgstr "" +msgctxt "profiles" +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/screens/StarterPack/Wizard/index.tsx:509 +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 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -181,12 +187,16 @@ msgstr "<0>{0} {1, plural, other {フォロー}}" #: src/screens/StarterPack/Wizard/index.tsx:478 msgid "<0>{0} is included in your starter pack" -msgstr "" +msgstr "<0>{0}はあなたのスターターパックに含まれています" #: src/view/com/modals/SelfLabel.tsx:135 msgid "<0>Not Applicable. This warning is only available for posts with media attached." msgstr "<0>適用できません。 この警告はメディアが添付された投稿にのみ利用可能です。" +#: src/screens/StarterPack/Wizard/index.tsx:472 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "<0>あなたと<1><2>{0}はあなたのスターターパックに含まれています" + #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠無効なハンドル" @@ -275,11 +285,11 @@ msgstr "追加" #: src/screens/StarterPack/Wizard/index.tsx:539 msgid "Add {0} more to continue" -msgstr "" +msgstr "続けるにはさらに{0}ユーザー追加してください" #: src/components/StarterPack/Wizard/WizardListCard.tsx:56 msgid "Add {displayName} to starter pack" -msgstr "" +msgstr "{displayName}をスターターパックに加える" #: src/view/com/modals/SelfLabel.tsx:57 msgid "Add a content warning" @@ -319,17 +329,13 @@ msgstr "ミュートするワードを設定に追加" msgid "Add muted words and tags" msgstr "ミュートするワードとタグを追加" -#: src/screens/StarterPack/Wizard/index.tsx:197 -msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "" - #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "おすすめのフィードを追加" #: src/screens/StarterPack/Wizard/index.tsx:464 msgid "Add some feeds to your starter pack!" -msgstr "" +msgstr "あなたのスターターパックにフィードをいくつか追加してください!" #: src/screens/Feeds/NoFollowingFeed.tsx:41 msgid "Add the default feed of only people you follow" @@ -381,7 +387,7 @@ msgstr "高度な設定" #: src/screens/StarterPack/StarterPackScreen.tsx:271 msgid "All accounts have been followed!" -msgstr "" +msgstr "すべてのアカウントをフォローしました!" #: src/view/screens/Feeds.tsx:721 msgid "All the feeds you've saved, right in one place." @@ -441,20 +447,16 @@ msgstr "エラーが発生しました" #: src/components/StarterPack/ProfileStarterPacks.tsx:313 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 "スターターパックの生成中にエラーが発生しました。再度試しますか?" #: src/components/StarterPack/QrCodeDialog.tsx:76 #: src/components/StarterPack/ShareDialog.tsx:91 msgid "An error occurred while saving the QR code!" -msgstr "" +msgstr "QRコードの保存中にエラーが発生しました!" #: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "An error occurred while trying to follow all" -msgstr "" +msgstr "すべてフォローしようとしたらエラーが発生しました" #: src/lib/moderation/useReportOptions.ts:28 msgid "An issue not included in these options" @@ -548,7 +550,7 @@ msgstr "デフォルトのおすすめフィードを追加" #: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Are you sure you want delete this starter pack?" -msgstr "" +msgstr "このスターターパックを本当に削除したいですか?" #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" @@ -710,7 +712,7 @@ msgstr "Bluesky は、ホスティング プロバイダーを選択できるオ #: src/components/StarterPack/ProfileStarterPacks.tsx:280 msgid "Bluesky will choose a set of recommended accounts from people in your network." -msgstr "" +msgstr "Blueskyはあなたのつながっているユーザーからおすすめのアカウントを選びます。" #: src/screens/Moderation/index.tsx:533 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." @@ -913,13 +915,17 @@ msgstr "確認コードが記載されたメールを確認し、ここに入力 msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "入力したメールアドレスの受信トレイを確認して、以下に入力するための確認コードが記載されたメールが届いていないか確認してください:" -#: src/view/com/modals/Threadgate.tsx:75 -msgid "Choose \"Everybody\" or \"Nobody\"" -msgstr "「全員」か「返信不可」のどちらかを選択" +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Choose Feeds" +msgstr "フィードの選択" #: src/components/StarterPack/ProfileStarterPacks.tsx:288 msgid "Choose for me" -msgstr "" +msgstr "私向けに選んで" + +#: src/screens/StarterPack/Wizard/index.tsx:187 +msgid "Choose People" +msgstr "ユーザーの選択" #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" @@ -933,10 +939,18 @@ msgstr "カスタムフィードのアルゴリズムを選択できます。" msgid "Choose this color as your avatar" msgstr "この色をアバターとして選択" +#: src/components/dialogs/ThreadgateEditor.tsx:91 +msgid "Choose who can reply" +msgstr "誰が返信できるかを選択" + #: src/screens/Signup/StepInfo/index.tsx:114 msgid "Choose your password" msgstr "パスワードを入力" +#: src/components/dialogs/ThreadgateEditor.tsx:95 +msgid "Choose who can reply" +msgstr "誰が返信できるかを選択" + #: src/view/screens/Settings/index.tsx:910 msgid "Clear all legacy storage data" msgstr "レガシーストレージデータをすべてクリア" @@ -1262,9 +1276,13 @@ msgstr "{0}をコピー" msgid "Copy code" msgstr "コードをコピー" +#: src/components/StarterPack/ShareDialog.tsx:123 +msgid "Copy link" +msgstr "リンクをコピー" + #: src/components/StarterPack/ShareDialog.tsx:143 msgid "Copy Link" -msgstr "" +msgstr "リンクをコピー" #: src/view/screens/ProfileList.tsx:428 msgid "Copy link to list" @@ -1287,7 +1305,7 @@ msgstr "投稿のテキストをコピー" #: src/components/StarterPack/QrCodeDialog.tsx:174 msgid "Copy QR code" -msgstr "" +msgstr "QRコードをコピー" #: src/Navigation.tsx:261 #: src/view/screens/CopyrightPolicy.tsx:29 @@ -1312,7 +1330,7 @@ msgstr "チャットのミュートに失敗しました" #: src/components/StarterPack/ProfileStarterPacks.tsx:270 msgid "Create" -msgstr "" +msgstr "作成" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 @@ -1325,17 +1343,17 @@ msgstr "新しいBlueskyアカウントを作成" #: src/components/StarterPack/QrCodeDialog.tsx:157 msgid "Create a QR code for a starter pack" -msgstr "" +msgstr "スターターパックのQRコードを作成" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:257 #: src/Navigation.tsx:330 msgid "Create a starter pack" -msgstr "" +msgstr "スターターパックを作成" #: src/components/StarterPack/ProfileStarterPacks.tsx:244 msgid "Create a starter pack for me" -msgstr "" +msgstr "私向けのスターターパックを作成" #: src/screens/Signup/index.tsx:154 msgid "Create Account" @@ -1352,7 +1370,7 @@ msgstr "代わりにアバターを作成" #: src/components/StarterPack/ProfileStarterPacks.tsx:172 msgid "Create another" -msgstr "" +msgstr "別のものを作成" #: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" @@ -1363,10 +1381,6 @@ msgstr "アプリパスワードを作成" msgid "Create new account" msgstr "新しいアカウントを作成" -#: src/components/StarterPack/ShareDialog.tsx:158 -msgid "Create QR code" -msgstr "" - #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" msgstr "{0}の報告を作成" @@ -1494,11 +1508,11 @@ msgstr "投稿を削除" #: src/screens/StarterPack/StarterPackScreen.tsx:443 #: src/screens/StarterPack/StarterPackScreen.tsx:599 msgid "Delete starter pack" -msgstr "" +msgstr "スターターパックを削除" #: src/screens/StarterPack/StarterPackScreen.tsx:494 msgid "Delete starter pack?" -msgstr "" +msgstr "スターターパックを削除しますか?" #: src/view/screens/ProfileList.tsx:662 msgid "Delete this list?" @@ -1592,7 +1606,7 @@ msgstr "新しいフィードを探す" #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" -msgstr "" +msgstr "大きなALTテキストのバッジを表示" #: src/view/com/modals/EditProfile.tsx:193 msgid "Display name" @@ -1658,7 +1672,7 @@ msgstr "完了{extraText}" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 msgid "Download Bluesky" -msgstr "" +msgstr "Blueskyをダウンロード" #: src/view/screens/Settings/ExportCarDialog.tsx:77 #: src/view/screens/Settings/ExportCarDialog.tsx:81 @@ -1729,7 +1743,7 @@ msgstr "アバターを編集" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit Feeds" -msgstr "" +msgstr "フィードを編集" #: src/view/com/composer/photos/Gallery.tsx:151 #: src/view/com/modals/EditImage.tsx:208 @@ -1757,7 +1771,7 @@ msgstr "マイプロフィールを編集" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 msgid "Edit People" -msgstr "" +msgstr "ユーザーを編集" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 @@ -1771,7 +1785,7 @@ msgstr "プロフィールを編集" #: src/screens/StarterPack/StarterPackScreen.tsx:430 msgid "Edit starter pack" -msgstr "" +msgstr "スターターパックを編集" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1780,7 +1794,7 @@ msgstr "ユーザーリストを編集" #: src/view/com/threadgate/WhoCanReply.tsx:73 #: src/view/com/threadgate/WhoCanReply.tsx:130 msgid "Edit who can reply" -msgstr "" +msgstr "誰が返信できるのかを編集" #: src/view/com/modals/EditProfile.tsx:194 msgid "Edit your display name" @@ -1792,12 +1806,16 @@ msgstr "あなたのプロフィールの説明を編集します" #: src/Navigation.tsx:335 msgid "Edit your starter pack" -msgstr "" +msgstr "スターターパックを編集" #: src/screens/Onboarding/index.tsx:31 msgid "Education" msgstr "教育" +#: src/components/dialogs/ThreadgateEditor.tsx:98 +msgid "Either choose \"Everybody\" or \"Nobody\"" +msgstr "「全員」か「返信不可」を選択" + #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" @@ -1951,10 +1969,6 @@ msgstr "全員" msgid "Everybody can reply" msgstr "誰でも返信可能" -#: src/view/com/threadgate/WhoCanReply.tsx:129 -#~ msgid "Everybody can reply." -#~ msgstr "誰でも返信可能です。" - #: src/components/dms/MessagesNUX.tsx:131 #: src/components/dms/MessagesNUX.tsx:134 #: src/screens/Messages/Settings.tsx:75 @@ -2049,7 +2063,7 @@ msgstr "アプリパスワードの作成に失敗しました。" #: src/screens/StarterPack/Wizard/index.tsx:241 #: src/screens/StarterPack/Wizard/index.tsx:249 msgid "Failed to create starter pack" -msgstr "" +msgstr "スターターパックの作成に失敗しました" #: src/view/com/modals/CreateOrEditList.tsx:194 msgid "Failed to create the list. Check your internet connection and try again." @@ -2065,7 +2079,7 @@ msgstr "投稿の削除に失敗しました。もう一度お試しください #: src/screens/StarterPack/StarterPackScreen.tsx:562 msgid "Failed to delete starter pack" -msgstr "" +msgstr "スターターパックの削除に失敗しました" #: src/view/screens/Search/Explore.tsx:426 #: src/view/screens/Search/Explore.tsx:454 @@ -2125,13 +2139,9 @@ msgstr "フィード" msgid "Feed by {0}" msgstr "{0}によるフィード" -#: src/view/screens/Feeds.tsx:709 -#~ msgid "Feed offline" -#~ msgstr "フィードはオフラインです" - #: src/components/StarterPack/Wizard/WizardListCard.tsx:52 msgid "Feed toggle" -msgstr "" +msgstr "フィードの切替" #: src/view/shell/desktop/RightNav.tsx:66 #: src/view/shell/Drawer.tsx:345 @@ -2194,7 +2204,7 @@ msgstr "ディスカッションスレッドを微調整します。" #: src/screens/StarterPack/Wizard/index.tsx:202 msgid "Finish" -msgstr "" +msgstr "完了" #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" @@ -2243,7 +2253,7 @@ msgstr "アカウントをフォロー" #: src/screens/StarterPack/StarterPackScreen.tsx:308 #: src/screens/StarterPack/StarterPackScreen.tsx:315 msgid "Follow all" -msgstr "" +msgstr "すべてフォロー" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 msgid "Follow Back" @@ -2380,7 +2390,7 @@ msgstr "ギャラリー" #: src/components/StarterPack/ProfileStarterPacks.tsx:277 msgid "Generate a starter pack" -msgstr "" +msgstr "スターターパックを生成" #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" @@ -2435,7 +2445,7 @@ msgstr "前のステップに戻る" #: src/screens/StarterPack/Wizard/index.tsx:313 msgid "Go back to the previous step" -msgstr "" +msgstr "前のステップに戻る" #: src/view/screens/NotFound.tsx:55 msgid "Go home" @@ -2650,7 +2660,7 @@ msgstr "画像のALTテキスト" #: src/components/StarterPack/ShareDialog.tsx:88 msgid "Image saved to your camera roll!" -msgstr "" +msgstr "画像をカメラロールに保存しました!" #: src/lib/moderation/useReportOptions.ts:49 msgid "Impersonation or false claims about identity or affiliation" @@ -2743,19 +2753,19 @@ msgstr "招待コード:1個使用可能" #: src/components/StarterPack/ShareDialog.tsx:109 msgid "Invite people to this starter pack!" -msgstr "" +msgstr "このスターターパックにユーザーを招待!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:35 msgid "Invite your friends to follow your favorite feeds and people" -msgstr "" +msgstr "お気に入りのフィードやユーザーをフォローするよう、あなたの友人を招待する" #: src/screens/StarterPack/Wizard/StepDetails.tsx:32 msgid "Invites, but personal" -msgstr "" +msgstr "招待、ただし個人的なもの" #: src/screens/StarterPack/Wizard/index.tsx:473 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" @@ -2764,11 +2774,11 @@ msgstr "仕事" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 msgid "Join Bluesky" -msgstr "" +msgstr "Blueskyに参加" #: src/components/StarterPack/QrCode.tsx:56 msgid "Join the conversation" -msgstr "" +msgstr "会話に参加" #: src/screens/Onboarding/index.tsx:21 msgid "Journalism" @@ -2877,7 +2887,7 @@ msgstr "レガシーストレージがクリアされたため、今すぐアプ #: src/components/StarterPack/ProfileStarterPacks.tsx:293 msgid "Let me choose" -msgstr "" +msgstr "選ばせて" #: src/screens/Login/index.tsx:130 #: src/screens/Login/index.tsx:145 @@ -3048,7 +3058,7 @@ msgstr "Followingフィードを消したようです。<0>ここをクリック #: src/components/StarterPack/ProfileStarterPacks.tsx:252 msgid "Make one for me" -msgstr "" +msgstr "私のために作って" #: src/view/com/modals/LinkWarning.tsx:79 msgid "Make sure this is where you intend to go!" @@ -3458,7 +3468,7 @@ msgstr "おすすめのGIFが見つかりません。Tenorに問題があるか #: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 msgid "No feeds found. Try searching for something else." -msgstr "" +msgstr "フィードが見つかりませんでした。他を探してみて。" #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" @@ -3540,7 +3550,7 @@ msgstr "まだ誰もこれをいいねしていません。あなたが最初に #: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 msgid "Nobody was found. Try searching for someone else." -msgstr "" +msgstr "誰も見つかりませんでした。他を探してみて。" #: src/lib/moderation/useGlobalLabelStrings.ts:42 msgid "Non-sexual Nudity" @@ -3632,7 +3642,7 @@ msgstr "古い順に返信を表示" #: src/components/StarterPack/QrCode.tsx:69 msgid "on" -msgstr "" +msgstr "on" #: src/lib/hooks/useTimeAgo.ts:81 msgid "on {str}" @@ -3652,11 +3662,7 @@ msgstr ".jpgと.pngファイルのみに対応しています" #: src/view/com/threadgate/WhoCanReply.tsx:239 msgid "Only {0} can reply" -msgstr "" - -#: src/view/com/threadgate/WhoCanReply.tsx:100 -#~ msgid "Only {0} can reply." -#~ msgstr "{0}のみ返信可能" +msgstr "{0}のみ返信可能" #: src/screens/Signup/StepHandle.tsx:98 msgid "Only contains letters, numbers, and hyphens" @@ -3722,7 +3728,7 @@ msgstr "投稿のオプションを開く" #: src/screens/StarterPack/StarterPackScreen.tsx:416 msgid "Open starter pack menu" -msgstr "" +msgstr "スターターパックのメニューを開く" #: src/view/screens/Settings/index.tsx:860 #: src/view/screens/Settings/index.tsx:870 @@ -3737,6 +3743,10 @@ msgstr "システムのログを開く" msgid "Opens {numItems} options" msgstr "{numItems}個のオプションを開く" +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "このスレッドに誰が返信できるかを選択するダイアログを開く" + #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" msgstr "アクセシビリティの設定を開く" @@ -3949,7 +3959,7 @@ msgstr "カメラへのアクセスが拒否されました。システムの設 #: src/components/StarterPack/Wizard/WizardListCard.tsx:52 msgid "Person toggle" -msgstr "" +msgstr "ユーザーを切替" #: src/screens/Onboarding/index.tsx:28 msgid "Pets" @@ -4229,15 +4239,15 @@ msgstr "返信を公開" #: src/components/StarterPack/QrCodeDialog.tsx:131 msgid "QR code copied to your clipboard!" -msgstr "" +msgstr "QRコードをクリップボードにコピーしました" #: src/components/StarterPack/QrCodeDialog.tsx:109 msgid "QR code has been downloaded!" -msgstr "" +msgstr "QRコードをダウンロードしました!" #: src/components/StarterPack/QrCodeDialog.tsx:110 msgid "QR code saved to your camera roll!" -msgstr "" +msgstr "QRコードをカメラロールに保存しました!" #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 @@ -4286,7 +4296,7 @@ msgstr "削除" #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Remove {displayName} from starter pack" -msgstr "" +msgstr "{displayName}をスターターパックから削除" #: src/view/com/util/AccountDropdownBtn.tsx:22 msgid "Remove account" @@ -4394,19 +4404,11 @@ msgstr "返信" #: src/view/com/threadgate/WhoCanReply.tsx:66 msgid "Replies disabled" -msgstr "" - -#: src/view/com/threadgate/WhoCanReply.tsx:123 -msgid "Replies on this thread are disabled" -msgstr "" +msgstr "返信できません" #: src/view/com/threadgate/WhoCanReply.tsx:237 msgid "Replies to this thread are disabled" -msgstr "" - -#: src/view/com/threadgate/WhoCanReply.tsx:131 -#~ msgid "Replies to this thread are disabled." -#~ msgstr "このスレッドへの返信はできません。" +msgstr "このスレッドへの返信はできません" #: src/view/com/composer/Composer.tsx:494 msgctxt "action" @@ -4470,7 +4472,7 @@ msgstr "投稿を報告" #: src/screens/StarterPack/StarterPackScreen.tsx:469 #: src/screens/StarterPack/StarterPackScreen.tsx:472 msgid "Report starter pack" -msgstr "" +msgstr "スタータパックを報告" #: src/components/ReportDialog/SelectReportOptionView.tsx:43 msgid "Report this content" @@ -4496,7 +4498,7 @@ msgstr "この投稿を報告" #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this starter pack" -msgstr "" +msgstr "このスターターパックを報告" #: src/components/ReportDialog/SelectReportOptionView.tsx:47 msgid "Report this user" @@ -4672,7 +4674,7 @@ msgstr "ハンドルの変更を保存" #: src/components/StarterPack/ShareDialog.tsx:163 #: src/components/StarterPack/ShareDialog.tsx:170 msgid "Save image" -msgstr "" +msgstr "画像を保存" #: src/view/com/modals/crop-image/CropImage.web.tsx:169 msgid "Save image crop" @@ -4680,7 +4682,7 @@ msgstr "画像の切り抜きを保存" #: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Save QR code" -msgstr "" +msgstr "QRコードを保存" #: src/view/screens/ProfileFeed.tsx:332 #: src/view/screens/ProfileFeed.tsx:338 @@ -4763,7 +4765,7 @@ msgstr "{displayTag}のすべての投稿を検索(すべてのユーザー) #: src/screens/StarterPack/Wizard/index.tsx:467 msgid "Search for feeds that you want to suggest to others." -msgstr "" +msgstr "他の人におすすめしたいフィードを検索。" #: src/view/com/auth/LoggedOut.tsx:101 #: src/view/com/auth/LoggedOut.tsx:102 @@ -5073,7 +5075,7 @@ msgstr "フィードを共有" #: src/screens/StarterPack/StarterPackScreen.tsx:462 msgid "Share link" -msgstr "" +msgstr "リンクを共有" #: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 @@ -5083,15 +5085,20 @@ msgstr "リンクを共有" #: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share link dialog" -msgstr "" +msgstr "リンク共有のダイアログ" + +#: src/components/StarterPack/ShareDialog.tsx:134 +#: src/components/StarterPack/ShareDialog.tsx:145 +msgid "Share QR code" +msgstr "QRコードを共有" #: src/screens/StarterPack/StarterPackScreen.tsx:296 msgid "Share this starter pack" -msgstr "" +msgstr "このスターターパックを共有" #: src/components/StarterPack/ShareDialog.tsx:112 msgid "Share this starter pack and help people join your community on Bluesky." -msgstr "" +msgstr "このスターターパックを共有して、他のユーザーがBlueskyでのコミュニティに参加するよう手伝います" #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" @@ -5265,12 +5272,12 @@ msgstr "@{0}でサインイン" #: src/view/com/notifications/FeedItem.tsx:197 msgid "signed up with your starter pack" -msgstr "" +msgstr "あなたのスターターパックでサインアップ" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 msgid "Signup without a starter pack" -msgstr "" +msgstr "スターターパックを使わずにサインアップ" #: src/screens/Onboarding/StepInterests/index.tsx:240 #: src/screens/StarterPack/Wizard/index.tsx:202 @@ -5291,10 +5298,6 @@ msgstr "ソフトウェア開発" msgid "Some people can reply" msgstr "一部の人が返信可能" -#: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "" - #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "何らかの問題が発生しました" @@ -5360,19 +5363,19 @@ msgstr "チャットを開始" #: src/Navigation.tsx:325 #: src/screens/StarterPack/Wizard/index.tsx:190 msgid "Starter Pack" -msgstr "" +msgstr "スターターパック" #: src/components/StarterPack/StarterPackCard.tsx:65 msgid "Starter pack by {0}" -msgstr "" +msgstr "{0}によるスターターパック" #: src/screens/StarterPack/StarterPackScreen.tsx:579 msgid "Starter pack is invalid" -msgstr "" +msgstr "スターターパックが無効です" #: src/view/screens/Profile.tsx:221 msgid "Starter Packs" -msgstr "" +msgstr "スターターパック" #: src/view/screens/Settings/index.tsx:963 msgid "Status Page" @@ -5483,7 +5486,7 @@ msgstr "ジョークを言って!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" -msgstr "" +msgstr "もう少し教えて" #: src/view/shell/desktop/RightNav.tsx:86 msgid "Terms" @@ -5531,7 +5534,7 @@ msgstr "そのハンドルはすでに使用されています。" #: src/screens/StarterPack/Wizard/index.tsx:105 #: src/screens/StarterPack/Wizard/index.tsx:113 msgid "That starter pack could not be found." -msgstr "" +msgstr "そのスターターパックが見つかりませんでした。" #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 #: src/view/com/profile/ProfileMenu.tsx:353 @@ -5548,7 +5551,7 @@ msgstr "著作権ポリシーは<0/>に移動しました" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." -msgstr "" +msgstr "アプリのほうがより良い体験をすることができます。今すぐBlueskyをダウンロードして、中断したところから再開しましょう。" #: src/view/com/posts/FeedShutdownMsg.tsx:66 msgid "The feed has been replaced with Discover." @@ -5577,7 +5580,7 @@ msgstr "プライバシーポリシーは<0/>に移動しました" #: src/screens/StarterPack/StarterPackScreen.tsx:589 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." -msgstr "" +msgstr "見ようとしたスターターパックが無効です。代わりにスターターパックを削除してください。" #: src/view/screens/Support.tsx:36 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." @@ -5863,6 +5866,10 @@ msgstr "スレッドの設定" msgid "Thread Preferences" msgstr "スレッドの設定" +#: src/components/WhoCanReply.tsx:109 +msgid "Thread settings updated" +msgstr "スレッドの設定を更新しました" + #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "スレッドモード" @@ -5949,7 +5956,7 @@ msgstr "あなたのサービスに接続できません。インターネット #: src/screens/StarterPack/StarterPackScreen.tsx:513 msgid "Unable to delete" -msgstr "" +msgstr "削除できません" #: src/components/dms/MessagesListBlockedFooter.tsx:89 #: src/components/dms/MessagesListBlockedFooter.tsx:96 @@ -6425,13 +6432,17 @@ msgstr "大変申し訳ありません!ラベラーは20までしか登録で msgid "Welcome back!" msgstr "おかえりなさい!" +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "ようこそ、友よ!" + #: src/screens/Onboarding/StepInterests/index.tsx:135 msgid "What are your interests?" msgstr "なにに興味がありますか?" #: src/screens/StarterPack/Wizard/StepDetails.tsx:42 msgid "What do you want to call your starter pack?" -msgstr "" +msgstr "あなたのスターターパックを何と呼びたいですか?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 @@ -6460,11 +6471,11 @@ msgstr "返信できるユーザー" #: src/view/com/threadgate/WhoCanReply.tsx:206 msgid "Who can reply dialog" -msgstr "" +msgstr "誰が返信できるのかについてのダイアログ" #: src/view/com/threadgate/WhoCanReply.tsx:210 msgid "Who can reply?" -msgstr "" +msgstr "誰が返信できますか?" #: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 @@ -6493,7 +6504,7 @@ msgstr "なぜこの投稿をレビューする必要がありますか?" #: src/components/ReportDialog/SelectReportOptionView.tsx:60 msgid "Why should this starter pack be reviewed?" -msgstr "" +msgstr "なぜこのスターターパックをレビューする必要がありますか?" #: src/components/ReportDialog/SelectReportOptionView.tsx:48 msgid "Why should this user be reviewed?" @@ -6538,7 +6549,7 @@ msgstr "はい、無効化します" #: src/screens/StarterPack/StarterPackScreen.tsx:525 msgid "Yes, delete this starter pack" -msgstr "" +msgstr "はい、このスターターパックを削除します" #: src/screens/Deactivated.tsx:150 msgid "Yes, reactivate my account" @@ -6550,7 +6561,11 @@ msgstr "昨日、{time}" #: src/components/StarterPack/StarterPackCard.tsx:68 msgid "you" -msgstr "" +msgstr "あなた" + +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "あなた" #: src/screens/SignupQueued.tsx:136 msgid "You are in line." @@ -6687,11 +6702,11 @@ msgstr "これらのラベルが誤って適用されたと思った場合は、 #: src/screens/StarterPack/Wizard/State.tsx:92 msgid "You may only add up to 50 feeds" -msgstr "" +msgstr "50フィードまで追加できます" #: src/screens/StarterPack/Wizard/State.tsx:77 msgid "You may only add up to 50 profiles" -msgstr "" +msgstr "50ユーザーまで追加できます" #: src/screens/Signup/StepInfo/Policies.tsx:79 msgid "You must be 13 years of age or older to sign up." @@ -6699,15 +6714,15 @@ msgstr "サインアップするには、13歳以上である必要がありま #: src/components/StarterPack/ProfileStarterPacks.tsx:304 msgid "You must be following at least seven other people to generate a starter pack." -msgstr "" +msgstr "スターターパックを作成するには少なくとも7人フォローしていなくてはなりません" #: src/components/StarterPack/QrCodeDialog.tsx:62 msgid "You must grant access to your photo library to save a QR code" -msgstr "" +msgstr "QRコードを保存するには写真ライブラリへのアクセスを許可する必要があります" #: src/components/StarterPack/ShareDialog.tsx:70 msgid "You must grant access to your photo library to save the image." -msgstr "" +msgstr "画像を保存するには写真ライブラリへのアクセスを許可する必要があります。" #: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" @@ -6743,23 +6758,23 @@ msgstr "あなた: {short}" #: src/screens/Signup/index.tsx:169 msgid "You'll follow the suggested users and feeds once you finish creating your account!" -msgstr "" +msgstr "アカウントの作成を完了するとおすすめのユーザーやフィードをフォローします!" #: src/screens/Signup/index.tsx:174 msgid "You'll follow the suggested users once you finish creating your account!" -msgstr "" +msgstr "アカウントの作成を完了するとおすすめのユーザーをフォローします!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 msgid "You'll follow these people and {0} others" -msgstr "" +msgstr "これらのユーザーや他{0}をフォローします" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 msgid "You'll follow these people right away" -msgstr "" +msgstr "これらのユーザーをすぐにフォローします" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 msgid "You'll stay updated with these feeds" -msgstr "" +msgstr "これらのフィードの更新を受け取ります" #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:94 From 58a9dceb33b7116db70d08521b5639b23bffc0df Mon Sep 17 00:00:00 2001 From: Minseo Lee Date: Wed, 26 Jun 2024 02:11:32 +0900 Subject: [PATCH 031/153] Update Korean localization (#4614) * Update messages.po * Update messages.po --- src/locale/locales/ko/messages.po | 160 +++++++++++++++--------------- 1 file changed, 81 insertions(+), 79 deletions(-) diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po index c7b8bafcf3..299a409897 100644 --- a/src/locale/locales/ko/messages.po +++ b/src/locale/locales/ko/messages.po @@ -90,7 +90,7 @@ msgstr "" #: src/screens/StarterPack/Wizard/StepDetails.tsx:47 msgid "{0}'s starter pack" -msgstr "" +msgstr "{0} 님의 스타터 팩" #: src/components/LabelingServiceCard/index.tsx:71 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" @@ -118,7 +118,7 @@ msgstr "초" #: src/screens/StarterPack/Wizard/index.tsx:182 msgid "{displayName}'s Starter Pack" -msgstr "" +msgstr "{displayName} 님의 스타터 팩" #: src/screens/SignupQueued.tsx:207 msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" @@ -168,7 +168,13 @@ msgid "<0>{0} and<1> <2>{1} 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" +msgctxt "profiles" +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:509 +msgctxt "feeds" +msgid "<0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}} are included in your starter pack" msgstr "" #: src/view/shell/Drawer.tsx:101 @@ -273,7 +279,7 @@ msgstr "계정 언뮤트됨" msgid "Add" msgstr "추가" -#: src/screens/StarterPack/Wizard/index.tsx:539 +#: src/screens/StarterPack/Wizard/index.tsx:551 msgid "Add {0} more to continue" msgstr "" @@ -381,7 +387,7 @@ msgstr "고급" #: src/screens/StarterPack/StarterPackScreen.tsx:271 msgid "All accounts have been followed!" -msgstr "" +msgstr "모든 계정을 팔로우했습니다" #: src/view/screens/Feeds.tsx:721 msgid "All the feeds you've saved, right in one place." @@ -445,16 +451,16 @@ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:79 msgid "An error occurred while saving the image." -msgstr "" +msgstr "이미지를 저장하는 동안 오류가 발생했습니다" #: src/components/StarterPack/QrCodeDialog.tsx:76 #: src/components/StarterPack/ShareDialog.tsx:91 msgid "An error occurred while saving the QR code!" -msgstr "" +msgstr "QR 코드를 저장하는 동안 오류가 발생했습니다" #: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "An error occurred while trying to follow all" -msgstr "" +msgstr "모두 팔로우하려고 하는 동안 오류가 발생했습니다" #: src/lib/moderation/useReportOptions.ts:28 msgid "An issue not included in these options" @@ -548,7 +554,7 @@ msgstr "기본 추천 피드 적용하기" #: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Are you sure you want delete this starter pack?" -msgstr "" +msgstr "이 스타터 팩을 삭제하시겠습니까?" #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" @@ -1264,7 +1270,7 @@ msgstr "코드 복사" #: src/components/StarterPack/ShareDialog.tsx:143 msgid "Copy Link" -msgstr "" +msgstr "링크 복사" #: src/view/screens/ProfileList.tsx:428 msgid "Copy link to list" @@ -1287,7 +1293,7 @@ msgstr "게시물 텍스트 복사" #: src/components/StarterPack/QrCodeDialog.tsx:174 msgid "Copy QR code" -msgstr "" +msgstr "QR 코드 복사" #: src/Navigation.tsx:261 #: src/view/screens/CopyrightPolicy.tsx:29 @@ -1312,7 +1318,7 @@ msgstr "대화를 뮤트할 수 없습니다" #: src/components/StarterPack/ProfileStarterPacks.tsx:270 msgid "Create" -msgstr "" +msgstr "만들기" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 @@ -1325,17 +1331,17 @@ msgstr "새 Bluesky 계정을 만듭니다" #: src/components/StarterPack/QrCodeDialog.tsx:157 msgid "Create a QR code for a starter pack" -msgstr "" +msgstr "스타터 팩 QR 코드 만들기" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:257 #: src/Navigation.tsx:330 msgid "Create a starter pack" -msgstr "" +msgstr "스타터 팩 만들기" #: src/components/StarterPack/ProfileStarterPacks.tsx:244 msgid "Create a starter pack for me" -msgstr "" +msgstr "나를 위한 스타터 팩 만들기" #: src/screens/Signup/index.tsx:154 msgid "Create Account" @@ -1365,7 +1371,7 @@ msgstr "새 계정 만들기" #: src/components/StarterPack/ShareDialog.tsx:158 msgid "Create QR code" -msgstr "" +msgstr "QR 코드 만들기" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1494,11 +1500,11 @@ msgstr "게시물 삭제" #: src/screens/StarterPack/StarterPackScreen.tsx:443 #: src/screens/StarterPack/StarterPackScreen.tsx:599 msgid "Delete starter pack" -msgstr "" +msgstr "스타터 팩 삭제" #: src/screens/StarterPack/StarterPackScreen.tsx:494 msgid "Delete starter pack?" -msgstr "" +msgstr "스타터 팩을 삭제하시겠습니까?" #: src/view/screens/ProfileList.tsx:662 msgid "Delete this list?" @@ -1658,7 +1664,7 @@ msgstr "완료{extraText}" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 msgid "Download Bluesky" -msgstr "" +msgstr "Bluesky 다운로드" #: src/view/screens/Settings/ExportCarDialog.tsx:77 #: src/view/screens/Settings/ExportCarDialog.tsx:81 @@ -1709,16 +1715,16 @@ msgstr "예: 반복적으로 광고 답글을 다는 계정." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "각 코드는 한 번만 사용할 수 있습니다. 주기적으로 더 많은 초대 코드를 받게 됩니다." -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:522 -#: src/screens/StarterPack/Wizard/index.tsx:529 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/com/lists/ListMembers.tsx:149 +msgctxt "action" msgid "Edit" msgstr "편집" -#: src/view/com/lists/ListMembers.tsx:149 -msgctxt "action" +#: src/screens/StarterPack/StarterPackScreen.tsx:438 +#: src/screens/StarterPack/Wizard/index.tsx:534 +#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/view/screens/Feeds.tsx:385 +#: src/view/screens/Feeds.tsx:453 msgid "Edit" msgstr "편집" @@ -1729,7 +1735,7 @@ msgstr "아바타 편집" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit Feeds" -msgstr "" +msgstr "피드 편집" #: src/view/com/composer/photos/Gallery.tsx:151 #: src/view/com/modals/EditImage.tsx:208 @@ -1757,7 +1763,7 @@ msgstr "내 프로필 편집" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 msgid "Edit People" -msgstr "" +msgstr "사람들 편집" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 @@ -1771,7 +1777,7 @@ msgstr "프로필 편집" #: src/screens/StarterPack/StarterPackScreen.tsx:430 msgid "Edit starter pack" -msgstr "" +msgstr "스타터 팩 편집" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1792,7 +1798,7 @@ msgstr "내 프로필 설명 편집" #: src/Navigation.tsx:335 msgid "Edit your starter pack" -msgstr "" +msgstr "스타터 팩 편집" #: src/screens/Onboarding/index.tsx:31 msgid "Education" @@ -2045,7 +2051,7 @@ msgstr "앱 비밀번호를 만들지 못했습니다." #: src/screens/StarterPack/Wizard/index.tsx:241 #: src/screens/StarterPack/Wizard/index.tsx:249 msgid "Failed to create starter pack" -msgstr "" +msgstr "스타터 팩을 만들지 못했습니다" #: src/view/com/modals/CreateOrEditList.tsx:194 msgid "Failed to create the list. Check your internet connection and try again." @@ -2061,7 +2067,7 @@ msgstr "게시물을 삭제하지 못했습니다. 다시 시도해 주세요" #: src/screens/StarterPack/StarterPackScreen.tsx:562 msgid "Failed to delete starter pack" -msgstr "" +msgstr "스타터 팩을 삭제하지 못했습니다" #: src/view/screens/Search/Explore.tsx:426 #: src/view/screens/Search/Explore.tsx:454 @@ -2121,13 +2127,9 @@ msgstr "피드" msgid "Feed by {0}" msgstr "{0} 님의 피드" -#: src/view/screens/Feeds.tsx:675 -#~ msgid "Feed offline" -#~ msgstr "피드 오프라인" - #: src/components/StarterPack/Wizard/WizardListCard.tsx:52 msgid "Feed toggle" -msgstr "" +msgstr "피드 켜거나 끄기" #: src/view/shell/desktop/RightNav.tsx:66 #: src/view/shell/Drawer.tsx:345 @@ -2190,7 +2192,7 @@ msgstr "대화 스레드를 미세 조정합니다." #: src/screens/StarterPack/Wizard/index.tsx:202 msgid "Finish" -msgstr "" +msgstr "종료" #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" @@ -2239,7 +2241,7 @@ msgstr "계정 팔로우" #: src/screens/StarterPack/StarterPackScreen.tsx:308 #: src/screens/StarterPack/StarterPackScreen.tsx:315 msgid "Follow all" -msgstr "" +msgstr "모두 팔로우" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 msgid "Follow Back" @@ -2376,7 +2378,7 @@ msgstr "갤러리" #: src/components/StarterPack/ProfileStarterPacks.tsx:277 msgid "Generate a starter pack" -msgstr "" +msgstr "스타터 팩 만들기" #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" @@ -2431,7 +2433,7 @@ msgstr "이전 단계로 돌아가기" #: src/screens/StarterPack/Wizard/index.tsx:313 msgid "Go back to the previous step" -msgstr "" +msgstr "이전 단계로 돌아갑니다" #: src/view/screens/NotFound.tsx:55 msgid "Go home" @@ -2646,7 +2648,7 @@ msgstr "이미지 대체 텍스트" #: src/components/StarterPack/ShareDialog.tsx:88 msgid "Image saved to your camera roll!" -msgstr "" +msgstr "이미지를 앨범에 저장했습니다." #: src/lib/moderation/useReportOptions.ts:49 msgid "Impersonation or false claims about identity or affiliation" @@ -2739,7 +2741,7 @@ msgstr "초대 코드: 1개 사용 가능" #: src/components/StarterPack/ShareDialog.tsx:109 msgid "Invite people to this starter pack!" -msgstr "" +msgstr "이 스타터 팩을 사용할 사람들을 초대하세요!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:35 msgid "Invite your friends to follow your favorite feeds and people" @@ -2760,11 +2762,11 @@ msgstr "채용" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 msgid "Join Bluesky" -msgstr "" +msgstr "Bluesky 가입하기" #: src/components/StarterPack/QrCode.tsx:56 msgid "Join the conversation" -msgstr "" +msgstr "대화에 참여하기" #: src/screens/Onboarding/index.tsx:21 msgid "Journalism" @@ -2873,7 +2875,7 @@ msgstr "레거시 스토리지가 지워졌으며 지금 앱을 다시 시작해 #: src/components/StarterPack/ProfileStarterPacks.tsx:293 msgid "Let me choose" -msgstr "" +msgstr "직접 선택하기" #: src/screens/Login/index.tsx:130 #: src/screens/Login/index.tsx:145 @@ -3454,7 +3456,7 @@ msgstr "인기 GIF를 찾을 수 없습니다. Tenor에 문제가 있을 수 있 #: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 msgid "No feeds found. Try searching for something else." -msgstr "" +msgstr "피드를 찾을 수 없습니다. 다른 피드를 검색해 보세요." #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" @@ -3536,7 +3538,7 @@ msgstr "아직 아무도 좋아요를 누르지 않았습니다. 첫 번째가 #: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 msgid "Nobody was found. Try searching for someone else." -msgstr "" +msgstr "아무도 찾을 수 없습니다. 다른 사용자를 검색해 보세요." #: src/lib/moderation/useGlobalLabelStrings.ts:42 msgid "Non-sexual Nudity" @@ -3714,7 +3716,7 @@ msgstr "게시물 옵션 메뉴 열기" #: src/screens/StarterPack/StarterPackScreen.tsx:416 msgid "Open starter pack menu" -msgstr "" +msgstr "스타터 팩 메뉴 열기" #: src/view/screens/Settings/index.tsx:860 #: src/view/screens/Settings/index.tsx:870 @@ -3941,7 +3943,7 @@ msgstr "앨범에 접근할 수 있는 권한이 거부되었습니다. 시스 #: src/components/StarterPack/Wizard/WizardListCard.tsx:52 msgid "Person toggle" -msgstr "" +msgstr "사람 켜거나 끄기" #: src/screens/Onboarding/index.tsx:28 msgid "Pets" @@ -4221,15 +4223,15 @@ msgstr "답글 게시하기" #: src/components/StarterPack/QrCodeDialog.tsx:131 msgid "QR code copied to your clipboard!" -msgstr "" +msgstr "QR 코드를 클립보드에 복사했습니다." #: src/components/StarterPack/QrCodeDialog.tsx:109 msgid "QR code has been downloaded!" -msgstr "" +msgstr "QR 코드를 다운로드했습니다." #: src/components/StarterPack/QrCodeDialog.tsx:110 msgid "QR code saved to your camera roll!" -msgstr "" +msgstr "QR 코드를 앨범에 저장했습니다." #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 @@ -4278,7 +4280,7 @@ msgstr "제거" #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Remove {displayName} from starter pack" -msgstr "" +msgstr "{displayName} 님을 스타터 팩에서 제거" #: src/view/com/util/AccountDropdownBtn.tsx:22 msgid "Remove account" @@ -4458,7 +4460,7 @@ msgstr "게시물 신고" #: src/screens/StarterPack/StarterPackScreen.tsx:469 #: src/screens/StarterPack/StarterPackScreen.tsx:472 msgid "Report starter pack" -msgstr "" +msgstr "스타터 팩 신고" #: src/components/ReportDialog/SelectReportOptionView.tsx:43 msgid "Report this content" @@ -4484,7 +4486,7 @@ msgstr "이 게시물 신고하기" #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this starter pack" -msgstr "" +msgstr "이 스타터 팩 신고하기" #: src/components/ReportDialog/SelectReportOptionView.tsx:47 msgid "Report this user" @@ -4660,7 +4662,7 @@ msgstr "핸들 변경 저장" #: src/components/StarterPack/ShareDialog.tsx:163 #: src/components/StarterPack/ShareDialog.tsx:170 msgid "Save image" -msgstr "" +msgstr "이미지 저장" #: src/view/com/modals/crop-image/CropImage.web.tsx:169 msgid "Save image crop" @@ -4668,7 +4670,7 @@ msgstr "이미지 자르기 저장" #: src/components/StarterPack/QrCodeDialog.tsx:184 msgid "Save QR code" -msgstr "" +msgstr "QR 코드 저장" #: src/view/screens/ProfileFeed.tsx:332 #: src/view/screens/ProfileFeed.tsx:338 @@ -4751,7 +4753,7 @@ msgstr "{displayTag} 태그를 사용한 모든 게시물 검색" #: src/screens/StarterPack/Wizard/index.tsx:467 msgid "Search for feeds that you want to suggest to others." -msgstr "" +msgstr "다른 사람에게 추천할 피드를 검색하세요." #: src/view/com/auth/LoggedOut.tsx:101 #: src/view/com/auth/LoggedOut.tsx:102 @@ -5023,6 +5025,11 @@ msgstr "성행위 또는 선정적인 노출." msgid "Sexually Suggestive" msgstr "외설적" +#: src/view/com/lightbox/Lightbox.tsx:142 +msgctxt "action" +msgid "Share" +msgstr "공유" + #: src/components/StarterPack/QrCodeDialog.tsx:180 #: src/screens/StarterPack/StarterPackScreen.tsx:303 #: src/screens/StarterPack/StarterPackScreen.tsx:458 @@ -5035,11 +5042,6 @@ msgstr "외설적" msgid "Share" msgstr "공유" -#: src/view/com/lightbox/Lightbox.tsx:142 -msgctxt "action" -msgid "Share" -msgstr "공유" - #: src/components/dms/ChatEmptyPill.tsx:37 msgid "Share a cool story!" msgstr "멋진 이야기를 전하세요!" @@ -5061,7 +5063,7 @@ msgstr "피드 공유" #: src/screens/StarterPack/StarterPackScreen.tsx:462 msgid "Share link" -msgstr "" +msgstr "링크 공유" #: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 @@ -5071,15 +5073,15 @@ msgstr "링크 공유" #: src/components/StarterPack/ShareDialog.tsx:100 msgid "Share link dialog" -msgstr "" +msgstr "링크 공유 대화 상자" #: src/screens/StarterPack/StarterPackScreen.tsx:296 msgid "Share this starter pack" -msgstr "" +msgstr "이 스타터 팩 공유하기" #: src/components/StarterPack/ShareDialog.tsx:112 msgid "Share this starter pack and help people join your community on Bluesky." -msgstr "" +msgstr "이 스타터 팩을 공유하여 사람들이 Bluesky에서 커뮤니티에 참여할 수 있도록 도와주세요." #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" @@ -5253,12 +5255,12 @@ msgstr "@{0}(으)로 로그인했습니다" #: src/view/com/notifications/FeedItem.tsx:197 msgid "signed up with your starter pack" -msgstr "" +msgstr "(이)가 내 스타터 팩으로 가입했습니다" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 msgid "Signup without a starter pack" -msgstr "" +msgstr "스타터 팩 없이 가입하기" #: src/screens/Onboarding/StepInterests/index.tsx:240 #: src/screens/StarterPack/Wizard/index.tsx:202 @@ -5281,7 +5283,7 @@ msgstr "일부 사람들이 답글을 달 수 있음" #: src/screens/StarterPack/Wizard/index.tsx:203 msgid "Some subtitle" -msgstr "" +msgstr "적당한 부제목" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -5348,19 +5350,19 @@ msgstr "대화 시작하기" #: src/Navigation.tsx:325 #: src/screens/StarterPack/Wizard/index.tsx:190 msgid "Starter Pack" -msgstr "" +msgstr "스타터 팩" #: src/components/StarterPack/StarterPackCard.tsx:65 msgid "Starter pack by {0}" -msgstr "" +msgstr "{0} 님의 스타터 팩" #: src/screens/StarterPack/StarterPackScreen.tsx:579 msgid "Starter pack is invalid" -msgstr "" +msgstr "스타터 팩이 유효하지 않음" #: src/view/screens/Profile.tsx:221 msgid "Starter Packs" -msgstr "" +msgstr "스타터 팩" #: src/view/screens/Settings/index.tsx:963 msgid "Status Page" @@ -5565,7 +5567,7 @@ msgstr "개인정보 처리방침을 <0/>(으)로 이동했습니다" #: src/screens/StarterPack/StarterPackScreen.tsx:589 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." -msgstr "" +msgstr "이 스타터 팩은 유효하지 않습니다. 대신 이 스타터 팩을 삭제할 수 있습니다." #: src/view/screens/Support.tsx:36 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." @@ -5937,7 +5939,7 @@ msgstr "서비스에 연결할 수 없습니다. 인터넷 연결을 확인하 #: src/screens/StarterPack/StarterPackScreen.tsx:513 msgid "Unable to delete" -msgstr "" +msgstr "삭제할 수 없음" #: src/components/dms/MessagesListBlockedFooter.tsx:89 #: src/components/dms/MessagesListBlockedFooter.tsx:96 @@ -6481,7 +6483,7 @@ msgstr "이 게시물을 검토해야 하는 이유는 무엇인가요?" #: src/components/ReportDialog/SelectReportOptionView.tsx:60 msgid "Why should this starter pack be reviewed?" -msgstr "" +msgstr "이 스타터 팩을 검토해야 하는 이유는 무엇인가요?" #: src/components/ReportDialog/SelectReportOptionView.tsx:48 msgid "Why should this user be reviewed?" @@ -6538,7 +6540,7 @@ msgstr "어제 {time}" #: src/components/StarterPack/StarterPackCard.tsx:68 msgid "you" -msgstr "" +msgstr "나" #: src/screens/SignupQueued.tsx:136 msgid "You are in line." From b75341314cf7551644d12a7281ab22c855c78233 Mon Sep 17 00:00:00 2001 From: Hailey Date: Tue, 25 Jun 2024 10:34:17 -0700 Subject: [PATCH 032/153] tweak app clip AASA (#4641) --- bskylink/src/routes/siteAssociation.ts | 9 +++++++++ bskyweb/static/.well-known/apple-app-site-association | 6 +++--- 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/bskylink/src/routes/siteAssociation.ts b/bskylink/src/routes/siteAssociation.ts index ae3b42e304..7b71ccdd57 100644 --- a/bskylink/src/routes/siteAssociation.ts +++ b/bskylink/src/routes/siteAssociation.ts @@ -5,6 +5,15 @@ import {AppContext} from '../context.js' export default function (ctx: AppContext, app: Express) { return app.get('/.well-known/apple-app-site-association', (req, res) => { res.json({ + applinks: { + apps: [], + details: [ + { + appID: 'B3LX46C5HS.xyz.blueskyweb.app', + paths: ['*'], + }, + ], + }, appclips: { apps: ['B3LX46C5HS.xyz.blueskyweb.app.AppClip'], }, diff --git a/bskyweb/static/.well-known/apple-app-site-association b/bskyweb/static/.well-known/apple-app-site-association index 0a05fa35f4..f5752d7c15 100644 --- a/bskyweb/static/.well-known/apple-app-site-association +++ b/bskyweb/static/.well-known/apple-app-site-association @@ -1,8 +1,5 @@ { "applinks": { - "appclips": { - "apps": ["B3LX46C5HS.xyz.blueskyweb.app.AppClip"] - }, "details": [ { "appID": "B3LX46C5HS.xyz.blueskyweb.app", @@ -11,5 +8,8 @@ ] } ] + }, + "appclips": { + "apps": ["B3LX46C5HS.xyz.blueskyweb.app.AppClip"] } } From 7c5ff79c8e545962502e87f3c6c734fb9b05970c Mon Sep 17 00:00:00 2001 From: Hailey Date: Tue, 25 Jun 2024 11:31:02 -0700 Subject: [PATCH 033/153] `workflow_dispatch` link (#4642) --- .github/workflows/build-and-push-link-aws.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build-and-push-link-aws.yaml b/.github/workflows/build-and-push-link-aws.yaml index f91af48770..1c17d6e190 100644 --- a/.github/workflows/build-and-push-link-aws.yaml +++ b/.github/workflows/build-and-push-link-aws.yaml @@ -1,8 +1,6 @@ name: build-and-push-link-aws on: - push: - branches: - - divy/bskylink + workflow_dispatch: env: REGISTRY: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_REGISTRY }} From dd2e173514b9aa22b898c5539f4f83f10d9b09f4 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 25 Jun 2024 17:43:41 -0500 Subject: [PATCH 034/153] Add back pin action for feed cards (#4643) --- src/components/FeedCard.tsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/FeedCard.tsx b/src/components/FeedCard.tsx index ecf0a1b91a..e0fc7ef54b 100644 --- a/src/components/FeedCard.tsx +++ b/src/components/FeedCard.tsx @@ -233,7 +233,11 @@ export function Action({ purpose?: AppBskyGraphDefs.ListView['purpose'] }) { const {hasSession} = useSession() - if (!hasSession || purpose !== 'app.bsky.graph.defs#curatelist') return null + if ( + !hasSession || + (type === 'list' && purpose !== 'app.bsky.graph.defs#curatelist') + ) + return null return } From b23f11268992b420b064d1a45429f8871a21d452 Mon Sep 17 00:00:00 2001 From: Hailey Date: Tue, 25 Jun 2024 17:02:43 -0700 Subject: [PATCH 035/153] Remove starterpack gate (#4645) --- src/lib/statsig/gates.ts | 1 - src/view/screens/Profile.tsx | 9 +-------- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/src/lib/statsig/gates.ts b/src/lib/statsig/gates.ts index bf2484ccb9..46ef934ef6 100644 --- a/src/lib/statsig/gates.ts +++ b/src/lib/statsig/gates.ts @@ -5,4 +5,3 @@ export type Gate = | 'request_notifications_permission_after_onboarding_v2' | 'show_avi_follow_button' | 'show_follow_back_label_v2' - | 'starter_packs_enabled' diff --git a/src/view/screens/Profile.tsx b/src/view/screens/Profile.tsx index 946f6ac543..37111c02e5 100644 --- a/src/view/screens/Profile.tsx +++ b/src/view/screens/Profile.tsx @@ -27,15 +27,12 @@ import {useAgent, useSession} from '#/state/session' import {useSetDrawerSwipeDisabled, useSetMinimalShellMode} from '#/state/shell' import {useComposerControls} from '#/state/shell/composer' import {useAnalytics} from 'lib/analytics/analytics' -import {IS_DEV, IS_TESTFLIGHT} from 'lib/app-info' import {useSetTitle} from 'lib/hooks/useSetTitle' import {ComposeIcon2} from 'lib/icons' import {CommonNavigatorParams, NativeStackScreenProps} from 'lib/routes/types' -import {useGate} from 'lib/statsig/statsig' import {combinedDisplayName} from 'lib/strings/display-names' import {isInvalidHandle} from 'lib/strings/handles' import {colors, s} from 'lib/styles' -import {isWeb} from 'platform/detection' import {listenSoftReset} from 'state/events' import {useActorStarterPacksQuery} from 'state/queries/actor-starter-packs' import {PagerWithHeader} from 'view/com/pager/PagerWithHeader' @@ -170,9 +167,6 @@ function ProfileScreenLoaded({ const [currentPage, setCurrentPage] = React.useState(0) const {_} = useLingui() const setDrawerSwipeDisabled = useSetDrawerSwipeDisabled() - const gate = useGate() - const starterPacksEnabled = - IS_DEV || IS_TESTFLIGHT || (!isWeb && gate('starter_packs_enabled')) const [scrollViewTag, setScrollViewTag] = React.useState(null) @@ -205,8 +199,7 @@ function ProfileScreenLoaded({ const showLikesTab = isMe const showFeedsTab = isMe || (profile.associated?.feedgens || 0) > 0 const showStarterPacksTab = - starterPacksEnabled && - (isMe || !!starterPacksQuery.data?.pages?.[0].starterPacks.length) + isMe || !!starterPacksQuery.data?.pages?.[0].starterPacks.length const showListsTab = hasSession && (isMe || (profile.associated?.lists || 0) > 0) From 8621ecd38a4b912f77602fb99e6d540f99727c9f Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Wed, 26 Jun 2024 15:28:31 +0100 Subject: [PATCH 036/153] disable enabling adult content on iOS (#4651) --- src/screens/Moderation/index.tsx | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/src/screens/Moderation/index.tsx b/src/screens/Moderation/index.tsx index a874e745cc..9342a805ef 100644 --- a/src/screens/Moderation/index.tsx +++ b/src/screens/Moderation/index.tsx @@ -1,5 +1,5 @@ import React from 'react' -import {View} from 'react-native' +import {Linking, View} from 'react-native' import {useSafeAreaFrame} from 'react-native-safe-area-context' import {ComAtprotoLabelDefs} from '@atproto/api' import {LABELS} from '@atproto/api' @@ -10,6 +10,7 @@ import {useFocusEffect} from '@react-navigation/native' import {getLabelingServiceTitle} from '#/lib/moderation' import {CommonNavigatorParams, NativeStackScreenProps} from '#/lib/routes/types' import {logger} from '#/logger' +import {isIOS} from '#/platform/detection' import { useMyLabelersQuery, usePreferencesQuery, @@ -202,6 +203,8 @@ export function ModerationScreenInner({ [setAdultContentPref], ) + const disabledOnIOS = isIOS && !adultContentEnabled + return ( Enable adult content @@ -345,6 +350,25 @@ export function ModerationScreenInner({ + {disabledOnIOS && ( + + + + Adult content can only be enabled via the Web at{' '} + { + evt.preventDefault() + Linking.openURL('https://bsky.app/') + return false + }}> + bsky.app + + . + + + + )} )} From 83745c923fc0d660730f47c81159ce9b6942f616 Mon Sep 17 00:00:00 2001 From: Takayuki KUSANO <65759+tkusano@users.noreply.github.com> Date: Wed, 26 Jun 2024 23:41:14 +0900 Subject: [PATCH 037/153] Fix footer messages in starter pack wizard (#4650) * Fix footer messages in StarterPack wizard and updates ja messages * Updates to minimize diff * Revert "Updates to minimize diff" This reverts commit 4d1dfe131a5ffc31fc5e6162dbcc90e77e042734. * Revert "Fix footer messages in StarterPack wizard and updates ja messages" This reverts commit 9a90898abc66c281f44696347043ce5da5859d60. * Fix labels for plurals in starter packs * Update translations --------- Co-authored-by: Dan Abramov --- src/locale/locales/fr/messages.po | 4 + src/locale/locales/ja/messages.po | 4 + src/screens/StarterPack/Wizard/index.tsx | 116 ++++++++++++++--------- 3 files changed, 77 insertions(+), 47 deletions(-) diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index a4e6fab248..208128fc1d 100644 --- a/src/locale/locales/fr/messages.po +++ b/src/locale/locales/fr/messages.po @@ -189,6 +189,10 @@ msgstr "<0>{0} {1, plural, one {abonné·e} other {abonné·e·s}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {abonnement} other {abonnements}}" +#: src/screens/StarterPack/Wizard/index.tsx:497 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "<0>{0} et<1> <2>{1} faites partie de votre pack de démarrage" + #: src/screens/StarterPack/Wizard/index.tsx:478 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} fait partie de votre kit de démarrage" diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po index 908bd5d4ac..a4a923f629 100644 --- a/src/locale/locales/ja/messages.po +++ b/src/locale/locales/ja/messages.po @@ -185,6 +185,10 @@ msgstr "<0>{0} {1, plural, other {フォロワー}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, other {フォロー}}" +#: src/screens/StarterPack/Wizard/index.tsx:497 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "<0>{0}と<2>{1}はあなたのスターターパックに含まれています" + #: src/screens/StarterPack/Wizard/index.tsx:478 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0}はあなたのスターターパックに含まれています" diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx index b231e317e3..2f50e878ae 100644 --- a/src/screens/StarterPack/Wizard/index.tsx +++ b/src/screens/StarterPack/Wizard/index.tsx @@ -445,7 +445,7 @@ function Footer({ ))} - {items.length === 0 ? ( + {items.length === 0 /* Assuming this can only happen for feeds */ ? ( Add some feeds to your starter pack! @@ -456,52 +456,74 @@ function Footer({ ) : ( - {state.currentStep === 'Profiles' && items.length === 1 ? ( - - It's just you right now! Add more people to your starter pack by - searching above. - - ) : items.length === 1 ? ( - - - {getName(items[initialNamesIndex])} - {' '} - is included in your starter pack - - ) : items.length === 2 ? ( - - You and - - - {getName(items[initialNamesIndex])}{' '} - - are included in your starter pack - - ) : state.currentStep === 'Profiles' ? ( - - - {getName(items[initialNamesIndex])},{' '} - - - {getName(items[initialNamesIndex + 1])},{' '} - - and{' '} - {' '} - are included in your starter pack - - ) : ( - - - {getName(items[initialNamesIndex])},{' '} - - - {getName(items[initialNamesIndex + 1])},{' '} - - and{' '} - {' '} - are included in your starter pack - - )} + { + items.length === 1 && state.currentStep === 'Profiles' ? ( + + It's just you right now! Add more people to your starter pack by + searching above. + + ) : items.length === 1 && state.currentStep === 'Feeds' ? ( + + + {getName(items[initialNamesIndex])} + {' '} + is included in your starter pack + + ) : items.length === 2 && state.currentStep === 'Profiles' ? ( + + You and + + + {getName(items[initialNamesIndex])}{' '} + + are included in your starter pack + + ) : items.length === 2 && state.currentStep === 'Feeds' ? ( + + + {getName(items[initialNamesIndex])} + {' '} + and + + + {getName(items[initialNamesIndex + 1])}{' '} + + are included in your starter pack + + ) : items.length > 2 && state.currentStep === 'Profiles' ? ( + + + {getName(items[initialNamesIndex])},{' '} + + + {getName(items[initialNamesIndex + 1])},{' '} + + and{' '} + {' '} + are included in your starter pack + + ) : items.length > 2 && state.currentStep === 'Feeds' ? ( + + + {getName(items[initialNamesIndex])},{' '} + + + {getName(items[initialNamesIndex + 1])},{' '} + + and{' '} + {' '} + are included in your starter pack + + ) : null /* Should not happen */ + } )} From 3f20e2e3cf086664cb764da2b2886eac8b409270 Mon Sep 17 00:00:00 2001 From: dan Date: Wed, 26 Jun 2024 16:08:57 +0100 Subject: [PATCH 038/153] Refactor nested conditions in the starter pack wizard (#4652) * Refactor condition nesting by screen * Inline indexes * More explicit conditions --- src/screens/StarterPack/Wizard/index.tsx | 171 ++++++++++++----------- 1 file changed, 91 insertions(+), 80 deletions(-) diff --git a/src/screens/StarterPack/Wizard/index.tsx b/src/screens/StarterPack/Wizard/index.tsx index 2f50e878ae..3f0499a1da 100644 --- a/src/screens/StarterPack/Wizard/index.tsx +++ b/src/screens/StarterPack/Wizard/index.tsx @@ -393,7 +393,6 @@ function Footer({ state.currentStep === 'Profiles' ? [profile, ...state.profiles] : state.feeds - const initialNamesIndex = state.currentStep === 'Profiles' ? 1 : 0 const isEditEnabled = (state.currentStep === 'Profiles' && items.length > 1) || @@ -445,87 +444,99 @@ function Footer({ ))} - {items.length === 0 /* Assuming this can only happen for feeds */ ? ( - - - Add some feeds to your starter pack! - + { + state.currentStep === 'Profiles' ? ( - Search for feeds that you want to suggest to others. + { + items.length < 2 ? ( + + It's just you right now! Add more people to your starter pack + by searching above. + + ) : items.length === 2 ? ( + + You and + + + {getName(items[1] /* [0] is self, skip it */)}{' '} + + are included in your starter pack + + ) : items.length > 2 ? ( + + + {getName(items[1] /* [0] is self, skip it */)},{' '} + + + {getName(items[2])},{' '} + + and{' '} + {' '} + are included in your starter pack + + ) : null /* Should not happen. */ + } - - ) : ( - - { - items.length === 1 && state.currentStep === 'Profiles' ? ( - - It's just you right now! Add more people to your starter pack by - searching above. - - ) : items.length === 1 && state.currentStep === 'Feeds' ? ( - - - {getName(items[initialNamesIndex])} - {' '} - is included in your starter pack - - ) : items.length === 2 && state.currentStep === 'Profiles' ? ( - - You and - - - {getName(items[initialNamesIndex])}{' '} - - are included in your starter pack - - ) : items.length === 2 && state.currentStep === 'Feeds' ? ( - - - {getName(items[initialNamesIndex])} - {' '} - and - - - {getName(items[initialNamesIndex + 1])}{' '} - - are included in your starter pack - - ) : items.length > 2 && state.currentStep === 'Profiles' ? ( - - - {getName(items[initialNamesIndex])},{' '} - - - {getName(items[initialNamesIndex + 1])},{' '} - - and{' '} - {' '} - are included in your starter pack - - ) : items.length > 2 && state.currentStep === 'Feeds' ? ( - - - {getName(items[initialNamesIndex])},{' '} - - - {getName(items[initialNamesIndex + 1])},{' '} - - and{' '} - {' '} - are included in your starter pack - - ) : null /* Should not happen */ - } - - )} + ) : state.currentStep === 'Feeds' ? ( + items.length === 0 ? ( + + + Add some feeds to your starter pack! + + + + Search for feeds that you want to suggest to others. + + + + ) : ( + + { + items.length === 1 ? ( + + + {getName(items[0])} + {' '} + is included in your starter pack + + ) : items.length === 2 ? ( + + + {getName(items[0])} + {' '} + and + + + {getName(items[1])}{' '} + + are included in your starter pack + + ) : items.length > 2 ? ( + + + {getName(items[0])},{' '} + + + {getName(items[1])},{' '} + + and{' '} + {' '} + are included in your starter pack + + ) : null /* Should not happen. */ + } + + ) + ) : null /* Should not happen. */ + } Date: Wed, 26 Jun 2024 20:20:52 +0200 Subject: [PATCH 039/153] Mark two starter pack strings for localization (#4655) --- src/components/StarterPack/ProfileStarterPacks.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/components/StarterPack/ProfileStarterPacks.tsx b/src/components/StarterPack/ProfileStarterPacks.tsx index 096f04f2dd..7fb0545a21 100644 --- a/src/components/StarterPack/ProfileStarterPacks.tsx +++ b/src/components/StarterPack/ProfileStarterPacks.tsx @@ -232,11 +232,13 @@ function Empty() { t.atoms.text_contrast_medium, {color: 'white'}, ]}> - You haven't created a starter pack yet! + You haven't created a starter pack yet! - Starter packs let you easily share your favorite feeds and people with - your friends. + + Starter packs let you easily share your favorite feeds and people + with your friends. + From 368cd7bb0e9bb92ee968f429c66f7db7bfb305e7 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 26 Jun 2024 16:35:42 -0500 Subject: [PATCH 040/153] [D1X] Onboarding interest display names (#4657) * Translate interest names in onboarding * Add comment * Do it the normal way --- .../StepInterests/InterestButton.tsx | 11 ++-- .../Onboarding/StepInterests/index.tsx | 9 ++- src/screens/Onboarding/state.ts | 59 ++++++++++--------- 3 files changed, 44 insertions(+), 35 deletions(-) diff --git a/src/screens/Onboarding/StepInterests/InterestButton.tsx b/src/screens/Onboarding/StepInterests/InterestButton.tsx index cc692dafd8..24b34041e0 100644 --- a/src/screens/Onboarding/StepInterests/InterestButton.tsx +++ b/src/screens/Onboarding/StepInterests/InterestButton.tsx @@ -1,16 +1,15 @@ import React from 'react' -import {View, ViewStyle, TextStyle} from 'react-native' +import {TextStyle, View, ViewStyle} from 'react-native' -import {useTheme, atoms as a, native} from '#/alf' +import {capitalize} from '#/lib/strings/capitalize' +import {useInterestsDisplayNames} from '#/screens/Onboarding/state' +import {atoms as a, native, useTheme} from '#/alf' import * as Toggle from '#/components/forms/Toggle' import {Text} from '#/components/Typography' -import {capitalize} from '#/lib/strings/capitalize' - -import {Context} from '#/screens/Onboarding/state' export function InterestButton({interest}: {interest: string}) { const t = useTheme() - const {interestsDisplayNames} = React.useContext(Context) + const interestsDisplayNames = useInterestsDisplayNames() const ctx = Toggle.useItemContext() const styles = React.useMemo(() => { diff --git a/src/screens/Onboarding/StepInterests/index.tsx b/src/screens/Onboarding/StepInterests/index.tsx index 866ea5c2f7..ded473ff59 100644 --- a/src/screens/Onboarding/StepInterests/index.tsx +++ b/src/screens/Onboarding/StepInterests/index.tsx @@ -15,7 +15,11 @@ import { OnboardingControls, TitleText, } from '#/screens/Onboarding/Layout' -import {ApiResponseMap, Context} from '#/screens/Onboarding/state' +import { + ApiResponseMap, + Context, + useInterestsDisplayNames, +} from '#/screens/Onboarding/state' import {InterestButton} from '#/screens/Onboarding/StepInterests/InterestButton' import {atoms as a, useBreakpoints, useTheme} from '#/alf' import {Button, ButtonIcon, ButtonText} from '#/components/Button' @@ -33,8 +37,9 @@ export function StepInterests() { const t = useTheme() const {gtMobile} = useBreakpoints() const {track} = useAnalytics() + const interestsDisplayNames = useInterestsDisplayNames() - const {state, dispatch, interestsDisplayNames} = React.useContext(Context) + const {state, dispatch} = React.useContext(Context) const [saving, setSaving] = React.useState(false) const [interests, setInterests] = React.useState( state.interestsStepResults.selectedInterests.map(i => i), diff --git a/src/screens/Onboarding/state.ts b/src/screens/Onboarding/state.ts index 8f61cb22eb..1e8db8b8ad 100644 --- a/src/screens/Onboarding/state.ts +++ b/src/screens/Onboarding/state.ts @@ -1,4 +1,6 @@ import React from 'react' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' import {logger} from '#/logger' import {AvatarColor, Emoji} from '#/screens/Onboarding/StepProfile/types' @@ -68,31 +70,36 @@ export type ApiResponseMap = { } } -export const INTEREST_TO_DISPLAY_NAME_DEFAULTS: { - [key: string]: string -} = { - news: 'News', - journalism: 'Journalism', - nature: 'Nature', - art: 'Art', - comics: 'Comics', - writers: 'Writers', - culture: 'Culture', - sports: 'Sports', - pets: 'Pets', - animals: 'Animals', - books: 'Books', - education: 'Education', - climate: 'Climate', - science: 'Science', - politics: 'Politics', - fitness: 'Fitness', - tech: 'Tech', - dev: 'Software Dev', - comedy: 'Comedy', - gaming: 'Video Games', - food: 'Food', - cooking: 'Cooking', +export function useInterestsDisplayNames() { + const {_} = useLingui() + + return React.useMemo>(() => { + return { + // Keep this alphabetized + animals: _(msg`Animals`), + art: _(msg`Art`), + books: _(msg`Books`), + comedy: _(msg`Comedy`), + comics: _(msg`Comics`), + culture: _(msg`Culture`), + dev: _(msg`Software Dev`), + education: _(msg`Education`), + food: _(msg`Food`), + gaming: _(msg`Video Games`), + journalism: _(msg`Journalism`), + movies: _(msg`Movies`), + nature: _(msg`Nature`), + news: _(msg`News`), + pets: _(msg`Pets`), + photography: _(msg`Photography`), + politics: _(msg`Politics`), + science: _(msg`Science`), + sports: _(msg`Sports`), + tech: _(msg`Tech`), + tv: _(msg`TV`), + writers: _(msg`Writers`), + } + }, [_]) } export const initialState: OnboardingState = { @@ -120,11 +127,9 @@ export const initialState: OnboardingState = { export const Context = React.createContext<{ state: OnboardingState dispatch: React.Dispatch - interestsDisplayNames: {[key: string]: string} }>({ state: {...initialState}, dispatch: () => {}, - interestsDisplayNames: INTEREST_TO_DISPLAY_NAME_DEFAULTS, }) export function reducer( From 3b0a177544bb6c7c608cd94d03156b63ad57ef45 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 26 Jun 2024 16:09:04 -0700 Subject: [PATCH 041/153] Run intl extract --- src/locale/locales/ca/messages.po | 616 +++++++++++++++----------- src/locale/locales/de/messages.po | 616 +++++++++++++++----------- src/locale/locales/en/messages.po | 614 +++++++++++++++----------- src/locale/locales/es/messages.po | 616 +++++++++++++++----------- src/locale/locales/fi/messages.po | 616 +++++++++++++++----------- src/locale/locales/fr/messages.po | 554 +++++++++++++----------- src/locale/locales/ga/messages.po | 616 +++++++++++++++----------- src/locale/locales/hi/messages.po | 618 ++++++++++++++++----------- src/locale/locales/id/messages.po | 616 +++++++++++++++----------- src/locale/locales/it/messages.po | 616 +++++++++++++++----------- src/locale/locales/ja/messages.po | 535 ++++++++++++----------- src/locale/locales/ko/messages.po | 608 +++++++++++++++----------- src/locale/locales/pt-BR/messages.po | 616 +++++++++++++++----------- src/locale/locales/tr/messages.po | 616 +++++++++++++++----------- src/locale/locales/uk/messages.po | 616 +++++++++++++++----------- src/locale/locales/zh-CN/messages.po | 616 +++++++++++++++----------- src/locale/locales/zh-TW/messages.po | 616 +++++++++++++++----------- 17 files changed, 5972 insertions(+), 4349 deletions(-) diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po index 6ec1268338..05a7705e8b 100644 --- a/src/locale/locales/ca/messages.po +++ b/src/locale/locales/ca/messages.po @@ -74,7 +74,7 @@ msgstr "{0, plural, one {Like (# m'agrada)} other {Like (# m'agrades)}}" msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {m'agrada} other {m'agrades}}" -#: src/components/FeedCard.tsx:215 +#: src/components/FeedCard.tsx:216 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, one {Li ha agradat a # user} other {Li ha agradat a # users}}" @@ -103,7 +103,11 @@ msgstr "{0, plural, one {Desmarca m'agrada (# like)} other {Desmarca m'agrada (# #~ msgid "{0} {purposeLabel} List" #~ msgstr "Llista {purposeLabel} {0}" -#: src/screens/StarterPack/StarterPackScreen.tsx:343 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +msgid "{0} joined this week" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:350 msgid "{0} people have used this starter pack!" msgstr "" @@ -147,7 +151,7 @@ msgstr "" msgid "{diffSeconds, plural, one {second} other {seconds}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" msgstr "" @@ -184,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:586 +#: src/view/screens/ProfileFeed.tsx:588 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,11 +200,11 @@ msgstr "{likeCount, plural, one {Li ha agradat a # user} other {Li ha agradat a msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} no llegides" -#: src/components/NewskieDialog.tsx:92 +#: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" msgstr "" -#: src/components/NewskieDialog.tsx:87 +#: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "" @@ -208,17 +212,27 @@ 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 {Mostra totes les respostes} one {Mostra les respostes amb almenys # m'agrada} other {Mostra les respostes amb almenys # m'agrades}}" -#: src/view/com/threadgate/WhoCanReply.tsx:290 +#: src/components/WhoCanReply.tsx:295 msgid "<0/> members" msgstr "<0/> membres" #: src/screens/StarterPack/Wizard/index.tsx:485 -msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +#~ 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 "" + +#: 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 "" +#~ 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 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -228,11 +242,15 @@ msgstr "<0>{0} {1, plural, one {seguidor} other {seguidors}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {seguint} other {seguint}}" +#: 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 "<0>{0} seguint" -#: src/screens/StarterPack/Wizard/index.tsx:478 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -261,6 +279,10 @@ msgstr "<0>No aplicable. Aquesta advertència només està disponible per pu #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "<0>Us donem la benvinguda a<1>Bluesky" +#: src/screens/StarterPack/Wizard/index.tsx:457 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠Identificador invàlid" @@ -359,11 +381,11 @@ msgstr "Compte no silenciat" msgid "Add" msgstr "Afegeix" -#: src/screens/StarterPack/Wizard/index.tsx:539 +#: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:56 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" msgstr "" @@ -427,14 +449,14 @@ msgid "Add muted words and tags" msgstr "Afegeix les paraules i etiquetes silenciades" #: src/screens/StarterPack/Wizard/index.tsx:197 -msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "" +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "Afegeix els canals recomanats" -#: src/screens/StarterPack/Wizard/index.tsx:464 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" msgstr "" @@ -446,7 +468,7 @@ msgstr "Afegeix el canal per defecte només de la gent que segueixes" msgid "Add the following DNS record to your domain:" msgstr "Afegeix el següent registre DNS al teu domini:" -#: src/components/FeedCard.tsx:300 +#: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" msgstr "" @@ -485,16 +507,20 @@ msgstr "Contingut per a adults" #~ msgid "Adult content can only be enabled via the Web at <0/>." #~ msgstr "El contingut per a adults només es pot habilitar via web a <0/>." +#: src/screens/Moderation/index.tsx:356 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "El contingut per a adults està deshabilitat." -#: src/screens/Moderation/index.tsx:375 +#: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "Avançat" -#: src/screens/StarterPack/StarterPackScreen.tsx:271 +#: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "All accounts have been followed!" msgstr "" @@ -559,16 +585,16 @@ msgstr "S'ha enviat un correu a la teva adreça prèvia, {0}. Inclou un codi de msgid "An error occured" msgstr "Hi ha hagut un error" -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +#: 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 "" +#~ msgid "An error occurred while saving the image." +#~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:76 -#: src/components/StarterPack/ShareDialog.tsx:91 +#: src/components/StarterPack/QrCodeDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "" @@ -576,7 +602,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "Hi ha hagut un error intentant esborrar el missatge. Torna-ho a provar." -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:275 msgid "An error occurred while trying to follow all" msgstr "" @@ -593,16 +619,17 @@ msgstr "Un problema que no està inclòs en aquestes opcions" msgid "An issue occurred, please try again." msgstr "Hi ha hagut un problema, prova-ho de nou." -#: src/screens/Onboarding/StepInterests/index.tsx:194 +#: src/screens/Onboarding/StepInterests/index.tsx:199 msgid "an unknown error occurred" msgstr "hi ha hagut un problema desconegut" +#: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:280 -#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "i" #: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:79 msgid "Animals" msgstr "Animals" @@ -694,7 +721,7 @@ msgstr "Aparença" msgid "Apply default recommended feeds" msgstr "Aplica els canals recomanats per defecte" -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -722,7 +749,7 @@ msgstr "Estàs segur que vols abandonar aquesta conversa? Els missatge s'esborra msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Confirmes que vols eliminar {0} dels teus canals?" -#: src/components/FeedCard.tsx:317 +#: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -743,6 +770,7 @@ msgid "Are you writing in <0>{0}?" msgstr "Estàs escrivint en <0>{0}?" #: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:80 msgid "Art" msgstr "Art" @@ -769,7 +797,7 @@ msgstr "Almenys 3 caràcters" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:312 +#: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Endarrere" @@ -835,7 +863,7 @@ msgstr "Vols bloquejar aquests comptes?" msgid "Blocked" msgstr "Bloquejada" -#: src/screens/Moderation/index.tsx:267 +#: src/screens/Moderation/index.tsx:270 msgid "Blocked accounts" msgstr "Comptes bloquejats" @@ -900,11 +928,11 @@ msgstr "Bluesky és una xarxa oberta on pots escollir el teu proveïdor d'allotj #~ msgid "Bluesky uses invites to build a healthier community. If you don't know anybody with an invite, you can sign up for the waitlist and we'll send one soon." #~ msgstr "Bluesky utilitza les invitacions per construir una comunitat saludable. Si no coneixes ningú amb invitacions, pots apuntar-te a la llista d'espera i te n'enviarem una aviat." -#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:533 +#: 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 no mostrarà el teu perfil ni les publicacions als usuaris que no estiguin registrats. Altres aplicacions poden no seguir aquesta demanda. Això no fa que el teu compte sigui privat." @@ -921,6 +949,7 @@ msgid "Blur images and filter from feeds" msgstr "Difumina les imatges i filtra-ho dels canals" #: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:81 msgid "Books" msgstr "Llibres" @@ -1150,17 +1179,25 @@ msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "Comprova el teu correu per a rebre el codi de confirmació i entra'l aquí sota:" #: src/view/com/modals/Threadgate.tsx:75 -msgid "Choose \"Everybody\" or \"Nobody\"" -msgstr "Tria \"Tothom\" or \"Ningú\"" +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "Tria \"Tothom\" or \"Ningú\"" #: src/view/screens/Settings/index.tsx:697 #~ msgid "Choose a new Bluesky username or create" #~ msgstr "Tria un nou nom d'usuari de Bluesky o crea'l" -#: src/components/StarterPack/ProfileStarterPacks.tsx:288 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:187 +msgid "Choose People" +msgstr "" + #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Tria un servei" @@ -1178,6 +1215,11 @@ msgstr "Tria els algoritmes que alimentaran els teus canals personalitzats." msgid "Choose this color as your avatar" msgstr "Tria aquest color com el teu 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 "Tria els teus canals principals" @@ -1254,18 +1296,18 @@ msgstr "Clip 🐴 clop 🐴" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/NewskieDialog.tsx:120 -#: src/components/NewskieDialog.tsx:127 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:121 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:127 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: 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:189 msgid "Close" msgstr "Tanca" -#: src/components/Dialog/index.web.tsx:113 -#: src/components/Dialog/index.web.tsx:251 +#: src/components/Dialog/index.web.tsx:116 +#: src/components/Dialog/index.web.tsx:254 msgid "Close active dialog" msgstr "Tanca el diàleg actiu" @@ -1332,10 +1374,12 @@ msgid "Collapses list of users for a given notification" msgstr "Plega la llista d'usuaris per una notificació concreta" #: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:82 msgid "Comedy" msgstr "Comèdia" #: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:83 msgid "Comics" msgstr "Còmics" @@ -1407,11 +1451,11 @@ msgstr "Confirma l'eliminació del compte" #~ msgid "Confirm your age to enable adult content." #~ msgstr "Confirma la teva edat per a habilitar el contingut per a adults" -#: src/screens/Moderation/index.tsx:301 +#: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "Confirma la teva edat:" -#: src/screens/Moderation/index.tsx:292 +#: src/screens/Moderation/index.tsx:295 msgid "Confirm your birthdate" msgstr "Confirma la teva data de naixement" @@ -1453,7 +1497,7 @@ msgstr "Contingut bloquejat" #~ msgid "Content Filtering" #~ msgstr "Filtre de contingut" -#: src/screens/Moderation/index.tsx:285 +#: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "Filtres de contingut" @@ -1482,7 +1526,7 @@ msgstr "Advertències del contingut" msgid "Context menu backdrop, click to close the menu." msgstr "Teló de fons del menú contextual, fes clic per a tancar-lo." -#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepInterests/index.tsx:258 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Continua" @@ -1495,7 +1539,7 @@ msgstr "Continua com a {0} (sessió actual)" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:251 msgid "Continue to next step" @@ -1543,7 +1587,7 @@ msgstr "Copiat" msgid "Copies app password" msgstr "Copia la contrasenya d'aplicació" -#: src/components/StarterPack/QrCodeDialog.tsx:180 +#: src/components/StarterPack/QrCodeDialog.tsx:174 #: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Copia" @@ -1557,7 +1601,11 @@ msgstr "Copia {0}" msgid "Copy code" msgstr "Copia el codi" -#: src/components/StarterPack/ShareDialog.tsx:143 +#: src/components/StarterPack/ShareDialog.tsx:123 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" msgstr "" @@ -1584,7 +1632,7 @@ msgstr "Copia el text del missatge" msgid "Copy post text" msgstr "Copia el text de la publicació" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" msgstr "" @@ -1597,7 +1645,7 @@ msgstr "Política de drets d'autor" msgid "Could not leave chat" msgstr "No s'ha pogut sortir del xat" -#: src/view/screens/ProfileFeed.tsx:102 +#: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" msgstr "No s'ha pogut carregar el canal" @@ -1621,7 +1669,7 @@ msgstr "No s'ha pogut silenciar el xat" #~ msgid "Country" #~ msgstr "País" -#: src/components/StarterPack/ProfileStarterPacks.tsx:270 +#: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" msgstr "" @@ -1634,17 +1682,17 @@ msgstr "Crea un nou compte" msgid "Create a new Bluesky account" msgstr "Crea un nou compte de Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:157 +#: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:257 +#: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +#: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" msgstr "" @@ -1675,8 +1723,8 @@ msgid "Create new account" msgstr "Crea un nou compte" #: src/components/StarterPack/ShareDialog.tsx:158 -msgid "Create QR code" -msgstr "" +#~ msgid "Create QR code" +#~ msgstr "" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1699,6 +1747,7 @@ msgstr "Creat {0}" #~ msgstr "Crea una targeta amb una miniatura. La targeta enllaça a {url}" #: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:84 msgid "Culture" msgstr "Cultura" @@ -1759,9 +1808,9 @@ msgid "Debug panel" msgstr "Panell de depuració" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:449 -#: src/screens/StarterPack/StarterPackScreen.tsx:528 -#: src/screens/StarterPack/StarterPackScreen.tsx:608 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1826,12 +1875,12 @@ msgstr "Elimina el meu compte…" msgid "Delete post" msgstr "Elimina la publicació" -#: src/screens/StarterPack/StarterPackScreen.tsx:443 -#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:450 +#: src/screens/StarterPack/StarterPackScreen.tsx:606 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:494 +#: src/screens/StarterPack/StarterPackScreen.tsx:501 msgid "Delete starter pack?" msgstr "" @@ -1911,7 +1960,7 @@ msgstr "Desactiva la retroalimentació hàptica" #: src/lib/moderation/useLabelBehaviorDescription.ts:68 #: src/screens/Messages/Settings.tsx:140 #: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:341 +#: src/screens/Moderation/index.tsx:346 msgid "Disabled" msgstr "Deshabilitat" @@ -1927,8 +1976,8 @@ msgstr "Descarta" msgid "Discard draft?" msgstr "Vols descartar l'esborrany?" -#: src/screens/Moderation/index.tsx:518 -#: src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:542 +#: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" msgstr "Evita que les aplicacions mostrin el meu compte als usuaris no connectats" @@ -1983,6 +2032,7 @@ msgstr "Domini verificat!" #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/ThreadgateEditor.tsx:88 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 @@ -2002,8 +2052,6 @@ msgstr "Fet" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 #: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/Threadgate.tsx:136 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 #: src/view/screens/PreferencesThreads.tsx:162 @@ -2019,7 +2067,7 @@ msgstr "Fet{extraText}" #~ msgid "Double tap to sign in" #~ msgstr "Fes doble toc per a iniciar la sessió" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 msgid "Download Bluesky" msgstr "" @@ -2080,9 +2128,9 @@ msgstr "p. ex.Usuaris que sempre responen amb anuncis" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cada codi funciona un cop. Rebràs més codis d'invitació periòdicament." -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:522 -#: src/screens/StarterPack/Wizard/index.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" @@ -2098,7 +2146,7 @@ msgstr "Edita" msgid "Edit avatar" msgstr "Edita l'avatar" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "" @@ -2126,7 +2174,7 @@ msgstr "Edita els meus canals" msgid "Edit my profile" msgstr "Edita el meu perfil" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "" @@ -2145,7 +2193,7 @@ msgstr "Edita el perfil" #~ msgid "Edit Saved Feeds" #~ msgstr "Edita els meus canals guardats" -#: src/screens/StarterPack/StarterPackScreen.tsx:430 +#: src/screens/StarterPack/StarterPackScreen.tsx:437 msgid "Edit starter pack" msgstr "" @@ -2153,8 +2201,7 @@ msgstr "" msgid "Edit User List" msgstr "Edita la llista d'usuaris" -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" msgstr "" @@ -2171,9 +2218,14 @@ msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:86 msgid "Education" msgstr "Ensenyament" +#: src/components/dialogs/ThreadgateEditor.tsx:98 +msgid "Either choose \"Everybody\" or \"Nobody\"" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" @@ -2222,7 +2274,7 @@ msgstr "Incrusta aquesta publicació al teu lloc web. Copia el fragment següent msgid "Enable {0} only" msgstr "Habilita només {0}" -#: src/screens/Moderation/index.tsx:329 +#: src/screens/Moderation/index.tsx:333 msgid "Enable adult content" msgstr "Habilita el contingut per a adults" @@ -2258,7 +2310,7 @@ msgstr "Habilita només per aquesta font" #: src/screens/Messages/Settings.tsx:131 #: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:339 +#: src/screens/Moderation/index.tsx:344 msgid "Enabled" msgstr "Habilitat" @@ -2340,19 +2392,18 @@ msgstr "Ha ocorregut un error en desar el fitxer" msgid "Error receiving captcha response." msgstr "Error en rebre la resposta al captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Error:" -#: src/view/com/modals/Threadgate.tsx:79 +#: src/components/dialogs/ThreadgateEditor.tsx:102 msgid "Everybody" msgstr "Tothom" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#: src/view/com/threadgate/WhoCanReply.tsx:64 -#: src/view/com/threadgate/WhoCanReply.tsx:121 -#: src/view/com/threadgate/WhoCanReply.tsx:235 +#: src/components/WhoCanReply.tsx:69 +#: src/components/WhoCanReply.tsx:240 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "Tothom pot respondre" @@ -2451,8 +2502,8 @@ msgstr "Configuració del contingut extern" msgid "Failed to create app password." msgstr "No s'ha pogut crear la contrasenya d'aplicació." -#: src/screens/StarterPack/Wizard/index.tsx:241 -#: src/screens/StarterPack/Wizard/index.tsx:249 +#: src/screens/StarterPack/Wizard/index.tsx:230 +#: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" msgstr "" @@ -2468,7 +2519,7 @@ msgstr "No s'ha pogut esborrar el missatge" msgid "Failed to delete post, please try again" msgstr "No s'ha pogut esborrar la publicació, torna-ho a provar" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/StarterPackScreen.tsx:569 msgid "Failed to delete starter pack" msgstr "" @@ -2504,7 +2555,7 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" msgstr "Error en desar la imatge: {0}" @@ -2525,7 +2576,7 @@ msgstr "No s'ha pogut enviar l'apel·lació, torna-ho a provar." msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:280 +#: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "" @@ -2551,7 +2602,7 @@ msgstr "Canal per {0}" #~ msgid "Feed Preferences" #~ msgstr "Preferències del canal" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "" @@ -2561,10 +2612,9 @@ msgid "Feedback" msgstr "Comentaris" #: src/Navigation.tsx:320 -#: src/screens/StarterPack/Wizard/index.tsx:201 #: src/view/screens/Feeds.tsx:445 #: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:220 +#: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:373 #: src/view/shell/Drawer.tsx:493 @@ -2584,7 +2634,7 @@ msgstr "Els canals són algoritmes personalitzats creats per usuaris que coneixe #~ msgid "Feeds can be topical as well!" #~ msgstr "Els canals també poden ser d'actualitat!" -#: src/components/FeedCard.tsx:277 +#: src/components/FeedCard.tsx:282 msgid "Feeds updated!" msgstr "" @@ -2638,7 +2688,7 @@ msgstr "Ajusta el contingut que veus al teu canal Seguint." msgid "Fine-tune the discussion threads." msgstr "Ajusta els fils de debat." -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" msgstr "" @@ -2686,8 +2736,8 @@ msgstr "Segueix a {name}" msgid "Follow Account" msgstr "Segueix el compte" -#: src/screens/StarterPack/StarterPackScreen.tsx:308 -#: src/screens/StarterPack/StarterPackScreen.tsx:315 +#: src/screens/StarterPack/StarterPackScreen.tsx:317 +#: src/screens/StarterPack/StarterPackScreen.tsx:324 msgid "Follow all" msgstr "" @@ -2735,7 +2785,7 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/view/com/modals/Threadgate.tsx:101 +#: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" msgstr "Usuaris seguits" @@ -2803,6 +2853,7 @@ msgid "Follows You" msgstr "Et segueix" #: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:87 msgid "Food" msgstr "Menjar" @@ -2852,7 +2903,7 @@ msgstr "De <0/>" msgid "Gallery" msgstr "Galeria" -#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" msgstr "" @@ -2882,7 +2933,7 @@ msgstr "Infraccions flagrants de la llei o les condicions del servei" #: src/view/com/auth/LoggedOut.tsx:78 #: src/view/com/auth/LoggedOut.tsx:79 #: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:133 msgid "Go back" @@ -2891,9 +2942,9 @@ msgstr "Ves enrere" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:628 #: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Ves enrere" @@ -2907,7 +2958,7 @@ msgstr "Ves enrere" msgid "Go back to previous step" msgstr "Ves al pas anterior" -#: src/screens/StarterPack/Wizard/index.tsx:313 +#: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" msgstr "" @@ -3056,7 +3107,7 @@ msgstr "El servidor del canal ha donat una resposta incorrecta. Avisa al propiet msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Tenim problemes per a trobar aquest canal. Potser ha estat eliminat." -#: src/screens/Moderation/index.tsx:59 +#: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Tenim problemes per a carregar aquestes dades. Mira a continuació per a veure més detalls. Contacta amb nosaltres si aquest problema continua." @@ -3164,7 +3215,7 @@ msgstr "Text alternatiu de la imatge" #~ msgid "Image options" #~ msgstr "Opcions de la imatge" -#: src/components/StarterPack/ShareDialog.tsx:88 +#: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" msgstr "" @@ -3285,7 +3336,7 @@ msgstr "Codis d'invitació: {0} disponible" msgid "Invite codes: 1 available" msgstr "Codis d'invitació: 1 disponible" -#: src/components/StarterPack/ShareDialog.tsx:109 +#: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" msgstr "" @@ -3301,7 +3352,7 @@ msgstr "" #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "Mostra les publicacions de les persones que segueixes cronològicament." -#: src/screens/StarterPack/Wizard/index.tsx:473 +#: 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 "" @@ -3309,8 +3360,8 @@ msgstr "" msgid "Jobs" msgstr "Feines" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 msgid "Join Bluesky" msgstr "" @@ -3332,6 +3383,7 @@ msgstr "" #~ msgstr "Uneix-te a la llista d'espera" #: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:89 msgid "Journalism" msgstr "Periodisme" @@ -3347,7 +3399,7 @@ msgstr "Etiquetat per {0}." msgid "Labeled by the author." msgstr "Etiquetat per l'autor." -#: src/view/screens/Profile.tsx:214 +#: src/view/screens/Profile.tsx:207 msgid "Labels" msgstr "Etiquetes" @@ -3411,7 +3463,7 @@ msgstr "Més informació sobre la moderació que s'ha aplicat a aquest contingut msgid "Learn more about this warning" msgstr "Més informació d'aquesta advertència" -#: src/screens/Moderation/index.tsx:549 +#: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." msgstr "Més informació sobre què és públic a Bluesky." @@ -3452,7 +3504,7 @@ msgstr "queda." msgid "Legacy storage cleared, you need to restart the app now." msgstr "L'emmagatzematge heretat s'ha esborrat, cal que reinicieu l'aplicació ara." -#: src/components/StarterPack/ProfileStarterPacks.tsx:293 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" msgstr "" @@ -3479,7 +3531,7 @@ msgstr "Clar" #~ msgstr "M'agrada" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Fes m'agrada a aquest canal" @@ -3521,7 +3573,7 @@ msgstr "els ha agradat el teu canal personalitzat" msgid "liked your post" msgstr "li ha agradat la teva publicació" -#: src/view/screens/Profile.tsx:219 +#: src/view/screens/Profile.tsx:212 msgid "Likes" msgstr "M'agrades" @@ -3567,8 +3619,8 @@ msgid "List unmuted" msgstr "Llista no silenciada" #: src/Navigation.tsx:122 +#: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/screens/Profile.tsx:222 #: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 @@ -3602,7 +3654,7 @@ msgstr "Carrega noves notificacions" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:493 +#: src/view/screens/ProfileFeed.tsx:494 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Carrega noves publicacions" @@ -3631,7 +3683,7 @@ msgstr "Inicia sessió o registra't" msgid "Log out" msgstr "Desconnecta" -#: src/screens/Moderation/index.tsx:442 +#: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" msgstr "Visibilitat pels usuaris no connectats" @@ -3666,7 +3718,7 @@ msgstr "Sembla que has deixat tots els teus canals sense fixar. No passa res, en msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "Sembla que et falta el canal del Seguits. <0>Clica aquí per a afegir-ne un." -#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +#: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" msgstr "" @@ -3692,15 +3744,15 @@ msgstr "Marca com a llegit" #~ msgstr "Només pot tenir lletres i números" #: src/view/screens/AccessibilitySettings.tsx:102 -#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:211 msgid "Media" msgstr "Contingut" -#: src/view/com/threadgate/WhoCanReply.tsx:270 +#: src/components/WhoCanReply.tsx:275 msgid "mentioned users" msgstr "usuaris mencionats" -#: src/view/com/modals/Threadgate.tsx:96 +#: src/components/dialogs/ThreadgateEditor.tsx:119 msgid "Mentioned users" msgstr "Usuaris mencionats" @@ -3755,7 +3807,7 @@ msgid "Misleading Account" msgstr "Compte enganyós" #: src/Navigation.tsx:127 -#: src/screens/Moderation/index.tsx:104 +#: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "Moderació" @@ -3788,7 +3840,7 @@ msgstr "S'ha creat la llista de moderació" msgid "Moderation list updated" msgstr "S'ha actualitzat la llista de moderació" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:246 msgid "Moderation lists" msgstr "Llistes de moderació" @@ -3805,7 +3857,7 @@ msgstr "Configuració de moderació" msgid "Moderation states" msgstr "Estats de moderació" -#: src/screens/Moderation/index.tsx:215 +#: src/screens/Moderation/index.tsx:218 msgid "Moderation tools" msgstr "Eines de moderació" @@ -3814,7 +3866,7 @@ msgstr "Eines de moderació" msgid "Moderator has chosen to set a general warning on the content." msgstr "El moderador ha decidit establir un advertiment general sobre el contingut." -#: src/view/com/post-thread/PostThreadItem.tsx:567 +#: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" msgstr "Més" @@ -3834,6 +3886,10 @@ msgstr "Més opcions" msgid "Most-liked replies first" msgstr "Respostes amb més m'agrada primer" +#: src/screens/Onboarding/state.ts:90 +msgid "Movies" +msgstr "" + #: src/view/com/auth/create/Step2.tsx:122 #~ msgid "Must be at least 3 characters" #~ msgstr "Ha de tenir almenys 3 caràcters" @@ -3915,7 +3971,7 @@ msgstr "Silencia paraules i etiquetes" msgid "Muted" msgstr "Silenciada" -#: src/screens/Moderation/index.tsx:255 +#: src/screens/Moderation/index.tsx:258 msgid "Muted accounts" msgstr "Comptes silenciats" @@ -3932,7 +3988,7 @@ msgstr "Les publicacions dels comptes silenciats seran eliminats del teu canal i msgid "Muted by \"{0}\"" msgstr "Silenciat per \"{0}\"" -#: src/screens/Moderation/index.tsx:231 +#: src/screens/Moderation/index.tsx:234 msgid "Muted words & tags" msgstr "Paraules i etiquetes silenciades" @@ -3982,6 +4038,7 @@ msgid "Name or Description Violates Community Standards" msgstr "El nom o la descripció infringeixen els estàndards comunitaris" #: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:91 msgid "Nature" msgstr "Natura" @@ -4059,8 +4116,8 @@ msgstr "Nova publicació" #: src/view/screens/Feeds.tsx:580 #: src/view/screens/Notifications.tsx:193 -#: src/view/screens/Profile.tsx:485 -#: src/view/screens/ProfileFeed.tsx:427 +#: src/view/screens/Profile.tsx:478 +#: src/view/screens/ProfileFeed.tsx:428 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:277 @@ -4076,7 +4133,7 @@ msgstr "Nova publicació" #~ msgid "New Post" #~ msgstr "Nova publicació" -#: src/components/NewskieDialog.tsx:71 +#: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "" @@ -4089,6 +4146,7 @@ msgid "Newest replies first" msgstr "Les respostes més noves primer" #: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:92 msgid "News" msgstr "Notícies" @@ -4099,10 +4157,10 @@ msgstr "Notícies" #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:258 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:195 -#: src/screens/StarterPack/Wizard/index.tsx:372 -#: src/screens/StarterPack/Wizard/index.tsx:379 +#: src/screens/StarterPack/Wizard/index.tsx:184 +#: src/screens/StarterPack/Wizard/index.tsx:188 +#: src/screens/StarterPack/Wizard/index.tsx:359 +#: src/screens/StarterPack/Wizard/index.tsx:366 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4126,7 +4184,7 @@ msgstr "Següent imatge" msgid "No" msgstr "No" -#: src/view/screens/ProfileFeed.tsx:560 +#: src/view/screens/ProfileFeed.tsx:562 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Cap descripció" @@ -4140,7 +4198,7 @@ msgstr "No hi ha panell de DNS" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "No s'han trobat GIF destacats. Pot haver-hi un problema amb Tenor." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." msgstr "" @@ -4213,11 +4271,11 @@ msgstr "No s'han trobat resultats de cerca per a \"{search}\"." msgid "No thanks" msgstr "No, gràcies" -#: src/view/com/modals/Threadgate.tsx:85 +#: src/components/dialogs/ThreadgateEditor.tsx:108 msgid "Nobody" msgstr "Ningú" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Nobody can reply" msgstr "Ningú pot respondre" @@ -4226,7 +4284,7 @@ msgstr "Ningú pot respondre" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "A ningú encara li ha agradat això. Potser hauries de ser el primer!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -4239,7 +4297,7 @@ msgstr "Nuesa no sexual" #~ msgstr "No aplicable." #: src/Navigation.tsx:117 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "No s'ha trobat" @@ -4254,7 +4312,7 @@ msgstr "Ara mateix no" msgid "Note about sharing" msgstr "Nota sobre compartir" -#: src/screens/Moderation/index.tsx:540 +#: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky és una xarxa oberta i pública. Aquesta configuració tan sols limita el teu contingut a l'aplicació de Bluesky i a la web, altres aplicacions poden no respectar-ho. El teu contingut pot ser mostrat a usuaris no connectats per altres aplicacions i webs." @@ -4314,7 +4372,7 @@ msgstr "Apagat" msgid "Oh no!" msgstr "Ostres!" -#: src/screens/Onboarding/StepInterests/index.tsx:133 +#: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." msgstr "Ostres! Alguna cosa ha fallat." @@ -4350,7 +4408,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/view/com/threadgate/WhoCanReply.tsx:239 +#: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" msgstr "" @@ -4367,10 +4425,10 @@ msgid "Oops, something went wrong!" msgstr "Ostres, alguna cosa ha anat malament!" #: src/components/Lists.tsx:191 -#: src/components/StarterPack/ProfileStarterPacks.tsx:302 -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Ostres!" @@ -4400,7 +4458,7 @@ msgstr "Obre les opcions de les converses" msgid "Open emoji picker" msgstr "Obre el selector d'emojis" -#: src/view/screens/ProfileFeed.tsx:295 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Open feed options menu" msgstr "Obre el menú de les opcions del canal" @@ -4412,7 +4470,7 @@ msgstr "Obre els enllaços al navegador de l'aplicació" msgid "Open message options" msgstr "Obre les opcions dels missatges" -#: src/screens/Moderation/index.tsx:227 +#: src/screens/Moderation/index.tsx:230 msgid "Open muted words and tags settings" msgstr "Obre la configuració de les paraules i etiquetes silenciades" @@ -4428,7 +4486,7 @@ msgstr "Obre la navegació" msgid "Open post options menu" msgstr "Obre el menú de les opcions de publicació" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 msgid "Open starter pack menu" msgstr "" @@ -4445,6 +4503,10 @@ msgstr "Obre el registre del sistema" msgid "Opens {numItems} options" msgstr "Obre {numItems} opcions" +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" msgstr "Obre la configuració d'accessibilitat" @@ -4615,7 +4677,7 @@ msgstr "Opció {0} de {numItems}" msgid "Optionally provide additional information below:" msgstr "Opcionalment, proporciona informació addicional a continuació:" -#: src/view/com/modals/Threadgate.tsx:92 +#: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" msgstr "O combina aquestes opcions:" @@ -4679,7 +4741,6 @@ msgstr "Contrasenya actualitzada!" msgid "Pause" msgstr "Posa en pausa" -#: src/screens/StarterPack/Wizard/index.tsx:194 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "Gent" @@ -4692,19 +4753,20 @@ msgstr "Persones seguides per @{0}" msgid "People following @{0}" msgstr "Persones seguint a @{0}" -#: src/view/com/lightbox/Lightbox.tsx:67 +#: src/view/com/lightbox/Lightbox.tsx:69 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:73 +#: src/view/com/lightbox/Lightbox.tsx:75 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." -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:93 msgid "Pets" msgstr "Mascotes" @@ -4712,16 +4774,20 @@ msgstr "Mascotes" #~ msgid "Phone number" #~ msgstr "Telèfon" +#: src/screens/Onboarding/state.ts:94 +msgid "Photography" +msgstr "" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "Imatges destinades a adults." -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Fixa a l'inici" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 msgid "Pin to Home" msgstr "Fixa a l'Inici" @@ -4837,6 +4903,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Espera que es generi la targeta de l'enllaç" #: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:95 msgid "Politics" msgstr "Política" @@ -4910,7 +4977,7 @@ msgstr "Publicació no trobada" msgid "posts" msgstr "publicacions" -#: src/view/screens/Profile.tsx:216 +#: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Publicacions" @@ -4984,7 +5051,7 @@ msgid "Processing..." msgstr "Processant…" #: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:353 +#: src/view/screens/Profile.tsx:346 msgid "profile" msgstr "perfil" @@ -5024,15 +5091,15 @@ msgstr "Publica" msgid "Publish reply" msgstr "Publica la resposta" -#: src/components/StarterPack/QrCodeDialog.tsx:131 +#: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:109 +#: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:110 +#: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" msgstr "" @@ -5098,7 +5165,9 @@ msgid "Reload conversations" msgstr "Carrega les converses de nou" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:325 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -5111,7 +5180,7 @@ msgstr "Elimina" #~ msgid "Remove {0} from my feeds?" #~ msgstr "Vols eliminar {0} dels teus canals?" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" msgstr "" @@ -5143,13 +5212,13 @@ msgstr "Vols eliminar el canal?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:332 +#: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Elimina dels meus canals" -#: src/components/FeedCard.tsx:315 +#: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Vols eliminar-lo dels teus canals?" @@ -5205,7 +5274,7 @@ msgid "Removed from my feeds" msgstr "Eliminat dels meus canals" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "Eliminat dels teus canals" @@ -5223,19 +5292,19 @@ msgstr "Elimina la publicació amb la citació" msgid "Replace with Discover" msgstr "Canvia amb Discover" -#: src/view/screens/Profile.tsx:217 +#: src/view/screens/Profile.tsx:210 msgid "Replies" msgstr "Respostes" -#: src/view/com/threadgate/WhoCanReply.tsx:66 +#: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" msgstr "" #: src/view/com/threadgate/WhoCanReply.tsx:123 -msgid "Replies on this thread are disabled" -msgstr "" +#~ msgid "Replies on this thread are disabled" +#~ msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:237 +#: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "Les respostes a aquest fil de debat estan deshabilitades" @@ -5295,8 +5364,8 @@ msgstr "Informa d'aquesta conversa" msgid "Report dialog" msgstr "Diàleg de l'informe" -#: src/view/screens/ProfileFeed.tsx:348 -#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:351 msgid "Report feed" msgstr "Informa del canal" @@ -5313,8 +5382,8 @@ msgstr "Informa del missatge" msgid "Report post" msgstr "Informa de la publicació" -#: src/screens/StarterPack/StarterPackScreen.tsx:469 -#: src/screens/StarterPack/StarterPackScreen.tsx:472 +#: src/screens/StarterPack/StarterPackScreen.tsx:476 +#: src/screens/StarterPack/StarterPackScreen.tsx:479 msgid "Report starter pack" msgstr "" @@ -5360,7 +5429,7 @@ msgstr "Republica" msgid "Repost" msgstr "Republica" -#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:418 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5480,12 +5549,12 @@ msgstr "Torna a intentar l'última acció, que ha donat error" #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 #: src/screens/Login/LoginForm.tsx:291 #: src/screens/Login/LoginForm.tsx:298 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/Onboarding/StepInterests/index.tsx:234 #: src/screens/Signup/index.tsx:245 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 @@ -5497,7 +5566,7 @@ msgstr "Torna-ho a provar" #~ msgstr "Torna-ho a provar" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:622 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Torna a la pàgina anterior" @@ -5507,7 +5576,7 @@ msgid "Returns to home page" msgstr "Torna a la pàgina d'inici" #: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/ProfileFeed.tsx:113 msgid "Returns to previous page" msgstr "Torna a la pàgina anterior" @@ -5516,7 +5585,8 @@ msgstr "Torna a la pàgina anterior" #~ msgstr "ENTORN DE PROVES. Les publicacions i els comptes no són permanents." #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/StarterPack/QrCodeDialog.tsx:190 +#: src/components/dialogs/ThreadgateEditor.tsx:88 +#: src/components/StarterPack/QrCodeDialog.tsx:184 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5525,7 +5595,7 @@ msgstr "Torna a la pàgina anterior" msgid "Save" msgstr "Desa" -#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/lightbox/Lightbox.tsx:135 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5547,8 +5617,8 @@ msgstr "Desa els canvis" msgid "Save handle change" msgstr "Desa el canvi d'identificador" -#: src/components/StarterPack/ShareDialog.tsx:163 -#: src/components/StarterPack/ShareDialog.tsx:170 +#: src/components/StarterPack/ShareDialog.tsx:150 +#: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" msgstr "" @@ -5556,12 +5626,12 @@ msgstr "" msgid "Save image crop" msgstr "Desa la imatge retallada" -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" msgstr "Desa-ho als meus canals" @@ -5569,7 +5639,7 @@ msgstr "Desa-ho als meus canals" msgid "Saved Feeds" msgstr "Canals desats" -#: src/view/com/lightbox/Lightbox.tsx:82 +#: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" msgstr "S'ha desat a la teva galeria d'imatges" @@ -5577,7 +5647,7 @@ msgstr "S'ha desat a la teva galeria d'imatges" #~ msgid "Saved to your camera roll." #~ msgstr "S'ha desat a la teva galeria d'imatges." -#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "S'ha desat als teus canals." @@ -5595,13 +5665,14 @@ msgid "Saves image crop settings" msgstr "Desa la configuració de retall d'imatges" #: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:82 +#: src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:372 #: src/view/com/notifications/FeedItem.tsx:397 msgid "Say hello!" msgstr "Digues hola!" #: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:96 msgid "Science" msgstr "Ciència" @@ -5651,7 +5722,7 @@ msgstr "Cerca totes les publicacions amb l'etiqueta {displayTag}" #~ msgid "Search for all posts with tag {tag}" #~ msgstr "Cerca totes les publicacions amb l'etiqueta {tag}" -#: src/screens/StarterPack/Wizard/index.tsx:467 +#: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -5814,7 +5885,7 @@ msgstr "Selecciona l'idioma de l'aplicació perquè el text predeterminat es mos msgid "Select your date of birth" msgstr "Selecciona la teva data de naixement" -#: src/screens/Onboarding/StepInterests/index.tsx:201 +#: src/screens/Onboarding/StepInterests/index.tsx:206 msgid "Select your interests from the options below" msgstr "Selecciona els teus interessos d'entre aquestes opcions" @@ -5913,7 +5984,7 @@ msgstr "Adreça del servidor" #~ msgid "Set Age" #~ msgstr "Estableix l'edat" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:307 msgid "Set birthdate" msgstr "Estableix la data de naixement" @@ -6038,9 +6109,9 @@ msgstr "Activitat sexual o nu eròtic." msgid "Sexually Suggestive" msgstr "Suggerent sexualment" -#: src/components/StarterPack/QrCodeDialog.tsx:180 -#: src/screens/StarterPack/StarterPackScreen.tsx:303 -#: src/screens/StarterPack/StarterPackScreen.tsx:458 +#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/screens/StarterPack/StarterPackScreen.tsx:312 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -6050,7 +6121,7 @@ msgstr "Suggerent sexualment" msgid "Share" msgstr "Comparteix" -#: src/view/com/lightbox/Lightbox.tsx:142 +#: src/view/com/lightbox/Lightbox.tsx:144 msgctxt "action" msgid "Share" msgstr "Comparteix" @@ -6069,30 +6140,36 @@ msgstr "Comparteix una dada divertida!" msgid "Share anyway" msgstr "Comparteix de totes maneres" -#: src/view/screens/ProfileFeed.tsx:358 -#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:361 msgid "Share feed" msgstr "Comparteix el canal" -#: src/screens/StarterPack/StarterPackScreen.tsx:462 +#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/screens/StarterPack/StarterPackScreen.tsx:469 msgid "Share link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "Comparteix l'enllaç" -#: src/components/StarterPack/ShareDialog.tsx:100 +#: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:296 +#: src/components/StarterPack/ShareDialog.tsx:134 +#: src/components/StarterPack/ShareDialog.tsx:145 +msgid "Share QR code" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:305 msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:112 +#: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -6150,7 +6227,7 @@ msgstr "Mostra les respostes ocultes" msgid "Show less like this" msgstr "Mostra'n menys com aquest" -#: src/view/com/post-thread/PostThreadItem.tsx:533 +#: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" @@ -6328,17 +6405,17 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "Tanca la sessió de Bluesky de {0}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:240 -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Salta aquest pas" -#: src/screens/Onboarding/StepInterests/index.tsx:237 +#: src/screens/Onboarding/StepInterests/index.tsx:242 msgid "Skip this flow" msgstr "Salta aquest flux" @@ -6347,18 +6424,18 @@ msgstr "Salta aquest flux" #~ msgstr "Verificació per SMS" #: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:85 msgid "Software Dev" msgstr "Desenvolupament de programari" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 -#: src/view/com/threadgate/WhoCanReply.tsx:67 -#: src/view/com/threadgate/WhoCanReply.tsx:124 +#: src/components/WhoCanReply.tsx:72 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "Algunes persones poden respondre" #: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "" +#~ msgid "Some subtitle" +#~ msgstr "" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -6374,7 +6451,7 @@ msgid "Something went wrong, please try again" msgstr "Alguna cosa ha fallat, torna-ho a provar" #: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 +#: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Alguna cosa ha fallat, torna-ho a provar." @@ -6418,6 +6495,7 @@ msgid "Spam; excessive mentions or replies" msgstr "Brossa; excessives mencions o respostes" #: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:97 msgid "Sports" msgstr "Esports" @@ -6443,7 +6521,7 @@ msgstr "Comença a xatejar" #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -6451,14 +6529,18 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:214 msgid "Starter Packs" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + #: src/view/screens/Settings/index.tsx:862 #~ msgid "Status page" #~ msgstr "Pàgina d'estat" @@ -6588,6 +6670,7 @@ msgid "Tap to view fully" msgstr "Toca per a veure-ho completament" #: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:98 msgid "Tech" msgstr "Tecnologia" @@ -6640,10 +6723,10 @@ msgstr "Això conté els següents:" msgid "That handle is already taken." msgstr "Aquest identificador ja està agafat." -#: src/screens/StarterPack/StarterPackScreen.tsx:100 -#: src/screens/StarterPack/StarterPackScreen.tsx:101 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:102 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/Wizard/index.tsx:106 +#: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." msgstr "" @@ -6664,7 +6747,7 @@ msgstr "Les directrius de la comunitat han estat traslladades a <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "La política de drets d'autoria ha estat traslladada a <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6693,7 +6776,7 @@ msgstr "És possible que la publicació s'hagi esborrat." msgid "The Privacy Policy has been moved to <0/>" msgstr "La política de privacitat ha estat traslladada a <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:589 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6718,7 +6801,7 @@ 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:542 +#: src/view/screens/ProfileFeed.tsx:544 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." @@ -6728,7 +6811,7 @@ msgstr "Hi ha hagut un problema per a eliminar aquest canal, comprova la teva co #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: 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." @@ -6741,7 +6824,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:233 +#: src/view/screens/ProfileFeed.tsx:234 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6799,6 +6882,7 @@ msgstr "Hi ha hagut un problema en obtenir les teves contrasenyes d'aplicació" msgid "There was an issue! {0}" msgstr "Hi ha hagut un problema! {0}" +#: src/components/WhoCanReply.tsx:116 #: src/view/screens/ProfileList.tsx:335 #: src/view/screens/ProfileList.tsx:349 #: src/view/screens/ProfileList.tsx:363 @@ -6902,7 +6986,7 @@ msgstr "Aquest canal està rebent moltes visites actualment i està temporalment msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "Aquest canal està buit! Necessites seguir més usuaris o modificar la teva configuració d'idiomes." -#: src/view/screens/ProfileFeed.tsx:472 +#: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" @@ -7025,7 +7109,7 @@ msgstr "Aquest usuari està inclòs a la llista <0>{0} que has silenciat." #~ msgid "This user is included the <0/> list which you have muted." #~ msgstr "Aquest usuari està inclós a la llista <0/> que tens silenciada" -#: src/components/NewskieDialog.tsx:53 +#: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." msgstr "" @@ -7054,6 +7138,10 @@ msgstr "Preferències dels fils de debat" msgid "Thread Preferences" msgstr "Preferències dels fils de debat" +#: src/components/WhoCanReply.tsx:109 +msgid "Thread settings updated" +msgstr "" + #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "Mode fils de debat" @@ -7082,7 +7170,7 @@ msgstr "Commuta entre les opcions de paraules silenciades." msgid "Toggle dropdown" msgstr "Commuta el menú desplegable" -#: src/screens/Moderation/index.tsx:332 +#: src/screens/Moderation/index.tsx:336 msgid "Toggle to enable or disable adult content" msgstr "Commuta per a habilitar o deshabilitar el contingut per a adults" @@ -7097,8 +7185,8 @@ msgstr "Transformacions" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: 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 msgid "Translate" @@ -7113,6 +7201,10 @@ msgstr "Torna-ho a provar" #~ msgid "Try again" #~ msgstr "Torna-ho a provar" +#: src/screens/Onboarding/state.ts:99 +msgid "TV" +msgstr "" + #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" msgstr "Autenticació de dos factors" @@ -7142,7 +7234,7 @@ msgstr "Deixa de silenciar la llista" msgid "Unable to contact your service. Please check your Internet connection." msgstr "No es pot contactar amb el teu servei. Comprova la teva connexió a internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:513 +#: src/screens/StarterPack/StarterPackScreen.tsx:520 msgid "Unable to delete" msgstr "" @@ -7209,7 +7301,7 @@ msgstr "Deixa de seguir el compte" #~ msgid "Unlike" #~ msgstr "Desfés el m'agrada" -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Unlike this feed" msgstr "Desfés el m'agrada a aquest canal" @@ -7248,12 +7340,12 @@ msgstr "Deixa de silenciar la conversa" msgid "Unmute thread" msgstr "Deixa de silenciar el fil de debat" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Deixa de fixar" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 msgid "Unpin from home" msgstr "Deixa de fixar a l'inici" @@ -7439,7 +7531,7 @@ msgstr "Nom d'usuari o correu" msgid "Users" msgstr "Usuaris" -#: src/view/com/threadgate/WhoCanReply.tsx:274 +#: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" msgstr "usuaris seguits per <0/>" @@ -7450,7 +7542,7 @@ msgstr "usuaris seguits per <0/>" msgid "Users I follow" msgstr "Els usuaris als que segueixo" -#: src/view/com/modals/Threadgate.tsx:109 +#: src/components/dialogs/ThreadgateEditor.tsx:132 msgid "Users in \"{0}\"" msgstr "Usuaris a \"{0}\"" @@ -7508,6 +7600,7 @@ msgid "Version {appVersion} {bundleInfo}" msgstr "Versió {appVersion} {bundleInfo}" #: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:88 msgid "Video Games" msgstr "Videojocs" @@ -7559,7 +7652,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:583 +#: src/view/screens/ProfileFeed.tsx:585 msgid "View users who like this feed" msgstr "Veure els usuaris a qui els agrada aquest canal" @@ -7623,11 +7716,11 @@ msgstr "Recomanem evitar les paraules habituals que apareixen en moltes publicac msgid "We were unable to load your birth date preferences. Please try again." msgstr "No hem pogut carregar les teves preferències de data de naixement. Torna-ho a provar." -#: src/screens/Moderation/index.tsx:385 +#: src/screens/Moderation/index.tsx:409 msgid "We were unable to load your configured labelers at this time." msgstr "En aquest moment no hem pogut carregar els teus etiquetadors configurats." -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:143 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "No ens hem pogut connectar. Torna-ho a provar per a continuar configurant el teu compte. Si continua fallant, pots ometre aquest flux." @@ -7639,7 +7732,7 @@ msgstr "T'informarem quan el teu compte estigui llest." #~ msgid "We'll look into your appeal promptly." #~ msgstr "Analitzarem la teva apel·lació ràpidament." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:148 msgid "We'll use this to help customize your experience." msgstr "Ho farem servir per a personalitzar la teva experiència." @@ -7688,7 +7781,11 @@ msgstr "Bentornat!" #~ msgid "Welcome to <0>Bluesky" #~ msgstr "Us donem la benvinguda a <0>Bluesky" -#: src/screens/Onboarding/StepInterests/index.tsx:135 +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" msgstr "Quins són els teus interessos?" @@ -7722,17 +7819,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/view/com/modals/Threadgate.tsx:69 -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Who can reply" msgstr "Qui hi pot respondre" -#: src/view/com/threadgate/WhoCanReply.tsx:206 +#: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:210 +#: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" msgstr "" @@ -7788,6 +7883,7 @@ msgid "Write your reply" msgstr "Escriu la teva resposta" #: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:100 msgid "Writers" msgstr "Escriptors" @@ -7810,7 +7906,7 @@ msgstr "Sí" msgid "Yes, deactivate" msgstr "Sí, desactiva'l" -#: src/screens/StarterPack/StarterPackScreen.tsx:525 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Yes, delete this starter pack" msgstr "" @@ -7826,6 +7922,10 @@ msgstr "Ahir, {time}" msgid "you" msgstr "" +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + #: src/screens/SignupQueued.tsx:136 msgid "You are in line." msgstr "Estàs a la cua." @@ -7975,6 +8075,10 @@ msgstr "Encara no has silenciat cap compte. per a silenciar un compte, ves al se msgid "You have reached the end" msgstr "Has arribat al final" +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +msgid "You haven't created a starter pack yet!" +msgstr "" + #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "Encara no has silenciat cap paraula ni etiqueta" @@ -8007,15 +8111,15 @@ msgstr "Has de tenir 13 anys o més per a registrar-te" #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Has de tenir 18 anys o més per a habilitar el contingut per a adults" -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:62 +#: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." msgstr "" @@ -8067,7 +8171,7 @@ msgstr "" msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po index 6544c412dc..7ca4767d63 100644 --- a/src/locale/locales/de/messages.po +++ b/src/locale/locales/de/messages.po @@ -67,7 +67,7 @@ msgstr "" msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:215 +#: src/components/FeedCard.tsx:216 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -88,7 +88,11 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:343 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +msgid "{0} joined this week" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:350 msgid "{0} people have used this starter pack!" msgstr "" @@ -132,7 +136,7 @@ msgstr "" msgid "{diffSeconds, plural, one {second} other {seconds}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" msgstr "" @@ -155,7 +159,7 @@ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:586 +#: src/view/screens/ProfileFeed.tsx:588 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -163,11 +167,11 @@ msgstr "" msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} ungelesen" -#: src/components/NewskieDialog.tsx:92 +#: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" msgstr "" -#: src/components/NewskieDialog.tsx:87 +#: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "" @@ -175,17 +179,27 @@ msgstr "" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:290 +#: 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" +#~ 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 "" + +#: 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 "" +#~ 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 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -195,11 +209,15 @@ msgstr "" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" +#: 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 "" -#: src/screens/StarterPack/Wizard/index.tsx:478 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -228,6 +246,10 @@ msgstr "" #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "<0>Willkommen bei<1>Bluesky" +#: src/screens/StarterPack/Wizard/index.tsx:457 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠Ungültiger Handle" @@ -326,11 +348,11 @@ msgstr "Stummschaltung für Konto aufgehoben" msgid "Add" msgstr "Hinzufügen" -#: src/screens/StarterPack/Wizard/index.tsx:539 +#: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:56 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" msgstr "" @@ -394,14 +416,14 @@ 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 "" +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:464 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" msgstr "" @@ -413,7 +435,7 @@ msgstr "" msgid "Add the following DNS record to your domain:" msgstr "Füge den folgenden DNS-Eintrag zu deiner Domain hinzu:" -#: src/components/FeedCard.tsx:300 +#: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" msgstr "" @@ -452,16 +474,20 @@ msgstr "Inhalt für Erwachsene" #~ 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 "" + #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "" -#: src/screens/Moderation/index.tsx:375 +#: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "Erweitert" -#: src/screens/StarterPack/StarterPackScreen.tsx:271 +#: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "All accounts have been followed!" msgstr "" @@ -526,16 +552,16 @@ msgstr "Eine E-Mail wurde an deine vorherige Adresse {0} gesendet. Sie enthält msgid "An error occured" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +#: 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 "" +#~ msgid "An error occurred while saving the image." +#~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:76 -#: src/components/StarterPack/ShareDialog.tsx:91 +#: src/components/StarterPack/QrCodeDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "" @@ -543,7 +569,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:275 msgid "An error occurred while trying to follow all" msgstr "" @@ -560,16 +586,17 @@ msgstr "Ein Problem, das hier nicht aufgelistet ist" msgid "An issue occurred, please try again." msgstr "Es ist ein Problem aufgetreten, bitte versuche es erneut." -#: src/screens/Onboarding/StepInterests/index.tsx:194 +#: src/screens/Onboarding/StepInterests/index.tsx:199 msgid "an unknown error occurred" msgstr "" +#: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:280 -#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "und" #: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:79 msgid "Animals" msgstr "Tiere" @@ -654,7 +681,7 @@ msgstr "Erscheinungsbild" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -682,7 +709,7 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Bist du sicher, dass du {0} von deinen Feeds entfernen möchtest?" -#: src/components/FeedCard.tsx:317 +#: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -703,6 +730,7 @@ msgid "Are you writing in <0>{0}?" msgstr "Schreibst du auf <0>{0}?" #: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:80 msgid "Art" msgstr "Kunst" @@ -729,7 +757,7 @@ msgstr "Mindestens 3 Zeichen" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:312 +#: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Zurück" @@ -795,7 +823,7 @@ msgstr "Diese Konten blockieren?" msgid "Blocked" msgstr "Blockiert" -#: src/screens/Moderation/index.tsx:267 +#: src/screens/Moderation/index.tsx:270 msgid "Blocked accounts" msgstr "Blockierte Konten" @@ -856,11 +884,11 @@ msgstr "Bluesky ist ein offenes Netzwerk, in dem du deinen Hosting-Anbieter wäh #~ msgid "Bluesky is public." #~ msgstr "Bluesky ist öffentlich." -#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:533 +#: 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." @@ -873,6 +901,7 @@ msgid "Blur images and filter from feeds" msgstr "Bilder verwischen und aus Feeds herausfiltern" #: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:81 msgid "Books" msgstr "Bücher" @@ -1090,17 +1119,25 @@ 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\"" +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "Wähle \"Alle\" oder \"Niemand\"" #: src/view/screens/Settings/index.tsx:697 #~ msgid "Choose a new Bluesky username or create" #~ msgstr "Wähle oder erstelle einen neuen Bluesky-Benutzernamen" -#: src/components/StarterPack/ProfileStarterPacks.tsx:288 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:187 +msgid "Choose People" +msgstr "" + #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Service wählen" @@ -1118,6 +1155,11 @@ msgstr "Wähle die Algorithmen aus, welche deine benutzerdefinierten Feeds gener msgid "Choose this color as your avatar" msgstr "" +#: 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" @@ -1194,18 +1236,18 @@ msgstr "" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/NewskieDialog.tsx:120 -#: src/components/NewskieDialog.tsx:127 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:121 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:127 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: 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:189 msgid "Close" msgstr "Schließen" -#: src/components/Dialog/index.web.tsx:113 -#: src/components/Dialog/index.web.tsx:251 +#: src/components/Dialog/index.web.tsx:116 +#: src/components/Dialog/index.web.tsx:254 msgid "Close active dialog" msgstr "Aktiven Dialog schließen" @@ -1272,10 +1314,12 @@ msgid "Collapses list of users for a given notification" msgstr "Klappt die Liste der Benutzer für eine bestimmte Meldung zusammen" #: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:82 msgid "Comedy" msgstr "Komödie" #: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:83 msgid "Comics" msgstr "Comics" @@ -1347,11 +1391,11 @@ msgstr "Bestätige das Löschen des Kontos" #~ 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:301 +#: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "Bestätige dein Alter:" -#: src/screens/Moderation/index.tsx:292 +#: src/screens/Moderation/index.tsx:295 msgid "Confirm your birthdate" msgstr "Bestätige dein Geburtsdatum" @@ -1389,7 +1433,7 @@ msgstr "Inhalt blockiert" #~ msgid "Content Filtering" #~ msgstr "Inhaltsfilterung" -#: src/screens/Moderation/index.tsx:285 +#: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "Inhaltsfilterung" @@ -1418,7 +1462,7 @@ msgstr "Inhaltswarnungen" msgid "Context menu backdrop, click to close the menu." msgstr "Hintergrund des Kontextmenüs, klicken, um das Menü zu schließen" -#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepInterests/index.tsx:258 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Fortfahren" @@ -1431,7 +1475,7 @@ msgstr "Fortfahren mit {0} (aktuell angemeldet)" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:251 msgid "Continue to next step" @@ -1479,7 +1523,7 @@ msgstr "" msgid "Copies app password" msgstr "Kopiert das App-Passwort" -#: src/components/StarterPack/QrCodeDialog.tsx:180 +#: src/components/StarterPack/QrCodeDialog.tsx:174 #: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Kopieren" @@ -1493,7 +1537,11 @@ msgstr "{} kopieren" msgid "Copy code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 +#: src/components/StarterPack/ShareDialog.tsx:123 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" msgstr "" @@ -1520,7 +1568,7 @@ msgstr "" msgid "Copy post text" msgstr "Beitragstext kopieren" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" msgstr "" @@ -1533,7 +1581,7 @@ msgstr "Urheberrechtsbestimmungen" msgid "Could not leave chat" msgstr "" -#: src/view/screens/ProfileFeed.tsx:102 +#: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" msgstr "Feed konnte nicht geladen werden" @@ -1553,7 +1601,7 @@ msgstr "" #~ msgid "Could not unmute chat" #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:270 +#: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" msgstr "" @@ -1566,17 +1614,17 @@ msgstr "Ein neues Konto erstellen" msgid "Create a new Bluesky account" msgstr "Erstelle ein neues Bluesky-Konto" -#: src/components/StarterPack/QrCodeDialog.tsx:157 +#: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:257 +#: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +#: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" msgstr "" @@ -1607,8 +1655,8 @@ msgid "Create new account" msgstr "Neues Konto erstellen" #: src/components/StarterPack/ShareDialog.tsx:158 -msgid "Create QR code" -msgstr "" +#~ msgid "Create QR code" +#~ msgstr "" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1631,6 +1679,7 @@ msgstr "Erstellt {0}" #~ msgstr "Erzeugt eine Karte mit Vorschaubild und verlinkt auf {url}" #: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:84 msgid "Culture" msgstr "Kultur" @@ -1687,9 +1736,9 @@ msgid "Debug panel" msgstr "Debug-Panel" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:449 -#: src/screens/StarterPack/StarterPackScreen.tsx:528 -#: src/screens/StarterPack/StarterPackScreen.tsx:608 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1750,12 +1799,12 @@ msgstr "Mein Konto Löschen…" msgid "Delete post" msgstr "Beitrag löschen" -#: src/screens/StarterPack/StarterPackScreen.tsx:443 -#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:450 +#: src/screens/StarterPack/StarterPackScreen.tsx:606 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:494 +#: src/screens/StarterPack/StarterPackScreen.tsx:501 msgid "Delete starter pack?" msgstr "" @@ -1827,7 +1876,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:68 #: src/screens/Messages/Settings.tsx:140 #: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:341 +#: src/screens/Moderation/index.tsx:346 msgid "Disabled" msgstr "Deaktiviert" @@ -1843,8 +1892,8 @@ msgstr "Verwerfen" msgid "Discard draft?" msgstr "Entwurf löschen?" -#: src/screens/Moderation/index.tsx:518 -#: src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:542 +#: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" msgstr "Apps daran hindern, abgemeldeten Nutzern mein Konto zu zeigen" @@ -1895,6 +1944,7 @@ msgstr "Domain verifiziert!" #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/ThreadgateEditor.tsx:88 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 @@ -1914,8 +1964,6 @@ msgstr "Erledigt" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 #: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/Threadgate.tsx:136 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 #: src/view/screens/PreferencesThreads.tsx:162 @@ -1931,7 +1979,7 @@ msgstr "Erledigt{extraText}" #~ msgid "Double tap to sign in" #~ msgstr "Doppeltippen zum Anmelden" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 msgid "Download Bluesky" msgstr "" @@ -1992,9 +2040,9 @@ msgstr "z.B. Nutzer, die wiederholt mit Werbung antworten." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Jeder Code funktioniert einmal. Du erhältst regelmäßig neue Einladungscodes." -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:522 -#: src/screens/StarterPack/Wizard/index.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" @@ -2010,7 +2058,7 @@ msgstr "Bearbeiten" msgid "Edit avatar" msgstr "Avatar bearbeiten" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "" @@ -2038,7 +2086,7 @@ msgstr "Meine Feeds bearbeiten" msgid "Edit my profile" msgstr "Mein Profil bearbeiten" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "" @@ -2057,7 +2105,7 @@ msgstr "Profil bearbeiten" #~ msgid "Edit Saved Feeds" #~ msgstr "Gespeicherte Feeds bearbeiten" -#: src/screens/StarterPack/StarterPackScreen.tsx:430 +#: src/screens/StarterPack/StarterPackScreen.tsx:437 msgid "Edit starter pack" msgstr "" @@ -2065,8 +2113,7 @@ msgstr "" msgid "Edit User List" msgstr "Benutzerliste bearbeiten" -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" msgstr "" @@ -2083,9 +2130,14 @@ msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:86 msgid "Education" msgstr "Bildung" +#: src/components/dialogs/ThreadgateEditor.tsx:98 +msgid "Either choose \"Everybody\" or \"Nobody\"" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" @@ -2134,7 +2186,7 @@ msgstr "" msgid "Enable {0} only" msgstr "Nur {0} aktivieren" -#: src/screens/Moderation/index.tsx:329 +#: src/screens/Moderation/index.tsx:333 msgid "Enable adult content" msgstr "Inhalte für Erwachsene aktivieren" @@ -2170,7 +2222,7 @@ msgstr "Nur von dieser Seite erlauben" #: src/screens/Messages/Settings.tsx:131 #: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:339 +#: src/screens/Moderation/index.tsx:344 msgid "Enabled" msgstr "Aktiviert" @@ -2240,19 +2292,18 @@ msgstr "" msgid "Error receiving captcha response." msgstr "Fehler beim Empfang der Captcha-Antwort." -#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Fehler:" -#: src/view/com/modals/Threadgate.tsx:79 +#: src/components/dialogs/ThreadgateEditor.tsx:102 msgid "Everybody" msgstr "Alle" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#: src/view/com/threadgate/WhoCanReply.tsx:64 -#: src/view/com/threadgate/WhoCanReply.tsx:121 -#: src/view/com/threadgate/WhoCanReply.tsx:235 +#: src/components/WhoCanReply.tsx:69 +#: src/components/WhoCanReply.tsx:240 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "" @@ -2347,8 +2398,8 @@ msgstr "Externe Medienpräferenzen" msgid "Failed to create app password." msgstr "Das App-Passwort konnte nicht erstellt werden." -#: src/screens/StarterPack/Wizard/index.tsx:241 -#: src/screens/StarterPack/Wizard/index.tsx:249 +#: src/screens/StarterPack/Wizard/index.tsx:230 +#: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" msgstr "" @@ -2364,7 +2415,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "Beitrag konnte nicht gelöscht werden, bitte versuche es erneut" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/StarterPackScreen.tsx:569 msgid "Failed to delete starter pack" msgstr "" @@ -2400,7 +2451,7 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" msgstr "Das Speichern des Bildes ist fehlgeschlagen: {0}" @@ -2421,7 +2472,7 @@ msgstr "" msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:280 +#: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "" @@ -2443,7 +2494,7 @@ msgstr "Feed von {0}" #~ msgid "Feed offline" #~ msgstr "Feed offline" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "" @@ -2453,10 +2504,9 @@ msgid "Feedback" msgstr "Feedback" #: src/Navigation.tsx:320 -#: src/screens/StarterPack/Wizard/index.tsx:201 #: src/view/screens/Feeds.tsx:445 #: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:220 +#: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:373 #: src/view/shell/Drawer.tsx:493 @@ -2476,7 +2526,7 @@ msgstr "Feeds sind benutzerdefinierte Algorithmen, die Nutzer mit ein wenig Prog #~ msgid "Feeds can be topical as well!" #~ msgstr "Die Feeds können auch auf einem Thema basieren!" -#: src/components/FeedCard.tsx:277 +#: src/components/FeedCard.tsx:282 msgid "Feeds updated!" msgstr "" @@ -2526,7 +2576,7 @@ msgstr "Passe die Inhalte auf Deinem Following-Feed an." msgid "Fine-tune the discussion threads." msgstr "Passe die Diskussionsstränge an." -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" msgstr "" @@ -2574,8 +2624,8 @@ msgstr "" msgid "Follow Account" msgstr "Accounts folgen" -#: src/screens/StarterPack/StarterPackScreen.tsx:308 -#: src/screens/StarterPack/StarterPackScreen.tsx:315 +#: src/screens/StarterPack/StarterPackScreen.tsx:317 +#: src/screens/StarterPack/StarterPackScreen.tsx:324 msgid "Follow all" msgstr "" @@ -2623,7 +2673,7 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/view/com/modals/Threadgate.tsx:101 +#: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" msgstr "Benutzer, denen ich folge" @@ -2687,6 +2737,7 @@ msgid "Follows You" msgstr "Folgt dir" #: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:87 msgid "Food" msgstr "Essen" @@ -2736,7 +2787,7 @@ msgstr "Aus <0/>" msgid "Gallery" msgstr "Galerie" -#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" msgstr "" @@ -2766,7 +2817,7 @@ msgstr "Eklatante Verstöße gegen Gesetze oder Nutzungsbedingungen" #: src/view/com/auth/LoggedOut.tsx:78 #: src/view/com/auth/LoggedOut.tsx:79 #: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:133 msgid "Go back" @@ -2775,9 +2826,9 @@ msgstr "Gehe zurück" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:628 #: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Gehe zurück" @@ -2791,7 +2842,7 @@ msgstr "Gehe zurück" msgid "Go back to previous step" msgstr "Zum vorherigen Schritt zurückkehren" -#: src/screens/StarterPack/Wizard/index.tsx:313 +#: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" msgstr "" @@ -2936,7 +2987,7 @@ msgstr "Hmm, der Feed-Server hat eine schlechte Antwort gegeben. Bitte informier msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, wir haben Probleme, diesen Feed zu finden. Möglicherweise wurde er gelöscht." -#: src/screens/Moderation/index.tsx:59 +#: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "" @@ -3032,7 +3083,7 @@ msgstr "Bild-Alt-Text" #~ msgid "Image options" #~ msgstr "Bild-Optionen" -#: src/components/StarterPack/ShareDialog.tsx:88 +#: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" msgstr "" @@ -3133,7 +3184,7 @@ msgstr "Einladungscodes: {0} verfügbar" msgid "Invite codes: 1 available" msgstr "Einladungscodes: 1 verfügbar" -#: src/components/StarterPack/ShareDialog.tsx:109 +#: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" msgstr "" @@ -3149,7 +3200,7 @@ msgstr "" #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "Es zeigt die Beiträge der Personen an, denen du folgst, sobald sie erscheinen." -#: src/screens/StarterPack/Wizard/index.tsx:473 +#: 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 "" @@ -3157,8 +3208,8 @@ msgstr "" msgid "Jobs" msgstr "Jobs" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 msgid "Join Bluesky" msgstr "" @@ -3167,6 +3218,7 @@ msgid "Join the conversation" msgstr "" #: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:89 msgid "Journalism" msgstr "Journalismus" @@ -3182,7 +3234,7 @@ msgstr "" msgid "Labeled by the author." msgstr "" -#: src/view/screens/Profile.tsx:214 +#: src/view/screens/Profile.tsx:207 msgid "Labels" msgstr "" @@ -3246,7 +3298,7 @@ msgstr "" msgid "Learn more about this warning" msgstr "Erfahre mehr über diese Warnung" -#: src/screens/Moderation/index.tsx:549 +#: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." msgstr "Erfahre mehr darüber, was auf Bluesky öffentlich ist." @@ -3287,7 +3339,7 @@ msgstr "noch übrig." 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." -#: src/components/StarterPack/ProfileStarterPacks.tsx:293 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" msgstr "" @@ -3314,7 +3366,7 @@ msgstr "Licht" #~ msgstr "Liken" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Diesen Feed liken" @@ -3352,7 +3404,7 @@ msgstr "hat deinen benutzerdefinierten Feed geliked" msgid "liked your post" msgstr "hat deinen Beitrag geliked" -#: src/view/screens/Profile.tsx:219 +#: src/view/screens/Profile.tsx:212 msgid "Likes" msgstr "Likes" @@ -3398,8 +3450,8 @@ msgid "List unmuted" msgstr "Listenstummschaltung aufgehoben" #: src/Navigation.tsx:122 +#: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/screens/Profile.tsx:222 #: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 @@ -3433,7 +3485,7 @@ msgstr "Neue Mitteilungen laden" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:493 +#: src/view/screens/ProfileFeed.tsx:494 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Neue Beiträge laden" @@ -3458,7 +3510,7 @@ msgstr "" msgid "Log out" msgstr "Abmelden" -#: src/screens/Moderation/index.tsx:442 +#: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" msgstr "Sichtbarkeit für abgemeldete Benutzer" @@ -3490,7 +3542,7 @@ msgstr "" msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +#: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" msgstr "" @@ -3516,15 +3568,15 @@ msgstr "" #~ msgstr "Darf nur Buchstaben und Zahlen enthalten" #: src/view/screens/AccessibilitySettings.tsx:102 -#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:211 msgid "Media" msgstr "Medien" -#: src/view/com/threadgate/WhoCanReply.tsx:270 +#: src/components/WhoCanReply.tsx:275 msgid "mentioned users" msgstr "erwähnte Benutzer" -#: src/view/com/modals/Threadgate.tsx:96 +#: src/components/dialogs/ThreadgateEditor.tsx:119 msgid "Mentioned users" msgstr "Erwähnte Benutzer" @@ -3575,7 +3627,7 @@ msgid "Misleading Account" msgstr "Irreführender Account" #: src/Navigation.tsx:127 -#: src/screens/Moderation/index.tsx:104 +#: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "Moderation" @@ -3608,7 +3660,7 @@ msgstr "Moderationsliste erstellt" msgid "Moderation list updated" msgstr "Moderationsliste aktualisiert" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:246 msgid "Moderation lists" msgstr "Moderationslisten" @@ -3625,7 +3677,7 @@ msgstr "Moderationseinstellungen" msgid "Moderation states" msgstr "" -#: src/screens/Moderation/index.tsx:215 +#: src/screens/Moderation/index.tsx:218 msgid "Moderation tools" msgstr "Moderationswerkzeuge" @@ -3634,7 +3686,7 @@ msgstr "Moderationswerkzeuge" msgid "Moderator has chosen to set a general warning on the content." msgstr "Der Moderator hat beschlossen, eine allgemeine Warnung vor dem Inhalt auszusprechen." -#: src/view/com/post-thread/PostThreadItem.tsx:567 +#: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" msgstr "Mehr" @@ -3650,6 +3702,10 @@ msgstr "Mehr Optionen" msgid "Most-liked replies first" msgstr "Beliebteste Antworten zuerst" +#: src/screens/Onboarding/state.ts:90 +msgid "Movies" +msgstr "" + #: src/view/com/auth/create/Step2.tsx:122 #~ msgid "Must be at least 3 characters" #~ msgstr "Muss mindestens 3 Zeichen lang sein" @@ -3727,7 +3783,7 @@ msgstr "Wörter und Tags stummschalten" msgid "Muted" msgstr "Stummgeschaltet" -#: src/screens/Moderation/index.tsx:255 +#: src/screens/Moderation/index.tsx:258 msgid "Muted accounts" msgstr "Stummgeschaltete Konten" @@ -3744,7 +3800,7 @@ msgstr "Bei stummgeschalteten Konten werden dazugehörige Beiträge aus deinem F msgid "Muted by \"{0}\"" msgstr "Stummgeschaltet über \"{0}\"" -#: src/screens/Moderation/index.tsx:231 +#: src/screens/Moderation/index.tsx:234 msgid "Muted words & tags" msgstr "Stummgeschaltete Wörter und Tags" @@ -3794,6 +3850,7 @@ msgid "Name or Description Violates Community Standards" msgstr "" #: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:91 msgid "Nature" msgstr "Natur" @@ -3871,8 +3928,8 @@ msgstr "Neuer Beitrag" #: src/view/screens/Feeds.tsx:580 #: src/view/screens/Notifications.tsx:193 -#: src/view/screens/Profile.tsx:485 -#: src/view/screens/ProfileFeed.tsx:427 +#: src/view/screens/Profile.tsx:478 +#: src/view/screens/ProfileFeed.tsx:428 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:277 @@ -3884,7 +3941,7 @@ msgctxt "action" msgid "New Post" msgstr "Neuer Beitrag" -#: src/components/NewskieDialog.tsx:71 +#: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "" @@ -3897,6 +3954,7 @@ msgid "Newest replies first" msgstr "Neueste Antworten zuerst" #: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:92 msgid "News" msgstr "Aktuelles" @@ -3907,10 +3965,10 @@ msgstr "Aktuelles" #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:258 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:195 -#: src/screens/StarterPack/Wizard/index.tsx:372 -#: src/screens/StarterPack/Wizard/index.tsx:379 +#: src/screens/StarterPack/Wizard/index.tsx:184 +#: src/screens/StarterPack/Wizard/index.tsx:188 +#: src/screens/StarterPack/Wizard/index.tsx:359 +#: src/screens/StarterPack/Wizard/index.tsx:366 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3934,7 +3992,7 @@ msgstr "Nächstes Bild" msgid "No" msgstr "Nein" -#: src/view/screens/ProfileFeed.tsx:560 +#: src/view/screens/ProfileFeed.tsx:562 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Keine Beschreibung" @@ -3948,7 +4006,7 @@ msgstr "" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." msgstr "" @@ -4021,11 +4079,11 @@ msgstr "" msgid "No thanks" msgstr "Nein danke" -#: src/view/com/modals/Threadgate.tsx:85 +#: src/components/dialogs/ThreadgateEditor.tsx:108 msgid "Nobody" msgstr "Niemand" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Nobody can reply" msgstr "" @@ -4034,7 +4092,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -4047,7 +4105,7 @@ msgstr "Nicht-sexuelle Nacktheit" #~ msgstr "Unzutreffend." #: src/Navigation.tsx:117 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Nicht gefunden" @@ -4062,7 +4120,7 @@ msgstr "Im Moment nicht" msgid "Note about sharing" msgstr "" -#: src/screens/Moderation/index.tsx:540 +#: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Hinweis: Bluesky ist ein offenes und öffentliches Netzwerk. Diese Einstellung schränkt lediglich die Sichtbarkeit deiner Inhalte in der Bluesky-App und auf der Website ein. Andere Apps respektieren diese Einstellung möglicherweise nicht. Deine Inhalte werden abgemeldeten Nutzern möglicherweise weiterhin in anderen Apps und Websites angezeigt." @@ -4122,7 +4180,7 @@ msgstr "Aus" msgid "Oh no!" msgstr "Oh nein!" -#: src/screens/Onboarding/StepInterests/index.tsx:133 +#: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." msgstr "Oh nein, da ist etwas schief gelaufen." @@ -4158,7 +4216,7 @@ msgstr "Bei einem oder mehreren Bildern fehlt der Alt-Text." msgid "Only .jpg and .png files are supported" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:239 +#: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" msgstr "" @@ -4175,10 +4233,10 @@ msgid "Oops, something went wrong!" msgstr "Ups, da ist etwas schief gelaufen!" #: src/components/Lists.tsx:191 -#: src/components/StarterPack/ProfileStarterPacks.tsx:302 -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Huch!" @@ -4208,7 +4266,7 @@ msgstr "" msgid "Open emoji picker" msgstr "Emoji-Picker öffnen" -#: src/view/screens/ProfileFeed.tsx:295 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Open feed options menu" msgstr "" @@ -4220,7 +4278,7 @@ msgstr "Links mit In-App-Browser öffnen" msgid "Open message options" msgstr "" -#: src/screens/Moderation/index.tsx:227 +#: src/screens/Moderation/index.tsx:230 msgid "Open muted words and tags settings" msgstr "Einstellungen für stummgeschaltete Wörter und Tags öffnen" @@ -4236,7 +4294,7 @@ msgstr "Navigation öffnen" msgid "Open post options menu" msgstr "Beitragsoptionsmenü öffnen" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 msgid "Open starter pack menu" msgstr "" @@ -4253,6 +4311,10 @@ msgstr "" msgid "Opens {numItems} options" msgstr "Öffnet {numItems} Optionen" +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" msgstr "" @@ -4419,7 +4481,7 @@ msgstr "Option {0} von {numItems}" msgid "Optionally provide additional information below:" msgstr "" -#: src/view/com/modals/Threadgate.tsx:92 +#: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" msgstr "Oder kombiniere diese Optionen:" @@ -4479,7 +4541,6 @@ msgstr "Passwort aktualisiert!" msgid "Pause" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:194 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "" @@ -4492,32 +4553,37 @@ msgstr "Personen gefolgt von @{0}" msgid "People following @{0}" msgstr "Personen, die @{0} folgen" -#: src/view/com/lightbox/Lightbox.tsx:67 +#: src/view/com/lightbox/Lightbox.tsx:69 msgid "Permission to access camera roll is required." msgstr "Die Erlaubnis zum Zugriff auf die Kamerarolle ist erforderlich." -#: src/view/com/lightbox/Lightbox.tsx:73 +#: src/view/com/lightbox/Lightbox.tsx:75 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." -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:93 msgid "Pets" msgstr "Haustiere" +#: src/screens/Onboarding/state.ts:94 +msgid "Photography" +msgstr "" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "Bilder, die für Erwachsene bestimmt sind." -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "An die Startseite anheften" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 msgid "Pin to Home" msgstr "" @@ -4618,6 +4684,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Bitte warte, bis deine Link-karte vollständig geladen ist" #: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:95 msgid "Politics" msgstr "Politik" @@ -4685,7 +4752,7 @@ msgstr "Beitrag nicht gefunden" msgid "posts" msgstr "Beiträge" -#: src/view/screens/Profile.tsx:216 +#: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Beiträge" @@ -4759,7 +4826,7 @@ msgid "Processing..." msgstr "Wird bearbeitet..." #: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:353 +#: src/view/screens/Profile.tsx:346 msgid "profile" msgstr "" @@ -4799,15 +4866,15 @@ msgstr "Beitrag veröffentlichen" msgid "Publish reply" msgstr "Antwort veröffentlichen" -#: src/components/StarterPack/QrCodeDialog.tsx:131 +#: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:109 +#: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:110 +#: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" msgstr "" @@ -4869,7 +4936,9 @@ msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:325 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -4882,7 +4951,7 @@ msgstr "Entfernen" #~ msgid "Remove {0} from my feeds?" #~ msgstr "{0} aus meinen Feeds entfernen?" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" msgstr "" @@ -4914,13 +4983,13 @@ msgstr "" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:332 +#: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Aus meinen Feeds entfernen" -#: src/components/FeedCard.tsx:315 +#: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "" @@ -4976,7 +5045,7 @@ msgid "Removed from my feeds" msgstr "Aus meinen Feeds entfernt" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "" @@ -4994,19 +5063,19 @@ msgstr "" msgid "Replace with Discover" msgstr "" -#: src/view/screens/Profile.tsx:217 +#: src/view/screens/Profile.tsx:210 msgid "Replies" msgstr "Antworten" -#: src/view/com/threadgate/WhoCanReply.tsx:66 +#: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" msgstr "" #: src/view/com/threadgate/WhoCanReply.tsx:123 -msgid "Replies on this thread are disabled" -msgstr "" +#~ msgid "Replies on this thread are disabled" +#~ msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:237 +#: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "Antworten auf diesen Thread sind deaktiviert" @@ -5066,8 +5135,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/view/screens/ProfileFeed.tsx:348 -#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:351 msgid "Report feed" msgstr "Feed melden" @@ -5084,8 +5153,8 @@ msgstr "" msgid "Report post" msgstr "Beitrag melden" -#: src/screens/StarterPack/StarterPackScreen.tsx:469 -#: src/screens/StarterPack/StarterPackScreen.tsx:472 +#: src/screens/StarterPack/StarterPackScreen.tsx:476 +#: src/screens/StarterPack/StarterPackScreen.tsx:479 msgid "Report starter pack" msgstr "" @@ -5131,7 +5200,7 @@ msgstr "Repost" msgid "Repost" msgstr "Erneut veröffentlichen" -#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:418 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5239,12 +5308,12 @@ msgstr "Wiederholung der letzten Aktion, bei der ein Fehler aufgetreten ist" #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 #: src/screens/Login/LoginForm.tsx:291 #: src/screens/Login/LoginForm.tsx:298 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/Onboarding/StepInterests/index.tsx:234 #: src/screens/Signup/index.tsx:245 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 @@ -5256,7 +5325,7 @@ msgstr "Wiederholen" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:622 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Zurück zur vorherigen Seite" @@ -5266,12 +5335,13 @@ msgid "Returns to home page" msgstr "" #: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/ProfileFeed.tsx:113 msgid "Returns to previous page" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/StarterPack/QrCodeDialog.tsx:190 +#: src/components/dialogs/ThreadgateEditor.tsx:88 +#: src/components/StarterPack/QrCodeDialog.tsx:184 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5280,7 +5350,7 @@ msgstr "" msgid "Save" msgstr "Speichern" -#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/lightbox/Lightbox.tsx:135 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5302,8 +5372,8 @@ msgstr "Änderungen speichern" msgid "Save handle change" msgstr "Handle-Änderung speichern" -#: src/components/StarterPack/ShareDialog.tsx:163 -#: src/components/StarterPack/ShareDialog.tsx:170 +#: src/components/StarterPack/ShareDialog.tsx:150 +#: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" msgstr "" @@ -5311,12 +5381,12 @@ msgstr "" msgid "Save image crop" msgstr "Bildausschnitt speichern" -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" msgstr "" @@ -5324,7 +5394,7 @@ msgstr "" msgid "Saved Feeds" msgstr "Gespeicherte Feeds" -#: src/view/com/lightbox/Lightbox.tsx:82 +#: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" msgstr "" @@ -5332,7 +5402,7 @@ msgstr "" #~ msgid "Saved to your camera roll." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "" @@ -5350,13 +5420,14 @@ msgid "Saves image crop settings" msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:82 +#: src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:372 #: src/view/com/notifications/FeedItem.tsx:397 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:96 msgid "Science" msgstr "Wissenschaft" @@ -5398,7 +5469,7 @@ msgstr "Nach allen Beiträgen von @{authorHandle} mit dem Tag {displayTag} suche msgid "Search for all posts with tag {displayTag}" msgstr "Nach allen Beiträgen mit dem Tag {displayTag} suchen" -#: src/screens/StarterPack/Wizard/index.tsx:467 +#: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -5549,7 +5620,7 @@ msgstr "" msgid "Select your date of birth" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:201 +#: src/screens/Onboarding/StepInterests/index.tsx:206 msgid "Select your interests from the options below" msgstr "Wähle aus den folgenden Optionen deine Interessen aus" @@ -5640,7 +5711,7 @@ msgstr "Server-Adresse" #~ msgid "Set Age" #~ msgstr "Alter festlegen" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:307 msgid "Set birthdate" msgstr "" @@ -5761,9 +5832,9 @@ msgstr "Sexuelle Aktivitäten oder erotische Nacktheit." msgid "Sexually Suggestive" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:180 -#: src/screens/StarterPack/StarterPackScreen.tsx:303 -#: src/screens/StarterPack/StarterPackScreen.tsx:458 +#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/screens/StarterPack/StarterPackScreen.tsx:312 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5773,7 +5844,7 @@ msgstr "" msgid "Share" msgstr "Teilen" -#: src/view/com/lightbox/Lightbox.tsx:142 +#: src/view/com/lightbox/Lightbox.tsx:144 msgctxt "action" msgid "Share" msgstr "Teilen" @@ -5792,30 +5863,36 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/view/screens/ProfileFeed.tsx:358 -#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:361 msgid "Share feed" msgstr "Feed teilen" -#: src/screens/StarterPack/StarterPackScreen.tsx:462 +#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/screens/StarterPack/StarterPackScreen.tsx:469 msgid "Share link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:100 +#: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:296 +#: src/components/StarterPack/ShareDialog.tsx:134 +#: src/components/StarterPack/ShareDialog.tsx:145 +msgid "Share QR code" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:305 msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:112 +#: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5873,7 +5950,7 @@ msgstr "" msgid "Show less like this" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:533 +#: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" @@ -6051,33 +6128,33 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "Meldet {0} von Bluesky ab" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:240 -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Überspringen" -#: src/screens/Onboarding/StepInterests/index.tsx:237 +#: src/screens/Onboarding/StepInterests/index.tsx:242 msgid "Skip this flow" msgstr "Diesen Schritt überspringen" #: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:85 msgid "Software Dev" msgstr "Software-Entwicklung" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 -#: src/view/com/threadgate/WhoCanReply.tsx:67 -#: src/view/com/threadgate/WhoCanReply.tsx:124 +#: src/components/WhoCanReply.tsx:72 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "" #: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "" +#~ msgid "Some subtitle" +#~ msgstr "" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -6089,7 +6166,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 +#: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "" @@ -6129,6 +6206,7 @@ msgid "Spam; excessive mentions or replies" msgstr "" #: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:97 msgid "Sports" msgstr "Sport" @@ -6150,7 +6228,7 @@ msgstr "" #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -6158,14 +6236,18 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:214 msgid "Starter Packs" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + #: src/view/screens/Settings/index.tsx:862 #~ msgid "Status page" #~ msgstr "Status-Seite" @@ -6287,6 +6369,7 @@ msgid "Tap to view fully" msgstr "Tippe, um die vollständige Ansicht anzuzeigen" #: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:98 msgid "Tech" msgstr "Technik" @@ -6339,10 +6422,10 @@ msgstr "" msgid "That handle is already taken." msgstr "Dieser Handle ist bereits besetzt." -#: src/screens/StarterPack/StarterPackScreen.tsx:100 -#: src/screens/StarterPack/StarterPackScreen.tsx:101 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:102 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/Wizard/index.tsx:106 +#: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." msgstr "" @@ -6363,7 +6446,7 @@ msgstr "Die Community-Richtlinien wurden nach <0/> verschoben" msgid "The Copyright Policy has been moved to <0/>" msgstr "Die Copyright-Richtlinie wurde nach <0/> verschoben" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6392,7 +6475,7 @@ msgstr "Möglicherweise wurde der Post gelöscht." msgid "The Privacy Policy has been moved to <0/>" msgstr "Die Datenschutzerklärung wurde nach <0/> verschoben" -#: src/screens/StarterPack/StarterPackScreen.tsx:589 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6413,7 +6496,7 @@ 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:542 +#: src/view/screens/ProfileFeed.tsx:544 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." @@ -6423,7 +6506,7 @@ msgstr "Es gab ein Problem beim Entfernen dieses Feeds. Bitte überprüfe deine #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: 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." @@ -6436,7 +6519,7 @@ msgstr "" #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:233 +#: src/view/screens/ProfileFeed.tsx:234 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6494,6 +6577,7 @@ msgstr "Es gab ein Problem beim Abrufen deiner App-Passwörter" msgid "There was an issue! {0}" msgstr "Es gab ein Problem! {0}" +#: src/components/WhoCanReply.tsx:116 #: src/view/screens/ProfileList.tsx:335 #: src/view/screens/ProfileList.tsx:349 #: src/view/screens/ProfileList.tsx:363 @@ -6590,7 +6674,7 @@ msgstr "Dieser Feed wird derzeit stark frequentiert und ist vorübergehend nicht msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "Dieser Feed ist leer! Möglicherweise musst du mehr Benutzern folgen oder deine Spracheinstellungen anpassen." -#: src/view/screens/ProfileFeed.tsx:472 +#: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" @@ -6705,7 +6789,7 @@ msgstr "" msgid "This user is included in the <0>{0} list which you have muted." msgstr "" -#: src/components/NewskieDialog.tsx:53 +#: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." msgstr "" @@ -6734,6 +6818,10 @@ msgstr "" msgid "Thread Preferences" msgstr "Thread-Einstellungen" +#: src/components/WhoCanReply.tsx:109 +msgid "Thread settings updated" +msgstr "" + #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "Gewindemodus" @@ -6762,7 +6850,7 @@ msgstr "Zwischen den Optionen für stummgeschaltete Wörter wechseln." msgid "Toggle dropdown" msgstr "Dieses Dropdown umschalten" -#: src/screens/Moderation/index.tsx:332 +#: src/screens/Moderation/index.tsx:336 msgid "Toggle to enable or disable adult content" msgstr "" @@ -6777,8 +6865,8 @@ msgstr "Verwandlungen" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: 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 msgid "Translate" @@ -6789,6 +6877,10 @@ msgctxt "action" msgid "Try again" msgstr "Erneut versuchen" +#: src/screens/Onboarding/state.ts:99 +msgid "TV" +msgstr "" + #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" msgstr "" @@ -6818,7 +6910,7 @@ msgstr "Stummschaltung von Liste aufheben" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Es ist uns nicht gelungen, deinen Dienst zu kontaktieren. Bitte überprüfe deine Internetverbindung." -#: src/screens/StarterPack/StarterPackScreen.tsx:513 +#: src/screens/StarterPack/StarterPackScreen.tsx:520 msgid "Unable to delete" msgstr "" @@ -6885,7 +6977,7 @@ msgstr "" #~ msgid "Unlike" #~ msgstr "Like aufheben" -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Unlike this feed" msgstr "" @@ -6920,12 +7012,12 @@ msgstr "" msgid "Unmute thread" msgstr "Stummschaltung von Thread aufheben" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Anheften aufheben" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 msgid "Unpin from home" msgstr "" @@ -7107,7 +7199,7 @@ msgstr "Benutzername oder E-Mail-Adresse" msgid "Users" msgstr "Benutzer" -#: src/view/com/threadgate/WhoCanReply.tsx:274 +#: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" msgstr "Nutzer gefolgt von <0/>" @@ -7118,7 +7210,7 @@ msgstr "Nutzer gefolgt von <0/>" msgid "Users I follow" msgstr "" -#: src/view/com/modals/Threadgate.tsx:109 +#: src/components/dialogs/ThreadgateEditor.tsx:132 msgid "Users in \"{0}\"" msgstr "Benutzer in \"{0}\"" @@ -7172,6 +7264,7 @@ msgid "Version {appVersion} {bundleInfo}" msgstr "" #: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:88 msgid "Video Games" msgstr "Videospiele" @@ -7223,7 +7316,7 @@ msgstr "Avatar ansehen" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/view/screens/ProfileFeed.tsx:583 +#: src/view/screens/ProfileFeed.tsx:585 msgid "View users who like this feed" msgstr "" @@ -7287,11 +7380,11 @@ msgstr "Wir empfehlen, gebräuchliche Wörter zu vermeiden, die in vielen Beitr msgid "We were unable to load your birth date preferences. Please try again." msgstr "" -#: src/screens/Moderation/index.tsx:385 +#: src/screens/Moderation/index.tsx:409 msgid "We were unable to load your configured labelers at this time." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:143 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Die Verbindung konnte nicht hergestellt werden. Bitte versuche es erneut, um mit der Einrichtung deines Kontos fortzufahren. Wenn der Versuch weiterhin fehlschlägt, kannst du diesen Schritt überspringen." @@ -7303,7 +7396,7 @@ msgstr "Wir werden dich benachrichtigen, wenn dein Konto bereit ist." #~ msgid "We'll look into your appeal promptly." #~ msgstr "Wir werden deinen Widerspruch unverzüglich prüfen." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:148 msgid "We'll use this to help customize your experience." msgstr "Wir verwenden diese Informationen, um dein Erlebnis individuell zu gestalten." @@ -7352,7 +7445,11 @@ msgstr "" #~ msgid "Welcome to <0>Bluesky" #~ msgstr "Willkommen bei <0>Bluesky" -#: src/screens/Onboarding/StepInterests/index.tsx:135 +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" msgstr "Was sind deine Interessen?" @@ -7383,17 +7480,15 @@ msgstr "Welche Sprachen würdest du gerne in deinen algorithmischen Feeds sehen? msgid "Who can message you?" msgstr "" -#: src/view/com/modals/Threadgate.tsx:69 -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Who can reply" msgstr "Wer antworten kann" -#: src/view/com/threadgate/WhoCanReply.tsx:206 +#: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:210 +#: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" msgstr "" @@ -7449,6 +7544,7 @@ msgid "Write your reply" msgstr "Schreibe deine Antwort" #: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:100 msgid "Writers" msgstr "Schriftsteller" @@ -7467,7 +7563,7 @@ msgstr "Ja" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:525 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Yes, delete this starter pack" msgstr "" @@ -7483,6 +7579,10 @@ msgstr "" msgid "you" msgstr "" +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + #: src/screens/SignupQueued.tsx:136 msgid "You are in line." msgstr "Du befindest dich in der Warteschlange." @@ -7628,6 +7728,10 @@ msgstr "" msgid "You have reached the end" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +msgid "You haven't created a starter pack yet!" +msgstr "" + #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "Du hast noch keine Wörter oder Tags stummgeschaltet" @@ -7660,15 +7764,15 @@ msgstr "" #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Du musst 18 Jahre oder älter sein, um Inhalte für Erwachsene zu aktivieren." -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:62 +#: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." msgstr "" @@ -7720,7 +7824,7 @@ msgstr "" msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po index d6ef087de5..ee061331f8 100644 --- a/src/locale/locales/en/messages.po +++ b/src/locale/locales/en/messages.po @@ -67,7 +67,7 @@ msgstr "" msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:215 +#: src/components/FeedCard.tsx:216 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -88,7 +88,11 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:343 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +msgid "{0} joined this week" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:350 msgid "{0} people have used this starter pack!" msgstr "" @@ -132,7 +136,7 @@ msgstr "" msgid "{diffSeconds, plural, one {second} other {seconds}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" msgstr "" @@ -155,7 +159,7 @@ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:586 +#: src/view/screens/ProfileFeed.tsx:588 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -163,11 +167,11 @@ msgstr "" msgid "{numUnreadNotifications} unread" msgstr "" -#: src/components/NewskieDialog.tsx:92 +#: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" msgstr "" -#: src/components/NewskieDialog.tsx:87 +#: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "" @@ -175,17 +179,27 @@ msgstr "" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:290 +#: src/components/WhoCanReply.tsx:295 msgid "<0/> members" msgstr "" #: src/screens/StarterPack/Wizard/index.tsx:485 -msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +#~ 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 "" + +#: 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 "" +#~ 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 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -195,11 +209,15 @@ msgstr "" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" +#: 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 "" -#: src/screens/StarterPack/Wizard/index.tsx:478 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -228,6 +246,10 @@ msgstr "" #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:457 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "" @@ -318,11 +340,11 @@ msgstr "" msgid "Add" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:539 +#: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:56 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" msgstr "" @@ -377,14 +399,14 @@ msgid "Add muted words and tags" msgstr "" #: src/screens/StarterPack/Wizard/index.tsx:197 -msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "" +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:464 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" msgstr "" @@ -396,7 +418,7 @@ msgstr "" msgid "Add the following DNS record to your domain:" msgstr "" -#: src/components/FeedCard.tsx:300 +#: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" msgstr "" @@ -431,16 +453,20 @@ msgstr "" msgid "Adult Content" msgstr "" +#: src/screens/Moderation/index.tsx:356 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "" -#: src/screens/Moderation/index.tsx:375 +#: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:271 +#: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "All accounts have been followed!" msgstr "" @@ -505,16 +531,16 @@ msgstr "" msgid "An error occured" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +#: 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 "" +#~ msgid "An error occurred while saving the image." +#~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:76 -#: src/components/StarterPack/ShareDialog.tsx:91 +#: src/components/StarterPack/QrCodeDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "" @@ -522,7 +548,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:275 msgid "An error occurred while trying to follow all" msgstr "" @@ -539,16 +565,17 @@ msgstr "" msgid "An issue occurred, please try again." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:194 +#: src/screens/Onboarding/StepInterests/index.tsx:199 msgid "an unknown error occurred" msgstr "" +#: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:280 -#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "" #: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:79 msgid "Animals" msgstr "" @@ -620,7 +647,7 @@ msgstr "" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -648,7 +675,7 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "" -#: src/components/FeedCard.tsx:317 +#: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -665,6 +692,7 @@ msgid "Are you writing in <0>{0}?" msgstr "" #: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:80 msgid "Art" msgstr "" @@ -691,7 +719,7 @@ msgstr "" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:312 +#: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "" @@ -748,7 +776,7 @@ msgstr "" msgid "Blocked" msgstr "" -#: src/screens/Moderation/index.tsx:267 +#: src/screens/Moderation/index.tsx:270 msgid "Blocked accounts" msgstr "" @@ -809,11 +837,11 @@ msgstr "" #~ msgid "Bluesky is public." #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:533 +#: 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 "" @@ -826,6 +854,7 @@ msgid "Blur images and filter from feeds" msgstr "" #: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:81 msgid "Books" msgstr "" @@ -1035,13 +1064,21 @@ msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "" #: src/view/com/modals/Threadgate.tsx:75 -msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Choose Feeds" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:288 +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:187 +msgid "Choose People" +msgstr "" + #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "" @@ -1059,6 +1096,11 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "" +#: 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 "" @@ -1135,18 +1177,18 @@ msgstr "" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/NewskieDialog.tsx:120 -#: src/components/NewskieDialog.tsx:127 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:121 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:127 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: 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:189 msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:113 -#: src/components/Dialog/index.web.tsx:251 +#: src/components/Dialog/index.web.tsx:116 +#: src/components/Dialog/index.web.tsx:254 msgid "Close active dialog" msgstr "" @@ -1213,10 +1255,12 @@ msgid "Collapses list of users for a given notification" msgstr "" #: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:82 msgid "Comedy" msgstr "" #: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:83 msgid "Comics" msgstr "" @@ -1278,11 +1322,11 @@ msgstr "" msgid "Confirm delete account" msgstr "" -#: src/screens/Moderation/index.tsx:301 +#: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "" -#: src/screens/Moderation/index.tsx:292 +#: src/screens/Moderation/index.tsx:295 msgid "Confirm your birthdate" msgstr "" @@ -1312,7 +1356,7 @@ msgstr "" msgid "Content Blocked" msgstr "" -#: src/screens/Moderation/index.tsx:285 +#: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "" @@ -1341,7 +1385,7 @@ msgstr "" msgid "Context menu backdrop, click to close the menu." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepInterests/index.tsx:258 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "" @@ -1354,7 +1398,7 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:251 msgid "Continue to next step" @@ -1402,7 +1446,7 @@ msgstr "" msgid "Copies app password" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:180 +#: src/components/StarterPack/QrCodeDialog.tsx:174 #: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "" @@ -1416,7 +1460,11 @@ msgstr "" msgid "Copy code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 +#: src/components/StarterPack/ShareDialog.tsx:123 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" msgstr "" @@ -1439,7 +1487,7 @@ msgstr "" msgid "Copy post text" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" msgstr "" @@ -1452,7 +1500,7 @@ msgstr "" msgid "Could not leave chat" msgstr "" -#: src/view/screens/ProfileFeed.tsx:102 +#: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" msgstr "" @@ -1472,7 +1520,7 @@ msgstr "" #~ msgid "Could not unmute chat" #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:270 +#: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" msgstr "" @@ -1485,17 +1533,17 @@ msgstr "" msgid "Create a new Bluesky account" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:157 +#: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:257 +#: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +#: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" msgstr "" @@ -1526,8 +1574,8 @@ msgid "Create new account" msgstr "" #: src/components/StarterPack/ShareDialog.tsx:158 -msgid "Create QR code" -msgstr "" +#~ msgid "Create QR code" +#~ msgstr "" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1542,6 +1590,7 @@ msgstr "" #~ msgstr "" #: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:84 msgid "Culture" msgstr "" @@ -1598,9 +1647,9 @@ msgid "Debug panel" msgstr "" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:449 -#: src/screens/StarterPack/StarterPackScreen.tsx:528 -#: src/screens/StarterPack/StarterPackScreen.tsx:608 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1661,12 +1710,12 @@ msgstr "" msgid "Delete post" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:443 -#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:450 +#: src/screens/StarterPack/StarterPackScreen.tsx:606 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:494 +#: src/screens/StarterPack/StarterPackScreen.tsx:501 msgid "Delete starter pack?" msgstr "" @@ -1738,7 +1787,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:68 #: src/screens/Messages/Settings.tsx:140 #: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:341 +#: src/screens/Moderation/index.tsx:346 msgid "Disabled" msgstr "" @@ -1750,8 +1799,8 @@ msgstr "" msgid "Discard draft?" msgstr "" -#: src/screens/Moderation/index.tsx:518 -#: src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:542 +#: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" msgstr "" @@ -1802,6 +1851,7 @@ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/ThreadgateEditor.tsx:88 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 @@ -1821,8 +1871,6 @@ msgstr "" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 #: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/Threadgate.tsx:136 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 #: src/view/screens/PreferencesThreads.tsx:162 @@ -1834,7 +1882,7 @@ msgstr "" msgid "Done{extraText}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 msgid "Download Bluesky" msgstr "" @@ -1891,9 +1939,9 @@ msgstr "" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:522 -#: src/screens/StarterPack/Wizard/index.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" @@ -1909,7 +1957,7 @@ msgstr "" msgid "Edit avatar" msgstr "" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "" @@ -1937,7 +1985,7 @@ msgstr "" msgid "Edit my profile" msgstr "" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "" @@ -1956,7 +2004,7 @@ msgstr "" #~ msgid "Edit Saved Feeds" #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:430 +#: src/screens/StarterPack/StarterPackScreen.tsx:437 msgid "Edit starter pack" msgstr "" @@ -1964,8 +2012,7 @@ msgstr "" msgid "Edit User List" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" msgstr "" @@ -1982,9 +2029,14 @@ msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:86 msgid "Education" msgstr "" +#: src/components/dialogs/ThreadgateEditor.tsx:98 +msgid "Either choose \"Everybody\" or \"Nobody\"" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" @@ -2033,7 +2085,7 @@ msgstr "" msgid "Enable {0} only" msgstr "" -#: src/screens/Moderation/index.tsx:329 +#: src/screens/Moderation/index.tsx:333 msgid "Enable adult content" msgstr "" @@ -2065,7 +2117,7 @@ msgstr "" #: src/screens/Messages/Settings.tsx:131 #: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:339 +#: src/screens/Moderation/index.tsx:344 msgid "Enabled" msgstr "" @@ -2135,19 +2187,18 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "" -#: src/view/com/modals/Threadgate.tsx:79 +#: src/components/dialogs/ThreadgateEditor.tsx:102 msgid "Everybody" msgstr "" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#: src/view/com/threadgate/WhoCanReply.tsx:64 -#: src/view/com/threadgate/WhoCanReply.tsx:121 -#: src/view/com/threadgate/WhoCanReply.tsx:235 +#: src/components/WhoCanReply.tsx:69 +#: src/components/WhoCanReply.tsx:240 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "" @@ -2242,8 +2293,8 @@ msgstr "" msgid "Failed to create app password." msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:241 -#: src/screens/StarterPack/Wizard/index.tsx:249 +#: src/screens/StarterPack/Wizard/index.tsx:230 +#: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" msgstr "" @@ -2259,7 +2310,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/StarterPackScreen.tsx:569 msgid "Failed to delete starter pack" msgstr "" @@ -2295,7 +2346,7 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" msgstr "" @@ -2316,7 +2367,7 @@ msgstr "" msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:280 +#: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "" @@ -2338,7 +2389,7 @@ msgstr "" #~ msgid "Feed offline" #~ msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "" @@ -2348,10 +2399,9 @@ msgid "Feedback" msgstr "" #: src/Navigation.tsx:320 -#: src/screens/StarterPack/Wizard/index.tsx:201 #: src/view/screens/Feeds.tsx:445 #: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:220 +#: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:373 #: src/view/shell/Drawer.tsx:493 @@ -2371,7 +2421,7 @@ msgstr "" #~ msgid "Feeds can be topical as well!" #~ msgstr "" -#: src/components/FeedCard.tsx:277 +#: src/components/FeedCard.tsx:282 msgid "Feeds updated!" msgstr "" @@ -2421,7 +2471,7 @@ msgstr "" msgid "Fine-tune the discussion threads." msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" msgstr "" @@ -2469,8 +2519,8 @@ msgstr "" msgid "Follow Account" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:308 -#: src/screens/StarterPack/StarterPackScreen.tsx:315 +#: src/screens/StarterPack/StarterPackScreen.tsx:317 +#: src/screens/StarterPack/StarterPackScreen.tsx:324 msgid "Follow all" msgstr "" @@ -2518,7 +2568,7 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/view/com/modals/Threadgate.tsx:101 +#: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" msgstr "" @@ -2582,6 +2632,7 @@ msgid "Follows You" msgstr "" #: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:87 msgid "Food" msgstr "" @@ -2623,7 +2674,7 @@ msgstr "" msgid "Gallery" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" msgstr "" @@ -2653,7 +2704,7 @@ msgstr "" #: src/view/com/auth/LoggedOut.tsx:78 #: src/view/com/auth/LoggedOut.tsx:79 #: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:133 msgid "Go back" @@ -2662,9 +2713,9 @@ msgstr "" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:628 #: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "" @@ -2678,7 +2729,7 @@ msgstr "" msgid "Go back to previous step" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:313 +#: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" msgstr "" @@ -2819,7 +2870,7 @@ msgstr "" msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "" -#: src/screens/Moderation/index.tsx:59 +#: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "" @@ -2910,7 +2961,7 @@ msgstr "" msgid "Image alt text" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:88 +#: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" msgstr "" @@ -3003,7 +3054,7 @@ msgstr "" msgid "Invite codes: 1 available" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:109 +#: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" msgstr "" @@ -3019,7 +3070,7 @@ msgstr "" #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:473 +#: 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 "" @@ -3027,8 +3078,8 @@ msgstr "" msgid "Jobs" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 msgid "Join Bluesky" msgstr "" @@ -3037,6 +3088,7 @@ msgid "Join the conversation" msgstr "" #: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:89 msgid "Journalism" msgstr "" @@ -3052,7 +3104,7 @@ msgstr "" msgid "Labeled by the author." msgstr "" -#: src/view/screens/Profile.tsx:214 +#: src/view/screens/Profile.tsx:207 msgid "Labels" msgstr "" @@ -3108,7 +3160,7 @@ msgstr "" msgid "Learn more about this warning" msgstr "" -#: src/screens/Moderation/index.tsx:549 +#: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." msgstr "" @@ -3149,7 +3201,7 @@ msgstr "" msgid "Legacy storage cleared, you need to restart the app now." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:293 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" msgstr "" @@ -3171,7 +3223,7 @@ msgstr "" #~ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "" @@ -3209,7 +3261,7 @@ msgstr "" msgid "liked your post" msgstr "" -#: src/view/screens/Profile.tsx:219 +#: src/view/screens/Profile.tsx:212 msgid "Likes" msgstr "" @@ -3255,8 +3307,8 @@ msgid "List unmuted" msgstr "" #: src/Navigation.tsx:122 +#: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/screens/Profile.tsx:222 #: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 @@ -3285,7 +3337,7 @@ msgstr "" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:493 +#: src/view/screens/ProfileFeed.tsx:494 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "" @@ -3310,7 +3362,7 @@ msgstr "" msgid "Log out" msgstr "" -#: src/screens/Moderation/index.tsx:442 +#: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" msgstr "" @@ -3342,7 +3394,7 @@ msgstr "" msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +#: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" msgstr "" @@ -3360,15 +3412,15 @@ msgid "Mark as read" msgstr "" #: src/view/screens/AccessibilitySettings.tsx:102 -#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:211 msgid "Media" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:270 +#: src/components/WhoCanReply.tsx:275 msgid "mentioned users" msgstr "" -#: src/view/com/modals/Threadgate.tsx:96 +#: src/components/dialogs/ThreadgateEditor.tsx:119 msgid "Mentioned users" msgstr "" @@ -3419,7 +3471,7 @@ msgid "Misleading Account" msgstr "" #: src/Navigation.tsx:127 -#: src/screens/Moderation/index.tsx:104 +#: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "" @@ -3452,7 +3504,7 @@ msgstr "" msgid "Moderation list updated" msgstr "" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:246 msgid "Moderation lists" msgstr "" @@ -3469,7 +3521,7 @@ msgstr "" msgid "Moderation states" msgstr "" -#: src/screens/Moderation/index.tsx:215 +#: src/screens/Moderation/index.tsx:218 msgid "Moderation tools" msgstr "" @@ -3478,7 +3530,7 @@ msgstr "" msgid "Moderator has chosen to set a general warning on the content." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:567 +#: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" msgstr "" @@ -3494,6 +3546,10 @@ msgstr "" msgid "Most-liked replies first" msgstr "" +#: src/screens/Onboarding/state.ts:90 +msgid "Movies" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "" @@ -3563,7 +3619,7 @@ msgstr "" msgid "Muted" msgstr "" -#: src/screens/Moderation/index.tsx:255 +#: src/screens/Moderation/index.tsx:258 msgid "Muted accounts" msgstr "" @@ -3580,7 +3636,7 @@ msgstr "" msgid "Muted by \"{0}\"" msgstr "" -#: src/screens/Moderation/index.tsx:231 +#: src/screens/Moderation/index.tsx:234 msgid "Muted words & tags" msgstr "" @@ -3626,6 +3682,7 @@ msgid "Name or Description Violates Community Standards" msgstr "" #: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:91 msgid "Nature" msgstr "" @@ -3694,8 +3751,8 @@ msgstr "" #: src/view/screens/Feeds.tsx:580 #: src/view/screens/Notifications.tsx:193 -#: src/view/screens/Profile.tsx:485 -#: src/view/screens/ProfileFeed.tsx:427 +#: src/view/screens/Profile.tsx:478 +#: src/view/screens/ProfileFeed.tsx:428 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:277 @@ -3707,7 +3764,7 @@ msgctxt "action" msgid "New Post" msgstr "" -#: src/components/NewskieDialog.tsx:71 +#: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "" @@ -3720,6 +3777,7 @@ msgid "Newest replies first" msgstr "" #: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:92 msgid "News" msgstr "" @@ -3730,10 +3788,10 @@ msgstr "" #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:258 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:195 -#: src/screens/StarterPack/Wizard/index.tsx:372 -#: src/screens/StarterPack/Wizard/index.tsx:379 +#: src/screens/StarterPack/Wizard/index.tsx:184 +#: src/screens/StarterPack/Wizard/index.tsx:188 +#: src/screens/StarterPack/Wizard/index.tsx:359 +#: src/screens/StarterPack/Wizard/index.tsx:366 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3757,7 +3815,7 @@ msgstr "" msgid "No" msgstr "" -#: src/view/screens/ProfileFeed.tsx:560 +#: src/view/screens/ProfileFeed.tsx:562 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "" @@ -3771,7 +3829,7 @@ msgstr "" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." msgstr "" @@ -3844,11 +3902,11 @@ msgstr "" msgid "No thanks" msgstr "" -#: src/view/com/modals/Threadgate.tsx:85 +#: src/components/dialogs/ThreadgateEditor.tsx:108 msgid "Nobody" msgstr "" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Nobody can reply" msgstr "" @@ -3857,7 +3915,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -3870,7 +3928,7 @@ msgstr "" #~ msgstr "" #: src/Navigation.tsx:117 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "" @@ -3885,7 +3943,7 @@ msgstr "" msgid "Note about sharing" msgstr "" -#: src/screens/Moderation/index.tsx:540 +#: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" @@ -3941,7 +3999,7 @@ msgstr "" msgid "Oh no!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:133 +#: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." msgstr "" @@ -3977,7 +4035,7 @@ msgstr "" msgid "Only .jpg and .png files are supported" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:239 +#: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" msgstr "" @@ -3994,10 +4052,10 @@ msgid "Oops, something went wrong!" msgstr "" #: src/components/Lists.tsx:191 -#: src/components/StarterPack/ProfileStarterPacks.tsx:302 -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "" @@ -4023,7 +4081,7 @@ msgstr "" msgid "Open emoji picker" msgstr "" -#: src/view/screens/ProfileFeed.tsx:295 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Open feed options menu" msgstr "" @@ -4035,7 +4093,7 @@ msgstr "" msgid "Open message options" msgstr "" -#: src/screens/Moderation/index.tsx:227 +#: src/screens/Moderation/index.tsx:230 msgid "Open muted words and tags settings" msgstr "" @@ -4047,7 +4105,7 @@ msgstr "" msgid "Open post options menu" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 msgid "Open starter pack menu" msgstr "" @@ -4064,6 +4122,10 @@ msgstr "" msgid "Opens {numItems} options" msgstr "" +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" msgstr "" @@ -4206,7 +4268,7 @@ msgstr "" msgid "Optionally provide additional information below:" msgstr "" -#: src/view/com/modals/Threadgate.tsx:92 +#: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" msgstr "" @@ -4266,7 +4328,6 @@ msgstr "" msgid "Pause" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:194 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "" @@ -4279,32 +4340,37 @@ msgstr "" msgid "People following @{0}" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:67 +#: src/view/com/lightbox/Lightbox.tsx:69 msgid "Permission to access camera roll is required." msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:73 +#: src/view/com/lightbox/Lightbox.tsx:75 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:93 msgid "Pets" msgstr "" +#: src/screens/Onboarding/state.ts:94 +msgid "Photography" +msgstr "" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 msgid "Pin to Home" msgstr "" @@ -4400,6 +4466,7 @@ msgid "Please wait for your link card to finish loading" msgstr "" #: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:95 msgid "Politics" msgstr "" @@ -4463,7 +4530,7 @@ msgstr "" msgid "posts" msgstr "" -#: src/view/screens/Profile.tsx:216 +#: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "" @@ -4537,7 +4604,7 @@ msgid "Processing..." msgstr "" #: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:353 +#: src/view/screens/Profile.tsx:346 msgid "profile" msgstr "" @@ -4577,15 +4644,15 @@ msgstr "" msgid "Publish reply" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:131 +#: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:109 +#: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:110 +#: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" msgstr "" @@ -4647,7 +4714,9 @@ msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:325 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -4656,7 +4725,7 @@ msgstr "" msgid "Remove" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" msgstr "" @@ -4688,13 +4757,13 @@ msgstr "" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:332 +#: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "" -#: src/components/FeedCard.tsx:315 +#: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "" @@ -4742,7 +4811,7 @@ msgid "Removed from my feeds" msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "" @@ -4760,19 +4829,19 @@ msgstr "" msgid "Replace with Discover" msgstr "" -#: src/view/screens/Profile.tsx:217 +#: src/view/screens/Profile.tsx:210 msgid "Replies" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:66 +#: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" msgstr "" #: src/view/com/threadgate/WhoCanReply.tsx:123 -msgid "Replies on this thread are disabled" -msgstr "" +#~ msgid "Replies on this thread are disabled" +#~ msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:237 +#: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "" @@ -4828,8 +4897,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/view/screens/ProfileFeed.tsx:348 -#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:351 msgid "Report feed" msgstr "" @@ -4846,8 +4915,8 @@ msgstr "" msgid "Report post" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:469 -#: src/screens/StarterPack/StarterPackScreen.tsx:472 +#: src/screens/StarterPack/StarterPackScreen.tsx:476 +#: src/screens/StarterPack/StarterPackScreen.tsx:479 msgid "Report starter pack" msgstr "" @@ -4893,7 +4962,7 @@ msgstr "" msgid "Repost" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:418 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4993,12 +5062,12 @@ msgstr "" #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 #: src/screens/Login/LoginForm.tsx:291 #: src/screens/Login/LoginForm.tsx:298 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/Onboarding/StepInterests/index.tsx:234 #: src/screens/Signup/index.tsx:245 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 @@ -5010,7 +5079,7 @@ msgstr "" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:622 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "" @@ -5020,12 +5089,13 @@ msgid "Returns to home page" msgstr "" #: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/ProfileFeed.tsx:113 msgid "Returns to previous page" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/StarterPack/QrCodeDialog.tsx:190 +#: src/components/dialogs/ThreadgateEditor.tsx:88 +#: src/components/StarterPack/QrCodeDialog.tsx:184 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5034,7 +5104,7 @@ msgstr "" msgid "Save" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/lightbox/Lightbox.tsx:135 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5056,8 +5126,8 @@ msgstr "" msgid "Save handle change" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:163 -#: src/components/StarterPack/ShareDialog.tsx:170 +#: src/components/StarterPack/ShareDialog.tsx:150 +#: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" msgstr "" @@ -5065,12 +5135,12 @@ msgstr "" msgid "Save image crop" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" msgstr "" @@ -5078,7 +5148,7 @@ msgstr "" msgid "Saved Feeds" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:82 +#: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" msgstr "" @@ -5086,7 +5156,7 @@ msgstr "" #~ msgid "Saved to your camera roll." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "" @@ -5104,13 +5174,14 @@ msgid "Saves image crop settings" msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:82 +#: src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:372 #: src/view/com/notifications/FeedItem.tsx:397 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:96 msgid "Science" msgstr "" @@ -5152,7 +5223,7 @@ msgstr "" msgid "Search for all posts with tag {displayTag}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:467 +#: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -5294,7 +5365,7 @@ msgstr "" msgid "Select your date of birth" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:201 +#: src/screens/Onboarding/StepInterests/index.tsx:206 msgid "Select your interests from the options below" msgstr "" @@ -5371,7 +5442,7 @@ msgstr "" msgid "Server address" msgstr "" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:307 msgid "Set birthdate" msgstr "" @@ -5459,9 +5530,9 @@ msgstr "" msgid "Sexually Suggestive" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:180 -#: src/screens/StarterPack/StarterPackScreen.tsx:303 -#: src/screens/StarterPack/StarterPackScreen.tsx:458 +#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/screens/StarterPack/StarterPackScreen.tsx:312 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5471,7 +5542,7 @@ msgstr "" msgid "Share" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:142 +#: src/view/com/lightbox/Lightbox.tsx:144 msgctxt "action" msgid "Share" msgstr "" @@ -5490,30 +5561,36 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/view/screens/ProfileFeed.tsx:358 -#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:361 msgid "Share feed" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:462 +#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/screens/StarterPack/StarterPackScreen.tsx:469 msgid "Share link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:100 +#: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:296 +#: src/components/StarterPack/ShareDialog.tsx:134 +#: src/components/StarterPack/ShareDialog.tsx:145 +msgid "Share QR code" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:305 msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:112 +#: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5567,7 +5644,7 @@ msgstr "" msgid "Show less like this" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:533 +#: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" @@ -5727,33 +5804,33 @@ msgstr "" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:240 -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:237 +#: src/screens/Onboarding/StepInterests/index.tsx:242 msgid "Skip this flow" msgstr "" #: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:85 msgid "Software Dev" msgstr "" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 -#: src/view/com/threadgate/WhoCanReply.tsx:67 -#: src/view/com/threadgate/WhoCanReply.tsx:124 +#: src/components/WhoCanReply.tsx:72 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "" #: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "" +#~ msgid "Some subtitle" +#~ msgstr "" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -5765,7 +5842,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 +#: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "" @@ -5801,6 +5878,7 @@ msgid "Spam; excessive mentions or replies" msgstr "" #: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:97 msgid "Sports" msgstr "" @@ -5822,7 +5900,7 @@ msgstr "" #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -5830,14 +5908,18 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:214 msgid "Starter Packs" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + #: src/view/screens/Settings/index.tsx:862 #~ msgid "Status page" #~ msgstr "" @@ -5955,6 +6037,7 @@ msgid "Tap to view fully" msgstr "" #: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:98 msgid "Tech" msgstr "" @@ -6007,10 +6090,10 @@ msgstr "" msgid "That handle is already taken." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:100 -#: src/screens/StarterPack/StarterPackScreen.tsx:101 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:102 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/Wizard/index.tsx:106 +#: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." msgstr "" @@ -6031,7 +6114,7 @@ msgstr "" msgid "The Copyright Policy has been moved to <0/>" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6060,7 +6143,7 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:589 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6081,7 +6164,7 @@ 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:542 +#: src/view/screens/ProfileFeed.tsx:544 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -6091,7 +6174,7 @@ msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "" @@ -6104,7 +6187,7 @@ msgstr "" #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:233 +#: src/view/screens/ProfileFeed.tsx:234 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6162,6 +6245,7 @@ msgstr "" msgid "There was an issue! {0}" msgstr "" +#: src/components/WhoCanReply.tsx:116 #: src/view/screens/ProfileList.tsx:335 #: src/view/screens/ProfileList.tsx:349 #: src/view/screens/ProfileList.tsx:363 @@ -6254,7 +6338,7 @@ msgstr "" msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "" -#: src/view/screens/ProfileFeed.tsx:472 +#: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" @@ -6361,7 +6445,7 @@ msgstr "" msgid "This user is included in the <0>{0} list which you have muted." msgstr "" -#: src/components/NewskieDialog.tsx:53 +#: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." msgstr "" @@ -6386,6 +6470,10 @@ msgstr "" msgid "Thread Preferences" msgstr "" +#: src/components/WhoCanReply.tsx:109 +msgid "Thread settings updated" +msgstr "" + #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "" @@ -6414,7 +6502,7 @@ msgstr "" msgid "Toggle dropdown" msgstr "" -#: src/screens/Moderation/index.tsx:332 +#: src/screens/Moderation/index.tsx:336 msgid "Toggle to enable or disable adult content" msgstr "" @@ -6429,8 +6517,8 @@ msgstr "" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: 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 msgid "Translate" @@ -6441,6 +6529,10 @@ msgctxt "action" msgid "Try again" msgstr "" +#: src/screens/Onboarding/state.ts:99 +msgid "TV" +msgstr "" + #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" msgstr "" @@ -6470,7 +6562,7 @@ msgstr "" msgid "Unable to contact your service. Please check your Internet connection." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:513 +#: src/screens/StarterPack/StarterPackScreen.tsx:520 msgid "Unable to delete" msgstr "" @@ -6533,7 +6625,7 @@ msgstr "" #~ msgid "Unlike" #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Unlike this feed" msgstr "" @@ -6568,12 +6660,12 @@ msgstr "" msgid "Unmute thread" msgstr "" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 msgid "Unpin from home" msgstr "" @@ -6743,7 +6835,7 @@ msgstr "" msgid "Users" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:274 +#: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" msgstr "" @@ -6754,7 +6846,7 @@ msgstr "" msgid "Users I follow" msgstr "" -#: src/view/com/modals/Threadgate.tsx:109 +#: src/components/dialogs/ThreadgateEditor.tsx:132 msgid "Users in \"{0}\"" msgstr "" @@ -6808,6 +6900,7 @@ msgid "Version {appVersion} {bundleInfo}" msgstr "" #: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:88 msgid "Video Games" msgstr "" @@ -6859,7 +6952,7 @@ msgstr "" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/view/screens/ProfileFeed.tsx:583 +#: src/view/screens/ProfileFeed.tsx:585 msgid "View users who like this feed" msgstr "" @@ -6919,11 +7012,11 @@ msgstr "" msgid "We were unable to load your birth date preferences. Please try again." msgstr "" -#: src/screens/Moderation/index.tsx:385 +#: src/screens/Moderation/index.tsx:409 msgid "We were unable to load your configured labelers at this time." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:143 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" @@ -6931,7 +7024,7 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:148 msgid "We'll use this to help customize your experience." msgstr "" @@ -6980,7 +7073,11 @@ msgstr "" #~ msgid "Welcome to <0>Bluesky" #~ msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:135 +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" msgstr "" @@ -7007,17 +7104,15 @@ msgstr "" msgid "Who can message you?" msgstr "" -#: src/view/com/modals/Threadgate.tsx:69 -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Who can reply" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:206 +#: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:210 +#: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" msgstr "" @@ -7073,6 +7168,7 @@ msgid "Write your reply" msgstr "" #: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:100 msgid "Writers" msgstr "" @@ -7091,7 +7187,7 @@ msgstr "" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:525 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Yes, delete this starter pack" msgstr "" @@ -7107,6 +7203,10 @@ msgstr "" msgid "you" msgstr "" +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + #: src/screens/SignupQueued.tsx:136 msgid "You are in line." msgstr "" @@ -7240,6 +7340,10 @@ msgstr "" msgid "You have reached the end" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +msgid "You haven't created a starter pack yet!" +msgstr "" + #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "" @@ -7268,15 +7372,15 @@ msgstr "" #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:62 +#: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." msgstr "" @@ -7328,7 +7432,7 @@ msgstr "" msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/es/messages.po b/src/locale/locales/es/messages.po index ec5815f0d7..08c43aa7e4 100644 --- a/src/locale/locales/es/messages.po +++ b/src/locale/locales/es/messages.po @@ -67,7 +67,7 @@ msgstr "" msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:215 +#: src/components/FeedCard.tsx:216 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -88,7 +88,11 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:343 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +msgid "{0} joined this week" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:350 msgid "{0} people have used this starter pack!" msgstr "" @@ -132,7 +136,7 @@ msgstr "" msgid "{diffSeconds, plural, one {second} other {seconds}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" msgstr "" @@ -155,7 +159,7 @@ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:586 +#: src/view/screens/ProfileFeed.tsx:588 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -163,11 +167,11 @@ msgstr "" msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} sin leer" -#: src/components/NewskieDialog.tsx:92 +#: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" msgstr "" -#: src/components/NewskieDialog.tsx:87 +#: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "" @@ -175,17 +179,27 @@ msgstr "" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:290 +#: src/components/WhoCanReply.tsx:295 msgid "<0/> members" msgstr "<0/> miembros" #: src/screens/StarterPack/Wizard/index.tsx:485 -msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +#~ 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 "" + +#: 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 "" +#~ 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 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -195,11 +209,15 @@ msgstr "" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" +#: 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 "<0>{0} siguiendo" -#: src/screens/StarterPack/Wizard/index.tsx:478 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -216,6 +234,10 @@ msgstr "" msgid "<0>Not Applicable. This warning is only available for posts with media attached." msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:457 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠Nombre de usuario inválido" @@ -306,11 +328,11 @@ msgstr "Cuenta demuteada" msgid "Add" msgstr "Añadir" -#: src/screens/StarterPack/Wizard/index.tsx:539 +#: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:56 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" msgstr "" @@ -357,14 +379,14 @@ msgid "Add muted words and tags" msgstr "Añadir palabras silenciadas y etiquetas" #: src/screens/StarterPack/Wizard/index.tsx:197 -msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "" +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "Añadir feeds recomendados" -#: src/screens/StarterPack/Wizard/index.tsx:464 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" msgstr "" @@ -376,7 +398,7 @@ msgstr "" msgid "Add the following DNS record to your domain:" msgstr "Añade el siguiente registro DNS a tu dominio:" -#: src/components/FeedCard.tsx:300 +#: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" msgstr "" @@ -407,16 +429,20 @@ msgstr "Ajusta la cantidad de me gusta que una respuesta debe tener para aparece msgid "Adult Content" msgstr "Contenido adulto" +#: src/screens/Moderation/index.tsx:356 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "El contenido adulto esta desactivado." -#: src/screens/Moderation/index.tsx:375 +#: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "Avanzado" -#: src/screens/StarterPack/StarterPackScreen.tsx:271 +#: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "All accounts have been followed!" msgstr "" @@ -481,16 +507,16 @@ msgstr "Un código de verificación ha sido enviado a tu dirección anterior, {0 msgid "An error occured" msgstr "Ocurrió un error" -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +#: 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 "" +#~ msgid "An error occurred while saving the image." +#~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:76 -#: src/components/StarterPack/ShareDialog.tsx:91 +#: src/components/StarterPack/QrCodeDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "" @@ -498,7 +524,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "Ocurrió un error al intentar eliminar el mensaje. Intenta de nuevo." -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:275 msgid "An error occurred while trying to follow all" msgstr "" @@ -515,16 +541,17 @@ msgstr "Un problema no presente en estas opciones" msgid "An issue occurred, please try again." msgstr "Ocurrió un problema. Intenta de nuevo." -#: src/screens/Onboarding/StepInterests/index.tsx:194 +#: src/screens/Onboarding/StepInterests/index.tsx:199 msgid "an unknown error occurred" msgstr "Ocurrió un error desconocido" +#: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:280 -#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "y" #: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:79 msgid "Animals" msgstr "Animales" @@ -596,7 +623,7 @@ msgstr "Aparencia" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -624,7 +651,7 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "¿Seguro que quieres eliminar {0} de tus feeds?" -#: src/components/FeedCard.tsx:317 +#: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -641,6 +668,7 @@ msgid "Are you writing in <0>{0}?" msgstr "¿Estás escribiendo en <0>{0}?" #: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:80 msgid "Art" msgstr "Arte" @@ -667,7 +695,7 @@ msgstr "Al menos 3 caracteres" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:312 +#: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Atrás" @@ -724,7 +752,7 @@ msgstr "¿Bloquear estas cuentas?" msgid "Blocked" msgstr "Bloqueado" -#: src/screens/Moderation/index.tsx:267 +#: src/screens/Moderation/index.tsx:270 msgid "Blocked accounts" msgstr "Cuentas bloqueadas" @@ -770,11 +798,11 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky es una red abierta donde puedes elegir un proveedor de servicio. Servicios personalizados ya están disponibles en beta para desarrolladores." -#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:533 +#: 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 no mostrará tu perfil o posts a usuarios que no hayan iniciado sesión. Es posible que otras apps no respeten esta solicitud. Esto no hace que tu cuenta sea privada." @@ -787,6 +815,7 @@ msgid "Blur images and filter from feeds" msgstr "" #: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:81 msgid "Books" msgstr "Libros" @@ -980,13 +1009,21 @@ msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "Te enviamos un código de verificación a tu correo. Introducelo aquí:" #: src/view/com/modals/Threadgate.tsx:75 -msgid "Choose \"Everybody\" or \"Nobody\"" -msgstr "Elige \"Todos\" o \"Nadie\"" +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "Elige \"Todos\" o \"Nadie\"" -#: src/components/StarterPack/ProfileStarterPacks.tsx:288 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:187 +msgid "Choose People" +msgstr "" + #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Elige proveedor" @@ -999,6 +1036,11 @@ msgstr "Tu eliges los algoritmos que usar en tus feed." msgid "Choose this color as your avatar" msgstr "Elige este color como tu 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 "Elige tus feeds principales" @@ -1071,18 +1113,18 @@ msgstr "" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/NewskieDialog.tsx:120 -#: src/components/NewskieDialog.tsx:127 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:121 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:127 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: 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:189 msgid "Close" msgstr "Cerrar" -#: src/components/Dialog/index.web.tsx:113 -#: src/components/Dialog/index.web.tsx:251 +#: src/components/Dialog/index.web.tsx:116 +#: src/components/Dialog/index.web.tsx:254 msgid "Close active dialog" msgstr "" @@ -1149,10 +1191,12 @@ msgid "Collapses list of users for a given notification" msgstr "" #: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:82 msgid "Comedy" msgstr "" #: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:83 msgid "Comics" msgstr "" @@ -1214,11 +1258,11 @@ msgstr "Confirmar la configuración del idioma del contenido" msgid "Confirm delete account" msgstr "Confirmar eliminación de cuenta" -#: src/screens/Moderation/index.tsx:301 +#: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "" -#: src/screens/Moderation/index.tsx:292 +#: src/screens/Moderation/index.tsx:295 msgid "Confirm your birthdate" msgstr "" @@ -1248,7 +1292,7 @@ msgstr "" msgid "Content Blocked" msgstr "" -#: src/screens/Moderation/index.tsx:285 +#: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "" @@ -1277,7 +1321,7 @@ msgstr "Advertencias de contenido" msgid "Context menu backdrop, click to close the menu." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepInterests/index.tsx:258 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Continuar" @@ -1290,7 +1334,7 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:251 msgid "Continue to next step" @@ -1338,7 +1382,7 @@ msgstr "" msgid "Copies app password" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:180 +#: src/components/StarterPack/QrCodeDialog.tsx:174 #: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Copiar" @@ -1352,7 +1396,11 @@ msgstr "" msgid "Copy code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 +#: src/components/StarterPack/ShareDialog.tsx:123 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" msgstr "" @@ -1375,7 +1423,7 @@ msgstr "" msgid "Copy post text" msgstr "Copiar el texto de la post" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" msgstr "" @@ -1388,7 +1436,7 @@ msgstr "Política de derechos de autor" msgid "Could not leave chat" msgstr "No se pudo salir de este chat" -#: src/view/screens/ProfileFeed.tsx:102 +#: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" msgstr "No se pudo cargar este feed" @@ -1408,7 +1456,7 @@ msgstr "No se pudo mutear al chat" #~ msgid "Could not unmute chat" #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:270 +#: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" msgstr "" @@ -1421,17 +1469,17 @@ msgstr "Crear una cuenta nueva" msgid "Create a new Bluesky account" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:157 +#: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:257 +#: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +#: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" msgstr "" @@ -1462,8 +1510,8 @@ msgid "Create new account" msgstr "Crear una cuenta nueva" #: src/components/StarterPack/ShareDialog.tsx:158 -msgid "Create QR code" -msgstr "" +#~ msgid "Create QR code" +#~ msgstr "" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1474,6 +1522,7 @@ msgid "Created {0}" msgstr "Creado {0}" #: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:84 msgid "Culture" msgstr "" @@ -1530,9 +1579,9 @@ msgid "Debug panel" msgstr "" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:449 -#: src/screens/StarterPack/StarterPackScreen.tsx:528 -#: src/screens/StarterPack/StarterPackScreen.tsx:608 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1593,12 +1642,12 @@ msgstr "" msgid "Delete post" msgstr "Borrar una post" -#: src/screens/StarterPack/StarterPackScreen.tsx:443 -#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:450 +#: src/screens/StarterPack/StarterPackScreen.tsx:606 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:494 +#: src/screens/StarterPack/StarterPackScreen.tsx:501 msgid "Delete starter pack?" msgstr "" @@ -1662,7 +1711,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:68 #: src/screens/Messages/Settings.tsx:140 #: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:341 +#: src/screens/Moderation/index.tsx:346 msgid "Disabled" msgstr "" @@ -1674,8 +1723,8 @@ msgstr "Descartar" msgid "Discard draft?" msgstr "" -#: src/screens/Moderation/index.tsx:518 -#: src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:542 +#: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" msgstr "Evitar que las aplicaciones muestren mi cuenta a los usuarios desconectados" @@ -1726,6 +1775,7 @@ msgstr "¡Dominio verificado!" #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/ThreadgateEditor.tsx:88 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 @@ -1745,8 +1795,6 @@ msgstr "Listo" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 #: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/Threadgate.tsx:136 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 #: src/view/screens/PreferencesThreads.tsx:162 @@ -1758,7 +1806,7 @@ msgstr "" msgid "Done{extraText}" msgstr "Listo{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 msgid "Download Bluesky" msgstr "" @@ -1815,9 +1863,9 @@ msgstr "p. ej. Usuarios que constantemente responden con publicidad." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cada código funciona una vez. Recibirás más códigos de invitación periódicamente." -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:522 -#: src/screens/StarterPack/Wizard/index.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" @@ -1833,7 +1881,7 @@ msgstr "" msgid "Edit avatar" msgstr "" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "" @@ -1861,7 +1909,7 @@ msgstr "Editar mis noticias" msgid "Edit my profile" msgstr "Editar mi perfil" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "" @@ -1880,7 +1928,7 @@ msgstr "Editar el perfil" #~ msgid "Edit Saved Feeds" #~ msgstr "Editar mis noticias guardadas" -#: src/screens/StarterPack/StarterPackScreen.tsx:430 +#: src/screens/StarterPack/StarterPackScreen.tsx:437 msgid "Edit starter pack" msgstr "" @@ -1888,8 +1936,7 @@ msgstr "" msgid "Edit User List" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" msgstr "" @@ -1906,9 +1953,14 @@ msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:86 msgid "Education" msgstr "" +#: src/components/dialogs/ThreadgateEditor.tsx:98 +msgid "Either choose \"Everybody\" or \"Nobody\"" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" @@ -1957,7 +2009,7 @@ msgstr "" msgid "Enable {0} only" msgstr "" -#: src/screens/Moderation/index.tsx:329 +#: src/screens/Moderation/index.tsx:333 msgid "Enable adult content" msgstr "" @@ -1989,7 +2041,7 @@ msgstr "" #: src/screens/Messages/Settings.tsx:131 #: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:339 +#: src/screens/Moderation/index.tsx:344 msgid "Enabled" msgstr "" @@ -2059,19 +2111,18 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Error:" -#: src/view/com/modals/Threadgate.tsx:79 +#: src/components/dialogs/ThreadgateEditor.tsx:102 msgid "Everybody" msgstr "Todos" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#: src/view/com/threadgate/WhoCanReply.tsx:64 -#: src/view/com/threadgate/WhoCanReply.tsx:121 -#: src/view/com/threadgate/WhoCanReply.tsx:235 +#: src/components/WhoCanReply.tsx:69 +#: src/components/WhoCanReply.tsx:240 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "" @@ -2166,8 +2217,8 @@ msgstr "Medios externos" msgid "Failed to create app password." msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:241 -#: src/screens/StarterPack/Wizard/index.tsx:249 +#: src/screens/StarterPack/Wizard/index.tsx:230 +#: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" msgstr "" @@ -2183,7 +2234,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/StarterPackScreen.tsx:569 msgid "Failed to delete starter pack" msgstr "" @@ -2214,7 +2265,7 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" msgstr "" @@ -2235,7 +2286,7 @@ msgstr "" msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:280 +#: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "" @@ -2257,7 +2308,7 @@ msgstr "" #~ msgid "Feed offline" #~ msgstr "Noticias fuera de línea" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "" @@ -2267,10 +2318,9 @@ msgid "Feedback" msgstr "Comentarios" #: src/Navigation.tsx:320 -#: src/screens/StarterPack/Wizard/index.tsx:201 #: src/view/screens/Feeds.tsx:445 #: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:220 +#: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:373 #: src/view/shell/Drawer.tsx:493 @@ -2286,7 +2336,7 @@ msgstr "Las noticias son algoritmos personalizados que los usuarios construyen c #~ msgid "Feeds can be topical as well!" #~ msgstr "" -#: src/components/FeedCard.tsx:277 +#: src/components/FeedCard.tsx:282 msgid "Feeds updated!" msgstr "" @@ -2324,7 +2374,7 @@ msgstr "" msgid "Fine-tune the discussion threads." msgstr "Ajusta los hilos de discusión." -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" msgstr "" @@ -2372,8 +2422,8 @@ msgstr "" msgid "Follow Account" msgstr "Seguir cuenta" -#: src/screens/StarterPack/StarterPackScreen.tsx:308 -#: src/screens/StarterPack/StarterPackScreen.tsx:315 +#: src/screens/StarterPack/StarterPackScreen.tsx:317 +#: src/screens/StarterPack/StarterPackScreen.tsx:324 msgid "Follow all" msgstr "" @@ -2417,7 +2467,7 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/view/com/modals/Threadgate.tsx:101 +#: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" msgstr "Usuarios seguidos" @@ -2481,6 +2531,7 @@ msgid "Follows You" msgstr "Te sigue" #: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:87 msgid "Food" msgstr "Comida" @@ -2522,7 +2573,7 @@ msgstr "" msgid "Gallery" msgstr "Galería" -#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" msgstr "" @@ -2552,7 +2603,7 @@ msgstr "Violaciones flagrantes de la Ley o de los Términos de servicio" #: src/view/com/auth/LoggedOut.tsx:78 #: src/view/com/auth/LoggedOut.tsx:79 #: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:133 msgid "Go back" @@ -2561,9 +2612,9 @@ msgstr "Volver" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:628 #: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Volver" @@ -2577,7 +2628,7 @@ msgstr "Volver" msgid "Go back to previous step" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:313 +#: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" msgstr "" @@ -2713,7 +2764,7 @@ msgstr "El servidor de noticias ha respondido de forma incorrecta. Por favor, in msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Tenemos problemas para encontrar esta noticia. Puede que la hayan borrado." -#: src/screens/Moderation/index.tsx:59 +#: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "" @@ -2804,7 +2855,7 @@ msgstr "" msgid "Image alt text" msgstr "Texto alt de la imagen" -#: src/components/StarterPack/ShareDialog.tsx:88 +#: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" msgstr "" @@ -2897,7 +2948,7 @@ msgstr "" msgid "Invite codes: 1 available" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:109 +#: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" msgstr "" @@ -2913,7 +2964,7 @@ msgstr "" #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:473 +#: 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 "" @@ -2921,8 +2972,8 @@ msgstr "" msgid "Jobs" msgstr "Tareas" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 msgid "Join Bluesky" msgstr "" @@ -2931,6 +2982,7 @@ msgid "Join the conversation" msgstr "" #: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:89 msgid "Journalism" msgstr "" @@ -2946,7 +2998,7 @@ msgstr "" msgid "Labeled by the author." msgstr "" -#: src/view/screens/Profile.tsx:214 +#: src/view/screens/Profile.tsx:207 msgid "Labels" msgstr "" @@ -3002,7 +3054,7 @@ msgstr "" msgid "Learn more about this warning" msgstr "Aprender más acerca de esta advertencia" -#: src/screens/Moderation/index.tsx:549 +#: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." msgstr "Más información sobre lo que es público en Bluesky." @@ -3043,7 +3095,7 @@ msgstr "" msgid "Legacy storage cleared, you need to restart the app now." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:293 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" msgstr "" @@ -3065,7 +3117,7 @@ msgstr "" #~ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Dar «me gusta» a esta noticia" @@ -3103,7 +3155,7 @@ msgstr "" msgid "liked your post" msgstr "" -#: src/view/screens/Profile.tsx:219 +#: src/view/screens/Profile.tsx:212 msgid "Likes" msgstr "Cantidad de «Me gusta»" @@ -3149,8 +3201,8 @@ msgid "List unmuted" msgstr "" #: src/Navigation.tsx:122 +#: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/screens/Profile.tsx:222 #: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 @@ -3179,7 +3231,7 @@ msgstr "Cargar notificaciones nuevas" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:493 +#: src/view/screens/ProfileFeed.tsx:494 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Cargar posts nuevos" @@ -3204,7 +3256,7 @@ msgstr "" msgid "Log out" msgstr "" -#: src/screens/Moderation/index.tsx:442 +#: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" msgstr "Visibilidad de desconexión" @@ -3236,7 +3288,7 @@ msgstr "" msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +#: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" msgstr "" @@ -3254,15 +3306,15 @@ msgid "Mark as read" msgstr "" #: src/view/screens/AccessibilitySettings.tsx:102 -#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:211 msgid "Media" msgstr "Multimedia" -#: src/view/com/threadgate/WhoCanReply.tsx:270 +#: src/components/WhoCanReply.tsx:275 msgid "mentioned users" msgstr "usuarios mencionados" -#: src/view/com/modals/Threadgate.tsx:96 +#: src/components/dialogs/ThreadgateEditor.tsx:119 msgid "Mentioned users" msgstr "Usuarios mencionados" @@ -3313,7 +3365,7 @@ msgid "Misleading Account" msgstr "" #: src/Navigation.tsx:127 -#: src/screens/Moderation/index.tsx:104 +#: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "Moderación" @@ -3346,7 +3398,7 @@ msgstr "" msgid "Moderation list updated" msgstr "" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:246 msgid "Moderation lists" msgstr "Listas de moderación" @@ -3363,7 +3415,7 @@ msgstr "" msgid "Moderation states" msgstr "" -#: src/screens/Moderation/index.tsx:215 +#: src/screens/Moderation/index.tsx:218 msgid "Moderation tools" msgstr "" @@ -3372,7 +3424,7 @@ msgstr "" msgid "Moderator has chosen to set a general warning on the content." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:567 +#: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" msgstr "" @@ -3388,6 +3440,10 @@ msgstr "Más opciones" msgid "Most-liked replies first" msgstr "" +#: src/screens/Onboarding/state.ts:90 +msgid "Movies" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "" @@ -3457,7 +3513,7 @@ msgstr "" msgid "Muted" msgstr "Muteado" -#: src/screens/Moderation/index.tsx:255 +#: src/screens/Moderation/index.tsx:258 msgid "Muted accounts" msgstr "Cuentas muteadas" @@ -3474,7 +3530,7 @@ msgstr "Al mutear a una cuenta no verás sus posts en tu feed o notificaciones. msgid "Muted by \"{0}\"" msgstr "Muteado por \"{0}\"" -#: src/screens/Moderation/index.tsx:231 +#: src/screens/Moderation/index.tsx:234 msgid "Muted words & tags" msgstr "Palabras y etiquetas muteadas" @@ -3520,6 +3576,7 @@ msgid "Name or Description Violates Community Standards" msgstr "" #: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:91 msgid "Nature" msgstr "" @@ -3583,8 +3640,8 @@ msgstr "" #: src/view/screens/Feeds.tsx:580 #: src/view/screens/Notifications.tsx:193 -#: src/view/screens/Profile.tsx:485 -#: src/view/screens/ProfileFeed.tsx:427 +#: src/view/screens/Profile.tsx:478 +#: src/view/screens/ProfileFeed.tsx:428 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:277 @@ -3596,7 +3653,7 @@ msgctxt "action" msgid "New Post" msgstr "Nuevo post" -#: src/components/NewskieDialog.tsx:71 +#: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "" @@ -3609,6 +3666,7 @@ msgid "Newest replies first" msgstr "" #: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:92 msgid "News" msgstr "Noticias" @@ -3619,10 +3677,10 @@ msgstr "Noticias" #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:258 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:195 -#: src/screens/StarterPack/Wizard/index.tsx:372 -#: src/screens/StarterPack/Wizard/index.tsx:379 +#: src/screens/StarterPack/Wizard/index.tsx:184 +#: src/screens/StarterPack/Wizard/index.tsx:188 +#: src/screens/StarterPack/Wizard/index.tsx:359 +#: src/screens/StarterPack/Wizard/index.tsx:366 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3641,7 +3699,7 @@ msgstr "Imagen nueva" msgid "No" msgstr "No" -#: src/view/screens/ProfileFeed.tsx:560 +#: src/view/screens/ProfileFeed.tsx:562 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Sin descripción" @@ -3655,7 +3713,7 @@ msgstr "Sin panel de DNS" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." msgstr "" @@ -3728,11 +3786,11 @@ msgstr "" msgid "No thanks" msgstr "" -#: src/view/com/modals/Threadgate.tsx:85 +#: src/components/dialogs/ThreadgateEditor.tsx:108 msgid "Nobody" msgstr "Nadie" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Nobody can reply" msgstr "" @@ -3741,7 +3799,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -3754,7 +3812,7 @@ msgstr "" #~ msgstr "No aplicable." #: src/Navigation.tsx:117 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "" @@ -3769,7 +3827,7 @@ msgstr "" msgid "Note about sharing" msgstr "" -#: src/screens/Moderation/index.tsx:540 +#: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky es una red abierta y pública. Esta configuración sólo limita la visibilidad de tu contenido en la aplicación y el sitio web de Bluesky, y es posible que otras aplicaciones no respeten esta configuración. Otras aplicaciones y sitios web pueden seguir mostrando tu contenido a los usuarios que hayan cerrado sesión." @@ -3825,7 +3883,7 @@ msgstr "" msgid "Oh no!" msgstr "¡Qué problema!" -#: src/screens/Onboarding/StepInterests/index.tsx:133 +#: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." msgstr "" @@ -3861,7 +3919,7 @@ msgstr "Falta el texto alternativo en una o varias imágenes." msgid "Only .jpg and .png files are supported" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:239 +#: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" msgstr "" @@ -3878,10 +3936,10 @@ msgid "Oops, something went wrong!" msgstr "" #: src/components/Lists.tsx:191 -#: src/components/StarterPack/ProfileStarterPacks.tsx:302 -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "" @@ -3907,7 +3965,7 @@ msgstr "" msgid "Open emoji picker" msgstr "" -#: src/view/screens/ProfileFeed.tsx:295 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Open feed options menu" msgstr "" @@ -3919,7 +3977,7 @@ msgstr "" msgid "Open message options" msgstr "" -#: src/screens/Moderation/index.tsx:227 +#: src/screens/Moderation/index.tsx:230 msgid "Open muted words and tags settings" msgstr "" @@ -3931,7 +3989,7 @@ msgstr "Abrir navegación" msgid "Open post options menu" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 msgid "Open starter pack menu" msgstr "" @@ -3948,6 +4006,10 @@ msgstr "" msgid "Opens {numItems} options" msgstr "" +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" msgstr "" @@ -4090,7 +4152,7 @@ msgstr "" msgid "Optionally provide additional information below:" msgstr "" -#: src/view/com/modals/Threadgate.tsx:92 +#: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" msgstr "" @@ -4150,7 +4212,6 @@ msgstr "¡Contraseña actualizada!" msgid "Pause" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:194 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "" @@ -4163,32 +4224,37 @@ msgstr "" msgid "People following @{0}" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:67 +#: src/view/com/lightbox/Lightbox.tsx:69 msgid "Permission to access camera roll is required." msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:73 +#: src/view/com/lightbox/Lightbox.tsx:75 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:93 msgid "Pets" msgstr "" +#: src/screens/Onboarding/state.ts:94 +msgid "Photography" +msgstr "" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "Imágenes destinadas a adultos." -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 msgid "Pin to Home" msgstr "" @@ -4284,6 +4350,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Por favor, espera a que tu tarjeta de enlace termine de cargarse" #: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:95 msgid "Politics" msgstr "Política" @@ -4347,7 +4414,7 @@ msgstr "Publicación no encontrada" msgid "posts" msgstr "" -#: src/view/screens/Profile.tsx:216 +#: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Publicaciones" @@ -4421,7 +4488,7 @@ msgid "Processing..." msgstr "Procesando..." #: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:353 +#: src/view/screens/Profile.tsx:346 msgid "profile" msgstr "" @@ -4461,15 +4528,15 @@ msgstr "" msgid "Publish reply" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:131 +#: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:109 +#: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:110 +#: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" msgstr "" @@ -4523,7 +4590,9 @@ msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:325 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -4532,7 +4601,7 @@ msgstr "" msgid "Remove" msgstr "Eliminar" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" msgstr "" @@ -4564,13 +4633,13 @@ msgstr "" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:332 +#: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Eliminar de mis canales de noticias" -#: src/components/FeedCard.tsx:315 +#: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "" @@ -4618,7 +4687,7 @@ msgid "Removed from my feeds" msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "" @@ -4636,19 +4705,19 @@ msgstr "" msgid "Replace with Discover" msgstr "" -#: src/view/screens/Profile.tsx:217 +#: src/view/screens/Profile.tsx:210 msgid "Replies" msgstr "Respuestas" -#: src/view/com/threadgate/WhoCanReply.tsx:66 +#: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" msgstr "" #: src/view/com/threadgate/WhoCanReply.tsx:123 -msgid "Replies on this thread are disabled" -msgstr "" +#~ msgid "Replies on this thread are disabled" +#~ msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:237 +#: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "Las respuestas a este hilo están desactivadas" @@ -4698,8 +4767,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/view/screens/ProfileFeed.tsx:348 -#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:351 msgid "Report feed" msgstr "Informe del canal de noticias" @@ -4716,8 +4785,8 @@ msgstr "" msgid "Report post" msgstr "Informe de la post" -#: src/screens/StarterPack/StarterPackScreen.tsx:469 -#: src/screens/StarterPack/StarterPackScreen.tsx:472 +#: src/screens/StarterPack/StarterPackScreen.tsx:476 +#: src/screens/StarterPack/StarterPackScreen.tsx:479 msgid "Report starter pack" msgstr "" @@ -4763,7 +4832,7 @@ msgstr "" msgid "Repost" msgstr "Volver a publicar" -#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:418 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4859,12 +4928,12 @@ msgstr "" #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 #: src/screens/Login/LoginForm.tsx:291 #: src/screens/Login/LoginForm.tsx:298 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/Onboarding/StepInterests/index.tsx:234 #: src/screens/Signup/index.tsx:245 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 @@ -4876,7 +4945,7 @@ msgstr "Intentar de nuevo" #~ msgstr "Intentar de nuevo" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:622 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "" @@ -4886,12 +4955,13 @@ msgid "Returns to home page" msgstr "" #: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/ProfileFeed.tsx:113 msgid "Returns to previous page" msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/StarterPack/QrCodeDialog.tsx:190 +#: src/components/dialogs/ThreadgateEditor.tsx:88 +#: src/components/StarterPack/QrCodeDialog.tsx:184 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -4900,7 +4970,7 @@ msgstr "" msgid "Save" msgstr "Guardar" -#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/lightbox/Lightbox.tsx:135 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -4922,8 +4992,8 @@ msgstr "Guardar cambios" msgid "Save handle change" msgstr "Guardar cambio de nombre de usuario" -#: src/components/StarterPack/ShareDialog.tsx:163 -#: src/components/StarterPack/ShareDialog.tsx:170 +#: src/components/StarterPack/ShareDialog.tsx:150 +#: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" msgstr "" @@ -4931,12 +5001,12 @@ msgstr "" msgid "Save image crop" msgstr "Guardar recorte de imagen" -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" msgstr "Guardar a mis feeds" @@ -4944,7 +5014,7 @@ msgstr "Guardar a mis feeds" msgid "Saved Feeds" msgstr "Feeds Guardados" -#: src/view/com/lightbox/Lightbox.tsx:82 +#: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" msgstr "" @@ -4952,7 +5022,7 @@ msgstr "" #~ msgid "Saved to your camera roll." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "" @@ -4970,13 +5040,14 @@ msgid "Saves image crop settings" msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:82 +#: src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:372 #: src/view/com/notifications/FeedItem.tsx:397 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:96 msgid "Science" msgstr "Ciencia" @@ -5018,7 +5089,7 @@ msgstr "" msgid "Search for all posts with tag {displayTag}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:467 +#: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -5156,7 +5227,7 @@ msgstr "Elige en que idioma deseas que esté la interfaz de Bluesky." msgid "Select your date of birth" msgstr "Elige tu fecha de nacimiento" -#: src/screens/Onboarding/StepInterests/index.tsx:201 +#: src/screens/Onboarding/StepInterests/index.tsx:206 msgid "Select your interests from the options below" msgstr "" @@ -5233,7 +5304,7 @@ msgstr "" msgid "Server address" msgstr "Dirección del servidor" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:307 msgid "Set birthdate" msgstr "Establecer cumpleaños" @@ -5321,9 +5392,9 @@ msgstr "Actividad sexual o desnudez erótica." msgid "Sexually Suggestive" msgstr "Sexualmente sugestivo" -#: src/components/StarterPack/QrCodeDialog.tsx:180 -#: src/screens/StarterPack/StarterPackScreen.tsx:303 -#: src/screens/StarterPack/StarterPackScreen.tsx:458 +#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/screens/StarterPack/StarterPackScreen.tsx:312 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5333,7 +5404,7 @@ msgstr "Sexualmente sugestivo" msgid "Share" msgstr "Compartir" -#: src/view/com/lightbox/Lightbox.tsx:142 +#: src/view/com/lightbox/Lightbox.tsx:144 msgctxt "action" msgid "Share" msgstr "Compartir" @@ -5352,30 +5423,36 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/view/screens/ProfileFeed.tsx:358 -#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:361 msgid "Share feed" msgstr "Compartir feed" -#: src/screens/StarterPack/StarterPackScreen.tsx:462 +#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/screens/StarterPack/StarterPackScreen.tsx:469 msgid "Share link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "Compartir enlace" -#: src/components/StarterPack/ShareDialog.tsx:100 +#: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:296 +#: src/components/StarterPack/ShareDialog.tsx:134 +#: src/components/StarterPack/ShareDialog.tsx:145 +msgid "Share QR code" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:305 msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:112 +#: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5429,7 +5506,7 @@ msgstr "" msgid "Show less like this" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:533 +#: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" @@ -5589,33 +5666,33 @@ msgstr "Sesión iniciada como @{0}" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:240 -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Saltar" -#: src/screens/Onboarding/StepInterests/index.tsx:237 +#: src/screens/Onboarding/StepInterests/index.tsx:242 msgid "Skip this flow" msgstr "Saltar" #: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:85 msgid "Software Dev" msgstr "Programación" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 -#: src/view/com/threadgate/WhoCanReply.tsx:67 -#: src/view/com/threadgate/WhoCanReply.tsx:124 +#: src/components/WhoCanReply.tsx:72 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "" #: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "" +#~ msgid "Some subtitle" +#~ msgstr "" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -5627,7 +5704,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 +#: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Ocurrió un error. Intenta de nuevo." @@ -5663,6 +5740,7 @@ msgid "Spam; excessive mentions or replies" msgstr "Spam; menciones o respuestas excesivas" #: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:97 msgid "Sports" msgstr "Deportes" @@ -5684,7 +5762,7 @@ msgstr "" #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -5692,14 +5770,18 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:214 msgid "Starter Packs" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + #: src/view/screens/Settings/index.tsx:963 msgid "Status Page" msgstr "" @@ -5813,6 +5895,7 @@ msgid "Tap to view fully" msgstr "" #: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:98 msgid "Tech" msgstr "Tecnología" @@ -5865,10 +5948,10 @@ msgstr "" msgid "That handle is already taken." msgstr "Este nombre de usuario ya está en uso." -#: src/screens/StarterPack/StarterPackScreen.tsx:100 -#: src/screens/StarterPack/StarterPackScreen.tsx:101 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:102 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/Wizard/index.tsx:106 +#: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." msgstr "" @@ -5889,7 +5972,7 @@ msgstr "Las Directrices Comunitarias se ha trasladado a <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "La Política de derechos de autor se han trasladado a <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -5918,7 +6001,7 @@ msgstr "Es posible que se haya borrado el post." msgid "The Privacy Policy has been moved to <0/>" msgstr "La Política de privacidad se ha trasladado a <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:589 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -5939,7 +6022,7 @@ 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:542 +#: src/view/screens/ProfileFeed.tsx:544 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -5949,7 +6032,7 @@ msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "" @@ -5962,7 +6045,7 @@ msgstr "" #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:233 +#: src/view/screens/ProfileFeed.tsx:234 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6020,6 +6103,7 @@ msgstr "" msgid "There was an issue! {0}" msgstr "Ocurrió un problema {0}" +#: src/components/WhoCanReply.tsx:116 #: src/view/screens/ProfileList.tsx:335 #: src/view/screens/ProfileList.tsx:349 #: src/view/screens/ProfileList.tsx:363 @@ -6112,7 +6196,7 @@ msgstr "Este feed está recibiendo mucho tráfico y no está disponible temporal msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "" -#: src/view/screens/ProfileFeed.tsx:472 +#: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" @@ -6219,7 +6303,7 @@ msgstr "" msgid "This user is included in the <0>{0} list which you have muted." msgstr "" -#: src/components/NewskieDialog.tsx:53 +#: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." msgstr "" @@ -6244,6 +6328,10 @@ msgstr "Preferencias de hilos" msgid "Thread Preferences" msgstr "Preferencias de hilos" +#: src/components/WhoCanReply.tsx:109 +msgid "Thread settings updated" +msgstr "" + #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "Modo con hilos" @@ -6272,7 +6360,7 @@ msgstr "" msgid "Toggle dropdown" msgstr "Conmutar el menú desplegable" -#: src/screens/Moderation/index.tsx:332 +#: src/screens/Moderation/index.tsx:336 msgid "Toggle to enable or disable adult content" msgstr "" @@ -6287,8 +6375,8 @@ msgstr "Transformaciones" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: 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 msgid "Translate" @@ -6299,6 +6387,10 @@ msgctxt "action" msgid "Try again" msgstr "Intentar de nuevo" +#: src/screens/Onboarding/state.ts:99 +msgid "TV" +msgstr "" + #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" msgstr "" @@ -6328,7 +6420,7 @@ msgstr "Demutear lista" msgid "Unable to contact your service. Please check your Internet connection." msgstr "No se puede contactar con tu proveedor. Comprueba tu conexión a Internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:513 +#: src/screens/StarterPack/StarterPackScreen.tsx:520 msgid "Unable to delete" msgstr "" @@ -6391,7 +6483,7 @@ msgstr "Dejar de seguir a esta cuenta" #~ msgid "Unlike" #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Unlike this feed" msgstr "" @@ -6426,12 +6518,12 @@ msgstr "" msgid "Unmute thread" msgstr "Demutear hilo" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Desfijar" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 msgid "Unpin from home" msgstr "" @@ -6601,7 +6693,7 @@ msgstr "Nombre de usuario o dirección de correo electrónico" msgid "Users" msgstr "Usuarios" -#: src/view/com/threadgate/WhoCanReply.tsx:274 +#: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" msgstr "usuarios seguidos por <0/>" @@ -6612,7 +6704,7 @@ msgstr "usuarios seguidos por <0/>" msgid "Users I follow" msgstr "" -#: src/view/com/modals/Threadgate.tsx:109 +#: src/components/dialogs/ThreadgateEditor.tsx:132 msgid "Users in \"{0}\"" msgstr "Usuarios en \"{0}\"" @@ -6662,6 +6754,7 @@ msgid "Version {appVersion} {bundleInfo}" msgstr "" #: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:88 msgid "Video Games" msgstr "Videojuegos" @@ -6713,7 +6806,7 @@ msgstr "Ver el avatar" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/view/screens/ProfileFeed.tsx:583 +#: src/view/screens/ProfileFeed.tsx:585 msgid "View users who like this feed" msgstr "" @@ -6773,11 +6866,11 @@ msgstr "" msgid "We were unable to load your birth date preferences. Please try again." msgstr "" -#: src/screens/Moderation/index.tsx:385 +#: src/screens/Moderation/index.tsx:409 msgid "We were unable to load your configured labelers at this time." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:143 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" @@ -6785,7 +6878,7 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:148 msgid "We'll use this to help customize your experience." msgstr "" @@ -6830,7 +6923,11 @@ msgstr "" msgid "Welcome back!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:135 +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" msgstr "¿Cuáles son tus intereses?" @@ -6857,17 +6954,15 @@ msgstr "¿Qué idiomas te gustaría ver en tus feeds?" msgid "Who can message you?" msgstr "" -#: src/view/com/modals/Threadgate.tsx:69 -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Who can reply" msgstr "Quién puede responder" -#: src/view/com/threadgate/WhoCanReply.tsx:206 +#: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:210 +#: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" msgstr "" @@ -6923,6 +7018,7 @@ msgid "Write your reply" msgstr "Redacta una respuesta" #: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:100 msgid "Writers" msgstr "Escritores" @@ -6941,7 +7037,7 @@ msgstr "Sí" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:525 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Yes, delete this starter pack" msgstr "" @@ -6957,6 +7053,10 @@ msgstr "" msgid "you" msgstr "" +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + #: src/screens/SignupQueued.tsx:136 msgid "You are in line." msgstr "Estás en cola." @@ -7090,6 +7190,10 @@ msgstr "" msgid "You have reached the end" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +msgid "You haven't created a starter pack yet!" +msgstr "" + #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "" @@ -7118,15 +7222,15 @@ msgstr "Tienes que tener 13 años o más para poder crear una cuenta." #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Tienes que tener 18 años o más para poder activar el contenido adulto" -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:62 +#: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." msgstr "" @@ -7178,7 +7282,7 @@ msgstr "" msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/fi/messages.po b/src/locale/locales/fi/messages.po index 3e8e6b9c50..401d3eca34 100644 --- a/src/locale/locales/fi/messages.po +++ b/src/locale/locales/fi/messages.po @@ -67,7 +67,7 @@ msgstr "" msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:215 +#: src/components/FeedCard.tsx:216 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -88,7 +88,11 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:343 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +msgid "{0} joined this week" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:350 msgid "{0} people have used this starter pack!" msgstr "" @@ -132,7 +136,7 @@ msgstr "" msgid "{diffSeconds, plural, one {second} other {seconds}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" msgstr "" @@ -155,7 +159,7 @@ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:586 +#: src/view/screens/ProfileFeed.tsx:588 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -163,11 +167,11 @@ msgstr "" msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} lukematonta" -#: src/components/NewskieDialog.tsx:92 +#: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" msgstr "" -#: src/components/NewskieDialog.tsx:87 +#: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "" @@ -175,17 +179,27 @@ msgstr "" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:290 +#: src/components/WhoCanReply.tsx:295 msgid "<0/> members" msgstr "<0/> jäsentä" #: src/screens/StarterPack/Wizard/index.tsx:485 -msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +#~ 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 "" + +#: 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 "" +#~ 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 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -195,11 +209,15 @@ msgstr "" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" +#: 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 "<0>{0} seurattua" -#: src/screens/StarterPack/Wizard/index.tsx:478 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -228,6 +246,10 @@ msgstr "" #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "<0>Tervetuloa<1>Blueskyhin" +#: src/screens/StarterPack/Wizard/index.tsx:457 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠Virheellinen käyttäjätunnus" @@ -318,11 +340,11 @@ msgstr "Käyttäjätilin hiljennys poistettu" msgid "Add" msgstr "Lisää" -#: src/screens/StarterPack/Wizard/index.tsx:539 +#: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:56 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" msgstr "" @@ -369,14 +391,14 @@ msgid "Add muted words and tags" msgstr "Lisää hiljennetyt sanat ja aihetunnisteet" #: src/screens/StarterPack/Wizard/index.tsx:197 -msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "" +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:464 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" msgstr "" @@ -388,7 +410,7 @@ msgstr "" msgid "Add the following DNS record to your domain:" msgstr "Lisää seuraava DNS-merkintä verkkotunnukseesi:" -#: src/components/FeedCard.tsx:300 +#: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" msgstr "" @@ -423,16 +445,20 @@ msgstr "Säädä, kuinka monta tykkäystä vastauksen on saatava näkyäkseen sy msgid "Adult Content" msgstr "Aikuissisältöä" +#: src/screens/Moderation/index.tsx:356 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "Aikuissisältö on estetty" -#: src/screens/Moderation/index.tsx:375 +#: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "Edistyneemmät" -#: src/screens/StarterPack/StarterPackScreen.tsx:271 +#: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "All accounts have been followed!" msgstr "" @@ -497,16 +523,16 @@ msgstr "Sähköposti on lähetetty aiempaan osoitteeseesi, {0}. Siinä on vahvis msgid "An error occured" msgstr "Tapahtui virhe" -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +#: 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 "" +#~ msgid "An error occurred while saving the image." +#~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:76 -#: src/components/StarterPack/ShareDialog.tsx:91 +#: src/components/StarterPack/QrCodeDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "" @@ -514,7 +540,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:275 msgid "An error occurred while trying to follow all" msgstr "" @@ -531,16 +557,17 @@ msgstr "Ongelma, jota ei ole sisällytetty näihin vaihtoehtoihin" msgid "An issue occurred, please try again." msgstr "Tapahtui virhe, yritä uudelleen." -#: src/screens/Onboarding/StepInterests/index.tsx:194 +#: src/screens/Onboarding/StepInterests/index.tsx:199 msgid "an unknown error occurred" msgstr "" +#: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:280 -#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "ja" #: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:79 msgid "Animals" msgstr "Eläimet" @@ -612,7 +639,7 @@ msgstr "Ulkonäkö" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -640,7 +667,7 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Haluatko varmasti poistaa {0} syötteistäsi?" -#: src/components/FeedCard.tsx:317 +#: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -657,6 +684,7 @@ msgid "Are you writing in <0>{0}?" msgstr "Onko viestisi kieli <0>{0}?" #: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:80 msgid "Art" msgstr "Taide" @@ -683,7 +711,7 @@ msgstr "Vähintään kolme merkkiä" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:312 +#: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Takaisin" @@ -740,7 +768,7 @@ msgstr "Estetäänkö nämä käyttäjät?" msgid "Blocked" msgstr "Estetty" -#: src/screens/Moderation/index.tsx:267 +#: src/screens/Moderation/index.tsx:270 msgid "Blocked accounts" msgstr "Estetyt käyttäjät" @@ -801,11 +829,11 @@ msgstr "Bluesky on avoin verkko, jossa voit valita palveluntarjoajasi. Räätäl #~ msgid "Bluesky is public." #~ msgstr "Bluesky on julkinen." -#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:533 +#: 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 ei näytä profiiliasi ja viestejäsi kirjautumattomille käyttäjille. Toiset sovellukset eivät ehkä noudata tätä asetusta. Tämä ei tee käyttäjätilistäsi yksityistä." @@ -818,6 +846,7 @@ msgid "Blur images and filter from feeds" msgstr "Sumenna kuvat ja suodata syötteistä" #: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:81 msgid "Books" msgstr "Kirjat" @@ -1027,13 +1056,21 @@ msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "Tarkista sähköpostisi ja syötä saamasi vahvistuskoodi alle:" #: src/view/com/modals/Threadgate.tsx:75 -msgid "Choose \"Everybody\" or \"Nobody\"" -msgstr "Valitse \"Kaikki\" tai \"Ei kukaan\"" +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "Valitse \"Kaikki\" tai \"Ei kukaan\"" -#: src/components/StarterPack/ProfileStarterPacks.tsx:288 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:187 +msgid "Choose People" +msgstr "" + #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Valitse palvelu" @@ -1051,6 +1088,11 @@ msgstr "Valitse algoritmit, jotka ohjaavat mukautettuja syötteitäsi." msgid "Choose this color as your avatar" msgstr "" +#: 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 "Valitse pääsyötteet" @@ -1123,18 +1165,18 @@ msgstr "" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/NewskieDialog.tsx:120 -#: src/components/NewskieDialog.tsx:127 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:121 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:127 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: 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:189 msgid "Close" msgstr "Sulje" -#: src/components/Dialog/index.web.tsx:113 -#: src/components/Dialog/index.web.tsx:251 +#: src/components/Dialog/index.web.tsx:116 +#: src/components/Dialog/index.web.tsx:254 msgid "Close active dialog" msgstr "Sulje aktiivinen ikkuna" @@ -1201,10 +1243,12 @@ msgid "Collapses list of users for a given notification" msgstr "Pienentää käyttäjäluettelon annetulle ilmoitukselle" #: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:82 msgid "Comedy" msgstr "Komedia" #: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:83 msgid "Comics" msgstr "Sarjakuvat" @@ -1266,11 +1310,11 @@ msgstr "Vahvista sisällön kieliasetukset" msgid "Confirm delete account" msgstr "Vahvista käyttäjätilin poisto" -#: src/screens/Moderation/index.tsx:301 +#: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "Vahvista ikäsi:" -#: src/screens/Moderation/index.tsx:292 +#: src/screens/Moderation/index.tsx:295 msgid "Confirm your birthdate" msgstr "Vahvista syntymäaikasi" @@ -1300,7 +1344,7 @@ msgstr "Ota yhteyttä tukeen" msgid "Content Blocked" msgstr "Sisältö estetty" -#: src/screens/Moderation/index.tsx:285 +#: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "Sisältösuodattimet" @@ -1329,7 +1373,7 @@ msgstr "Sisältövaroitukset" msgid "Context menu backdrop, click to close the menu." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepInterests/index.tsx:258 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Jatka" @@ -1342,7 +1386,7 @@ msgstr "Jatka käyttäjänä {0} (kirjautunut)" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:251 msgid "Continue to next step" @@ -1390,7 +1434,7 @@ msgstr "Kopioitu!" msgid "Copies app password" msgstr "Kopioi sovellussalasanan" -#: src/components/StarterPack/QrCodeDialog.tsx:180 +#: src/components/StarterPack/QrCodeDialog.tsx:174 #: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Kopioi" @@ -1404,7 +1448,11 @@ msgstr "Kopioi {0}" msgid "Copy code" msgstr "Kopioi koodi" -#: src/components/StarterPack/ShareDialog.tsx:143 +#: src/components/StarterPack/ShareDialog.tsx:123 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" msgstr "" @@ -1427,7 +1475,7 @@ msgstr "" msgid "Copy post text" msgstr "Kopioi viestin teksti" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" msgstr "" @@ -1440,7 +1488,7 @@ msgstr "Tekijänoikeuskäytäntö" msgid "Could not leave chat" msgstr "" -#: src/view/screens/ProfileFeed.tsx:102 +#: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" msgstr "Syötettä ei voitu ladata" @@ -1460,7 +1508,7 @@ msgstr "" #~ msgid "Could not unmute chat" #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:270 +#: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" msgstr "" @@ -1473,17 +1521,17 @@ msgstr "Luo uusi käyttäjätili" msgid "Create a new Bluesky account" msgstr "Luo uusi Bluesky-tili" -#: src/components/StarterPack/QrCodeDialog.tsx:157 +#: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:257 +#: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +#: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" msgstr "" @@ -1514,8 +1562,8 @@ msgid "Create new account" msgstr "Luo uusi käyttäjätili" #: src/components/StarterPack/ShareDialog.tsx:158 -msgid "Create QR code" -msgstr "" +#~ msgid "Create QR code" +#~ msgstr "" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1526,6 +1574,7 @@ msgid "Created {0}" msgstr "{0} luotu" #: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:84 msgid "Culture" msgstr "Kulttuuri" @@ -1582,9 +1631,9 @@ msgid "Debug panel" msgstr "Vianetsintäpaneeli" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:449 -#: src/screens/StarterPack/StarterPackScreen.tsx:528 -#: src/screens/StarterPack/StarterPackScreen.tsx:608 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1645,12 +1694,12 @@ msgstr "Poista käyttäjätilini…" msgid "Delete post" msgstr "Poista viesti" -#: src/screens/StarterPack/StarterPackScreen.tsx:443 -#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:450 +#: src/screens/StarterPack/StarterPackScreen.tsx:606 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:494 +#: src/screens/StarterPack/StarterPackScreen.tsx:501 msgid "Delete starter pack?" msgstr "" @@ -1714,7 +1763,7 @@ msgstr "Poista haptiset palautteet käytöstä" #: src/lib/moderation/useLabelBehaviorDescription.ts:68 #: src/screens/Messages/Settings.tsx:140 #: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:341 +#: src/screens/Moderation/index.tsx:346 msgid "Disabled" msgstr "Poistettu käytöstä" @@ -1726,8 +1775,8 @@ msgstr "Hylkää" msgid "Discard draft?" msgstr "Hylkää luonnos?" -#: src/screens/Moderation/index.tsx:518 -#: src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:542 +#: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" msgstr "Estä sovelluksia näyttämästä tiliäni kirjautumattomille käyttäjille" @@ -1778,6 +1827,7 @@ msgstr "Verkkotunnus vahvistettu!" #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/ThreadgateEditor.tsx:88 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 @@ -1797,8 +1847,6 @@ msgstr "Valmis" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 #: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/Threadgate.tsx:136 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 #: src/view/screens/PreferencesThreads.tsx:162 @@ -1810,7 +1858,7 @@ msgstr "Valmis" msgid "Done{extraText}" msgstr "Valmis{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 msgid "Download Bluesky" msgstr "" @@ -1867,9 +1915,9 @@ msgstr "esim. Käyttäjät, jotka vastaavat toistuvasti mainoksilla." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Jokainen koodi toimii vain kerran. Saat lisää kutsukoodeja säännöllisin väliajoin." -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:522 -#: src/screens/StarterPack/Wizard/index.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" @@ -1885,7 +1933,7 @@ msgstr "Muokkaa" msgid "Edit avatar" msgstr "Muokkaa profiilikuvaa" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "" @@ -1913,7 +1961,7 @@ msgstr "Muokkaa syötteitä" msgid "Edit my profile" msgstr "Muokkaa profiilia" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "" @@ -1932,7 +1980,7 @@ msgstr "Muokkaa profiilia" #~ msgid "Edit Saved Feeds" #~ msgstr "Muokkaa tallennettuja syötteitä" -#: src/screens/StarterPack/StarterPackScreen.tsx:430 +#: src/screens/StarterPack/StarterPackScreen.tsx:437 msgid "Edit starter pack" msgstr "" @@ -1940,8 +1988,7 @@ msgstr "" msgid "Edit User List" msgstr "Muokkaa käyttäjälistaa" -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" msgstr "" @@ -1958,9 +2005,14 @@ msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:86 msgid "Education" msgstr "Koulutus" +#: src/components/dialogs/ThreadgateEditor.tsx:98 +msgid "Either choose \"Everybody\" or \"Nobody\"" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" @@ -2009,7 +2061,7 @@ msgstr "Upota tämä julkaisu verkkosivustollesi. Kopioi vain seuraava koodinpä msgid "Enable {0} only" msgstr "Ota käyttöön vain {0}" -#: src/screens/Moderation/index.tsx:329 +#: src/screens/Moderation/index.tsx:333 msgid "Enable adult content" msgstr "Ota aikuissisältö käyttöön" @@ -2041,7 +2093,7 @@ msgstr "Ota käyttöön vain tämä lähde" #: src/screens/Messages/Settings.tsx:131 #: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:339 +#: src/screens/Moderation/index.tsx:344 msgid "Enabled" msgstr "Käytössä" @@ -2111,19 +2163,18 @@ msgstr "" msgid "Error receiving captcha response." msgstr "Virhe captcha-vastauksen vastaanottamisessa." -#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Virhe:" -#: src/view/com/modals/Threadgate.tsx:79 +#: src/components/dialogs/ThreadgateEditor.tsx:102 msgid "Everybody" msgstr "Kaikki" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#: src/view/com/threadgate/WhoCanReply.tsx:64 -#: src/view/com/threadgate/WhoCanReply.tsx:121 -#: src/view/com/threadgate/WhoCanReply.tsx:235 +#: src/components/WhoCanReply.tsx:69 +#: src/components/WhoCanReply.tsx:240 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "" @@ -2218,8 +2269,8 @@ msgstr "Ulkoisten mediasoittimien asetukset" msgid "Failed to create app password." msgstr "Sovellussalasanan luominen epäonnistui." -#: src/screens/StarterPack/Wizard/index.tsx:241 -#: src/screens/StarterPack/Wizard/index.tsx:249 +#: src/screens/StarterPack/Wizard/index.tsx:230 +#: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" msgstr "" @@ -2235,7 +2286,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "Viestin poistaminen epäonnistui, yritä uudelleen" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/StarterPackScreen.tsx:569 msgid "Failed to delete starter pack" msgstr "" @@ -2271,7 +2322,7 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" msgstr "Kuvan {0} tallennus epäonnistui" @@ -2292,7 +2343,7 @@ msgstr "" msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:280 +#: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "" @@ -2314,7 +2365,7 @@ msgstr "Syöte käyttäjältä {0}" #~ msgid "Feed offline" #~ msgstr "Syöte ei ole käytettävissä" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "" @@ -2324,10 +2375,9 @@ msgid "Feedback" msgstr "Palaute" #: src/Navigation.tsx:320 -#: src/screens/StarterPack/Wizard/index.tsx:201 #: src/view/screens/Feeds.tsx:445 #: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:220 +#: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:373 #: src/view/shell/Drawer.tsx:493 @@ -2347,7 +2397,7 @@ msgstr "Syötteet ovat käyttäjien rakentamia mukautettuja algoritmeja, jotka v #~ msgid "Feeds can be topical as well!" #~ msgstr "Syötteet voivat olla myös aihepiirikohtaisia!" -#: src/components/FeedCard.tsx:277 +#: src/components/FeedCard.tsx:282 msgid "Feeds updated!" msgstr "" @@ -2389,7 +2439,7 @@ msgstr "Hienosäädä näkemääsi sisältöä Seuratut-syötteessäsi." msgid "Fine-tune the discussion threads." msgstr "Hienosäädä keskusteluketjuja." -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" msgstr "" @@ -2437,8 +2487,8 @@ msgstr "" msgid "Follow Account" msgstr "Seuraa käyttäjää" -#: src/screens/StarterPack/StarterPackScreen.tsx:308 -#: src/screens/StarterPack/StarterPackScreen.tsx:315 +#: src/screens/StarterPack/StarterPackScreen.tsx:317 +#: src/screens/StarterPack/StarterPackScreen.tsx:324 msgid "Follow all" msgstr "" @@ -2486,7 +2536,7 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/view/com/modals/Threadgate.tsx:101 +#: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" msgstr "Seuratut käyttäjät" @@ -2550,6 +2600,7 @@ msgid "Follows You" msgstr "Seuraa sinua" #: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:87 msgid "Food" msgstr "Ruoka" @@ -2591,7 +2642,7 @@ msgstr "Lähde: <0/>" msgid "Gallery" msgstr "Galleria" -#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" msgstr "" @@ -2621,7 +2672,7 @@ msgstr "Ilmeisiä lain tai käyttöehtojen rikkomuksia" #: src/view/com/auth/LoggedOut.tsx:78 #: src/view/com/auth/LoggedOut.tsx:79 #: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:133 msgid "Go back" @@ -2630,9 +2681,9 @@ msgstr "Palaa takaisin" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:628 #: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Palaa takaisin" @@ -2646,7 +2697,7 @@ msgstr "Palaa takaisin" msgid "Go back to previous step" msgstr "Palaa edelliseen vaiheeseen" -#: src/screens/StarterPack/Wizard/index.tsx:313 +#: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" msgstr "" @@ -2787,7 +2838,7 @@ msgstr "Hmm, syötteen palvelin antoi virheellisen vastauksen. Ilmoita asiasta s msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, meillä on vaikeuksia löytää tätä syötettä. Se saattaa olla poistettu." -#: src/screens/Moderation/index.tsx:59 +#: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmm, vaikuttaa siltä, että tämän datan lataamisessa on ongelmia. Katso lisätietoja alta. Jos ongelma jatkuu, ole hyvä ja ota yhteyttä meihin." @@ -2878,7 +2929,7 @@ msgstr "Kuva" msgid "Image alt text" msgstr "Kuvan ALT-teksti" -#: src/components/StarterPack/ShareDialog.tsx:88 +#: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" msgstr "" @@ -2971,7 +3022,7 @@ msgstr "Kutsukoodit: {0} saatavilla" msgid "Invite codes: 1 available" msgstr "Kutsukoodit: 1 saatavilla" -#: src/components/StarterPack/ShareDialog.tsx:109 +#: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" msgstr "" @@ -2987,7 +3038,7 @@ msgstr "" #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "Se näyttää viestejä seuraamiltasi ihmisiltä reaaliajassa." -#: src/screens/StarterPack/Wizard/index.tsx:473 +#: 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 "" @@ -2995,8 +3046,8 @@ msgstr "" msgid "Jobs" msgstr "Työpaikat" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 msgid "Join Bluesky" msgstr "" @@ -3005,6 +3056,7 @@ msgid "Join the conversation" msgstr "" #: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:89 msgid "Journalism" msgstr "Journalismi" @@ -3020,7 +3072,7 @@ msgstr "Merkinnnyt {0}." msgid "Labeled by the author." msgstr "" -#: src/view/screens/Profile.tsx:214 +#: src/view/screens/Profile.tsx:207 msgid "Labels" msgstr "Merkinnät" @@ -3076,7 +3128,7 @@ msgstr "" msgid "Learn more about this warning" msgstr "Lue lisää tästä varoituksesta" -#: src/screens/Moderation/index.tsx:549 +#: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." msgstr "Lue lisää siitä, mikä on julkista Blueskyssa." @@ -3117,7 +3169,7 @@ msgstr "jäljellä." msgid "Legacy storage cleared, you need to restart the app now." msgstr "Legacy tietovarasto tyhjennetty, sinun on käynnistettävä sovellus uudelleen nyt." -#: src/components/StarterPack/ProfileStarterPacks.tsx:293 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" msgstr "" @@ -3139,7 +3191,7 @@ msgstr "Vaalea" #~ msgstr "Tykkää" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Tykkää tästä syötteestä" @@ -3177,7 +3229,7 @@ msgstr "tykkäsi mukautetusta syötteestäsi" msgid "liked your post" msgstr "tykkäsi viestistäsi" -#: src/view/screens/Profile.tsx:219 +#: src/view/screens/Profile.tsx:212 msgid "Likes" msgstr "Tykkäykset" @@ -3223,8 +3275,8 @@ msgid "List unmuted" msgstr "Listaa hiljennyksestä poistetut" #: src/Navigation.tsx:122 +#: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/screens/Profile.tsx:222 #: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 @@ -3253,7 +3305,7 @@ msgstr "Lataa uusia ilmoituksia" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:493 +#: src/view/screens/ProfileFeed.tsx:494 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Lataa uusia viestejä" @@ -3278,7 +3330,7 @@ msgstr "" msgid "Log out" msgstr "Kirjaudu ulos" -#: src/screens/Moderation/index.tsx:442 +#: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" msgstr "Näkyvyys kirjautumattomana" @@ -3310,7 +3362,7 @@ msgstr "" msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +#: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" msgstr "" @@ -3328,15 +3380,15 @@ msgid "Mark as read" msgstr "" #: src/view/screens/AccessibilitySettings.tsx:102 -#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:211 msgid "Media" msgstr "Media" -#: src/view/com/threadgate/WhoCanReply.tsx:270 +#: src/components/WhoCanReply.tsx:275 msgid "mentioned users" msgstr "mainitut käyttäjät" -#: src/view/com/modals/Threadgate.tsx:96 +#: src/components/dialogs/ThreadgateEditor.tsx:119 msgid "Mentioned users" msgstr "Mainitut käyttäjät" @@ -3387,7 +3439,7 @@ msgid "Misleading Account" msgstr "Harhaanjohtava käyttäjätili" #: src/Navigation.tsx:127 -#: src/screens/Moderation/index.tsx:104 +#: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "Moderointi" @@ -3420,7 +3472,7 @@ msgstr "Moderointilista luotu" msgid "Moderation list updated" msgstr "Moderointilista päivitetty" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:246 msgid "Moderation lists" msgstr "Moderointilistat" @@ -3437,7 +3489,7 @@ msgstr "Moderointiasetukset" msgid "Moderation states" msgstr "" -#: src/screens/Moderation/index.tsx:215 +#: src/screens/Moderation/index.tsx:218 msgid "Moderation tools" msgstr "Moderointityökalut" @@ -3446,7 +3498,7 @@ msgstr "Moderointityökalut" msgid "Moderator has chosen to set a general warning on the content." msgstr "Ylläpitäjä on asettanut yleisen varoituksen sisällölle." -#: src/view/com/post-thread/PostThreadItem.tsx:567 +#: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" msgstr "Lisää" @@ -3462,6 +3514,10 @@ msgstr "Lisää asetuksia" msgid "Most-liked replies first" msgstr "Eniten tykätyt vastaukset ensin" +#: src/screens/Onboarding/state.ts:90 +msgid "Movies" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "Hiljennä" @@ -3531,7 +3587,7 @@ msgstr "Hiljennä sanat ja aihetunnisteet" msgid "Muted" msgstr "Hiljennetty" -#: src/screens/Moderation/index.tsx:255 +#: src/screens/Moderation/index.tsx:258 msgid "Muted accounts" msgstr "Hiljennetyt käyttäjät" @@ -3548,7 +3604,7 @@ msgstr "Hiljennettyjen käyttäjien viestit poistetaan syötteestäsi ja ilmoitu msgid "Muted by \"{0}\"" msgstr "Hiljentäjä: \"{0}\"" -#: src/screens/Moderation/index.tsx:231 +#: src/screens/Moderation/index.tsx:234 msgid "Muted words & tags" msgstr "Hiljennetyt sanat ja aihetunnisteet" @@ -3594,6 +3650,7 @@ msgid "Name or Description Violates Community Standards" msgstr "Nimi tai kuvaus rikkoo yhteisön sääntöjä" #: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:91 msgid "Nature" msgstr "Luonto" @@ -3662,8 +3719,8 @@ msgstr "Uusi viesti" #: src/view/screens/Feeds.tsx:580 #: src/view/screens/Notifications.tsx:193 -#: src/view/screens/Profile.tsx:485 -#: src/view/screens/ProfileFeed.tsx:427 +#: src/view/screens/Profile.tsx:478 +#: src/view/screens/ProfileFeed.tsx:428 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:277 @@ -3675,7 +3732,7 @@ msgctxt "action" msgid "New Post" msgstr "Uusi viesti" -#: src/components/NewskieDialog.tsx:71 +#: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "" @@ -3688,6 +3745,7 @@ msgid "Newest replies first" msgstr "Uusimmat vastaukset ensin" #: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:92 msgid "News" msgstr "Uutiset" @@ -3698,10 +3756,10 @@ msgstr "Uutiset" #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:258 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:195 -#: src/screens/StarterPack/Wizard/index.tsx:372 -#: src/screens/StarterPack/Wizard/index.tsx:379 +#: src/screens/StarterPack/Wizard/index.tsx:184 +#: src/screens/StarterPack/Wizard/index.tsx:188 +#: src/screens/StarterPack/Wizard/index.tsx:359 +#: src/screens/StarterPack/Wizard/index.tsx:366 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3725,7 +3783,7 @@ msgstr "Seuraava kuva" msgid "No" msgstr "Ei" -#: src/view/screens/ProfileFeed.tsx:560 +#: src/view/screens/ProfileFeed.tsx:562 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Ei kuvausta" @@ -3739,7 +3797,7 @@ msgstr "" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Ei löydetty esillä olevia GIF-kuvia. Tenor-palvelussa saattaa olla ongelma." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." msgstr "" @@ -3812,11 +3870,11 @@ msgstr "Ei tuloksia hakusanalle \"{search}\"." msgid "No thanks" msgstr "Ei kiitos" -#: src/view/com/modals/Threadgate.tsx:85 +#: src/components/dialogs/ThreadgateEditor.tsx:108 msgid "Nobody" msgstr "Ei kukaan" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Nobody can reply" msgstr "" @@ -3825,7 +3883,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Kukaan ei ole vielä tykännyt tästä. Ehkä sinun pitäisi olla ensimmäinen!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -3838,7 +3896,7 @@ msgstr "Ei-seksuaalinen alastomuus" #~ msgstr "Ei sovellettavissa." #: src/Navigation.tsx:117 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Ei löytynyt" @@ -3853,7 +3911,7 @@ msgstr "Ei juuri nyt" msgid "Note about sharing" msgstr "" -#: src/screens/Moderation/index.tsx:540 +#: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Huomio: Bluesky on avoin ja julkinen verkosto. Tämä asetus rajoittaa vain sisältösi näkyvyyttä Bluesky-sovelluksessa ja -sivustolla, eikä muut sovellukset ehkä kunnioita tässä asetuksissaan. Sisältösi voi silti näkyä uloskirjautuneille käyttäjille muissa sovelluksissa ja verkkosivustoilla." @@ -3909,7 +3967,7 @@ msgstr "Pois" msgid "Oh no!" msgstr "Voi ei!" -#: src/screens/Onboarding/StepInterests/index.tsx:133 +#: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." msgstr "Voi ei! Jokin meni pieleen." @@ -3945,7 +4003,7 @@ msgstr "Yksi tai useampi kuva on ilman vaihtoehtoista Alt-tekstiä." msgid "Only .jpg and .png files are supported" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:239 +#: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" msgstr "" @@ -3962,10 +4020,10 @@ msgid "Oops, something went wrong!" msgstr "Hups, nyt meni jotain väärin!" #: src/components/Lists.tsx:191 -#: src/components/StarterPack/ProfileStarterPacks.tsx:302 -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Hups!" @@ -3991,7 +4049,7 @@ msgstr "" msgid "Open emoji picker" msgstr "Avaa emoji-valitsin" -#: src/view/screens/ProfileFeed.tsx:295 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Open feed options menu" msgstr "Avaa syötteen asetusvalikko" @@ -4003,7 +4061,7 @@ msgstr "Avaa linkit sovelluksen sisäisellä selaimella" msgid "Open message options" msgstr "" -#: src/screens/Moderation/index.tsx:227 +#: src/screens/Moderation/index.tsx:230 msgid "Open muted words and tags settings" msgstr "Avaa hiljennettyjen sanojen ja aihetunnisteiden asetukset" @@ -4015,7 +4073,7 @@ msgstr "Avaa navigointi" msgid "Open post options menu" msgstr "Avaa viestin asetusvalikko" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 msgid "Open starter pack menu" msgstr "" @@ -4032,6 +4090,10 @@ msgstr "Avaa järjestelmäloki" msgid "Opens {numItems} options" msgstr "Avaa {numItems} asetusta" +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" msgstr "Avaa esteettömyysasetukset" @@ -4174,7 +4236,7 @@ msgstr "Asetus {0}/{numItems}" msgid "Optionally provide additional information below:" msgstr "Voit tarvittaessa antaa lisätietoja alla:" -#: src/view/com/modals/Threadgate.tsx:92 +#: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" msgstr "Tai yhdistä nämä asetukset:" @@ -4234,7 +4296,6 @@ msgstr "Salasana päivitetty!" msgid "Pause" msgstr "Pysäytä" -#: src/screens/StarterPack/Wizard/index.tsx:194 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "Henkilöt" @@ -4247,32 +4308,37 @@ msgstr "Henkilöt, joita @{0} seuraa" msgid "People following @{0}" msgstr "Henkilöt, jotka seuraavat käyttäjää @{0}" -#: src/view/com/lightbox/Lightbox.tsx:67 +#: src/view/com/lightbox/Lightbox.tsx:69 msgid "Permission to access camera roll is required." msgstr "Käyttöoikeus valokuviin tarvitaan." -#: src/view/com/lightbox/Lightbox.tsx:73 +#: src/view/com/lightbox/Lightbox.tsx:75 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." -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:93 msgid "Pets" msgstr "Lemmikit" +#: src/screens/Onboarding/state.ts:94 +msgid "Photography" +msgstr "" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "Aikuisille tarkoitetut kuvat." -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Kiinnitä etusivulle" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 msgid "Pin to Home" msgstr "Kiinnitä etusivulle" @@ -4368,6 +4434,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Odota, että linkkikortti latautuu kokonaan" #: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:95 msgid "Politics" msgstr "Politiikka" @@ -4431,7 +4498,7 @@ msgstr "Viestiä ei löydy" msgid "posts" msgstr "viestit" -#: src/view/screens/Profile.tsx:216 +#: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Viestit" @@ -4505,7 +4572,7 @@ msgid "Processing..." msgstr "Käsitellään..." #: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:353 +#: src/view/screens/Profile.tsx:346 msgid "profile" msgstr "profiili" @@ -4545,15 +4612,15 @@ msgstr "Julkaise viesti" msgid "Publish reply" msgstr "Julkaise vastaus" -#: src/components/StarterPack/QrCodeDialog.tsx:131 +#: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:109 +#: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:110 +#: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" msgstr "" @@ -4615,7 +4682,9 @@ msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:325 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -4624,7 +4693,7 @@ msgstr "" msgid "Remove" msgstr "Poista" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" msgstr "" @@ -4656,13 +4725,13 @@ msgstr "Poista syöte?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:332 +#: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Poista syötteistäni" -#: src/components/FeedCard.tsx:315 +#: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Poista syötteistäni?" @@ -4710,7 +4779,7 @@ msgid "Removed from my feeds" msgstr "Poistettu syötteistäni" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "Poistettu syötteistäsi" @@ -4728,19 +4797,19 @@ msgstr "" msgid "Replace with Discover" msgstr "" -#: src/view/screens/Profile.tsx:217 +#: src/view/screens/Profile.tsx:210 msgid "Replies" msgstr "Vastaukset" -#: src/view/com/threadgate/WhoCanReply.tsx:66 +#: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" msgstr "" #: src/view/com/threadgate/WhoCanReply.tsx:123 -msgid "Replies on this thread are disabled" -msgstr "" +#~ msgid "Replies on this thread are disabled" +#~ msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:237 +#: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "Tähän keskusteluun vastaaminen on estetty" @@ -4790,8 +4859,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/view/screens/ProfileFeed.tsx:348 -#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:351 msgid "Report feed" msgstr "Ilmianna syöte" @@ -4808,8 +4877,8 @@ msgstr "" msgid "Report post" msgstr "Ilmianna viesti" -#: src/screens/StarterPack/StarterPackScreen.tsx:469 -#: src/screens/StarterPack/StarterPackScreen.tsx:472 +#: src/screens/StarterPack/StarterPackScreen.tsx:476 +#: src/screens/StarterPack/StarterPackScreen.tsx:479 msgid "Report starter pack" msgstr "" @@ -4855,7 +4924,7 @@ msgstr "Uudelleenjulkaise" msgid "Repost" msgstr "Uudelleenjulkaise" -#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:418 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4951,12 +5020,12 @@ msgstr "Yrittää uudelleen viimeisintä toimintoa, joka epäonnistui" #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 #: src/screens/Login/LoginForm.tsx:291 #: src/screens/Login/LoginForm.tsx:298 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/Onboarding/StepInterests/index.tsx:234 #: src/screens/Signup/index.tsx:245 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 @@ -4968,7 +5037,7 @@ msgstr "Yritä uudelleen" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:622 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Palaa edelliselle sivulle" @@ -4978,12 +5047,13 @@ msgid "Returns to home page" msgstr "Palaa etusivulle" #: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/ProfileFeed.tsx:113 msgid "Returns to previous page" msgstr "Palaa edelliselle sivulle" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/StarterPack/QrCodeDialog.tsx:190 +#: src/components/dialogs/ThreadgateEditor.tsx:88 +#: src/components/StarterPack/QrCodeDialog.tsx:184 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -4992,7 +5062,7 @@ msgstr "Palaa edelliselle sivulle" msgid "Save" msgstr "Tallenna" -#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/lightbox/Lightbox.tsx:135 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5014,8 +5084,8 @@ msgstr "Tallenna muutokset" msgid "Save handle change" msgstr "Tallenna käyttäjätunnuksen muutos" -#: src/components/StarterPack/ShareDialog.tsx:163 -#: src/components/StarterPack/ShareDialog.tsx:170 +#: src/components/StarterPack/ShareDialog.tsx:150 +#: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" msgstr "" @@ -5023,12 +5093,12 @@ msgstr "" msgid "Save image crop" msgstr "Tallenna kuvan rajaus" -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" msgstr "Tallenna syötteisiini" @@ -5036,7 +5106,7 @@ msgstr "Tallenna syötteisiini" msgid "Saved Feeds" msgstr "Tallennetut syötteet" -#: src/view/com/lightbox/Lightbox.tsx:82 +#: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" msgstr "" @@ -5044,7 +5114,7 @@ msgstr "" #~ msgid "Saved to your camera roll." #~ msgstr "Tallennettu kuvagalleriaasi." -#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "Tallennettu syötteisiisi" @@ -5062,13 +5132,14 @@ msgid "Saves image crop settings" msgstr "Tallentaa kuvan rajausasetukset" #: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:82 +#: src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:372 #: src/view/com/notifications/FeedItem.tsx:397 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:96 msgid "Science" msgstr "Tiede" @@ -5110,7 +5181,7 @@ msgstr "Hae kaikki @{authorHandle}:n julkaisut, joissa on aihetunniste {displayT msgid "Search for all posts with tag {displayTag}" msgstr "Etsi kaikki viestit aihetunnisteella {displayTag}." -#: src/screens/StarterPack/Wizard/index.tsx:467 +#: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -5248,7 +5319,7 @@ msgstr "Valitse sovelluksen käyttöliittymän kieli." msgid "Select your date of birth" msgstr "Aseta syntymäaikasi" -#: src/screens/Onboarding/StepInterests/index.tsx:201 +#: src/screens/Onboarding/StepInterests/index.tsx:206 msgid "Select your interests from the options below" msgstr "Valitse kiinnostuksen kohteesi alla olevista vaihtoehdoista" @@ -5325,7 +5396,7 @@ msgstr "Lähettää sähköpostin tilin poistamiseen tarvittavan vahvistuskoodin msgid "Server address" msgstr "Palvelimen osoite" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:307 msgid "Set birthdate" msgstr "Aseta syntymäaika" @@ -5413,9 +5484,9 @@ msgstr "Erotiikka tai muu aikuisviihde." msgid "Sexually Suggestive" msgstr "Seksuaalisesti vihjaileva" -#: src/components/StarterPack/QrCodeDialog.tsx:180 -#: src/screens/StarterPack/StarterPackScreen.tsx:303 -#: src/screens/StarterPack/StarterPackScreen.tsx:458 +#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/screens/StarterPack/StarterPackScreen.tsx:312 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5425,7 +5496,7 @@ msgstr "Seksuaalisesti vihjaileva" msgid "Share" msgstr "Jaa" -#: src/view/com/lightbox/Lightbox.tsx:142 +#: src/view/com/lightbox/Lightbox.tsx:144 msgctxt "action" msgid "Share" msgstr "Jaa" @@ -5444,30 +5515,36 @@ msgstr "" msgid "Share anyway" msgstr "Jaa kuitenkin" -#: src/view/screens/ProfileFeed.tsx:358 -#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:361 msgid "Share feed" msgstr "Jaa syöte" -#: src/screens/StarterPack/StarterPackScreen.tsx:462 +#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/screens/StarterPack/StarterPackScreen.tsx:469 msgid "Share link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "Jaa linkki" -#: src/components/StarterPack/ShareDialog.tsx:100 +#: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:296 +#: src/components/StarterPack/ShareDialog.tsx:134 +#: src/components/StarterPack/ShareDialog.tsx:145 +msgid "Share QR code" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:305 msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:112 +#: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5521,7 +5598,7 @@ msgstr "" msgid "Show less like this" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:533 +#: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" @@ -5681,33 +5758,33 @@ msgstr "Kirjautunut sisään käyttäjätunnuksella @{0}" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:240 -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Ohita" -#: src/screens/Onboarding/StepInterests/index.tsx:237 +#: src/screens/Onboarding/StepInterests/index.tsx:242 msgid "Skip this flow" msgstr "Ohita tämä vaihe" #: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:85 msgid "Software Dev" msgstr "Ohjelmistokehitys" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 -#: src/view/com/threadgate/WhoCanReply.tsx:67 -#: src/view/com/threadgate/WhoCanReply.tsx:124 +#: src/components/WhoCanReply.tsx:72 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "" #: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "" +#~ msgid "Some subtitle" +#~ msgstr "" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -5719,7 +5796,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 +#: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Jotain meni pieleen, yritä uudelleen" @@ -5755,6 +5832,7 @@ msgid "Spam; excessive mentions or replies" msgstr "" #: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:97 msgid "Sports" msgstr "Urheilu" @@ -5776,7 +5854,7 @@ msgstr "" #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -5784,14 +5862,18 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:214 msgid "Starter Packs" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + #: src/view/screens/Settings/index.tsx:862 #~ msgid "Status page" #~ msgstr "Tilasivu" @@ -5909,6 +5991,7 @@ msgid "Tap to view fully" msgstr "Napauta nähdäksesi kokonaan" #: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:98 msgid "Tech" msgstr "Teknologia" @@ -5961,10 +6044,10 @@ msgstr "Se sisältää seuraavaa:" msgid "That handle is already taken." msgstr "Tuo käyttätunnus on jo käytössä." -#: src/screens/StarterPack/StarterPackScreen.tsx:100 -#: src/screens/StarterPack/StarterPackScreen.tsx:101 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:102 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/Wizard/index.tsx:106 +#: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." msgstr "" @@ -5985,7 +6068,7 @@ msgstr "Yhteisöohjeet on siirretty kohtaan <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "Tekijänoikeuskäytäntö on siirretty kohtaan <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6014,7 +6097,7 @@ msgstr "Viesti saattaa olla poistettu." msgid "The Privacy Policy has been moved to <0/>" msgstr "Tietosuojakäytäntö on siirretty kohtaan <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:589 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6035,7 +6118,7 @@ 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:542 +#: src/view/screens/ProfileFeed.tsx:544 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." @@ -6045,7 +6128,7 @@ msgstr "Syötteen poistossa on ongelmia. Tarkista internetyhteytesi ja yritä uu #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: 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." @@ -6058,7 +6141,7 @@ msgstr "Yhteyden muodostamisessa Tenoriin ilmeni ongelma." #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:233 +#: src/view/screens/ProfileFeed.tsx:234 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6116,6 +6199,7 @@ msgstr "Sovellussalasanojen hakemisessa tapahtui virhe" msgid "There was an issue! {0}" msgstr "Ilmeni ongelma! {0}" +#: src/components/WhoCanReply.tsx:116 #: src/view/screens/ProfileList.tsx:335 #: src/view/screens/ProfileList.tsx:349 #: src/view/screens/ProfileList.tsx:363 @@ -6208,7 +6292,7 @@ msgstr "Tämä syöte saa tällä hetkellä paljon liikennettä ja on tilapäise msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "Tämä syöte on tyhjä! Sinun on ehkä seurattava useampia käyttäjiä tai säädettävä kieliasetuksiasi." -#: src/view/screens/ProfileFeed.tsx:472 +#: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" @@ -6315,7 +6399,7 @@ msgstr "Tämä käyttäjä on <0>{0}-listassa, jonka olet estänyt." msgid "This user is included in the <0>{0} list which you have muted." msgstr "Tämä käyttäjä on <0>{0}-listassa, jonka olet hiljentänyt." -#: src/components/NewskieDialog.tsx:53 +#: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." msgstr "" @@ -6340,6 +6424,10 @@ msgstr "Keskusteluketjun asetukset" msgid "Thread Preferences" msgstr "Keskusteluketjun asetukset" +#: src/components/WhoCanReply.tsx:109 +msgid "Thread settings updated" +msgstr "" + #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "Ketjumainen näkymä" @@ -6368,7 +6456,7 @@ msgstr "Vaihda hiljennysvaihtoehtojen välillä." msgid "Toggle dropdown" msgstr "Vaihda pudotusvalikko" -#: src/screens/Moderation/index.tsx:332 +#: src/screens/Moderation/index.tsx:336 msgid "Toggle to enable or disable adult content" msgstr "Vaihda ottaaksesi käyttöön tai poistaaksesi käytöstä aikuisille tarkoitettu sisältö." @@ -6383,8 +6471,8 @@ msgstr "Muutokset" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: 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 msgid "Translate" @@ -6395,6 +6483,10 @@ msgctxt "action" msgid "Try again" msgstr "Yritä uudelleen" +#: src/screens/Onboarding/state.ts:99 +msgid "TV" +msgstr "" + #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" msgstr "Kaksivaiheinen tunnistautuminen" @@ -6424,7 +6516,7 @@ msgstr "Poista listan hiljennys" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Yhteys palveluusi ei onnistu. Tarkista internet-yhteytesi." -#: src/screens/StarterPack/StarterPackScreen.tsx:513 +#: src/screens/StarterPack/StarterPackScreen.tsx:520 msgid "Unable to delete" msgstr "" @@ -6487,7 +6579,7 @@ msgstr "Lopeta käyttäjätilin seuraaminen" #~ msgid "Unlike" #~ msgstr "En tykkää" -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Unlike this feed" msgstr "Poista tykkäys tästä syötteestä" @@ -6522,12 +6614,12 @@ msgstr "" msgid "Unmute thread" msgstr "Poista keskusteluketjun hiljennys" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Poista kiinnitys" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 msgid "Unpin from home" msgstr "Poista kiinnitys etusivulta" @@ -6697,7 +6789,7 @@ msgstr "Käyttäjätunnus tai sähköpostiosoite" msgid "Users" msgstr "Käyttäjät" -#: src/view/com/threadgate/WhoCanReply.tsx:274 +#: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" msgstr "käyttäjät, joita <0/> seuraa" @@ -6708,7 +6800,7 @@ msgstr "käyttäjät, joita <0/> seuraa" msgid "Users I follow" msgstr "" -#: src/view/com/modals/Threadgate.tsx:109 +#: src/components/dialogs/ThreadgateEditor.tsx:132 msgid "Users in \"{0}\"" msgstr "Käyttäjät listassa \"{0}\"" @@ -6762,6 +6854,7 @@ msgid "Version {appVersion} {bundleInfo}" msgstr "" #: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:88 msgid "Video Games" msgstr "Videopelit" @@ -6813,7 +6906,7 @@ msgstr "Katso avatar" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/view/screens/ProfileFeed.tsx:583 +#: src/view/screens/ProfileFeed.tsx:585 msgid "View users who like this feed" msgstr "Katso, kuka tykkää tästä syötteestä" @@ -6873,11 +6966,11 @@ msgstr "Suosittelemme välttämään yleisiä sanoja, jotka esiintyvät monissa msgid "We were unable to load your birth date preferences. Please try again." msgstr "" -#: src/screens/Moderation/index.tsx:385 +#: src/screens/Moderation/index.tsx:409 msgid "We were unable to load your configured labelers at this time." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:143 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Yhteyden muodostaminen ei onnistunut. Yritä uudelleen jatkaaksesi tilisi määritystä. Jos ongelma jatkuu, voit ohittaa tämän vaiheen." @@ -6885,7 +6978,7 @@ msgstr "Yhteyden muodostaminen ei onnistunut. Yritä uudelleen jatkaaksesi tilis msgid "We will let you know when your account is ready." msgstr "Ilmoitamme sinulle, kun käyttäjätilisi on valmis." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:148 msgid "We'll use this to help customize your experience." msgstr "Käytämme tätä mukauttaaksemme kokemustasi." @@ -6934,7 +7027,11 @@ msgstr "" #~ msgid "Welcome to <0>Bluesky" #~ msgstr "Tervetuloa <0>Bluesky:iin" -#: src/screens/Onboarding/StepInterests/index.tsx:135 +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" msgstr "Mitkä ovat kiinnostuksenkohteesi?" @@ -6961,17 +7058,15 @@ msgstr "Mitä kieliä haluaisit nähdä algoritmisissä syötteissä?" msgid "Who can message you?" msgstr "" -#: src/view/com/modals/Threadgate.tsx:69 -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Who can reply" msgstr "Kuka voi vastata" -#: src/view/com/threadgate/WhoCanReply.tsx:206 +#: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:210 +#: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" msgstr "" @@ -7027,6 +7122,7 @@ msgid "Write your reply" msgstr "Kirjoita vastauksesi" #: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:100 msgid "Writers" msgstr "Kirjoittajat" @@ -7045,7 +7141,7 @@ msgstr "Kyllä" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:525 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Yes, delete this starter pack" msgstr "" @@ -7061,6 +7157,10 @@ msgstr "" msgid "you" msgstr "" +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + #: src/screens/SignupQueued.tsx:136 msgid "You are in line." msgstr "Olet jonossa." @@ -7194,6 +7294,10 @@ msgstr "Et ole hiljentänyt vielä yhtään käyttäjää. Hiljentääksesi käy msgid "You have reached the end" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +msgid "You haven't created a starter pack yet!" +msgstr "" + #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "Et ole vielä hiljentänyt yhtään sanaa tai aihetunnistetta" @@ -7222,15 +7326,15 @@ msgstr "Sinun on oltava vähintään 13-vuotias rekisteröityäksesi." #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Sinun on oltava vähintään 18-vuotias katsoaksesi aikuissisältöä" -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:62 +#: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." msgstr "" @@ -7282,7 +7386,7 @@ msgstr "" msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index 208128fc1d..c2d20a3996 100644 --- a/src/locale/locales/fr/messages.po +++ b/src/locale/locales/fr/messages.po @@ -55,7 +55,7 @@ msgstr "{0, plural, one {Liker (# like)} other {Liker (# likes)}}" msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {like} other {likes}}" -#: src/components/FeedCard.tsx:215 +#: src/components/FeedCard.tsx:216 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, one {Liké par # compte} other {Liké par # comptes}}" @@ -80,7 +80,7 @@ msgstr "{0, plural, one {Déliker (# like)} other {Déliker (# likes)}}" msgid "{0} joined this week" msgstr "{0} personnes se sont inscrites cette semaine" -#: src/screens/StarterPack/StarterPackScreen.tsx:343 +#: src/screens/StarterPack/StarterPackScreen.tsx:350 msgid "{0} people have used this starter pack!" msgstr "{0} personnes ont utilisé ce kit de démarrage !" @@ -120,7 +120,7 @@ msgstr "{diff, plural, one {mois} other {mois}}" msgid "{diffSeconds, plural, one {second} other {seconds}}" msgstr "{diffSeconds, plural, one {seconde} other {secondes}}" -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" msgstr "Kit de démarrage de {displayName}" @@ -143,7 +143,7 @@ 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:586 +#: src/view/screens/ProfileFeed.tsx:588 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {Liké par # compte} other {Liké par # comptes}}" @@ -151,11 +151,11 @@ msgstr "{likeCount, plural, one {Liké par # compte} other {Liké par # comptes} msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} non lus" -#: src/components/NewskieDialog.tsx:92 +#: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" msgstr "{profileName} a rejoint Bluesky il y a {0}" -#: src/components/NewskieDialog.tsx:87 +#: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "{profileName} a rejoint Bluesky en utilisant un kit de démarrage il y a {0}" @@ -163,20 +163,20 @@ 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/view/com/threadgate/WhoCanReply.tsx:290 +#: src/components/WhoCanReply.tsx:295 msgid "<0/> members" msgstr "<0/> membres" #: src/screens/StarterPack/Wizard/index.tsx:485 -msgid "<0>{0} and<1> <2>{1} are included in your starter pack" -msgstr "<0>{0} et<1> <2>{1} sont inclus dans votre kit de démarrage" +#~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +#~ msgstr "<0>{0} et<1> <2>{1} sont inclus dans votre kit de démarrage" -#: src/screens/StarterPack/Wizard/index.tsx:497 +#: 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 "<0>{0}, <1>{1} et {2, plural, one {# autre} other {# autres}} font partie de votre kit de démarrage" -#: src/screens/StarterPack/Wizard/index.tsx:509 +#: 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 "<0>{0}, <1>{1} et {2, plural, one {# autre} other {# autres}} sont inclus dans votre kit de démarrage" @@ -189,11 +189,11 @@ msgstr "<0>{0} {1, plural, one {abonné·e} other {abonné·e·s}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {abonnement} other {abonnements}}" -#: src/screens/StarterPack/Wizard/index.tsx:497 +#: src/screens/StarterPack/Wizard/index.tsx:507 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0} et<1> <2>{1} faites partie de votre pack de démarrage" -#: src/screens/StarterPack/Wizard/index.tsx:478 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0} fait partie de votre kit de démarrage" @@ -201,7 +201,7 @@ msgstr "<0>{0} fait partie de votre kit de démarrage" msgid "<0>Not Applicable. This warning is only available for posts with media attached." msgstr "<0>Pas applicable. Cet avertissement est seulement disponible pour les posts qui ont des médias qui leur sont attachés." -#: src/screens/StarterPack/Wizard/index.tsx:472 +#: src/screens/StarterPack/Wizard/index.tsx:457 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>Vous et<1> <2>{0} faites partie de votre pack de démarrage" @@ -291,11 +291,11 @@ msgstr "Compte démasqué" msgid "Add" msgstr "Ajouter" -#: src/screens/StarterPack/Wizard/index.tsx:539 +#: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" msgstr "Ajouter {0} autres pour continuer" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:56 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" msgstr "Ajouter {displayName} au kit de démarrage" @@ -338,14 +338,14 @@ msgid "Add muted words and tags" msgstr "Ajouter des mots et des mots-clés masqués" #: src/screens/StarterPack/Wizard/index.tsx:197 -msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "Ajoutez à votre kit de démarrage des personnes que vous pensez que d’autres aimeront suivre" +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "Ajoutez à votre kit de démarrage des personnes que vous pensez que d’autres aimeront suivre" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "Ajouter les fils d’actu recommandés" -#: src/screens/StarterPack/Wizard/index.tsx:464 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" msgstr "Ajoutez des fils d’actu à votre kit de démarrage !" @@ -357,7 +357,7 @@ msgstr "Ajouter le fil d’actu par défaut avec seulement les comptes que vous msgid "Add the following DNS record to your domain:" msgstr "Ajoutez l’enregistrement DNS suivant à votre domaine :" -#: src/components/FeedCard.tsx:300 +#: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" msgstr "Ajouter ce fil à vos fils d’actu" @@ -388,16 +388,20 @@ msgstr "Définissez le nombre de likes qu’une réponse doit avoir pour être a msgid "Adult Content" msgstr "Contenu pour adultes" +#: src/screens/Moderation/index.tsx:356 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "Le contenu pour adultes est désactivé." -#: src/screens/Moderation/index.tsx:375 +#: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "Avancé" -#: src/screens/StarterPack/StarterPackScreen.tsx:271 +#: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "All accounts have been followed!" msgstr "Tous les comptes ont été suivis !" @@ -457,20 +461,20 @@ msgstr "Un e-mail a été envoyé à votre ancienne adresse, {0}. Il comprend un msgid "An error occured" msgstr "Une erreur s’est produite" -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +#: src/components/StarterPack/ProfileStarterPacks.tsx:315 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/ShareDialog.tsx:79 -msgid "An error occurred while saving the image." -msgstr "Une erreur s’est produite lors de l’enregistrement de l’image." +#~ msgid "An error occurred while saving the image." +#~ msgstr "Une erreur s’est produite lors de l’enregistrement de l’image." -#: src/components/StarterPack/QrCodeDialog.tsx:76 -#: src/components/StarterPack/ShareDialog.tsx:91 +#: src/components/StarterPack/QrCodeDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "Une erreur s’est produite lors de l’enregistrement du code QR !" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:275 msgid "An error occurred while trying to follow all" msgstr "Une erreur s’est produite en essayant de suivre tous les comptes" @@ -487,16 +491,17 @@ msgstr "Un problème qui ne fait pas partie de ces options" msgid "An issue occurred, please try again." msgstr "Un problème est survenu, veuillez réessayer." -#: src/screens/Onboarding/StepInterests/index.tsx:194 +#: src/screens/Onboarding/StepInterests/index.tsx:199 msgid "an unknown error occurred" msgstr "une erreur inconnue s’est produite" +#: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:280 -#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "et" #: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:79 msgid "Animals" msgstr "Animaux" @@ -564,7 +569,7 @@ msgstr "Affichage" msgid "Apply default recommended feeds" msgstr "Utiliser les fils d’actu recommandés par défaut" -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "Are you sure you want delete this starter pack?" msgstr "Êtes-vous sûr de vouloir supprimer ce kit de démarrage ?" @@ -584,7 +589,7 @@ msgstr "Êtes-vous sûr de vouloir partir de cette conversation ? Vos messages msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Êtes-vous sûr de vouloir supprimer {0} de vos fils d’actu ?" -#: src/components/FeedCard.tsx:317 +#: src/components/FeedCard.tsx:322 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 ?" @@ -601,6 +606,7 @@ msgid "Are you writing in <0>{0}?" msgstr "Écrivez-vous en <0>{0} ?" #: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:80 msgid "Art" msgstr "Art" @@ -627,7 +633,7 @@ msgstr "Au moins 3 caractères" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:312 +#: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Arrière" @@ -680,7 +686,7 @@ msgstr "Bloquer ces comptes ?" msgid "Blocked" msgstr "Bloqué" -#: src/screens/Moderation/index.tsx:267 +#: src/screens/Moderation/index.tsx:270 msgid "Blocked accounts" msgstr "Comptes bloqués" @@ -726,11 +732,11 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky est un réseau ouvert où vous pouvez choisir votre hébergeur. L’auto-hébergement est désormais disponible en version bêta pour les développeurs." -#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky choisira un ensemble de comptes recommandés parmi les personnes de votre réseau." -#: src/screens/Moderation/index.tsx:533 +#: 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 n’affichera pas votre profil et vos posts à des personnes non connectées. Il est possible que d’autres applications n’honorent pas cette demande. Cela ne privatise pas votre compte." @@ -743,6 +749,7 @@ msgid "Blur images and filter from feeds" msgstr "Flouter les images et les filtrer des fils d’actu" #: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:81 msgid "Books" msgstr "Livres" @@ -932,14 +939,14 @@ msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "Consultez votre boîte de réception, vous avez du recevoir un e-mail contenant un code de confirmation à saisir ci-dessous :" #: src/view/com/modals/Threadgate.tsx:75 -msgid "Choose \"Everybody\" or \"Nobody\"" -msgstr "Choisir « Tout le monde » ou « Personne »" +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "Choisir « Tout le monde » ou « Personne »" #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" msgstr "Choisissez des fils d’actu" -#: src/components/StarterPack/ProfileStarterPacks.tsx:288 +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" msgstr "Choisir pour moi" @@ -1028,18 +1035,18 @@ msgstr "Cataclop 🐴 cataclop 🐴" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/NewskieDialog.tsx:120 -#: src/components/NewskieDialog.tsx:127 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:121 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:127 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: 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:189 msgid "Close" msgstr "Fermer" -#: src/components/Dialog/index.web.tsx:113 -#: src/components/Dialog/index.web.tsx:251 +#: src/components/Dialog/index.web.tsx:116 +#: src/components/Dialog/index.web.tsx:254 msgid "Close active dialog" msgstr "Fermer le dialogue actif" @@ -1106,10 +1113,12 @@ msgid "Collapses list of users for a given notification" msgstr "Réduit la liste des comptes pour une notification donnée" #: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:82 msgid "Comedy" msgstr "Comédie" #: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:83 msgid "Comics" msgstr "Bandes dessinées" @@ -1167,11 +1176,11 @@ msgstr "Confirmer les paramètres de langue" msgid "Confirm delete account" msgstr "Confirmer la suppression du compte" -#: src/screens/Moderation/index.tsx:301 +#: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "Confirmez votre âge :" -#: src/screens/Moderation/index.tsx:292 +#: src/screens/Moderation/index.tsx:295 msgid "Confirm your birthdate" msgstr "Confirme votre date de naissance" @@ -1197,7 +1206,7 @@ msgstr "Contacter le support" msgid "Content Blocked" msgstr "Contenu bloqué" -#: src/screens/Moderation/index.tsx:285 +#: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "Filtres de contenu" @@ -1226,7 +1235,7 @@ msgstr "Avertissements sur le contenu" msgid "Context menu backdrop, click to close the menu." msgstr "Menu contextuel en arrière-plan, cliquez pour fermer le menu." -#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepInterests/index.tsx:258 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Continuer" @@ -1239,7 +1248,7 @@ msgstr "Continuer comme {0} (actuellement connecté)" msgid "Continue thread..." msgstr "Poursuivre le fil de discussion…" -#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:251 msgid "Continue to next step" @@ -1279,7 +1288,7 @@ msgstr "Copié !" msgid "Copies app password" msgstr "Copie le mot de passe d’application" -#: src/components/StarterPack/QrCodeDialog.tsx:180 +#: src/components/StarterPack/QrCodeDialog.tsx:174 #: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Copier" @@ -1297,7 +1306,7 @@ msgstr "Copier ce code" msgid "Copy link" msgstr "Copier le lien" -#: src/components/StarterPack/ShareDialog.tsx:143 +#: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" msgstr "Copier le lien" @@ -1320,7 +1329,7 @@ msgstr "Copier le texte du message" msgid "Copy post text" msgstr "Copier le texte du post" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" msgstr "Copier le code QR" @@ -1333,7 +1342,7 @@ msgstr "Politique sur les droits d’auteur" msgid "Could not leave chat" msgstr "Impossible de partir de la discussion" -#: src/view/screens/ProfileFeed.tsx:102 +#: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" msgstr "Impossible de charger le fil d’actu" @@ -1345,7 +1354,7 @@ msgstr "Impossible de charger la liste" msgid "Could not mute chat" msgstr "Impossible de masquer la discussion" -#: src/components/StarterPack/ProfileStarterPacks.tsx:270 +#: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" msgstr "Créer" @@ -1358,17 +1367,17 @@ msgstr "Créer un nouveau compte" msgid "Create a new Bluesky account" msgstr "Créer un compte Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:157 +#: src/components/StarterPack/QrCodeDialog.tsx:151 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:257 +#: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" msgstr "Créer un kit de démarrage" -#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +#: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" msgstr "Créer un kit de démarrage pour moi" @@ -1399,8 +1408,8 @@ msgid "Create new account" msgstr "Créer un nouveau compte" #: src/components/StarterPack/ShareDialog.tsx:158 -msgid "Create QR code" -msgstr "Créer un code QR" +#~ msgid "Create QR code" +#~ msgstr "Créer un code QR" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1411,6 +1420,7 @@ msgid "Created {0}" msgstr "{0} créé" #: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:84 msgid "Culture" msgstr "Culture" @@ -1467,9 +1477,9 @@ msgid "Debug panel" msgstr "Panneau de débug" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:449 -#: src/screens/StarterPack/StarterPackScreen.tsx:528 -#: src/screens/StarterPack/StarterPackScreen.tsx:608 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1526,12 +1536,12 @@ msgstr "Supprimer mon compte…" msgid "Delete post" msgstr "Supprimer le post" -#: src/screens/StarterPack/StarterPackScreen.tsx:443 -#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:450 +#: src/screens/StarterPack/StarterPackScreen.tsx:606 msgid "Delete starter pack" msgstr "Supprimer le kit de démarrage" -#: src/screens/StarterPack/StarterPackScreen.tsx:494 +#: src/screens/StarterPack/StarterPackScreen.tsx:501 msgid "Delete starter pack?" msgstr "Supprimer le kit de démarrage ?" @@ -1595,7 +1605,7 @@ msgstr "Désactiver le retour haptique" #: src/lib/moderation/useLabelBehaviorDescription.ts:68 #: src/screens/Messages/Settings.tsx:140 #: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:341 +#: src/screens/Moderation/index.tsx:346 msgid "Disabled" msgstr "Désactivé" @@ -1607,8 +1617,8 @@ msgstr "Abandonner" msgid "Discard draft?" msgstr "Abandonner le brouillon ?" -#: src/screens/Moderation/index.tsx:518 -#: src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:542 +#: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" msgstr "Empêcher les applis de montrer mon compte aux personnes non connectées" @@ -1659,6 +1669,7 @@ msgstr "Domaine vérifié !" #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/ThreadgateEditor.tsx:88 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 @@ -1678,8 +1689,6 @@ msgstr "Terminé" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 #: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/Threadgate.tsx:136 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 #: src/view/screens/PreferencesThreads.tsx:162 @@ -1691,7 +1700,7 @@ msgstr "Terminer" msgid "Done{extraText}" msgstr "Terminé{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 msgid "Download Bluesky" msgstr "Télécharger Bluesky" @@ -1744,9 +1753,9 @@ msgstr "ex. Les comptes qui répondent toujours avec des pubs." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Chaque code ne fonctionne qu’une seule fois. Vous recevrez régulièrement d’autres codes d’invitation." -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:522 -#: src/screens/StarterPack/Wizard/index.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" @@ -1762,7 +1771,7 @@ msgstr "Modifier" msgid "Edit avatar" msgstr "Modifier l’avatar" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "Modifier les fils d’actu" @@ -1790,7 +1799,7 @@ msgstr "Modifier mes fils d’actu" msgid "Edit my profile" msgstr "Modifier mon profil" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "Modifier les personnes" @@ -1804,7 +1813,7 @@ msgstr "Modifier le profil" msgid "Edit Profile" msgstr "Modifier le profil" -#: src/screens/StarterPack/StarterPackScreen.tsx:430 +#: src/screens/StarterPack/StarterPackScreen.tsx:437 msgid "Edit starter pack" msgstr "Modifier le kit de démarrage" @@ -1812,8 +1821,7 @@ msgstr "Modifier le kit de démarrage" msgid "Edit User List" msgstr "Modifier la liste de comptes" -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" msgstr "Modifier qui peut répondre" @@ -1830,6 +1838,7 @@ msgid "Edit your starter pack" msgstr "Modifier votre kit de démarrage" #: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:86 msgid "Education" msgstr "Éducation" @@ -1885,7 +1894,7 @@ msgstr "Intégrez ce post à votre site web. Il suffit de copier l’extrait sui msgid "Enable {0} only" msgstr "Activer {0} uniquement" -#: src/screens/Moderation/index.tsx:329 +#: src/screens/Moderation/index.tsx:333 msgid "Enable adult content" msgstr "Activer le contenu pour adultes" @@ -1908,7 +1917,7 @@ msgstr "Active cette source uniquement" #: src/screens/Messages/Settings.tsx:131 #: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:339 +#: src/screens/Moderation/index.tsx:344 msgid "Enabled" msgstr "Activé" @@ -1974,19 +1983,18 @@ msgstr "Échec lors de la sauvegarde du fichier" msgid "Error receiving captcha response." msgstr "Erreur de réception de la réponse captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Erreur :" -#: src/view/com/modals/Threadgate.tsx:79 +#: src/components/dialogs/ThreadgateEditor.tsx:102 msgid "Everybody" msgstr "Tout le monde" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#: src/view/com/threadgate/WhoCanReply.tsx:64 -#: src/view/com/threadgate/WhoCanReply.tsx:121 -#: src/view/com/threadgate/WhoCanReply.tsx:235 +#: src/components/WhoCanReply.tsx:69 +#: src/components/WhoCanReply.tsx:240 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "Tout le monde peut répondre" @@ -2081,8 +2089,8 @@ msgstr "Préférences sur les médias externes" msgid "Failed to create app password." msgstr "Échec de la création du mot de passe d’application." -#: src/screens/StarterPack/Wizard/index.tsx:241 -#: src/screens/StarterPack/Wizard/index.tsx:249 +#: src/screens/StarterPack/Wizard/index.tsx:230 +#: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" msgstr "Échec de la création du kit de démarrage" @@ -2098,7 +2106,7 @@ msgstr "Échec de la suppression du message" msgid "Failed to delete post, please try again" msgstr "Échec de la suppression du post, veuillez réessayer" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/StarterPackScreen.tsx:569 msgid "Failed to delete starter pack" msgstr "Échec de la suppression du kit de démarrage" @@ -2125,7 +2133,7 @@ msgstr "Échec du chargement des fils d’actu suggerés" msgid "Failed to load suggested follows" msgstr "Échec du chargement des suivis suggérés" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" msgstr "Échec de l’enregistrement de l’image : {0}" @@ -2142,7 +2150,7 @@ msgstr "Échec de l’envoi de l’appel, veuillez réessayer." msgid "Failed to toggle thread mute, please try again" msgstr "Échec de l’activation ou désactivation du masquage du fil de discussion, veuillez réessayer" -#: src/components/FeedCard.tsx:280 +#: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "Échec de la mise à jour des fils d’actu" @@ -2160,7 +2168,7 @@ msgstr "Fil d’actu" msgid "Feed by {0}" msgstr "Fil d’actu par {0}" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "Ajouter/enlever le fil d’actu" @@ -2170,10 +2178,9 @@ msgid "Feedback" msgstr "Feedback" #: src/Navigation.tsx:320 -#: src/screens/StarterPack/Wizard/index.tsx:201 #: src/view/screens/Feeds.tsx:445 #: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:220 +#: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:373 #: src/view/shell/Drawer.tsx:493 @@ -2185,7 +2192,7 @@ msgstr "Fils d’actu" msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Les fils d’actu sont des algorithmes personnalisés qui se construisent avec un peu d’expertise en programmation. <0/> pour plus d’informations." -#: src/components/FeedCard.tsx:277 +#: src/components/FeedCard.tsx:282 msgid "Feeds updated!" msgstr "Fils d’actu mis à jour !" @@ -2223,7 +2230,7 @@ msgstr "Affine le contenu affiché sur votre fil d’actu « Following »." msgid "Fine-tune the discussion threads." msgstr "Affine les fils de discussion." -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" msgstr "Terminer" @@ -2271,8 +2278,8 @@ msgstr "Suivre {name}" msgid "Follow Account" msgstr "Suivre le compte" -#: src/screens/StarterPack/StarterPackScreen.tsx:308 -#: src/screens/StarterPack/StarterPackScreen.tsx:315 +#: src/screens/StarterPack/StarterPackScreen.tsx:317 +#: src/screens/StarterPack/StarterPackScreen.tsx:324 msgid "Follow all" msgstr "Suivre tous" @@ -2304,7 +2311,7 @@ msgstr "Suivi par <0>{0} et <1>{1}" 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}}" -#: src/view/com/modals/Threadgate.tsx:101 +#: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" msgstr "Comptes suivis" @@ -2368,6 +2375,7 @@ msgid "Follows You" msgstr "Vous suit" #: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:87 msgid "Food" msgstr "Nourriture" @@ -2409,7 +2417,7 @@ msgstr "Tiré de <0/>" msgid "Gallery" msgstr "Galerie" -#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" msgstr "Générer un kit de démarrage" @@ -2439,7 +2447,7 @@ msgstr "Violations flagrantes de la loi ou des conditions d’utilisation" #: src/view/com/auth/LoggedOut.tsx:78 #: src/view/com/auth/LoggedOut.tsx:79 #: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:133 msgid "Go back" @@ -2448,9 +2456,9 @@ msgstr "Retour" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:628 #: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Retour" @@ -2464,7 +2472,7 @@ msgstr "Retour" msgid "Go back to previous step" msgstr "Retour à l’étape précédente" -#: src/screens/StarterPack/Wizard/index.tsx:313 +#: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" msgstr "Retour à l’étape précédente" @@ -2588,7 +2596,7 @@ msgstr "Hmm, le serveur de fils d’actu ne répond pas. Veuillez informer la pe msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, nous n’arrivons pas à trouver ce fil d’actu. Il a peut-être été supprimé." -#: src/screens/Moderation/index.tsx:59 +#: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmm, il semble que nous ayons des difficultés à charger ces données. Voir ci-dessous pour plus de détails. Si le problème persiste, veuillez nous contacter." @@ -2679,7 +2687,7 @@ msgstr "Image" msgid "Image alt text" msgstr "Texte alt de l’image" -#: src/components/StarterPack/ShareDialog.tsx:88 +#: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" msgstr "Image enregistrée dans votre photothèque !" @@ -2772,7 +2780,7 @@ msgstr "Code d’invitation : {0} disponible" msgid "Invite codes: 1 available" msgstr "Invitations : 1 code dispo" -#: src/components/StarterPack/ShareDialog.tsx:109 +#: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" msgstr "Invitez les gens à ce kit de démarrage !" @@ -2784,7 +2792,7 @@ msgstr "Invitez vos amis à suivre vos fils d’actu et vos personnes préféré msgid "Invites, but personal" msgstr "Invitations, mais personnelles" -#: src/screens/StarterPack/Wizard/index.tsx:473 +#: 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 "Il n’y a que vous pour l’instant ! Ajoutez d’autres personnes à votre kit de démarrage en effectuant une recherche ci-dessus." @@ -2792,8 +2800,8 @@ msgstr "Il n’y a que vous pour l’instant ! Ajoutez d’autres personnes à msgid "Jobs" msgstr "Emplois" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 msgid "Join Bluesky" msgstr "Rejoignez Bluesky" @@ -2802,6 +2810,7 @@ msgid "Join the conversation" msgstr "Participez à la conversation" #: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:89 msgid "Journalism" msgstr "Journalisme" @@ -2813,7 +2822,7 @@ msgstr "Étiqueté par {0}." msgid "Labeled by the author." msgstr "Étiqueté par l’auteur." -#: src/view/screens/Profile.tsx:214 +#: src/view/screens/Profile.tsx:207 msgid "Labels" msgstr "Étiquettes" @@ -2865,7 +2874,7 @@ msgstr "En savoir plus sur la modération appliquée à ce contenu." msgid "Learn more about this warning" msgstr "En savoir plus sur cet avertissement" -#: src/screens/Moderation/index.tsx:549 +#: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." msgstr "En savoir plus sur ce qui est public sur Bluesky." @@ -2906,7 +2915,7 @@ msgstr "devant vous dans la file." msgid "Legacy storage cleared, you need to restart the app now." msgstr "Stockage ancien effacé, vous devez redémarrer l’application maintenant." -#: src/components/StarterPack/ProfileStarterPacks.tsx:293 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" msgstr "Laissez-moi choisir" @@ -2924,7 +2933,7 @@ msgid "Light" msgstr "Clair" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Liker ce fil d’actu" @@ -2948,7 +2957,7 @@ msgstr "liké votre fil d’actu personnalisé" msgid "liked your post" msgstr "liké votre post" -#: src/view/screens/Profile.tsx:219 +#: src/view/screens/Profile.tsx:212 msgid "Likes" msgstr "Likes" @@ -2994,8 +3003,8 @@ msgid "List unmuted" msgstr "Liste démasquée" #: src/Navigation.tsx:122 +#: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/screens/Profile.tsx:222 #: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 @@ -3024,7 +3033,7 @@ msgstr "Charger les nouvelles notifications" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:493 +#: src/view/screens/ProfileFeed.tsx:494 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Charger les nouveaux posts" @@ -3049,7 +3058,7 @@ msgstr "Se connecter ou s’inscrire" msgid "Log out" msgstr "Déconnexion" -#: src/screens/Moderation/index.tsx:442 +#: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" msgstr "Visibilité déconnectée" @@ -3077,7 +3086,7 @@ msgstr "On dirait que vous avez désépinglé tous vos fils d’actu. Mais pas d msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "On dirait que vous n’avez plus de fil d’actu « Following ». <0>Cliquez ici pour en rajouter un." -#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +#: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" msgstr "En faire un pour moi" @@ -3095,15 +3104,15 @@ msgid "Mark as read" msgstr "Marqué comme lu" #: src/view/screens/AccessibilitySettings.tsx:102 -#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:211 msgid "Media" msgstr "Média" -#: src/view/com/threadgate/WhoCanReply.tsx:270 +#: src/components/WhoCanReply.tsx:275 msgid "mentioned users" msgstr "comptes mentionnés" -#: src/view/com/modals/Threadgate.tsx:96 +#: src/components/dialogs/ThreadgateEditor.tsx:119 msgid "Mentioned users" msgstr "Comptes mentionnés" @@ -3150,7 +3159,7 @@ msgid "Misleading Account" msgstr "Compte trompeur" #: src/Navigation.tsx:127 -#: src/screens/Moderation/index.tsx:104 +#: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "Modération" @@ -3183,7 +3192,7 @@ msgstr "Liste de modération créée" msgid "Moderation list updated" msgstr "Liste de modération mise à jour" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:246 msgid "Moderation lists" msgstr "Listes de modération" @@ -3200,7 +3209,7 @@ msgstr "Paramètres de modération" msgid "Moderation states" msgstr "États de modération" -#: src/screens/Moderation/index.tsx:215 +#: src/screens/Moderation/index.tsx:218 msgid "Moderation tools" msgstr "Outils de modération" @@ -3209,7 +3218,7 @@ msgstr "Outils de modération" msgid "Moderator has chosen to set a general warning on the content." msgstr "La modération a choisi d’ajouter un avertissement général sur le contenu." -#: src/view/com/post-thread/PostThreadItem.tsx:567 +#: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" msgstr "Plus" @@ -3225,6 +3234,10 @@ msgstr "Plus d’options" msgid "Most-liked replies first" msgstr "Réponses les plus likées en premier" +#: src/screens/Onboarding/state.ts:90 +msgid "Movies" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "Masquer" @@ -3289,7 +3302,7 @@ msgstr "Masquer les mots et les mots-clés" msgid "Muted" msgstr "Masqué" -#: src/screens/Moderation/index.tsx:255 +#: src/screens/Moderation/index.tsx:258 msgid "Muted accounts" msgstr "Comptes masqués" @@ -3306,7 +3319,7 @@ msgstr "Les comptes masqués voient leurs posts supprimés de votre fil d’actu msgid "Muted by \"{0}\"" msgstr "Masqué par « {0} »" -#: src/screens/Moderation/index.tsx:231 +#: src/screens/Moderation/index.tsx:234 msgid "Muted words & tags" msgstr "Les mots et les mots-clés masqués" @@ -3352,6 +3365,7 @@ msgid "Name or Description Violates Community Standards" msgstr "Nom ou description qui viole les normes communautaires" #: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:91 msgid "Nature" msgstr "Nature" @@ -3415,8 +3429,8 @@ msgstr "Nouveau post" #: src/view/screens/Feeds.tsx:580 #: src/view/screens/Notifications.tsx:193 -#: src/view/screens/Profile.tsx:485 -#: src/view/screens/ProfileFeed.tsx:427 +#: src/view/screens/Profile.tsx:478 +#: src/view/screens/ProfileFeed.tsx:428 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:277 @@ -3428,7 +3442,7 @@ msgctxt "action" msgid "New Post" msgstr "Nouveau post" -#: src/components/NewskieDialog.tsx:71 +#: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "Dialogue d’information sur un nouveau compte" @@ -3441,6 +3455,7 @@ msgid "Newest replies first" msgstr "Réponses les plus récentes en premier" #: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:92 msgid "News" msgstr "Actualités" @@ -3451,10 +3466,10 @@ msgstr "Actualités" #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:258 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:195 -#: src/screens/StarterPack/Wizard/index.tsx:372 -#: src/screens/StarterPack/Wizard/index.tsx:379 +#: src/screens/StarterPack/Wizard/index.tsx:184 +#: src/screens/StarterPack/Wizard/index.tsx:188 +#: src/screens/StarterPack/Wizard/index.tsx:359 +#: src/screens/StarterPack/Wizard/index.tsx:366 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3473,7 +3488,7 @@ msgstr "Image suivante" msgid "No" msgstr "Non" -#: src/view/screens/ProfileFeed.tsx:560 +#: src/view/screens/ProfileFeed.tsx:562 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Aucune description" @@ -3487,7 +3502,7 @@ msgstr "Pas de panneau DNS" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Aucun GIFs vedettes à afficher. Il y a peut-être un souci chez Tenor." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." msgstr "Aucun fil d’actu n’a été trouvé. Essayez de chercher autre chose." @@ -3556,11 +3571,11 @@ msgstr "Pas de résultats pour « {search} »." msgid "No thanks" msgstr "Non merci" -#: src/view/com/modals/Threadgate.tsx:85 +#: src/components/dialogs/ThreadgateEditor.tsx:108 msgid "Nobody" msgstr "Personne" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Nobody can reply" msgstr "Personne ne peut répondre" @@ -3569,7 +3584,7 @@ msgstr "Personne ne peut répondre" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Personne n’a encore liké. Peut-être devriez-vous ouvrir la voie !" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." msgstr "Personne n’a été trouvé. Essayez de chercher quelqu’un d’autre." @@ -3578,7 +3593,7 @@ msgid "Non-sexual Nudity" msgstr "Nudité non sexuelle" #: src/Navigation.tsx:117 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Introuvable" @@ -3593,7 +3608,7 @@ msgstr "Pas maintenant" msgid "Note about sharing" msgstr "Note sur le partage" -#: src/screens/Moderation/index.tsx:540 +#: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Remarque : Bluesky est un réseau ouvert et public. Ce paramètre limite uniquement la visibilité de votre contenu sur l’application et le site Web de Bluesky, et d’autres applications peuvent ne pas respecter ce paramètre. Votre contenu peut toujours être montré aux personnes non connectées par d’autres applications et sites Web." @@ -3645,7 +3660,7 @@ msgstr "Éteint" msgid "Oh no!" msgstr "Oh non !" -#: src/screens/Onboarding/StepInterests/index.tsx:133 +#: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." msgstr "Oh non ! Il y a eu un problème." @@ -3681,7 +3696,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/view/com/threadgate/WhoCanReply.tsx:239 +#: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" msgstr "Seul {0} peut répondre" @@ -3694,10 +3709,10 @@ msgid "Oops, something went wrong!" msgstr "Oups, quelque chose n’a pas marché !" #: src/components/Lists.tsx:191 -#: src/components/StarterPack/ProfileStarterPacks.tsx:302 -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Oups !" @@ -3723,7 +3738,7 @@ msgstr "Ouvrir les options de conversation" msgid "Open emoji picker" msgstr "Ouvrir le sélecteur d’emoji" -#: src/view/screens/ProfileFeed.tsx:295 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Open feed options menu" msgstr "Ouvrir le menu des options de fil d’actu" @@ -3735,7 +3750,7 @@ msgstr "Ouvrir des liens avec le navigateur interne à l’appli" msgid "Open message options" msgstr "Ouvrir les options de message" -#: src/screens/Moderation/index.tsx:227 +#: src/screens/Moderation/index.tsx:230 msgid "Open muted words and tags settings" msgstr "Ouvrir les paramètres des mots masqués et mots-clés" @@ -3747,7 +3762,7 @@ msgstr "Navigation ouverte" msgid "Open post options menu" msgstr "Ouvrir le menu d’options du post" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 msgid "Open starter pack menu" msgstr "Ouvrir le menu du kit de démarrage" @@ -3897,7 +3912,7 @@ msgstr "Option {0} sur {numItems}" msgid "Optionally provide additional information below:" msgstr "Ajoutez des informations supplémentaires ci-dessous (optionnel) :" -#: src/view/com/modals/Threadgate.tsx:92 +#: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" msgstr "Ou une combinaison de ces options :" @@ -3957,7 +3972,6 @@ msgstr "Mot de passe mis à jour !" msgid "Pause" msgstr "Mettre en pause" -#: src/screens/StarterPack/Wizard/index.tsx:194 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "Personnes" @@ -3970,32 +3984,37 @@ msgstr "Personnes suivies par @{0}" msgid "People following @{0}" msgstr "Personnes qui suivent @{0}" -#: src/view/com/lightbox/Lightbox.tsx:67 +#: src/view/com/lightbox/Lightbox.tsx:69 msgid "Permission to access camera roll is required." msgstr "Permission d’accès à la pellicule requise." -#: src/view/com/lightbox/Lightbox.tsx:73 +#: src/view/com/lightbox/Lightbox.tsx:75 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." -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "Ajouter/enlever per les personnes" #: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:93 msgid "Pets" msgstr "Animaux domestiques" +#: src/screens/Onboarding/state.ts:94 +msgid "Photography" +msgstr "" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "Images destinées aux adultes." -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Ajouter à l’accueil" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 msgid "Pin to Home" msgstr "Ajouter à l’accueil" @@ -4086,6 +4105,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Veuillez patienter le temps que votre carte de lien soit chargée" #: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:95 msgid "Politics" msgstr "Politique" @@ -4149,7 +4169,7 @@ msgstr "Post introuvable" msgid "posts" msgstr "posts" -#: src/view/screens/Profile.tsx:216 +#: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Posts" @@ -4218,7 +4238,7 @@ msgid "Processing..." msgstr "Traitement…" #: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:353 +#: src/view/screens/Profile.tsx:346 msgid "profile" msgstr "profil" @@ -4258,15 +4278,15 @@ msgstr "Publier le post" msgid "Publish reply" msgstr "Publier la réponse" -#: src/components/StarterPack/QrCodeDialog.tsx:131 +#: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" msgstr "Code QR copié dans votre presse-papier !" -#: src/components/StarterPack/QrCodeDialog.tsx:109 +#: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" msgstr "Code QR a été téléchargé !" -#: src/components/StarterPack/QrCodeDialog.tsx:110 +#: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" msgstr "Code QR enregistré dans votre photothèque !" @@ -4306,7 +4326,9 @@ msgid "Reload conversations" msgstr "Rafraîchir les conversations" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:325 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -4315,7 +4337,7 @@ msgstr "Rafraîchir les conversations" msgid "Remove" msgstr "Supprimer" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" msgstr "Supprimer {displayName} du kit de démarrage" @@ -4347,13 +4369,13 @@ 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:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:332 +#: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Supprimer de mes fils d’actu" -#: src/components/FeedCard.tsx:315 +#: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Supprimer de mes fils d’actu ?" @@ -4401,7 +4423,7 @@ msgid "Removed from my feeds" msgstr "Supprimé de mes fils d’actu" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "Supprimé de vos fils d’actu" @@ -4419,19 +4441,19 @@ msgstr "Supprime le post cité" msgid "Replace with Discover" msgstr "Remplacer par Discover" -#: src/view/screens/Profile.tsx:217 +#: src/view/screens/Profile.tsx:210 msgid "Replies" msgstr "Réponses" -#: src/view/com/threadgate/WhoCanReply.tsx:66 +#: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" msgstr "Les réponses sont désactivées" #: src/view/com/threadgate/WhoCanReply.tsx:123 -msgid "Replies on this thread are disabled" -msgstr "Les réponses à ce fil de discussion sont désactivées" +#~ msgid "Replies on this thread are disabled" +#~ msgstr "Les réponses à ce fil de discussion sont désactivées" -#: src/view/com/threadgate/WhoCanReply.tsx:237 +#: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "Les réponses à ce fil de discussion sont désactivées" @@ -4476,8 +4498,8 @@ msgstr "Signaler la conversation" msgid "Report dialog" msgstr "Fenêtre de dialogue de signalement" -#: src/view/screens/ProfileFeed.tsx:348 -#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:351 msgid "Report feed" msgstr "Signaler le fil d’actu" @@ -4494,8 +4516,8 @@ msgstr "Signaler le message" msgid "Report post" msgstr "Signaler le post" -#: src/screens/StarterPack/StarterPackScreen.tsx:469 -#: src/screens/StarterPack/StarterPackScreen.tsx:472 +#: src/screens/StarterPack/StarterPackScreen.tsx:476 +#: src/screens/StarterPack/StarterPackScreen.tsx:479 msgid "Report starter pack" msgstr "Signaler le kit de démarrage" @@ -4541,7 +4563,7 @@ msgstr "Republier" msgid "Repost" msgstr "Republier" -#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:418 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4637,12 +4659,12 @@ msgstr "Réessaye la dernière action, qui a échoué" #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 #: src/screens/Login/LoginForm.tsx:291 #: src/screens/Login/LoginForm.tsx:298 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/Onboarding/StepInterests/index.tsx:234 #: src/screens/Signup/index.tsx:245 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 @@ -4650,7 +4672,7 @@ msgid "Retry" msgstr "Réessayer" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:622 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Retourne à la page précédente" @@ -4660,12 +4682,13 @@ msgid "Returns to home page" msgstr "Retour à la page d’accueil" #: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/ProfileFeed.tsx:113 msgid "Returns to previous page" msgstr "Retour à la page précédente" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/StarterPack/QrCodeDialog.tsx:190 +#: src/components/dialogs/ThreadgateEditor.tsx:88 +#: src/components/StarterPack/QrCodeDialog.tsx:184 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -4674,7 +4697,7 @@ msgstr "Retour à la page précédente" msgid "Save" msgstr "Enregistrer" -#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/lightbox/Lightbox.tsx:135 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -4696,8 +4719,8 @@ msgstr "Enregistrer les modifications" msgid "Save handle change" msgstr "Enregistrer le changement de pseudo" -#: src/components/StarterPack/ShareDialog.tsx:163 -#: src/components/StarterPack/ShareDialog.tsx:170 +#: src/components/StarterPack/ShareDialog.tsx:150 +#: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" msgstr "Enregistrer l’image" @@ -4705,12 +4728,12 @@ msgstr "Enregistrer l’image" msgid "Save image crop" msgstr "Enregistrer le recadrage de l’image" -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" msgstr "Enregistrer le code QR" -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" msgstr "Enregistrer dans mes fils d’actu" @@ -4718,11 +4741,11 @@ msgstr "Enregistrer dans mes fils d’actu" msgid "Saved Feeds" msgstr "Fils d’actu enregistrés" -#: src/view/com/lightbox/Lightbox.tsx:82 +#: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" msgstr "Enregistré dans votre photothèque" -#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "Enregistré à mes fils d’actu" @@ -4740,13 +4763,14 @@ msgid "Saves image crop settings" msgstr "Enregistre les paramètres de recadrage de l’image" #: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:82 +#: src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:372 #: src/view/com/notifications/FeedItem.tsx:397 msgid "Say hello!" msgstr "Dites bonjour !" #: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:96 msgid "Science" msgstr "Science" @@ -4788,7 +4812,7 @@ msgstr "Rechercher tous les posts de @{authorHandle} avec le mot-clé {displayTa msgid "Search for all posts with tag {displayTag}" msgstr "Rechercher tous les posts avec le mot-clé {displayTag}" -#: src/screens/StarterPack/Wizard/index.tsx:467 +#: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." msgstr "Recherchez des fils d’actu que vous voulez suggérer à d’autres personnes." @@ -4905,7 +4929,7 @@ msgstr "Sélectionnez votre langue par défaut pour les textes de l’applicatio msgid "Select your date of birth" msgstr "Sélectionnez votre date de naissance" -#: src/screens/Onboarding/StepInterests/index.tsx:201 +#: src/screens/Onboarding/StepInterests/index.tsx:206 msgid "Select your interests from the options below" msgstr "Sélectionnez vos centres d’intérêt parmi les options ci-dessous" @@ -4974,7 +4998,7 @@ msgstr "Envoie un e-mail avec le code de confirmation pour la suppression du com msgid "Server address" msgstr "Adresse du serveur" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:307 msgid "Set birthdate" msgstr "Entrez votre date de naissance" @@ -5062,9 +5086,9 @@ msgstr "Activité sexuelle ou nudité érotique." msgid "Sexually Suggestive" msgstr "Sexuellement suggestif" -#: src/components/StarterPack/QrCodeDialog.tsx:180 -#: src/screens/StarterPack/StarterPackScreen.tsx:303 -#: src/screens/StarterPack/StarterPackScreen.tsx:458 +#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/screens/StarterPack/StarterPackScreen.tsx:312 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5074,7 +5098,7 @@ msgstr "Sexuellement suggestif" msgid "Share" msgstr "Partager" -#: src/view/com/lightbox/Lightbox.tsx:142 +#: src/view/com/lightbox/Lightbox.tsx:144 msgctxt "action" msgid "Share" msgstr "Partager" @@ -5093,22 +5117,23 @@ msgstr "Partagez une anecdote insolite !" msgid "Share anyway" msgstr "Partager quand même" -#: src/view/screens/ProfileFeed.tsx:358 -#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:361 msgid "Share feed" msgstr "Partager le fil d’actu" -#: src/screens/StarterPack/StarterPackScreen.tsx:462 +#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/screens/StarterPack/StarterPackScreen.tsx:469 msgid "Share link" msgstr "Partager le lien" -#: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "Partager le lien" -#: src/components/StarterPack/ShareDialog.tsx:100 +#: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" msgstr "Dialogue pour le partage d’un lien" @@ -5117,11 +5142,11 @@ msgstr "Dialogue pour le partage d’un lien" msgid "Share QR code" msgstr "Partager le code QR" -#: src/screens/StarterPack/StarterPackScreen.tsx:296 +#: src/screens/StarterPack/StarterPackScreen.tsx:305 msgid "Share this starter pack" msgstr "Partagez ce kit de démarrage" -#: src/components/StarterPack/ShareDialog.tsx:112 +#: src/components/StarterPack/ShareDialog.tsx:99 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." @@ -5171,7 +5196,7 @@ msgstr "Afficher les réponses cachées" msgid "Show less like this" msgstr "En montrer moins comme ça" -#: src/view/com/post-thread/PostThreadItem.tsx:533 +#: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" @@ -5299,27 +5324,27 @@ msgstr "Connecté en tant que @{0}" msgid "signed up with your starter pack" msgstr "s’est inscrit·e avec votre kit de démarrage" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 msgid "Signup without a starter pack" msgstr "S’inscrire sans kit de démarrage" -#: src/screens/Onboarding/StepInterests/index.tsx:240 -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Ignorer" -#: src/screens/Onboarding/StepInterests/index.tsx:237 +#: src/screens/Onboarding/StepInterests/index.tsx:242 msgid "Skip this flow" msgstr "Passer cette étape" #: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:85 msgid "Software Dev" msgstr "Développement de logiciels" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 -#: src/view/com/threadgate/WhoCanReply.tsx:67 -#: src/view/com/threadgate/WhoCanReply.tsx:124 +#: src/components/WhoCanReply.tsx:72 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "Quelques comptes peuvent répondre" @@ -5333,7 +5358,7 @@ msgid "Something went wrong, please try again" msgstr "Quelque chose n’a pas marché, veuillez réessayer" #: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 +#: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Quelque chose n’a pas marché, veuillez réessayer." @@ -5365,6 +5390,7 @@ msgid "Spam; excessive mentions or replies" msgstr "Spam ; mentions ou réponses excessives" #: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:97 msgid "Sports" msgstr "Sports" @@ -5386,7 +5412,7 @@ msgstr "Démarrer les discussions" #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "Kit de démarrage" @@ -5394,14 +5420,18 @@ msgstr "Kit de démarrage" msgid "Starter pack by {0}" msgstr "Kit de démarrage par {0}" -#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 msgid "Starter pack is invalid" msgstr "Le kit de démarrage n’est pas valide" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:214 msgid "Starter Packs" msgstr "Packs de démarrage" +#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + #: src/view/screens/Settings/index.tsx:963 msgid "Status Page" msgstr "État du service" @@ -5502,6 +5532,7 @@ msgid "Tap to view fully" msgstr "Tapper pour voir en entier" #: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:98 msgid "Tech" msgstr "Technologie" @@ -5554,10 +5585,10 @@ msgstr "Qui contient les éléments suivants :" msgid "That handle is already taken." msgstr "Ce pseudo est déjà occupé." -#: src/screens/StarterPack/StarterPackScreen.tsx:100 -#: src/screens/StarterPack/StarterPackScreen.tsx:101 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:102 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/Wizard/index.tsx:106 +#: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." msgstr "Ce kit de démarrage n’a pas pu être trouvé." @@ -5574,7 +5605,7 @@ msgstr "Les lignes directrices communautaires ont été déplacées vers <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "Notre politique de droits d’auteur a été déplacée vers <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 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." @@ -5603,7 +5634,7 @@ msgstr "Ce post a peut-être été supprimé." msgid "The Privacy Policy has been moved to <0/>" msgstr "Notre politique de confidentialité a été déplacée vers <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:589 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Le kit de démarrage que vous essayez de consulter n’est pas valide. Vous pouvez supprimer ce kit de démarrage à la place." @@ -5620,7 +5651,7 @@ 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:542 +#: src/view/screens/ProfileFeed.tsx:544 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." @@ -5630,7 +5661,7 @@ msgstr "Il y a eu un problème lors de la suppression du fil, veuillez vérifier #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: 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." @@ -5639,7 +5670,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:233 +#: src/view/screens/ProfileFeed.tsx:234 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -5693,6 +5724,7 @@ msgstr "Il y a eu un problème lors de la récupération de vos mots de passe d msgid "There was an issue! {0}" msgstr "Il y a eu un problème ! {0}" +#: src/components/WhoCanReply.tsx:116 #: src/view/screens/ProfileList.tsx:335 #: src/view/screens/ProfileList.tsx:349 #: src/view/screens/ProfileList.tsx:363 @@ -5771,7 +5803,7 @@ msgstr "Ce fil d’actu reçoit actuellement un trafic important, il est tempora msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "Ce fil d’actu est vide ! Vous devriez peut-être suivre plus de comptes ou ajuster vos paramètres de langue." -#: src/view/screens/ProfileFeed.tsx:472 +#: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "Ce fil d’actu est vide." @@ -5870,7 +5902,7 @@ msgstr "Ce compte est inclus dans la liste <0>{0} que vous avez bloquée." msgid "This user is included in the <0>{0} list which you have muted." msgstr "Ce compte est inclus dans la liste <0>{0} que vous avez masquée." -#: src/components/NewskieDialog.tsx:53 +#: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." msgstr "Ce compte est nouveau ici. Appuyez pour obtenir plus d’informations sur sa date d’arrivée." @@ -5923,7 +5955,7 @@ msgstr "Basculer entre les options pour les mots masqués." msgid "Toggle dropdown" msgstr "Activer le menu déroulant" -#: src/screens/Moderation/index.tsx:332 +#: src/screens/Moderation/index.tsx:336 msgid "Toggle to enable or disable adult content" msgstr "Activer ou désactiver le contenu pour adultes" @@ -5938,8 +5970,8 @@ msgstr "Transformations" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: 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 msgid "Translate" @@ -5950,6 +5982,10 @@ msgctxt "action" msgid "Try again" msgstr "Réessayer" +#: src/screens/Onboarding/state.ts:99 +msgid "TV" +msgstr "" + #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" msgstr "Authentification à deux facteurs" @@ -5979,7 +6015,7 @@ msgstr "Réafficher cette liste" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Impossible de contacter votre service. Veuillez vérifier votre connexion Internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:513 +#: src/screens/StarterPack/StarterPackScreen.tsx:520 msgid "Unable to delete" msgstr "Impossible de supprimer" @@ -6038,7 +6074,7 @@ msgstr "Se désabonner de {0}" msgid "Unfollow Account" msgstr "Se désabonner du compte" -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Unlike this feed" msgstr "Déliker ce fil d’actu" @@ -6069,12 +6105,12 @@ msgstr "Réafficher la conversation" msgid "Unmute thread" msgstr "Réafficher ce fil de discussion" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Désépingler" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 msgid "Unpin from home" msgstr "Désépingler de l’accueil" @@ -6240,7 +6276,7 @@ msgstr "Pseudo ou e-mail" msgid "Users" msgstr "Comptes" -#: src/view/com/threadgate/WhoCanReply.tsx:274 +#: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" msgstr "comptes suivis par <0/>" @@ -6251,7 +6287,7 @@ msgstr "comptes suivis par <0/>" msgid "Users I follow" msgstr "Comptes que je suis" -#: src/view/com/modals/Threadgate.tsx:109 +#: src/components/dialogs/ThreadgateEditor.tsx:132 msgid "Users in \"{0}\"" msgstr "Comptes dans « {0} »" @@ -6297,6 +6333,7 @@ msgid "Version {appVersion} {bundleInfo}" msgstr "Version {appVersion} {bundleInfo}" #: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:88 msgid "Video Games" msgstr "Jeux vidéo" @@ -6348,7 +6385,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:583 +#: src/view/screens/ProfileFeed.tsx:585 msgid "View users who like this feed" msgstr "Voir les comptes qui a liké ce fil d’actu" @@ -6404,11 +6441,11 @@ msgstr "Nous vous recommandons d’éviter les mots communs qui apparaissent dan msgid "We were unable to load your birth date preferences. Please try again." msgstr "Nous n’avons pas pu charger vos préférences en matière de date de naissance. Veuillez réessayer." -#: src/screens/Moderation/index.tsx:385 +#: src/screens/Moderation/index.tsx:409 msgid "We were unable to load your configured labelers at this time." msgstr "Nous n’avons pas pu charger vos étiqueteurs configurés pour le moment." -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:143 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Nous n’avons pas pu nous connecter. Veuillez réessayer pour continuer à configurer votre compte. Si l’échec persiste, vous pouvez sauter cette étape." @@ -6416,7 +6453,7 @@ msgstr "Nous n’avons pas pu nous connecter. Veuillez réessayer pour continuer msgid "We will let you know when your account is ready." msgstr "Nous vous informerons lorsque votre compte sera prêt." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:148 msgid "We'll use this to help customize your experience." msgstr "Nous utiliserons ces informations pour personnaliser votre expérience." @@ -6461,7 +6498,7 @@ msgstr "Bienvenue !" msgid "Welcome, friend!" msgstr "Bienvenue et enchanté !" -#: src/screens/Onboarding/StepInterests/index.tsx:135 +#: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" msgstr "Quels sont vos centres d’intérêt ?" @@ -6488,17 +6525,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/view/com/modals/Threadgate.tsx:69 -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Who can reply" msgstr "Qui peut répondre ?" -#: src/view/com/threadgate/WhoCanReply.tsx:206 +#: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" msgstr "Dialogue qui permet de changer qui peut répondre" -#: src/view/com/threadgate/WhoCanReply.tsx:210 +#: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" msgstr "Qui peut répondre ?" @@ -6554,6 +6589,7 @@ msgid "Write your reply" msgstr "Rédigez votre réponse" #: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:100 msgid "Writers" msgstr "Écrivain·e·s" @@ -6572,7 +6608,7 @@ msgstr "Oui" msgid "Yes, deactivate" msgstr "Oui, désactiver" -#: src/screens/StarterPack/StarterPackScreen.tsx:525 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Yes, delete this starter pack" msgstr "Oui, supprimer ce kit de démarrage" @@ -6713,6 +6749,10 @@ msgstr "Vous n’avez encore masqué aucun compte. Pour masquer un compte, allez msgid "You have reached the end" msgstr "Vous avez atteint la fin" +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +msgid "You haven't created a starter pack yet!" +msgstr "" + #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "Vous n’avez pas encore masqué de mot ou de mot-clé" @@ -6737,15 +6777,15 @@ msgstr "Vous ne pouvez ajouter que 50 profils au maximum" msgid "You must be 13 years of age or older to sign up." msgstr "Vous devez avoir 13 ans ou plus pour vous inscrire." -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." msgstr "Vous devez suivre au moins sept autres personnes pour générer un kit de démarrage." -#: src/components/StarterPack/QrCodeDialog.tsx:62 +#: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "Vous devez autoriser l’accès à votre photothèque pour enregistrer un code QR" -#: src/components/StarterPack/ShareDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:68 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." @@ -6797,7 +6837,7 @@ msgstr "Vous suivrez ces personnes et {0} autres" msgid "You'll follow these people right away" msgstr "Vous suivrez ces personnes immédiatement" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 msgid "You'll stay updated with these feeds" msgstr "Vous resterez informé grâce à ces fils d’actu" diff --git a/src/locale/locales/ga/messages.po b/src/locale/locales/ga/messages.po index dfc163e33a..ae275e8992 100644 --- a/src/locale/locales/ga/messages.po +++ b/src/locale/locales/ga/messages.po @@ -68,7 +68,7 @@ msgstr "{0, plural, one {Mol (# mholadh)} two {Mol (# mholadh)} few {Mol (# mhol msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {moladh} two {mholadh} few {mholadh} many {moladh} other {moladh}}" -#: src/components/FeedCard.tsx:215 +#: src/components/FeedCard.tsx:216 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, 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}}" @@ -89,7 +89,11 @@ 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/StarterPackScreen.tsx:343 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +msgid "{0} joined this week" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:350 msgid "{0} people have used this starter pack!" msgstr "" @@ -134,7 +138,7 @@ msgstr "" msgid "{diffSeconds, plural, one {second} other {seconds}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" msgstr "" @@ -157,7 +161,7 @@ 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:586 +#: src/view/screens/ProfileFeed.tsx:588 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}}" @@ -165,11 +169,11 @@ msgstr "{likeCount, plural, one {Molta ag úsáideoir amháin} two {Molta ag bei msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} gan léamh" -#: src/components/NewskieDialog.tsx:92 +#: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" msgstr "" -#: src/components/NewskieDialog.tsx:87 +#: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "" @@ -177,17 +181,27 @@ 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/view/com/threadgate/WhoCanReply.tsx:290 +#: src/components/WhoCanReply.tsx:295 msgid "<0/> members" msgstr "<0/> ball" #: src/screens/StarterPack/Wizard/index.tsx:485 -msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +#~ 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 "" + +#: 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 "" +#~ 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 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -197,11 +211,15 @@ msgstr "<0>{0} {1, plural, one {leantóir} two {leantóir} few {leantóir} m 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}}" +#: 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 "<0>{0} á leanúint" -#: src/screens/StarterPack/Wizard/index.tsx:478 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -229,6 +247,10 @@ msgstr "<0>Neamhbhainteach. Níl an rabhadh seo ar fáil ach le haghaidh pos #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "<0>Fáilte go<1>Bluesky" +#: src/screens/StarterPack/Wizard/index.tsx:457 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠Leasainm Neamhbhailí" @@ -319,11 +341,11 @@ msgstr "Níl an cuntas i bhfolach a thuilleadh" msgid "Add" msgstr "Cuir leis" -#: src/screens/StarterPack/Wizard/index.tsx:539 +#: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:56 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" msgstr "" @@ -379,14 +401,14 @@ msgid "Add muted words and tags" msgstr "Cuir focail agus clibeanna a cuireadh i bhfolach leis seo" #: src/screens/StarterPack/Wizard/index.tsx:197 -msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "" +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "Cuir fothaí molta leis seo" -#: src/screens/StarterPack/Wizard/index.tsx:464 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" msgstr "" @@ -398,7 +420,7 @@ msgstr "Ná cuir ach fotha réamhshocraithe de na daoine a leanann tú leis seo" msgid "Add the following DNS record to your domain:" msgstr "Cuir an taifead DNS seo a leanas le d'fhearann:" -#: src/components/FeedCard.tsx:300 +#: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" msgstr "" @@ -433,16 +455,20 @@ msgstr "Sonraigh an méid moltaí ar fhreagra atá de dhíth le bheith le feice msgid "Adult Content" msgstr "Ábhar do dhaoine fásta" +#: src/screens/Moderation/index.tsx:356 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "Tá ábhar do dhaoine fásta curtha ar ceal." -#: src/screens/Moderation/index.tsx:375 +#: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "Ardleibhéal" -#: src/screens/StarterPack/StarterPackScreen.tsx:271 +#: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "All accounts have been followed!" msgstr "" @@ -507,16 +533,16 @@ msgstr "Cuireadh teachtaireacht ríomhphoist chuig do sheanseoladh. {0}. Tá có msgid "An error occured" msgstr "Tharla earráid" -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +#: 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 "" +#~ msgid "An error occurred while saving the image." +#~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:76 -#: src/components/StarterPack/ShareDialog.tsx:91 +#: src/components/StarterPack/QrCodeDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "" @@ -524,7 +550,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "Tharla earráid agus an teachtaireacht á scriosadh. Bain triail eile as." -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:275 msgid "An error occurred while trying to follow all" msgstr "" @@ -541,16 +567,17 @@ msgstr "Rud nach bhfuil ar fáil sna roghanna seo" msgid "An issue occurred, please try again." msgstr "Tharla fadhb. Déan iarracht eile, le do thoil." -#: src/screens/Onboarding/StepInterests/index.tsx:194 +#: src/screens/Onboarding/StepInterests/index.tsx:199 msgid "an unknown error occurred" msgstr "tharla earráid nach eol dúinn" +#: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:280 -#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "agus" #: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:79 msgid "Animals" msgstr "Ainmhithe" @@ -622,7 +649,7 @@ msgstr "Cuma" msgid "Apply default recommended feeds" msgstr "Bain úsáid as fothaí réamhshocraithe a moladh" -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -652,7 +679,7 @@ msgstr "An bhfuil tú cinnte gur mhaith leat imeacht ón gcomhrá seo? Scriosfar msgid "Are you sure you want to remove {0} from your feeds?" msgstr "An bhfuil tú cinnte gur mhaith leat {0} a bhaint de do chuid fothaí?" -#: src/components/FeedCard.tsx:317 +#: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -669,6 +696,7 @@ msgid "Are you writing in <0>{0}?" msgstr "An bhfuil tú ag scríobh sa teanga <0>{0}?" #: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:80 msgid "Art" msgstr "Ealaín" @@ -695,7 +723,7 @@ msgstr "3 charachtar ar a laghad" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:312 +#: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Ar ais" @@ -752,7 +780,7 @@ msgstr "An bhfuil fonn ort na cuntais seo a bhlocáil?" msgid "Blocked" msgstr "Blocáilte" -#: src/screens/Moderation/index.tsx:267 +#: src/screens/Moderation/index.tsx:270 msgid "Blocked accounts" msgstr "Cuntais bhlocáilte" @@ -810,11 +838,11 @@ msgstr "Is líonra oscailte é Bluesky, lenar féidir leat do sholáthraí óst #~ msgid "Bluesky is public." #~ msgstr "Tá Bluesky poiblí." -#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:533 +#: 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 "Ní thaispeánfaidh Bluesky do phróifíl ná do chuid postálacha d’úsáideoirí atá logáilte amach. Is féidir nach gcloífidh aipeanna eile leis an iarratas seo. I bhfocail eile, ní bheidh do chuntas anseo príobháideach." @@ -827,6 +855,7 @@ msgid "Blur images and filter from feeds" msgstr "Déan íomhánna doiléir agus scag ó fhothaí iad" #: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:81 msgid "Books" msgstr "Leabhair" @@ -1036,13 +1065,21 @@ msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "Féach ar do bhosca ríomhphoist le haghaidh teachtaireachta leis an gcód dearbhaithe atá le cur isteach thíos." #: src/view/com/modals/Threadgate.tsx:75 -msgid "Choose \"Everybody\" or \"Nobody\"" -msgstr "Roghnaigh “Chuile Dhuine” nó “Duine Ar Bith”" +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "Roghnaigh “Chuile Dhuine” nó “Duine Ar Bith”" -#: src/components/StarterPack/ProfileStarterPacks.tsx:288 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:187 +msgid "Choose People" +msgstr "" + #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Roghnaigh Seirbhís" @@ -1059,6 +1096,11 @@ msgstr "Roghnaigh na halgartaim le haghaidh do chuid sainfhothaí." msgid "Choose this color as your avatar" msgstr "Roghnaigh an dath seo mar abhatár duit" +#: 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 "Roghnaigh do phríomhfhothaí" @@ -1136,18 +1178,18 @@ msgstr "Trup, Trup a Chapaillín 🐴" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/NewskieDialog.tsx:120 -#: src/components/NewskieDialog.tsx:127 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:121 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:127 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: 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:189 msgid "Close" msgstr "Dún" -#: src/components/Dialog/index.web.tsx:113 -#: src/components/Dialog/index.web.tsx:251 +#: src/components/Dialog/index.web.tsx:116 +#: src/components/Dialog/index.web.tsx:254 msgid "Close active dialog" msgstr "Dún an dialóg oscailte" @@ -1214,10 +1256,12 @@ 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" #: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:82 msgid "Comedy" msgstr "Greann" #: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:83 msgid "Comics" msgstr "Greannáin" @@ -1279,11 +1323,11 @@ msgstr "Dearbhaigh socruithe le haghaidh teanga an ábhair" msgid "Confirm delete account" msgstr "Dearbhaigh scriosadh an chuntais" -#: src/screens/Moderation/index.tsx:301 +#: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "Dearbhaigh d'aois:" -#: src/screens/Moderation/index.tsx:292 +#: src/screens/Moderation/index.tsx:295 msgid "Confirm your birthdate" msgstr "Dearbhaigh do bhreithlá" @@ -1313,7 +1357,7 @@ msgstr "Teagmháil le Support" msgid "Content Blocked" msgstr "Ábhar Blocáilte" -#: src/screens/Moderation/index.tsx:285 +#: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "Scagthaí ábhair" @@ -1342,7 +1386,7 @@ msgstr "Rabhadh ábhair" msgid "Context menu backdrop, click to close the menu." msgstr "Cúlra an roghchláir comhthéacs, cliceáil chun an roghchlár a dhúnadh." -#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepInterests/index.tsx:258 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Lean ar aghaidh" @@ -1355,7 +1399,7 @@ msgstr "Lean ort mar {0} (atá logáilte isteach faoi láthair)" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:251 msgid "Continue to next step" @@ -1403,7 +1447,7 @@ msgstr "Cóipeáilte!" msgid "Copies app password" msgstr "Cóipeálann sé seo pasfhocal na haipe" -#: src/components/StarterPack/QrCodeDialog.tsx:180 +#: src/components/StarterPack/QrCodeDialog.tsx:174 #: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Cóipeáil" @@ -1417,7 +1461,11 @@ msgstr "Cóipeáil {0}" msgid "Copy code" msgstr "Cóipeáil an cód" -#: src/components/StarterPack/ShareDialog.tsx:143 +#: src/components/StarterPack/ShareDialog.tsx:123 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" msgstr "" @@ -1440,7 +1488,7 @@ msgstr "Cóipeáil téacs na teachtaireachta" msgid "Copy post text" msgstr "Cóipeáil téacs na postála" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" msgstr "" @@ -1453,7 +1501,7 @@ msgstr "An polasaí maidir le cóipcheart" msgid "Could not leave chat" msgstr "Níor éiríodh ar an gcomhrá a fhágail" -#: src/view/screens/ProfileFeed.tsx:102 +#: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" msgstr "Ní féidir an fotha a lódáil" @@ -1474,7 +1522,7 @@ msgstr "Níor éiríodh ar an gcomhrá a bhalbhú" #~ msgid "Could not unmute chat" #~ msgstr "Níor éiríodh ar an gcomhrá a bhalbhú" -#: src/components/StarterPack/ProfileStarterPacks.tsx:270 +#: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" msgstr "" @@ -1487,17 +1535,17 @@ msgstr "Cruthaigh cuntas nua" msgid "Create a new Bluesky account" msgstr "Cruthaigh cuntas nua Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:157 +#: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:257 +#: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +#: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" msgstr "" @@ -1528,8 +1576,8 @@ msgid "Create new account" msgstr "Cruthaigh cuntas nua" #: src/components/StarterPack/ShareDialog.tsx:158 -msgid "Create QR code" -msgstr "" +#~ msgid "Create QR code" +#~ msgstr "" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1544,6 +1592,7 @@ msgstr "Cruthaíodh {0}" #~ msgstr "Cruthaíonn sé seo cárta le mionsamhail. Nascann an cárta le {url}." #: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:84 msgid "Culture" msgstr "Cultúr" @@ -1600,9 +1649,9 @@ msgid "Debug panel" msgstr "Painéal dífhabhtaithe" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:449 -#: src/screens/StarterPack/StarterPackScreen.tsx:528 -#: src/screens/StarterPack/StarterPackScreen.tsx:608 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1663,12 +1712,12 @@ msgstr "Scrios mo chuntas…" msgid "Delete post" msgstr "Scrios an phostáil" -#: src/screens/StarterPack/StarterPackScreen.tsx:443 -#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:450 +#: src/screens/StarterPack/StarterPackScreen.tsx:606 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:494 +#: src/screens/StarterPack/StarterPackScreen.tsx:501 msgid "Delete starter pack?" msgstr "" @@ -1740,7 +1789,7 @@ msgstr "Ná húsáid aiseolas haptach" #: src/lib/moderation/useLabelBehaviorDescription.ts:68 #: src/screens/Messages/Settings.tsx:140 #: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:341 +#: src/screens/Moderation/index.tsx:346 msgid "Disabled" msgstr "Díchumasaithe" @@ -1752,8 +1801,8 @@ msgstr "Ná sábháil" msgid "Discard draft?" msgstr "Faigh réidh leis an dréacht?" -#: src/screens/Moderation/index.tsx:518 -#: src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:542 +#: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" msgstr "Cuir ina luí ar aipeanna gan mo chuntas a thaispeáint d'úsáideoirí atá logáilte amach" @@ -1804,6 +1853,7 @@ msgstr "Fearann dearbhaithe!" #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/ThreadgateEditor.tsx:88 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 @@ -1823,8 +1873,6 @@ msgstr "Déanta" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 #: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/Threadgate.tsx:136 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 #: src/view/screens/PreferencesThreads.tsx:162 @@ -1836,7 +1884,7 @@ msgstr "Déanta" msgid "Done{extraText}" msgstr "Déanta{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 msgid "Download Bluesky" msgstr "" @@ -1893,9 +1941,9 @@ msgstr "m.sh. Úsáideoirí a fhreagraíonn le fógraí" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Oibríonn gach cód uair amháin. Gheobhaidh tú tuilleadh cód go tráthrialta." -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:522 -#: src/screens/StarterPack/Wizard/index.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" @@ -1911,7 +1959,7 @@ msgstr "Eagar" msgid "Edit avatar" msgstr "Cuir an t-abhatár in eagar" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "" @@ -1939,7 +1987,7 @@ msgstr "Athraigh mo chuid fothaí" msgid "Edit my profile" msgstr "Athraigh mo phróifíl" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "" @@ -1957,7 +2005,7 @@ msgstr "Athraigh an Phróifíl" #~ msgid "Edit Saved Feeds" #~ msgstr "Athraigh na fothaí sábháilte" -#: src/screens/StarterPack/StarterPackScreen.tsx:430 +#: src/screens/StarterPack/StarterPackScreen.tsx:437 msgid "Edit starter pack" msgstr "" @@ -1965,8 +2013,7 @@ msgstr "" msgid "Edit User List" msgstr "Athraigh an liosta d’úsáideoirí" -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" msgstr "" @@ -1983,9 +2030,14 @@ msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:86 msgid "Education" msgstr "Oideachas" +#: src/components/dialogs/ThreadgateEditor.tsx:98 +msgid "Either choose \"Everybody\" or \"Nobody\"" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" @@ -2034,7 +2086,7 @@ msgstr "Leabaigh an phostáil seo i do shuíomh gréasáin féin. Cóipeáil an msgid "Enable {0} only" msgstr "Cuir {0} amháin ar fáil" -#: src/screens/Moderation/index.tsx:329 +#: src/screens/Moderation/index.tsx:333 msgid "Enable adult content" msgstr "Cuir ábhar do dhaoine fásta ar fáil" @@ -2065,7 +2117,7 @@ msgstr "Cuir an foinse seo amháin ar fáil" #: src/screens/Messages/Settings.tsx:131 #: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:339 +#: src/screens/Moderation/index.tsx:344 msgid "Enabled" msgstr "Cumasaithe" @@ -2136,19 +2188,18 @@ msgstr "Tharla earráid le linn comhad a shábháil" msgid "Error receiving captcha response." msgstr "Earráid agus an freagra ar an captcha á phróiseáil." -#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Earráid:" -#: src/view/com/modals/Threadgate.tsx:79 +#: src/components/dialogs/ThreadgateEditor.tsx:102 msgid "Everybody" msgstr "Chuile dhuine" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#: src/view/com/threadgate/WhoCanReply.tsx:64 -#: src/view/com/threadgate/WhoCanReply.tsx:121 -#: src/view/com/threadgate/WhoCanReply.tsx:235 +#: src/components/WhoCanReply.tsx:69 +#: src/components/WhoCanReply.tsx:240 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "Tig le chuile dhuine freagra a thabhairt" @@ -2243,8 +2294,8 @@ msgstr "Socruithe maidir le meáin sheachtracha" msgid "Failed to create app password." msgstr "Teip ar phasfhocal aipe a chruthú." -#: src/screens/StarterPack/Wizard/index.tsx:241 -#: src/screens/StarterPack/Wizard/index.tsx:249 +#: src/screens/StarterPack/Wizard/index.tsx:230 +#: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" msgstr "" @@ -2260,7 +2311,7 @@ msgstr "Teip ar theachtaireacht a scriosadh" msgid "Failed to delete post, please try again" msgstr "Teip ar scriosadh na postála. Déan iarracht eile." -#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/StarterPackScreen.tsx:569 msgid "Failed to delete starter pack" msgstr "" @@ -2296,7 +2347,7 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" msgstr "Níor sábháladh an íomhá: {0}" @@ -2318,7 +2369,7 @@ msgstr "Teip ar achomharc a dhéanamh, bain triail eile as, le do thoil." msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:280 +#: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "" @@ -2340,7 +2391,7 @@ msgstr "Fotha le {0}" #~ msgid "Feed offline" #~ msgstr "Fotha as líne" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "" @@ -2350,10 +2401,9 @@ msgid "Feedback" msgstr "Aiseolas" #: src/Navigation.tsx:320 -#: src/screens/StarterPack/Wizard/index.tsx:201 #: src/view/screens/Feeds.tsx:445 #: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:220 +#: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:373 #: src/view/shell/Drawer.tsx:493 @@ -2373,7 +2423,7 @@ msgstr "Is sainalgartaim iad na fothaí. Cruthaíonn úsáideoirí a bhfuil beag #~ msgid "Feeds can be topical as well!" #~ msgstr "Is féidir le fothaí a bheith bunaithe ar chúrsaí reatha freisin!" -#: src/components/FeedCard.tsx:277 +#: src/components/FeedCard.tsx:282 msgid "Feeds updated!" msgstr "" @@ -2423,7 +2473,7 @@ msgstr "Mionathraigh an t-ábhar a fheiceann tú ar an bhfotha Following." msgid "Fine-tune the discussion threads." msgstr "Mionathraigh na snáitheanna chomhrá" -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" msgstr "" @@ -2471,8 +2521,8 @@ msgstr "Lean {name}" msgid "Follow Account" msgstr "Lean an cuntas seo" -#: src/screens/StarterPack/StarterPackScreen.tsx:308 -#: src/screens/StarterPack/StarterPackScreen.tsx:315 +#: src/screens/StarterPack/StarterPackScreen.tsx:317 +#: src/screens/StarterPack/StarterPackScreen.tsx:324 msgid "Follow all" msgstr "" @@ -2520,7 +2570,7 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/view/com/modals/Threadgate.tsx:101 +#: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" msgstr "Cuntais a leanann tú" @@ -2584,6 +2634,7 @@ msgid "Follows You" msgstr "Leanann sé/sí thú" #: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:87 msgid "Food" msgstr "Bia" @@ -2625,7 +2676,7 @@ msgstr "Ó <0/>" msgid "Gallery" msgstr "Gailearaí" -#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" msgstr "" @@ -2655,7 +2706,7 @@ msgstr "Deargshárú an dlí nó na dtéarmaí seirbhíse" #: src/view/com/auth/LoggedOut.tsx:78 #: src/view/com/auth/LoggedOut.tsx:79 #: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:133 msgid "Go back" @@ -2664,9 +2715,9 @@ msgstr "Ar ais" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:628 #: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Ar ais" @@ -2680,7 +2731,7 @@ msgstr "Ar ais" msgid "Go back to previous step" msgstr "Fill ar an gcéim roimhe seo" -#: src/screens/StarterPack/Wizard/index.tsx:313 +#: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" msgstr "" @@ -2820,7 +2871,7 @@ msgstr "Hmm. Thug freastalaí an fhotha drochfhreagra. Cuir é seo in iúl d’ msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm. Ní féidir linn an fotha seo a aimsiú. Is féidir gur scriosadh é." -#: src/screens/Moderation/index.tsx:59 +#: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmmm, is cosúil go bhfuil fadhb againn le lódáil na sonraí seo. Féach thíos le haghaidh tuilleadh sonraí. Má mhaireann an fhadhb seo, téigh i dteagmháil linn, le do thoil." @@ -2911,7 +2962,7 @@ msgstr "Íomhá" msgid "Image alt text" msgstr "Téacs malartach le híomhá" -#: src/components/StarterPack/ShareDialog.tsx:88 +#: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" msgstr "" @@ -3004,7 +3055,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:109 +#: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" msgstr "" @@ -3020,7 +3071,7 @@ msgstr "" #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "Taispeánann sé postálacha ó na daoine a leanann tú nuair a fhoilsítear iad." -#: src/screens/StarterPack/Wizard/index.tsx:473 +#: 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 "" @@ -3028,8 +3079,8 @@ msgstr "" msgid "Jobs" msgstr "Jabanna" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 msgid "Join Bluesky" msgstr "" @@ -3038,6 +3089,7 @@ msgid "Join the conversation" msgstr "" #: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:89 msgid "Journalism" msgstr "Iriseoireacht" @@ -3053,7 +3105,7 @@ msgstr "Lipéad curtha ag {0}." msgid "Labeled by the author." msgstr "Lipéadaithe ag an údar." -#: src/view/screens/Profile.tsx:214 +#: src/view/screens/Profile.tsx:207 msgid "Labels" msgstr "Lipéid" @@ -3109,7 +3161,7 @@ msgstr "Foghlaim níos mó faoin modhnóireacht a dhéantar ar an ábhar seo." msgid "Learn more about this warning" msgstr "Le tuilleadh a fhoghlaim faoin rabhadh seo" -#: src/screens/Moderation/index.tsx:549 +#: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." msgstr "Le tuilleadh a fhoghlaim faoi céard atá poiblí ar Bluesky" @@ -3150,7 +3202,7 @@ msgstr "le déanamh fós." msgid "Legacy storage cleared, you need to restart the app now." msgstr "Stóráil oidhreachta scriosta, tá ort an aip a atosú anois." -#: src/components/StarterPack/ProfileStarterPacks.tsx:293 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" msgstr "" @@ -3172,7 +3224,7 @@ msgstr "Sorcha" #~ msgstr "Mol" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Mol an fotha seo" @@ -3208,7 +3260,7 @@ msgstr "a mhol do shainfhotha" msgid "liked your post" msgstr "a mhol do phostáil" -#: src/view/screens/Profile.tsx:219 +#: src/view/screens/Profile.tsx:212 msgid "Likes" msgstr "Moltaí" @@ -3254,8 +3306,8 @@ msgid "List unmuted" msgstr "Liosta nach bhfuil balbhaithe níos mó" #: src/Navigation.tsx:122 +#: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/screens/Profile.tsx:222 #: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 @@ -3284,7 +3336,7 @@ 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:493 +#: src/view/screens/ProfileFeed.tsx:494 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Lódáil postálacha nua" @@ -3309,7 +3361,7 @@ msgstr "Logáil isteach nó cláraigh le Bluesky" msgid "Log out" msgstr "Logáil amach" -#: src/screens/Moderation/index.tsx:442 +#: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" msgstr "Feiceálacht le linn a bheith logáilte amach" @@ -3342,7 +3394,7 @@ msgstr "Is cosúil gur éirigh tú as na fothaí uilig a bhí agat. Ná bíodh i msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "Is cosúil go bhfuil fotha leanúna ar iarraidh ort. <0>Cliceáil anseo le ceann a fháil." -#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +#: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" msgstr "" @@ -3360,15 +3412,15 @@ msgid "Mark as read" msgstr "Marcáil léite" #: src/view/screens/AccessibilitySettings.tsx:102 -#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:211 msgid "Media" msgstr "Meáin" -#: src/view/com/threadgate/WhoCanReply.tsx:270 +#: src/components/WhoCanReply.tsx:275 msgid "mentioned users" msgstr "úsáideoirí luaite" -#: src/view/com/modals/Threadgate.tsx:96 +#: src/components/dialogs/ThreadgateEditor.tsx:119 msgid "Mentioned users" msgstr "Úsáideoirí luaite" @@ -3420,7 +3472,7 @@ msgid "Misleading Account" msgstr "Cuntas atá Míthreorach" #: src/Navigation.tsx:127 -#: src/screens/Moderation/index.tsx:104 +#: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "Modhnóireacht" @@ -3453,7 +3505,7 @@ msgstr "Liosta modhnóireachta cruthaithe" msgid "Moderation list updated" msgstr "Liosta modhnóireachta uasdátaithe" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:246 msgid "Moderation lists" msgstr "Liostaí modhnóireachta" @@ -3470,7 +3522,7 @@ msgstr "Socruithe modhnóireachta" msgid "Moderation states" msgstr "Stádais modhnóireachta" -#: src/screens/Moderation/index.tsx:215 +#: src/screens/Moderation/index.tsx:218 msgid "Moderation tools" msgstr "Uirlisí modhnóireachta" @@ -3479,7 +3531,7 @@ msgstr "Uirlisí modhnóireachta" msgid "Moderator has chosen to set a general warning on the content." msgstr "Chuir an modhnóir rabhadh ginearálta ar an ábhar." -#: src/view/com/post-thread/PostThreadItem.tsx:567 +#: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" msgstr "Tuilleadh" @@ -3495,6 +3547,10 @@ msgstr "Tuilleadh roghanna" msgid "Most-liked replies first" msgstr "Freagraí a fuair an méid is mó moltaí ar dtús" +#: src/screens/Onboarding/state.ts:90 +msgid "Movies" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "Cuir i bhfolach" @@ -3564,7 +3620,7 @@ msgstr "Cuir focail ⁊ clibeanna i bhfolach" msgid "Muted" msgstr "Curtha i bhfolach" -#: src/screens/Moderation/index.tsx:255 +#: src/screens/Moderation/index.tsx:258 msgid "Muted accounts" msgstr "Cuntais a cuireadh i bhfolach" @@ -3581,7 +3637,7 @@ msgstr "Baintear na postálacha ó na cuntais a chuir tú i bhfolach as d’fhot msgid "Muted by \"{0}\"" msgstr "Curtha i bhfolach ag \"{0}\"" -#: src/screens/Moderation/index.tsx:231 +#: src/screens/Moderation/index.tsx:234 msgid "Muted words & tags" msgstr "Focail ⁊ clibeanna a cuireadh i bhfolach" @@ -3627,6 +3683,7 @@ msgid "Name or Description Violates Community Standards" msgstr "Sáraíonn an tAinm nó an Cur Síos Caighdeáin an Phobail" #: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:91 msgid "Nature" msgstr "Nádúr" @@ -3694,8 +3751,8 @@ msgstr "Postáil nua" #: src/view/screens/Feeds.tsx:580 #: src/view/screens/Notifications.tsx:193 -#: src/view/screens/Profile.tsx:485 -#: src/view/screens/ProfileFeed.tsx:427 +#: src/view/screens/Profile.tsx:478 +#: src/view/screens/ProfileFeed.tsx:428 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:277 @@ -3707,7 +3764,7 @@ msgctxt "action" msgid "New Post" msgstr "Postáil nua" -#: src/components/NewskieDialog.tsx:71 +#: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "" @@ -3720,6 +3777,7 @@ msgid "Newest replies first" msgstr "Na freagraí is déanaí ar dtús" #: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:92 msgid "News" msgstr "Nuacht" @@ -3730,10 +3788,10 @@ msgstr "Nuacht" #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:258 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:195 -#: src/screens/StarterPack/Wizard/index.tsx:372 -#: src/screens/StarterPack/Wizard/index.tsx:379 +#: src/screens/StarterPack/Wizard/index.tsx:184 +#: src/screens/StarterPack/Wizard/index.tsx:188 +#: src/screens/StarterPack/Wizard/index.tsx:359 +#: src/screens/StarterPack/Wizard/index.tsx:366 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3757,7 +3815,7 @@ msgstr "An chéad íomhá eile" msgid "No" msgstr "Níl" -#: src/view/screens/ProfileFeed.tsx:560 +#: src/view/screens/ProfileFeed.tsx:562 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Gan chur síos" @@ -3771,7 +3829,7 @@ msgstr "Gan Phainéal DNS" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Níor aimsíodh GIFanna speisialta. D'fhéadfadh sé gur tharla fadhb le Tenor." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." msgstr "" @@ -3845,11 +3903,11 @@ msgstr "Gan torthaí ar \"{search}\"." msgid "No thanks" msgstr "Níor mhaith liom é sin." -#: src/view/com/modals/Threadgate.tsx:85 +#: src/components/dialogs/ThreadgateEditor.tsx:108 msgid "Nobody" msgstr "Duine ar bith" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Nobody can reply" msgstr "Níl cead ag éinne freagra a thabhairt" @@ -3858,7 +3916,7 @@ msgstr "Níl cead ag éinne freagra a thabhairt" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Níor mhol éinne fós é. Ar cheart duit tosú?" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -3871,7 +3929,7 @@ msgstr "Lomnochtacht Neamhghnéasach" #~ msgstr "Ní bhaineann sé sin le hábhar." #: src/Navigation.tsx:117 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Ní bhfuarthas é sin" @@ -3886,7 +3944,7 @@ msgstr "Ní anois" msgid "Note about sharing" msgstr "Nóta faoi roinnt" -#: src/screens/Moderation/index.tsx:540 +#: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nod leat: is gréasán oscailte poiblí Bluesky. Ní chuireann an socrú seo srian ar fheiceálacht do chuid ábhair ach amháin ar aip agus suíomh Bluesky. Is féidir nach gcloífidh aipeanna eile leis an socrú seo. Is féidir go dtaispeánfar do chuid ábhair d’úsáideoirí atá lógáilte amach ar aipeanna agus suíomhanna eile." @@ -3942,7 +4000,7 @@ msgstr "As" msgid "Oh no!" msgstr "Úps!" -#: src/screens/Onboarding/StepInterests/index.tsx:133 +#: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." msgstr "Úps! Theip ar rud éigin." @@ -3978,7 +4036,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/view/com/threadgate/WhoCanReply.tsx:239 +#: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" msgstr "" @@ -3995,10 +4053,10 @@ msgid "Oops, something went wrong!" msgstr "Úps! Theip ar rud éigin!" #: src/components/Lists.tsx:191 -#: src/components/StarterPack/ProfileStarterPacks.tsx:302 -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Úps!" @@ -4024,7 +4082,7 @@ msgstr "Oscail na roghanna comhrá" msgid "Open emoji picker" msgstr "Oscail roghnóir na n-emoji" -#: src/view/screens/ProfileFeed.tsx:295 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Open feed options menu" msgstr "Oscail roghchlár na bhfothaí" @@ -4036,7 +4094,7 @@ msgstr "Oscail nascanna leis an mbrabhsálaí san aip" msgid "Open message options" msgstr "Oscail na roghanna teachtaireachta" -#: src/screens/Moderation/index.tsx:227 +#: src/screens/Moderation/index.tsx:230 msgid "Open muted words and tags settings" msgstr "Oscail suíomhanna na gclibeanna agus na bhfocal a cuireadh i bhfolach" @@ -4048,7 +4106,7 @@ msgstr "Oscail an nascleanúint" msgid "Open post options menu" msgstr "Oscail roghchlár na bpostálacha" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 msgid "Open starter pack menu" msgstr "" @@ -4065,6 +4123,10 @@ msgstr "Oscail logleabhar an chórais" msgid "Opens {numItems} options" msgstr "Osclaíonn sé seo {numItems} rogha" +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" msgstr "Osclaíonn sé seo na socruithe inrochtaineachta" @@ -4207,7 +4269,7 @@ msgstr "Rogha {0} as {numItems}" msgid "Optionally provide additional information below:" msgstr "Is féidir tuilleadh eolais a chur ar fáil thíos:" -#: src/view/com/modals/Threadgate.tsx:92 +#: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" msgstr "Nó cuir na roghanna seo le chéile:" @@ -4267,7 +4329,6 @@ msgstr "Pasfhocal uasdátaithe!" msgid "Pause" msgstr "Sos" -#: src/screens/StarterPack/Wizard/index.tsx:194 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "Daoine" @@ -4280,32 +4341,37 @@ msgstr "Na daoine atá leanta ag @{0}" msgid "People following @{0}" msgstr "Na leantóirí atá ag @{0}" -#: src/view/com/lightbox/Lightbox.tsx:67 +#: src/view/com/lightbox/Lightbox.tsx:69 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:73 +#: src/view/com/lightbox/Lightbox.tsx:75 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." -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:93 msgid "Pets" msgstr "Peataí" +#: src/screens/Onboarding/state.ts:94 +msgid "Photography" +msgstr "" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "Pictiúir le haghaidh daoine fásta." -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Greamaigh le baile" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 msgid "Pin to Home" msgstr "Greamaigh le Baile" @@ -4401,6 +4467,7 @@ 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." #: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:95 msgid "Politics" msgstr "Polaitíocht" @@ -4464,7 +4531,7 @@ msgstr "Ní bhfuarthas an phostáil" msgid "posts" msgstr "postálacha" -#: src/view/screens/Profile.tsx:216 +#: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Postálacha" @@ -4538,7 +4605,7 @@ msgid "Processing..." msgstr "Á phróiseáil..." #: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:353 +#: src/view/screens/Profile.tsx:346 msgid "profile" msgstr "próifíl" @@ -4578,15 +4645,15 @@ msgstr "Foilsigh an phostáil" msgid "Publish reply" msgstr "Foilsigh an freagra" -#: src/components/StarterPack/QrCodeDialog.tsx:131 +#: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:109 +#: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:110 +#: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" msgstr "" @@ -4649,7 +4716,9 @@ msgid "Reload conversations" msgstr "Athlódáil comhráite" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:325 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -4658,7 +4727,7 @@ msgstr "Athlódáil comhráite" msgid "Remove" msgstr "Scrios" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" msgstr "" @@ -4690,13 +4759,13 @@ 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:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:332 +#: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Bain de mo chuid fothaí" -#: src/components/FeedCard.tsx:315 +#: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "É sin a bhaint de mo chuid fothaí?" @@ -4744,7 +4813,7 @@ msgid "Removed from my feeds" msgstr "Baineadh de do chuid fothaí é" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "Baineadh de do chuid fothaí é" @@ -4762,19 +4831,19 @@ msgstr "Baineann sé seo an t-athfhriotal" msgid "Replace with Discover" msgstr "Cuir an fotha Discover ina áit" -#: src/view/screens/Profile.tsx:217 +#: src/view/screens/Profile.tsx:210 msgid "Replies" msgstr "Freagraí" -#: src/view/com/threadgate/WhoCanReply.tsx:66 +#: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" msgstr "" #: src/view/com/threadgate/WhoCanReply.tsx:123 -msgid "Replies on this thread are disabled" -msgstr "" +#~ msgid "Replies on this thread are disabled" +#~ msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:237 +#: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "Ní féidir freagraí a thabhairt ar an gcomhrá seo" @@ -4829,8 +4898,8 @@ msgstr "Tuairiscigh an comhrá seo" msgid "Report dialog" msgstr "Tuairiscigh comhrá" -#: src/view/screens/ProfileFeed.tsx:348 -#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:351 msgid "Report feed" msgstr "Déan gearán faoi fhotha" @@ -4847,8 +4916,8 @@ msgstr "Tuairiscigh an teachtaireacht seo" msgid "Report post" msgstr "Déan gearán faoi phostáil" -#: src/screens/StarterPack/StarterPackScreen.tsx:469 -#: src/screens/StarterPack/StarterPackScreen.tsx:472 +#: src/screens/StarterPack/StarterPackScreen.tsx:476 +#: src/screens/StarterPack/StarterPackScreen.tsx:479 msgid "Report starter pack" msgstr "" @@ -4894,7 +4963,7 @@ msgstr "Athphostáil" msgid "Repost" msgstr "Athphostáil" -#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:418 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4994,12 +5063,12 @@ msgstr "Baineann sé seo triail eile as an ngníomh is déanaí, ar theip air" #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 #: src/screens/Login/LoginForm.tsx:291 #: src/screens/Login/LoginForm.tsx:298 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/Onboarding/StepInterests/index.tsx:234 #: src/screens/Signup/index.tsx:245 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 @@ -5012,7 +5081,7 @@ msgstr "Bain triail eile as" #~ msgstr "Bain triail eile as" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:622 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Fill ar an leathanach roimhe seo" @@ -5022,12 +5091,13 @@ msgid "Returns to home page" msgstr "Filleann sé seo abhaile" #: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/ProfileFeed.tsx:113 msgid "Returns to previous page" msgstr "Filleann sé seo ar an leathanach roimhe seo" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/StarterPack/QrCodeDialog.tsx:190 +#: src/components/dialogs/ThreadgateEditor.tsx:88 +#: src/components/StarterPack/QrCodeDialog.tsx:184 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5036,7 +5106,7 @@ msgstr "Filleann sé seo ar an leathanach roimhe seo" msgid "Save" msgstr "Sábháil" -#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/lightbox/Lightbox.tsx:135 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5058,8 +5128,8 @@ msgstr "Sábháil na hathruithe" msgid "Save handle change" msgstr "Sábháil an leasainm nua" -#: src/components/StarterPack/ShareDialog.tsx:163 -#: src/components/StarterPack/ShareDialog.tsx:170 +#: src/components/StarterPack/ShareDialog.tsx:150 +#: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" msgstr "" @@ -5067,12 +5137,12 @@ msgstr "" msgid "Save image crop" msgstr "Sábháil an pictiúr bearrtha" -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" msgstr "Sábháil i mo chuid fothaí" @@ -5080,7 +5150,7 @@ msgstr "Sábháil i mo chuid fothaí" msgid "Saved Feeds" msgstr "Fothaí Sábháilte" -#: src/view/com/lightbox/Lightbox.tsx:82 +#: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" msgstr "Sábháladh i do rolla ceamara é" @@ -5088,7 +5158,7 @@ msgstr "Sábháladh i do rolla ceamara é" #~ msgid "Saved to your camera roll." #~ msgstr "Sábháilte i do rolla ceamara." -#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "Sábháilte le mo chuid fothaí" @@ -5106,13 +5176,14 @@ msgid "Saves image crop settings" msgstr "Sábhálann sé seo na socruithe le haghaidh íomhánna a laghdú" #: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:82 +#: src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:372 #: src/view/com/notifications/FeedItem.tsx:397 msgid "Say hello!" msgstr "Abair heileo!" #: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:96 msgid "Science" msgstr "Eolaíocht" @@ -5154,7 +5225,7 @@ msgstr "Lorg na postálacha uile le @{authorHandle} leis an gclib {displayTag}" msgid "Search for all posts with tag {displayTag}" msgstr "Lorg na postálacha uile leis an gclib {displayTag}" -#: src/screens/StarterPack/Wizard/index.tsx:467 +#: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -5295,7 +5366,7 @@ msgstr "Roghnaigh teanga an téacs a thaispeánfar san aip." msgid "Select your date of birth" msgstr "Roghnaigh do dháta breithe" -#: src/screens/Onboarding/StepInterests/index.tsx:201 +#: src/screens/Onboarding/StepInterests/index.tsx:206 msgid "Select your interests from the options below" msgstr "Roghnaigh na rudaí a bhfuil suim agat iontu as na roghanna thíos" @@ -5372,7 +5443,7 @@ msgstr "Seolann sé seo ríomhphost ina bhfuil cód dearbhaithe chun an cuntas a msgid "Server address" msgstr "Seoladh an fhreastalaí" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:307 msgid "Set birthdate" msgstr "Socraigh do bhreithlá" @@ -5460,9 +5531,9 @@ msgstr "Gníomhaíocht ghnéasach nó lomnochtacht gháirsiúil." msgid "Sexually Suggestive" msgstr "Graosta" -#: src/components/StarterPack/QrCodeDialog.tsx:180 -#: src/screens/StarterPack/StarterPackScreen.tsx:303 -#: src/screens/StarterPack/StarterPackScreen.tsx:458 +#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/screens/StarterPack/StarterPackScreen.tsx:312 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5472,7 +5543,7 @@ msgstr "Graosta" msgid "Share" msgstr "Comhroinn" -#: src/view/com/lightbox/Lightbox.tsx:142 +#: src/view/com/lightbox/Lightbox.tsx:144 msgctxt "action" msgid "Share" msgstr "Comhroinn" @@ -5491,30 +5562,36 @@ msgstr "Roinn rud éigin fútsa féin!" msgid "Share anyway" msgstr "Comhroinn mar sin féin" -#: src/view/screens/ProfileFeed.tsx:358 -#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:361 msgid "Share feed" msgstr "Comhroinn an fotha" -#: src/screens/StarterPack/StarterPackScreen.tsx:462 +#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/screens/StarterPack/StarterPackScreen.tsx:469 msgid "Share link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "Comhroinn Nasc" -#: src/components/StarterPack/ShareDialog.tsx:100 +#: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:296 +#: src/components/StarterPack/ShareDialog.tsx:134 +#: src/components/StarterPack/ShareDialog.tsx:145 +msgid "Share QR code" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:305 msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:112 +#: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5568,7 +5645,7 @@ msgstr "Taispeáin freagraí i bhfolach" msgid "Show less like this" msgstr "Níos lú den sórt seo" -#: src/view/com/post-thread/PostThreadItem.tsx:533 +#: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" @@ -5728,33 +5805,33 @@ msgstr "Logáilte isteach mar @{0}" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:240 -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Ná bac leis" -#: src/screens/Onboarding/StepInterests/index.tsx:237 +#: src/screens/Onboarding/StepInterests/index.tsx:242 msgid "Skip this flow" msgstr "Ná bac leis an bpróiseas seo" #: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:85 msgid "Software Dev" msgstr "Forbairt Bogearraí" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 -#: src/view/com/threadgate/WhoCanReply.tsx:67 -#: src/view/com/threadgate/WhoCanReply.tsx:124 +#: src/components/WhoCanReply.tsx:72 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "Tá daoine áirithe in ann freagra a thabhairt" #: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "" +#~ msgid "Some subtitle" +#~ msgstr "" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -5766,7 +5843,7 @@ msgid "Something went wrong, please try again" msgstr "Chuaigh rud éigin amú, bain triail eile as" #: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 +#: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Chuaigh rud éigin ó rath. Bain triail eile as." @@ -5802,6 +5879,7 @@ msgid "Spam; excessive mentions or replies" msgstr "Turscar; an iomarca tagairtí nó freagraí" #: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:97 msgid "Sports" msgstr "Spórt" @@ -5823,7 +5901,7 @@ msgstr "Tosaigh ag comhrá" #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -5831,14 +5909,18 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:214 msgid "Starter Packs" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + #: src/view/screens/Settings/index.tsx:862 #~ msgid "Status page" #~ msgstr "Leathanach stádais" @@ -5955,6 +6037,7 @@ msgid "Tap to view fully" msgstr "Tapáil leis an rud iomlán a fheiceáil" #: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:98 msgid "Tech" msgstr "Teic" @@ -6007,10 +6090,10 @@ msgstr "Ina bhfuil an méid seo a leanas:" msgid "That handle is already taken." msgstr "Tá an leasainm sin in úsáid cheana féin." -#: src/screens/StarterPack/StarterPackScreen.tsx:100 -#: src/screens/StarterPack/StarterPackScreen.tsx:101 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:102 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/Wizard/index.tsx:106 +#: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." msgstr "" @@ -6031,7 +6114,7 @@ msgstr "Bogadh Treoirlínte an Phobail go dtí <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "Bogadh an Polasaí Cóipchirt go dtí <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6060,7 +6143,7 @@ msgstr "Is féidir gur scriosadh an phostáil seo." msgid "The Privacy Policy has been moved to <0/>" msgstr "Bogadh Polasaí na Príobháideachta go dtí <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:589 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6081,7 +6164,7 @@ 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:542 +#: src/view/screens/ProfileFeed.tsx:544 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." @@ -6091,7 +6174,7 @@ msgstr "Bhí fadhb ann maidir leis an bhfotha seo a bhaint. Seiceáil do cheanga #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: 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." @@ -6105,7 +6188,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:233 +#: src/view/screens/ProfileFeed.tsx:234 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6163,6 +6246,7 @@ msgstr "Bhí fadhb ann maidir le do chuid pasfhocal don aip a fháil" msgid "There was an issue! {0}" msgstr "Bhí fadhb ann! {0}" +#: src/components/WhoCanReply.tsx:116 #: src/view/screens/ProfileList.tsx:335 #: src/view/screens/ProfileList.tsx:349 #: src/view/screens/ProfileList.tsx:363 @@ -6254,7 +6338,7 @@ msgstr "Tá ráchairt an-mhór ar an bhfotha seo faoi láthair. Níl sé ar fái msgid "This feed is empty! You may need to follow more users or tune your language settings." 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/view/screens/ProfileFeed.tsx:472 +#: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" @@ -6362,7 +6446,7 @@ msgstr "Tá an t-úsáideoir seo ar an liosta <0>{0} a bhlocáil tú." msgid "This user is included in the <0>{0} list which you have muted." msgstr "Tá an t-úsáideoir seo ar an liosta <0>{0} a chuir tú i bhfolach." -#: src/components/NewskieDialog.tsx:53 +#: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." msgstr "" @@ -6387,6 +6471,10 @@ msgstr "Roghanna snáitheanna" msgid "Thread Preferences" msgstr "Roghanna Snáitheanna" +#: src/components/WhoCanReply.tsx:109 +msgid "Thread settings updated" +msgstr "" + #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "Modh Snáithithe" @@ -6415,7 +6503,7 @@ msgstr "Scoránaigh idir na roghanna maidir le focail atá le cur i bhfolach." msgid "Toggle dropdown" msgstr "Scoránaigh an bosca anuas" -#: src/screens/Moderation/index.tsx:332 +#: src/screens/Moderation/index.tsx:336 msgid "Toggle to enable or disable adult content" msgstr "Scoránaigh le ábhar do dhaoine fásta a cheadú nó gan a cheadú" @@ -6430,8 +6518,8 @@ msgstr "Trasfhoirmithe" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: 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 msgid "Translate" @@ -6442,6 +6530,10 @@ msgctxt "action" msgid "Try again" msgstr "Bain triail eile as" +#: src/screens/Onboarding/state.ts:99 +msgid "TV" +msgstr "" + #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" msgstr "Fíordheimhniú déshraithe (2FA)" @@ -6471,7 +6563,7 @@ msgstr "Ná coinnigh an liosta sin i bhfolach níos mó" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Ní féidir teagmháil a dhéanamh le do sheirbhís. Seiceáil do cheangal leis an idirlíon, le do thoil." -#: src/screens/StarterPack/StarterPackScreen.tsx:513 +#: src/screens/StarterPack/StarterPackScreen.tsx:520 msgid "Unable to delete" msgstr "" @@ -6534,7 +6626,7 @@ msgstr "Dílean an cuntas seo" #~ msgid "Unlike" #~ msgstr "Dímhol" -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Unlike this feed" msgstr "Dímhol an fotha seo" @@ -6570,12 +6662,12 @@ msgstr "Díbhalbhaigh an comhrá seo" msgid "Unmute thread" msgstr "Ná coinnigh an snáithe seo i bhfolach níos mó" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Díghreamaigh" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 msgid "Unpin from home" msgstr "Díghreamaigh ón mbaile" @@ -6746,7 +6838,7 @@ msgstr "Ainm úsáideora nó ríomhphost" msgid "Users" msgstr "Úsáideoirí" -#: src/view/com/threadgate/WhoCanReply.tsx:274 +#: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" msgstr "Úsáideoirí a bhfuil <0/> á leanúint" @@ -6757,7 +6849,7 @@ msgstr "Úsáideoirí a bhfuil <0/> á leanúint" msgid "Users I follow" msgstr "Úsáideoirí a leanaim" -#: src/view/com/modals/Threadgate.tsx:109 +#: src/components/dialogs/ThreadgateEditor.tsx:132 msgid "Users in \"{0}\"" msgstr "Úsáideoirí in ”{0}“" @@ -6811,6 +6903,7 @@ msgid "Version {appVersion} {bundleInfo}" msgstr "Leagan {appVersion} {bundleInfo}" #: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:88 msgid "Video Games" msgstr "Físchluichí" @@ -6862,7 +6955,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:583 +#: src/view/screens/ProfileFeed.tsx:585 msgid "View users who like this feed" msgstr "Féach ar úsáideoirí ar thaitin an fotha seo leo" @@ -6922,11 +7015,11 @@ msgstr "Molaimid focail choitianta a bhíonn i go leor póstálacha a sheachaint msgid "We were unable to load your birth date preferences. Please try again." msgstr "Theip orainn do rogha maidir le dáta breithe a lódáil. Bain triail as arís." -#: src/screens/Moderation/index.tsx:385 +#: src/screens/Moderation/index.tsx:409 msgid "We were unable to load your configured labelers at this time." msgstr "Theip orainn na lipéadóirí a roghnaigh tú a lódáil faoi láthair." -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:143 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Níorbh fhéidir linn ceangal a bhunú. Bain triail eile as do chuntas a shocrú. Má mhaireann an fhadhb, ní gá duit an próiseas seo a chur i gcrích." @@ -6934,7 +7027,7 @@ msgstr "Níorbh fhéidir linn ceangal a bhunú. Bain triail eile as do chuntas a msgid "We will let you know when your account is ready." msgstr "Déarfaidh muid leat nuair a bheidh do chuntas réidh." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:148 msgid "We'll use this to help customize your experience." msgstr "Bainfimid úsáid as seo chun an suíomh a chur in oiriúint duit." @@ -6983,7 +7076,11 @@ msgstr "Fáilte ar ais!" #~ msgid "Welcome to <0>Bluesky" #~ msgstr "Fáilte go <0>Bluesky" -#: src/screens/Onboarding/StepInterests/index.tsx:135 +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" msgstr "Cad iad na rudaí a bhfuil suim agat iontu?" @@ -7010,17 +7107,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/view/com/modals/Threadgate.tsx:69 -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Who can reply" msgstr "Cé atá in ann freagra a thabhairt" -#: src/view/com/threadgate/WhoCanReply.tsx:206 +#: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:210 +#: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" msgstr "" @@ -7076,6 +7171,7 @@ msgid "Write your reply" msgstr "Scríobh freagra" #: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:100 msgid "Writers" msgstr "Scríbhneoirí" @@ -7094,7 +7190,7 @@ msgstr "Tá" msgid "Yes, deactivate" msgstr "Tá, díghníomhaigh" -#: src/screens/StarterPack/StarterPackScreen.tsx:525 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Yes, delete this starter pack" msgstr "" @@ -7110,6 +7206,10 @@ msgstr "Inné, {time}" msgid "you" msgstr "" +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + #: src/screens/SignupQueued.tsx:136 msgid "You are in line." msgstr "Tá tú sa scuaine." @@ -7244,6 +7344,10 @@ msgstr "Níor chuir tú aon chuntas i bhfolach fós. Le cuntas a chur i bhfolach msgid "You have reached the end" msgstr "Tá deireadh sroichte agat" +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +msgid "You haven't created a starter pack yet!" +msgstr "" + #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "Níor chuir tú aon fhocal ná clib i bhfolach fós" @@ -7272,15 +7376,15 @@ msgstr "Caithfidh tú a bheith 13 bliana d’aois nó níos sine le clárú." #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Caithfidh tú a bheith 18 mbliana d’aois nó níos sine le hábhar do dhaoine fásta a fháil." -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:62 +#: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." msgstr "" @@ -7332,7 +7436,7 @@ msgstr "" msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po index c11581b860..ce3ab3c98d 100644 --- a/src/locale/locales/hi/messages.po +++ b/src/locale/locales/hi/messages.po @@ -71,7 +71,7 @@ msgstr "" msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:215 +#: src/components/FeedCard.tsx:216 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -92,7 +92,11 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:343 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +msgid "{0} joined this week" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:350 msgid "{0} people have used this starter pack!" msgstr "" @@ -136,7 +140,7 @@ msgstr "" msgid "{diffSeconds, plural, one {second} other {seconds}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" msgstr "" @@ -173,7 +177,7 @@ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:586 +#: src/view/screens/ProfileFeed.tsx:588 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -181,11 +185,11 @@ msgstr "" msgid "{numUnreadNotifications} unread" msgstr "" -#: src/components/NewskieDialog.tsx:92 +#: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" msgstr "" -#: src/components/NewskieDialog.tsx:87 +#: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "" @@ -193,17 +197,27 @@ msgstr "" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:290 +#: src/components/WhoCanReply.tsx:295 msgid "<0/> members" msgstr "" #: src/screens/StarterPack/Wizard/index.tsx:485 -msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +#~ 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 "" + +#: 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 "" +#~ 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 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -213,11 +227,15 @@ msgstr "" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" +#: 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 "" -#: src/screens/StarterPack/Wizard/index.tsx:478 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -250,6 +268,10 @@ msgstr "" #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:457 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "" @@ -348,11 +370,11 @@ msgstr "" msgid "Add" msgstr "ऐड करो" -#: src/screens/StarterPack/Wizard/index.tsx:539 +#: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:56 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" msgstr "" @@ -416,14 +438,14 @@ msgid "Add muted words and tags" msgstr "" #: src/screens/StarterPack/Wizard/index.tsx:197 -msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "" +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:464 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" msgstr "" @@ -435,7 +457,7 @@ msgstr "" msgid "Add the following DNS record to your domain:" msgstr "अपने डोमेन में निम्नलिखित DNS रिकॉर्ड जोड़ें:" -#: src/components/FeedCard.tsx:300 +#: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" msgstr "" @@ -474,20 +496,20 @@ msgstr "वयस्क सामग्री" #~ msgid "Adult content can only be enabled via the Web at <0/>." #~ msgstr "" -#: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:78 -#~ msgid "Adult content can only be enabled via the Web at <0>bsky.app." -#~ msgstr "" +#: src/screens/Moderation/index.tsx:356 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "" -#: src/screens/Moderation/index.tsx:375 +#: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "विकसित" -#: src/screens/StarterPack/StarterPackScreen.tsx:271 +#: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "All accounts have been followed!" msgstr "" @@ -552,16 +574,16 @@ msgstr "{0} को ईमेल भेजा गया है। इसमें msgid "An error occured" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +#: 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 "" +#~ msgid "An error occurred while saving the image." +#~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:76 -#: src/components/StarterPack/ShareDialog.tsx:91 +#: src/components/StarterPack/QrCodeDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "" @@ -569,7 +591,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:275 msgid "An error occurred while trying to follow all" msgstr "" @@ -586,16 +608,17 @@ msgstr "" msgid "An issue occurred, please try again." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:194 +#: src/screens/Onboarding/StepInterests/index.tsx:199 msgid "an unknown error occurred" msgstr "" +#: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:280 -#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "और" #: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:79 msgid "Animals" msgstr "" @@ -684,7 +707,7 @@ msgstr "दिखावट" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -712,7 +735,7 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "" -#: src/components/FeedCard.tsx:317 +#: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -733,6 +756,7 @@ msgid "Are you writing in <0>{0}?" msgstr "" #: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:80 msgid "Art" msgstr "" @@ -759,7 +783,7 @@ msgstr "" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:312 +#: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "वापस" @@ -825,7 +849,7 @@ msgstr "खाता ब्लॉक करें?" msgid "Blocked" msgstr "" -#: src/screens/Moderation/index.tsx:267 +#: src/screens/Moderation/index.tsx:270 msgid "Blocked accounts" msgstr "ब्लॉक किए गए खाते" @@ -890,11 +914,11 @@ msgstr "" #~ msgid "Bluesky uses invites to build a healthier community. If you don't know anybody with an invite, you can sign up for the waitlist and we'll send one soon." #~ msgstr "ब्लूस्की एक स्वस्थ समुदाय बनाने के लिए आमंत्रित करता है। यदि आप किसी को आमंत्रित नहीं करते हैं, तो आप प्रतीक्षा सूची के लिए साइन अप कर सकते हैं और हम जल्द ही एक भेज देंगे।।" -#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:533 +#: 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 "" @@ -911,6 +935,7 @@ msgid "Blur images and filter from feeds" msgstr "" #: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:81 msgid "Books" msgstr "" @@ -1136,17 +1161,25 @@ msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "नीचे प्रवेश करने के लिए OTP कोड के साथ एक ईमेल के लिए अपने इनबॉक्स की जाँच करें:" #: src/view/com/modals/Threadgate.tsx:75 -msgid "Choose \"Everybody\" or \"Nobody\"" -msgstr "" +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "" #: src/view/screens/Settings/index.tsx:697 #~ msgid "Choose a new Bluesky username or create" #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:288 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:187 +msgid "Choose People" +msgstr "" + #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "सेवा चुनें" @@ -1164,6 +1197,11 @@ msgstr "" msgid "Choose this color as your avatar" msgstr "" +#: src/components/dialogs/ThreadgateEditor.tsx:91 +#: src/components/dialogs/ThreadgateEditor.tsx:95 +msgid "Choose who can reply" +msgstr "" + #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:103 #~ msgid "Choose your algorithmic feeds" #~ msgstr "" @@ -1244,18 +1282,18 @@ msgstr "" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/NewskieDialog.tsx:120 -#: src/components/NewskieDialog.tsx:127 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:121 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:127 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: 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:189 msgid "Close" msgstr "" -#: src/components/Dialog/index.web.tsx:113 -#: src/components/Dialog/index.web.tsx:251 +#: src/components/Dialog/index.web.tsx:116 +#: src/components/Dialog/index.web.tsx:254 msgid "Close active dialog" msgstr "" @@ -1322,10 +1360,12 @@ msgid "Collapses list of users for a given notification" msgstr "" #: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:82 msgid "Comedy" msgstr "" #: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:83 msgid "Comics" msgstr "" @@ -1397,11 +1437,11 @@ msgstr "खाते को हटा दें" #~ msgid "Confirm your age to enable adult content." #~ msgstr "" -#: src/screens/Moderation/index.tsx:301 +#: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "" -#: src/screens/Moderation/index.tsx:292 +#: src/screens/Moderation/index.tsx:295 msgid "Confirm your birthdate" msgstr "" @@ -1443,7 +1483,7 @@ msgstr "" #~ msgid "Content Filtering" #~ msgstr "सामग्री फ़िल्टरिंग" -#: src/screens/Moderation/index.tsx:285 +#: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "" @@ -1472,7 +1512,7 @@ msgstr "सामग्री चेतावनी" msgid "Context menu backdrop, click to close the menu." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepInterests/index.tsx:258 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "आगे बढ़ें" @@ -1485,7 +1525,7 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:251 msgid "Continue to next step" @@ -1533,7 +1573,7 @@ msgstr "" msgid "Copies app password" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:180 +#: src/components/StarterPack/QrCodeDialog.tsx:174 #: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "कॉपी" @@ -1547,7 +1587,11 @@ msgstr "" msgid "Copy code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 +#: src/components/StarterPack/ShareDialog.tsx:123 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" msgstr "" @@ -1574,7 +1618,7 @@ msgstr "" msgid "Copy post text" msgstr "पोस्ट टेक्स्ट कॉपी करें" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" msgstr "" @@ -1587,7 +1631,7 @@ msgstr "कॉपीराइट नीति" msgid "Could not leave chat" msgstr "" -#: src/view/screens/ProfileFeed.tsx:102 +#: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" msgstr "फ़ीड लोड नहीं कर सकता" @@ -1611,7 +1655,7 @@ msgstr "" #~ msgid "Country" #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:270 +#: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" msgstr "" @@ -1624,17 +1668,17 @@ msgstr "नया खाता बनाएं" msgid "Create a new Bluesky account" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:157 +#: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:257 +#: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +#: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" msgstr "" @@ -1665,8 +1709,8 @@ msgid "Create new account" msgstr "नया खाता बनाएं" #: src/components/StarterPack/ShareDialog.tsx:158 -msgid "Create QR code" -msgstr "" +#~ msgid "Create QR code" +#~ msgstr "" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1689,6 +1733,7 @@ msgstr "बनाया गया {0}" #~ msgstr "" #: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:84 msgid "Culture" msgstr "" @@ -1749,9 +1794,9 @@ msgid "Debug panel" msgstr "" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:449 -#: src/screens/StarterPack/StarterPackScreen.tsx:528 -#: src/screens/StarterPack/StarterPackScreen.tsx:608 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1816,12 +1861,12 @@ msgstr "" msgid "Delete post" msgstr "पोस्ट को हटाएं" -#: src/screens/StarterPack/StarterPackScreen.tsx:443 -#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:450 +#: src/screens/StarterPack/StarterPackScreen.tsx:606 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:494 +#: src/screens/StarterPack/StarterPackScreen.tsx:501 msgid "Delete starter pack?" msgstr "" @@ -1897,7 +1942,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:68 #: src/screens/Messages/Settings.tsx:140 #: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:341 +#: src/screens/Moderation/index.tsx:346 msgid "Disabled" msgstr "" @@ -1913,8 +1958,8 @@ msgstr "" msgid "Discard draft?" msgstr "" -#: src/screens/Moderation/index.tsx:518 -#: src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:542 +#: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" msgstr "" @@ -1969,6 +2014,7 @@ msgstr "डोमेन सत्यापित!" #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/ThreadgateEditor.tsx:88 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 @@ -1988,8 +2034,6 @@ msgstr "खत्म" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 #: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/Threadgate.tsx:136 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 #: src/view/screens/PreferencesThreads.tsx:162 @@ -2005,7 +2049,7 @@ msgstr "खत्म {extraText}" #~ msgid "Double tap to sign in" #~ msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 msgid "Download Bluesky" msgstr "" @@ -2066,9 +2110,9 @@ msgstr "" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "प्रत्येक कोड एक बार काम करता है। आपको समय-समय पर अधिक आमंत्रण कोड प्राप्त होंगे।" -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:522 -#: src/screens/StarterPack/Wizard/index.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" @@ -2084,7 +2128,7 @@ msgstr "" msgid "Edit avatar" msgstr "" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "" @@ -2112,7 +2156,7 @@ msgstr "मेरी फ़ीड संपादित करें" msgid "Edit my profile" msgstr "मेरी प्रोफ़ाइल संपादित करें" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "" @@ -2131,7 +2175,7 @@ msgstr "मेरी प्रोफ़ाइल संपादित करे #~ msgid "Edit Saved Feeds" #~ msgstr "एडिट सेव्ड फीड" -#: src/screens/StarterPack/StarterPackScreen.tsx:430 +#: src/screens/StarterPack/StarterPackScreen.tsx:437 msgid "Edit starter pack" msgstr "" @@ -2139,8 +2183,7 @@ msgstr "" msgid "Edit User List" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" msgstr "" @@ -2157,9 +2200,14 @@ msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:86 msgid "Education" msgstr "" +#: src/components/dialogs/ThreadgateEditor.tsx:98 +msgid "Either choose \"Everybody\" or \"Nobody\"" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" @@ -2208,7 +2256,7 @@ msgstr "" msgid "Enable {0} only" msgstr "" -#: src/screens/Moderation/index.tsx:329 +#: src/screens/Moderation/index.tsx:333 msgid "Enable adult content" msgstr "" @@ -2244,7 +2292,7 @@ msgstr "" #: src/screens/Messages/Settings.tsx:131 #: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:339 +#: src/screens/Moderation/index.tsx:344 msgid "Enabled" msgstr "" @@ -2322,19 +2370,18 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "" -#: src/view/com/modals/Threadgate.tsx:79 +#: src/components/dialogs/ThreadgateEditor.tsx:102 msgid "Everybody" msgstr "" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#: src/view/com/threadgate/WhoCanReply.tsx:64 -#: src/view/com/threadgate/WhoCanReply.tsx:121 -#: src/view/com/threadgate/WhoCanReply.tsx:235 +#: src/components/WhoCanReply.tsx:69 +#: src/components/WhoCanReply.tsx:240 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "" @@ -2433,8 +2480,8 @@ msgstr "" msgid "Failed to create app password." msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:241 -#: src/screens/StarterPack/Wizard/index.tsx:249 +#: src/screens/StarterPack/Wizard/index.tsx:230 +#: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" msgstr "" @@ -2450,7 +2497,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/StarterPackScreen.tsx:569 msgid "Failed to delete starter pack" msgstr "" @@ -2486,7 +2533,7 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" msgstr "" @@ -2507,7 +2554,7 @@ msgstr "" msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:280 +#: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "" @@ -2533,7 +2580,7 @@ msgstr "" #~ msgid "Feed Preferences" #~ msgstr "फ़ीड प्राथमिकता" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "" @@ -2543,10 +2590,9 @@ msgid "Feedback" msgstr "प्रतिक्रिया" #: src/Navigation.tsx:320 -#: src/screens/StarterPack/Wizard/index.tsx:201 #: src/view/screens/Feeds.tsx:445 #: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:220 +#: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:373 #: src/view/shell/Drawer.tsx:493 @@ -2574,7 +2620,7 @@ msgstr "फ़ीड कस्टम एल्गोरिदम हैं ज #~ msgid "Feeds can be topical as well!" #~ msgstr "" -#: src/components/FeedCard.tsx:277 +#: src/components/FeedCard.tsx:282 msgid "Feeds updated!" msgstr "" @@ -2628,7 +2674,7 @@ msgstr "" msgid "Fine-tune the discussion threads." msgstr "चर्चा धागे को ठीक-ट्यून करें।।" -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" msgstr "" @@ -2676,8 +2722,8 @@ msgstr "" msgid "Follow Account" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:308 -#: src/screens/StarterPack/StarterPackScreen.tsx:315 +#: src/screens/StarterPack/StarterPackScreen.tsx:317 +#: src/screens/StarterPack/StarterPackScreen.tsx:324 msgid "Follow all" msgstr "" @@ -2725,7 +2771,7 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/view/com/modals/Threadgate.tsx:101 +#: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" msgstr "" @@ -2789,6 +2835,7 @@ msgid "Follows You" msgstr "" #: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:87 msgid "Food" msgstr "" @@ -2838,7 +2885,7 @@ msgstr "" msgid "Gallery" msgstr "गैलरी" -#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" msgstr "" @@ -2868,7 +2915,7 @@ msgstr "" #: src/view/com/auth/LoggedOut.tsx:78 #: src/view/com/auth/LoggedOut.tsx:79 #: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:133 msgid "Go back" @@ -2877,9 +2924,9 @@ msgstr "वापस जाओ" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:628 #: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "वापस जाओ" @@ -2893,7 +2940,7 @@ msgstr "वापस जाओ" msgid "Go back to previous step" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:313 +#: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" msgstr "" @@ -3042,7 +3089,7 @@ msgstr "" msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "" -#: src/screens/Moderation/index.tsx:59 +#: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "" @@ -3145,7 +3192,7 @@ msgstr "छवि alt पाठ" #~ msgid "Image options" #~ msgstr "छवि विकल्प" -#: src/components/StarterPack/ShareDialog.tsx:88 +#: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" msgstr "" @@ -3266,7 +3313,7 @@ msgstr "" msgid "Invite codes: 1 available" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:109 +#: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" msgstr "" @@ -3282,7 +3329,7 @@ msgstr "" #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:473 +#: 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 "" @@ -3290,8 +3337,8 @@ msgstr "" msgid "Jobs" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 msgid "Join Bluesky" msgstr "" @@ -3313,6 +3360,7 @@ msgstr "" #~ msgstr "वेटरलिस्ट में शामिल हों" #: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:89 msgid "Journalism" msgstr "" @@ -3328,7 +3376,7 @@ msgstr "" msgid "Labeled by the author." msgstr "" -#: src/view/screens/Profile.tsx:214 +#: src/view/screens/Profile.tsx:207 msgid "Labels" msgstr "" @@ -3392,7 +3440,7 @@ msgstr "" msgid "Learn more about this warning" msgstr "इस चेतावनी के बारे में अधिक जानें" -#: src/screens/Moderation/index.tsx:549 +#: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." msgstr "" @@ -3433,7 +3481,7 @@ msgstr "" msgid "Legacy storage cleared, you need to restart the app now." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:293 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" msgstr "" @@ -3460,7 +3508,7 @@ msgstr "लाइट मोड" #~ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "इस फ़ीड को लाइक करो" @@ -3498,7 +3546,7 @@ msgstr "" msgid "liked your post" msgstr "" -#: src/view/screens/Profile.tsx:219 +#: src/view/screens/Profile.tsx:212 msgid "Likes" msgstr "" @@ -3544,8 +3592,8 @@ msgid "List unmuted" msgstr "" #: src/Navigation.tsx:122 +#: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/screens/Profile.tsx:222 #: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 @@ -3579,7 +3627,7 @@ msgstr "नई सूचनाएं लोड करें" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:493 +#: src/view/screens/ProfileFeed.tsx:494 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "नई पोस्ट लोड करें" @@ -3608,7 +3656,7 @@ msgstr "" msgid "Log out" msgstr "" -#: src/screens/Moderation/index.tsx:442 +#: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" msgstr "" @@ -3640,7 +3688,7 @@ msgstr "" msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +#: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" msgstr "" @@ -3666,15 +3714,15 @@ msgstr "" #~ msgstr "" #: src/view/screens/AccessibilitySettings.tsx:102 -#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:211 msgid "Media" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:270 +#: src/components/WhoCanReply.tsx:275 msgid "mentioned users" msgstr "" -#: src/view/com/modals/Threadgate.tsx:96 +#: src/components/dialogs/ThreadgateEditor.tsx:119 msgid "Mentioned users" msgstr "" @@ -3725,7 +3773,7 @@ msgid "Misleading Account" msgstr "" #: src/Navigation.tsx:127 -#: src/screens/Moderation/index.tsx:104 +#: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "मॉडरेशन" @@ -3758,7 +3806,7 @@ msgstr "" msgid "Moderation list updated" msgstr "" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:246 msgid "Moderation lists" msgstr "मॉडरेशन सूचियाँ" @@ -3775,7 +3823,7 @@ msgstr "" msgid "Moderation states" msgstr "" -#: src/screens/Moderation/index.tsx:215 +#: src/screens/Moderation/index.tsx:218 msgid "Moderation tools" msgstr "" @@ -3784,7 +3832,7 @@ msgstr "" msgid "Moderator has chosen to set a general warning on the content." msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:567 +#: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" msgstr "" @@ -3804,6 +3852,10 @@ msgstr "अधिक विकल्प" msgid "Most-liked replies first" msgstr "" +#: src/screens/Onboarding/state.ts:90 +msgid "Movies" +msgstr "" + #: src/view/com/auth/create/Step2.tsx:122 #~ msgid "Must be at least 3 characters" #~ msgstr "" @@ -3885,7 +3937,7 @@ msgstr "" msgid "Muted" msgstr "" -#: src/screens/Moderation/index.tsx:255 +#: src/screens/Moderation/index.tsx:258 msgid "Muted accounts" msgstr "म्यूट किए गए खाते" @@ -3902,7 +3954,7 @@ msgstr "म्यूट किए गए खातों की पोस्ट msgid "Muted by \"{0}\"" msgstr "" -#: src/screens/Moderation/index.tsx:231 +#: src/screens/Moderation/index.tsx:234 msgid "Muted words & tags" msgstr "" @@ -3952,6 +4004,7 @@ msgid "Name or Description Violates Community Standards" msgstr "" #: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:91 msgid "Nature" msgstr "" @@ -4029,8 +4082,8 @@ msgstr "" #: src/view/screens/Feeds.tsx:580 #: src/view/screens/Notifications.tsx:193 -#: src/view/screens/Profile.tsx:485 -#: src/view/screens/ProfileFeed.tsx:427 +#: src/view/screens/Profile.tsx:478 +#: src/view/screens/ProfileFeed.tsx:428 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:277 @@ -4042,7 +4095,7 @@ msgctxt "action" msgid "New Post" msgstr "नई पोस्ट" -#: src/components/NewskieDialog.tsx:71 +#: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "" @@ -4055,6 +4108,7 @@ msgid "Newest replies first" msgstr "" #: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:92 msgid "News" msgstr "" @@ -4065,10 +4119,10 @@ msgstr "" #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:258 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:195 -#: src/screens/StarterPack/Wizard/index.tsx:372 -#: src/screens/StarterPack/Wizard/index.tsx:379 +#: src/screens/StarterPack/Wizard/index.tsx:184 +#: src/screens/StarterPack/Wizard/index.tsx:188 +#: src/screens/StarterPack/Wizard/index.tsx:359 +#: src/screens/StarterPack/Wizard/index.tsx:366 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4092,7 +4146,7 @@ msgstr "अगली फोटो" msgid "No" msgstr "नहीं" -#: src/view/screens/ProfileFeed.tsx:560 +#: src/view/screens/ProfileFeed.tsx:562 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "कोई विवरण नहीं" @@ -4106,7 +4160,7 @@ msgstr "" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." msgstr "" @@ -4179,11 +4233,11 @@ msgstr "" msgid "No thanks" msgstr "" -#: src/view/com/modals/Threadgate.tsx:85 +#: src/components/dialogs/ThreadgateEditor.tsx:108 msgid "Nobody" msgstr "" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Nobody can reply" msgstr "" @@ -4192,7 +4246,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -4205,7 +4259,7 @@ msgstr "" #~ msgstr "लागू नहीं।" #: src/Navigation.tsx:117 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "" @@ -4220,7 +4274,7 @@ msgstr "" msgid "Note about sharing" msgstr "" -#: src/screens/Moderation/index.tsx:540 +#: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "" @@ -4280,7 +4334,7 @@ msgstr "" msgid "Oh no!" msgstr "अरे नहीं!" -#: src/screens/Onboarding/StepInterests/index.tsx:133 +#: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." msgstr "" @@ -4316,7 +4370,7 @@ msgstr "एक या अधिक छवियाँ alt पाठ याद msgid "Only .jpg and .png files are supported" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:239 +#: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" msgstr "" @@ -4333,10 +4387,10 @@ msgid "Oops, something went wrong!" msgstr "" #: src/components/Lists.tsx:191 -#: src/components/StarterPack/ProfileStarterPacks.tsx:302 -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "" @@ -4366,7 +4420,7 @@ msgstr "" msgid "Open emoji picker" msgstr "" -#: src/view/screens/ProfileFeed.tsx:295 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Open feed options menu" msgstr "" @@ -4378,7 +4432,7 @@ msgstr "" msgid "Open message options" msgstr "" -#: src/screens/Moderation/index.tsx:227 +#: src/screens/Moderation/index.tsx:230 msgid "Open muted words and tags settings" msgstr "" @@ -4394,7 +4448,7 @@ msgstr "ओपन नेविगेशन" msgid "Open post options menu" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 msgid "Open starter pack menu" msgstr "" @@ -4411,6 +4465,10 @@ msgstr "" msgid "Opens {numItems} options" msgstr "" +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" msgstr "" @@ -4581,7 +4639,7 @@ msgstr "" msgid "Optionally provide additional information below:" msgstr "" -#: src/view/com/modals/Threadgate.tsx:92 +#: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" msgstr "" @@ -4649,7 +4707,6 @@ msgstr "पासवर्ड अद्यतन!" msgid "Pause" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:194 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "" @@ -4662,19 +4719,20 @@ msgstr "" msgid "People following @{0}" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:67 +#: src/view/com/lightbox/Lightbox.tsx:69 msgid "Permission to access camera roll is required." msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:73 +#: src/view/com/lightbox/Lightbox.tsx:75 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:93 msgid "Pets" msgstr "" @@ -4682,16 +4740,20 @@ msgstr "" #~ msgid "Phone number" #~ msgstr "" +#: src/screens/Onboarding/state.ts:94 +msgid "Photography" +msgstr "" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "चित्र वयस्कों के लिए थे।।" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 msgid "Pin to Home" msgstr "" @@ -4804,6 +4866,7 @@ msgid "Please wait for your link card to finish loading" msgstr "" #: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:95 msgid "Politics" msgstr "" @@ -4871,7 +4934,7 @@ msgstr "पोस्ट नहीं मिला" msgid "posts" msgstr "" -#: src/view/screens/Profile.tsx:216 +#: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "" @@ -4945,7 +5008,7 @@ msgid "Processing..." msgstr "प्रसंस्करण..." #: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:353 +#: src/view/screens/Profile.tsx:346 msgid "profile" msgstr "" @@ -4985,15 +5048,15 @@ msgstr "" msgid "Publish reply" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:131 +#: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:109 +#: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:110 +#: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" msgstr "" @@ -5055,7 +5118,9 @@ msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:325 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -5068,7 +5133,7 @@ msgstr "निकालें" #~ msgid "Remove {0} from my feeds?" #~ msgstr "मेरे फ़ीड से {0} हटाएं?" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" msgstr "" @@ -5100,13 +5165,13 @@ msgstr "" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:332 +#: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "मेरे फ़ीड से हटाएँ" -#: src/components/FeedCard.tsx:315 +#: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "" @@ -5162,7 +5227,7 @@ msgid "Removed from my feeds" msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "" @@ -5180,19 +5245,19 @@ msgstr "" msgid "Replace with Discover" msgstr "" -#: src/view/screens/Profile.tsx:217 +#: src/view/screens/Profile.tsx:210 msgid "Replies" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:66 +#: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" msgstr "" #: src/view/com/threadgate/WhoCanReply.tsx:123 -msgid "Replies on this thread are disabled" -msgstr "" +#~ msgid "Replies on this thread are disabled" +#~ msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:237 +#: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "" @@ -5252,8 +5317,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/view/screens/ProfileFeed.tsx:348 -#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:351 msgid "Report feed" msgstr "रिपोर्ट फ़ीड" @@ -5270,8 +5335,8 @@ msgstr "" msgid "Report post" msgstr "रिपोर्ट पोस्ट" -#: src/screens/StarterPack/StarterPackScreen.tsx:469 -#: src/screens/StarterPack/StarterPackScreen.tsx:472 +#: src/screens/StarterPack/StarterPackScreen.tsx:476 +#: src/screens/StarterPack/StarterPackScreen.tsx:479 msgid "Report starter pack" msgstr "" @@ -5317,7 +5382,7 @@ msgstr "" msgid "Repost" msgstr "पुन: पोस्ट" -#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:418 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5429,12 +5494,12 @@ msgstr "" #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 #: src/screens/Login/LoginForm.tsx:291 #: src/screens/Login/LoginForm.tsx:298 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/Onboarding/StepInterests/index.tsx:234 #: src/screens/Signup/index.tsx:245 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 @@ -5446,7 +5511,7 @@ msgstr "फिर से कोशिश करो" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:622 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "" @@ -5456,7 +5521,7 @@ msgid "Returns to home page" msgstr "" #: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/ProfileFeed.tsx:113 msgid "Returns to previous page" msgstr "" @@ -5465,7 +5530,8 @@ msgstr "" #~ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/StarterPack/QrCodeDialog.tsx:190 +#: src/components/dialogs/ThreadgateEditor.tsx:88 +#: src/components/StarterPack/QrCodeDialog.tsx:184 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5474,7 +5540,7 @@ msgstr "" msgid "Save" msgstr "सेव करो" -#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/lightbox/Lightbox.tsx:135 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5496,8 +5562,8 @@ msgstr "बदलाव सेव करो" msgid "Save handle change" msgstr "बदलाव सेव करो" -#: src/components/StarterPack/ShareDialog.tsx:163 -#: src/components/StarterPack/ShareDialog.tsx:170 +#: src/components/StarterPack/ShareDialog.tsx:150 +#: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" msgstr "" @@ -5505,12 +5571,12 @@ msgstr "" msgid "Save image crop" msgstr "फोटो बदलाव सेव करो" -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" msgstr "" @@ -5518,7 +5584,7 @@ msgstr "" msgid "Saved Feeds" msgstr "सहेजे गए फ़ीड" -#: src/view/com/lightbox/Lightbox.tsx:82 +#: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" msgstr "" @@ -5526,7 +5592,7 @@ msgstr "" #~ msgid "Saved to your camera roll." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "" @@ -5544,13 +5610,14 @@ msgid "Saves image crop settings" msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:82 +#: src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:372 #: src/view/com/notifications/FeedItem.tsx:397 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:96 msgid "Science" msgstr "" @@ -5600,7 +5667,7 @@ msgstr "" #~ msgid "Search for all posts with tag {tag}" #~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:467 +#: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -5767,7 +5834,7 @@ msgstr "" msgid "Select your date of birth" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:201 +#: src/screens/Onboarding/StepInterests/index.tsx:206 msgid "Select your interests from the options below" msgstr "" @@ -5862,7 +5929,7 @@ msgstr "" #~ msgid "Set Age" #~ msgstr "" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:307 msgid "Set birthdate" msgstr "" @@ -5987,9 +6054,9 @@ msgstr "यौन गतिविधि या कामुक नग्नत msgid "Sexually Suggestive" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:180 -#: src/screens/StarterPack/StarterPackScreen.tsx:303 -#: src/screens/StarterPack/StarterPackScreen.tsx:458 +#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/screens/StarterPack/StarterPackScreen.tsx:312 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5999,7 +6066,7 @@ msgstr "" msgid "Share" msgstr "शेयर" -#: src/view/com/lightbox/Lightbox.tsx:142 +#: src/view/com/lightbox/Lightbox.tsx:144 msgctxt "action" msgid "Share" msgstr "" @@ -6018,30 +6085,36 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/view/screens/ProfileFeed.tsx:358 -#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:361 msgid "Share feed" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:462 +#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/screens/StarterPack/StarterPackScreen.tsx:469 msgid "Share link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:100 +#: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:296 +#: src/components/StarterPack/ShareDialog.tsx:134 +#: src/components/StarterPack/ShareDialog.tsx:145 +msgid "Share QR code" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:305 msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:112 +#: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -6099,7 +6172,7 @@ msgstr "" msgid "Show less like this" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:533 +#: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" @@ -6277,17 +6350,17 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:240 -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "स्किप" -#: src/screens/Onboarding/StepInterests/index.tsx:237 +#: src/screens/Onboarding/StepInterests/index.tsx:242 msgid "Skip this flow" msgstr "" @@ -6296,18 +6369,18 @@ msgstr "" #~ msgstr "" #: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:85 msgid "Software Dev" msgstr "" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 -#: src/view/com/threadgate/WhoCanReply.tsx:67 -#: src/view/com/threadgate/WhoCanReply.tsx:124 +#: src/components/WhoCanReply.tsx:72 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "" #: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "" +#~ msgid "Some subtitle" +#~ msgstr "" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -6323,7 +6396,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 +#: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "" @@ -6367,6 +6440,7 @@ msgid "Spam; excessive mentions or replies" msgstr "" #: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:97 msgid "Sports" msgstr "" @@ -6392,7 +6466,7 @@ msgstr "" #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -6400,14 +6474,18 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:214 msgid "Starter Packs" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + #: src/view/screens/Settings/index.tsx:862 #~ msgid "Status page" #~ msgstr "स्थिति पृष्ठ" @@ -6537,6 +6615,7 @@ msgid "Tap to view fully" msgstr "" #: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:98 msgid "Tech" msgstr "" @@ -6589,10 +6668,10 @@ msgstr "" msgid "That handle is already taken." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:100 -#: src/screens/StarterPack/StarterPackScreen.tsx:101 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:102 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/Wizard/index.tsx:106 +#: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." msgstr "" @@ -6613,7 +6692,7 @@ msgstr "सामुदायिक दिशानिर्देशों क msgid "The Copyright Policy has been moved to <0/>" msgstr "कॉपीराइट नीति को <0/> पर स्थानांतरित कर दिया गया है" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6642,7 +6721,7 @@ msgstr "हो सकता है कि यह पोस्ट हटा द msgid "The Privacy Policy has been moved to <0/>" msgstr "गोपनीयता नीति को <0/> पर स्थानांतरित किया गया है" -#: src/screens/StarterPack/StarterPackScreen.tsx:589 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6663,7 +6742,7 @@ 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:542 +#: src/view/screens/ProfileFeed.tsx:544 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "" @@ -6673,7 +6752,7 @@ msgstr "" #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "" @@ -6686,7 +6765,7 @@ msgstr "" #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:233 +#: src/view/screens/ProfileFeed.tsx:234 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6744,6 +6823,7 @@ msgstr "" msgid "There was an issue! {0}" msgstr "" +#: src/components/WhoCanReply.tsx:116 #: src/view/screens/ProfileList.tsx:335 #: src/view/screens/ProfileList.tsx:349 #: src/view/screens/ProfileList.tsx:363 @@ -6844,7 +6924,7 @@ msgstr "" msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "" -#: src/view/screens/ProfileFeed.tsx:472 +#: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" @@ -6963,7 +7043,7 @@ msgstr "" #~ msgid "This user is included the <0/> list which you have muted." #~ msgstr "" -#: src/components/NewskieDialog.tsx:53 +#: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." msgstr "" @@ -6992,6 +7072,10 @@ msgstr "" msgid "Thread Preferences" msgstr "थ्रेड प्राथमिकता" +#: src/components/WhoCanReply.tsx:109 +msgid "Thread settings updated" +msgstr "" + #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "थ्रेड मोड" @@ -7020,7 +7104,7 @@ msgstr "" msgid "Toggle dropdown" msgstr "ड्रॉपडाउन टॉगल करें" -#: src/screens/Moderation/index.tsx:332 +#: src/screens/Moderation/index.tsx:336 msgid "Toggle to enable or disable adult content" msgstr "" @@ -7035,8 +7119,8 @@ msgstr "परिवर्तन" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: 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 msgid "Translate" @@ -7047,6 +7131,10 @@ msgctxt "action" msgid "Try again" msgstr "फिर से कोशिश करो" +#: src/screens/Onboarding/state.ts:99 +msgid "TV" +msgstr "" + #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" msgstr "" @@ -7076,7 +7164,7 @@ msgstr "" msgid "Unable to contact your service. Please check your Internet connection." msgstr "आपकी सेवा से संपर्क करने में असमर्थ। कृपया अपने इंटरनेट कनेक्शन की जांच करें।।" -#: src/screens/StarterPack/StarterPackScreen.tsx:513 +#: src/screens/StarterPack/StarterPackScreen.tsx:520 msgid "Unable to delete" msgstr "" @@ -7143,7 +7231,7 @@ msgstr "" #~ msgid "Unlike" #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Unlike this feed" msgstr "" @@ -7182,12 +7270,12 @@ msgstr "" msgid "Unmute thread" msgstr "थ्रेड को अनम्यूट करें" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 msgid "Unpin from home" msgstr "" @@ -7373,7 +7461,7 @@ msgstr "यूजर नाम या ईमेल पता" msgid "Users" msgstr "यूजर लोग" -#: src/view/com/threadgate/WhoCanReply.tsx:274 +#: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" msgstr "" @@ -7384,7 +7472,7 @@ msgstr "" msgid "Users I follow" msgstr "" -#: src/view/com/modals/Threadgate.tsx:109 +#: src/components/dialogs/ThreadgateEditor.tsx:132 msgid "Users in \"{0}\"" msgstr "" @@ -7442,6 +7530,7 @@ msgid "Version {appVersion} {bundleInfo}" msgstr "" #: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:88 msgid "Video Games" msgstr "" @@ -7493,7 +7582,7 @@ msgstr "अवतार देखें" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/view/screens/ProfileFeed.tsx:583 +#: src/view/screens/ProfileFeed.tsx:585 msgid "View users who like this feed" msgstr "" @@ -7561,11 +7650,11 @@ msgstr "" msgid "We were unable to load your birth date preferences. Please try again." msgstr "" -#: src/screens/Moderation/index.tsx:385 +#: src/screens/Moderation/index.tsx:409 msgid "We were unable to load your configured labelers at this time." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:143 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" @@ -7577,7 +7666,7 @@ msgstr "" #~ msgid "We'll look into your appeal promptly." #~ msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:148 msgid "We'll use this to help customize your experience." msgstr "" @@ -7626,7 +7715,11 @@ msgstr "" #~ msgid "Welcome to <0>Bluesky" #~ msgstr "<0>Bluesky में आपका स्वागत है" -#: src/screens/Onboarding/StepInterests/index.tsx:135 +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" msgstr "" @@ -7657,17 +7750,15 @@ msgstr "कौन से भाषाएं आपको अपने एल् msgid "Who can message you?" msgstr "" -#: src/view/com/modals/Threadgate.tsx:69 -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Who can reply" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:206 +#: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:210 +#: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" msgstr "" @@ -7723,6 +7814,7 @@ msgid "Write your reply" msgstr "अपना जवाब दें" #: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:100 msgid "Writers" msgstr "" @@ -7745,7 +7837,7 @@ msgstr "हाँ" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:525 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Yes, delete this starter pack" msgstr "" @@ -7761,6 +7853,10 @@ msgstr "" msgid "you" msgstr "" +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + #: src/screens/Onboarding/StepModeration/index.tsx:46 #~ msgid "You are in control" #~ msgstr "" @@ -7914,6 +8010,10 @@ msgstr "" msgid "You have reached the end" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +msgid "You haven't created a starter pack yet!" +msgstr "" + #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "" @@ -7946,15 +8046,15 @@ msgstr "" #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:62 +#: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." msgstr "" @@ -8006,7 +8106,7 @@ msgstr "" msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po index 58d0303ff3..f4accd066e 100644 --- a/src/locale/locales/id/messages.po +++ b/src/locale/locales/id/messages.po @@ -72,7 +72,7 @@ msgstr "{0, plural, other {Suka (# menyukai)}}" msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, other {suka}}" -#: src/components/FeedCard.tsx:215 +#: src/components/FeedCard.tsx:216 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, other {Disukai oleh # pengguna}}" @@ -93,7 +93,11 @@ 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/StarterPackScreen.tsx:343 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +msgid "{0} joined this week" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:350 msgid "{0} people have used this starter pack!" msgstr "" @@ -137,7 +141,7 @@ msgstr "" msgid "{diffSeconds, plural, one {second} other {seconds}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" msgstr "" @@ -160,7 +164,7 @@ 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:586 +#: src/view/screens/ProfileFeed.tsx:588 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, other {Disukai oleh # pengguna}}" @@ -168,11 +172,11 @@ msgstr "{likeCount, plural, other {Disukai oleh # pengguna}}" msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} belum dibaca" -#: src/components/NewskieDialog.tsx:92 +#: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" msgstr "" -#: src/components/NewskieDialog.tsx:87 +#: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "" @@ -180,17 +184,27 @@ 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 {Tampilkan semua balasan} other {Tampilkan balasan dengan minimal # suka}}" -#: src/view/com/threadgate/WhoCanReply.tsx:290 +#: src/components/WhoCanReply.tsx:295 msgid "<0/> members" msgstr "anggota <0/>" #: src/screens/StarterPack/Wizard/index.tsx:485 -msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +#~ 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 "" + +#: 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 "" +#~ 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 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -200,11 +214,15 @@ msgstr "<0>{0} {1, plural, other {pengikut}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, other {mengikuti}}" +#: 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 "" -#: src/screens/StarterPack/Wizard/index.tsx:478 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -233,6 +251,10 @@ msgstr "<0>Tidak bisa diterapkan. Peringatan ini hanya tersedia untuk postin #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:457 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠Handle Tidak Valid" @@ -323,11 +345,11 @@ msgstr "Akun batal dibisukan" msgid "Add" msgstr "Tambah" -#: src/screens/StarterPack/Wizard/index.tsx:539 +#: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:56 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" msgstr "" @@ -382,14 +404,14 @@ msgid "Add muted words and tags" msgstr "Tambah kata dan tagar untuk dibisukan" #: src/screens/StarterPack/Wizard/index.tsx:197 -msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "" +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "Tambahkan feed rekomendasi" -#: src/screens/StarterPack/Wizard/index.tsx:464 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" msgstr "" @@ -401,7 +423,7 @@ msgstr "Tambahkan feed bawaan hanya untuk orang yang Anda ikuti" msgid "Add the following DNS record to your domain:" msgstr "Tambahkan catatan DNS berikut ke domain Anda:" -#: src/components/FeedCard.tsx:300 +#: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" msgstr "" @@ -436,16 +458,20 @@ msgstr "Sesuaikan jumlah suka yang harus dimiliki oleh balasan agar ditampilkan msgid "Adult Content" msgstr "Konten Dewasa" +#: src/screens/Moderation/index.tsx:356 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "Konten dewasa dinonaktifkan." -#: src/screens/Moderation/index.tsx:375 +#: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "Lanjutan" -#: src/screens/StarterPack/StarterPackScreen.tsx:271 +#: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "All accounts have been followed!" msgstr "" @@ -510,16 +536,16 @@ msgstr "Email telah dikirim ke alamat Anda sebelumnya, {0}. Email tersebut beris msgid "An error occured" msgstr "Terjadi kesalahan" -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +#: 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 "" +#~ msgid "An error occurred while saving the image." +#~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:76 -#: src/components/StarterPack/ShareDialog.tsx:91 +#: src/components/StarterPack/QrCodeDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "" @@ -527,7 +553,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:275 msgid "An error occurred while trying to follow all" msgstr "" @@ -544,16 +570,17 @@ msgstr "Masalah lain yang tidak termasuk dalam pilihan" msgid "An issue occurred, please try again." msgstr "Terjadi masalah, silakan coba lagi." -#: src/screens/Onboarding/StepInterests/index.tsx:194 +#: src/screens/Onboarding/StepInterests/index.tsx:199 msgid "an unknown error occurred" msgstr "terjadi kesalahan yang tidak diketahui" +#: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:280 -#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "dan" #: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:79 msgid "Animals" msgstr "Hewan" @@ -625,7 +652,7 @@ msgstr "Tampilan" msgid "Apply default recommended feeds" msgstr "Tambahkan feed yang direkomendasikan secara default" -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -653,7 +680,7 @@ msgstr "Anda yakin ingin meninggalkan percakapan ini? Pesan akan dihapus untuk A msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Apakah Anda yakin ingin menghapus {0} dari daftar feed Anda?" -#: src/components/FeedCard.tsx:317 +#: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -670,6 +697,7 @@ msgid "Are you writing in <0>{0}?" msgstr "Apakah Anda menulis dalam <0>{0}?" #: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:80 msgid "Art" msgstr "Seni" @@ -696,7 +724,7 @@ msgstr "Minimal 3 karakter" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:312 +#: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Kembali" @@ -753,7 +781,7 @@ msgstr "Blokir akun ini?" msgid "Blocked" msgstr "Diblokir" -#: src/screens/Moderation/index.tsx:267 +#: src/screens/Moderation/index.tsx:270 msgid "Blocked accounts" msgstr "Akun yang diblokir" @@ -814,11 +842,11 @@ msgstr "Bluesky adalah jaringan terbuka di mana Anda dapat memilih penyedia host #~ msgid "Bluesky is public." #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:533 +#: 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 tidak akan menampilkan profil dan postingan Anda kepada pengguna yang tidak login. Aplikasi lain mungkin tidak mematuhi permintaan ini. Ini tidak membuat akun Anda menjadi privat." @@ -831,6 +859,7 @@ msgid "Blur images and filter from feeds" msgstr "Buramkan gambar dan saring dari feed" #: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:81 msgid "Books" msgstr "Buku" @@ -1040,13 +1069,21 @@ msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "Periksa kotak masuk email Anda untuk kode konfirmasi dan masukkan di bawah ini:" #: src/view/com/modals/Threadgate.tsx:75 -msgid "Choose \"Everybody\" or \"Nobody\"" -msgstr "Pilih \"Semua Orang\" atau \"Tidak Ada\"" +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "Pilih \"Semua Orang\" atau \"Tidak Ada\"" -#: src/components/StarterPack/ProfileStarterPacks.tsx:288 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:187 +msgid "Choose People" +msgstr "" + #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Pilih Layanan" @@ -1064,6 +1101,11 @@ msgstr "Pilih algoritma yang akan digunakan untuk feed kustom Anda." msgid "Choose this color as your avatar" msgstr "Pilih warna ini sebagai avatar Anda" +#: 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 "Pilih feed utama Anda" @@ -1140,18 +1182,18 @@ msgstr "Keletak 🐴 keletuk 🐴" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/NewskieDialog.tsx:120 -#: src/components/NewskieDialog.tsx:127 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:121 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:127 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: 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:189 msgid "Close" msgstr "Tutup" -#: src/components/Dialog/index.web.tsx:113 -#: src/components/Dialog/index.web.tsx:251 +#: src/components/Dialog/index.web.tsx:116 +#: src/components/Dialog/index.web.tsx:254 msgid "Close active dialog" msgstr "Tutup dialog aktif" @@ -1218,10 +1260,12 @@ msgid "Collapses list of users for a given notification" msgstr "Menciutkan daftar pengguna untuk notifikasi tertentu" #: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:82 msgid "Comedy" msgstr "Komedi" #: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:83 msgid "Comics" msgstr "Komik" @@ -1283,11 +1327,11 @@ msgstr "Konfirmasi pengaturan bahasa konten" msgid "Confirm delete account" msgstr "Konfirmasi hapus akun" -#: src/screens/Moderation/index.tsx:301 +#: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "Konfirmasi usia Anda:" -#: src/screens/Moderation/index.tsx:292 +#: src/screens/Moderation/index.tsx:295 msgid "Confirm your birthdate" msgstr "Konfirmasi tanggal lahir Anda" @@ -1317,7 +1361,7 @@ msgstr "Hubungi pusat bantuan" msgid "Content Blocked" msgstr "Konten Diblokir" -#: src/screens/Moderation/index.tsx:285 +#: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "Penyaring konten" @@ -1346,7 +1390,7 @@ msgstr "Peringatan konten" msgid "Context menu backdrop, click to close the menu." msgstr "Latar menu konteks, klik untuk menutup menu." -#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepInterests/index.tsx:258 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Lanjutkan" @@ -1359,7 +1403,7 @@ msgstr "Lanjutkan sebagai {0} (sudah masuk)" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:251 msgid "Continue to next step" @@ -1407,7 +1451,7 @@ msgstr "Tersalin!" msgid "Copies app password" msgstr "Menyalin kata sandi aplikasi" -#: src/components/StarterPack/QrCodeDialog.tsx:180 +#: src/components/StarterPack/QrCodeDialog.tsx:174 #: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Salin" @@ -1421,7 +1465,11 @@ msgstr "Salin {0}" msgid "Copy code" msgstr "Salin kode" -#: src/components/StarterPack/ShareDialog.tsx:143 +#: src/components/StarterPack/ShareDialog.tsx:123 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" msgstr "" @@ -1444,7 +1492,7 @@ msgstr "Salin teks pesan" msgid "Copy post text" msgstr "Salin teks postingan" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" msgstr "" @@ -1457,7 +1505,7 @@ msgstr "Kebijakan Hak Cipta" msgid "Could not leave chat" msgstr "Tidak dapat meninggalkan obrolan" -#: src/view/screens/ProfileFeed.tsx:102 +#: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" msgstr "Tidak dapat memuat feed" @@ -1477,7 +1525,7 @@ msgstr "Tidak dapat membisukan obrolan" #~ msgid "Could not unmute chat" #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:270 +#: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" msgstr "" @@ -1490,17 +1538,17 @@ msgstr "Buat akun baru" msgid "Create a new Bluesky account" msgstr "Buat akun Bluesky baru" -#: src/components/StarterPack/QrCodeDialog.tsx:157 +#: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:257 +#: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +#: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" msgstr "" @@ -1531,8 +1579,8 @@ msgid "Create new account" msgstr "Buat akun baru" #: src/components/StarterPack/ShareDialog.tsx:158 -msgid "Create QR code" -msgstr "" +#~ msgid "Create QR code" +#~ msgstr "" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1547,6 +1595,7 @@ msgstr "Dibuat {0}" #~ msgstr "" #: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:84 msgid "Culture" msgstr "Budaya" @@ -1603,9 +1652,9 @@ msgid "Debug panel" msgstr "Panel awakutu" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:449 -#: src/screens/StarterPack/StarterPackScreen.tsx:528 -#: src/screens/StarterPack/StarterPackScreen.tsx:608 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1666,12 +1715,12 @@ msgstr "Hapus Akun Saya…" msgid "Delete post" msgstr "Hapus postingan" -#: src/screens/StarterPack/StarterPackScreen.tsx:443 -#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:450 +#: src/screens/StarterPack/StarterPackScreen.tsx:606 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:494 +#: src/screens/StarterPack/StarterPackScreen.tsx:501 msgid "Delete starter pack?" msgstr "" @@ -1743,7 +1792,7 @@ msgstr "Matikan respons haptik" #: src/lib/moderation/useLabelBehaviorDescription.ts:68 #: src/screens/Messages/Settings.tsx:140 #: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:341 +#: src/screens/Moderation/index.tsx:346 msgid "Disabled" msgstr "Dinonaktifkan" @@ -1755,8 +1804,8 @@ msgstr "Buang" msgid "Discard draft?" msgstr "Buang draf?" -#: src/screens/Moderation/index.tsx:518 -#: src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:542 +#: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" msgstr "Cegah aplikasi untuk menampilkan akun saya ke pengguna yang tidak login" @@ -1807,6 +1856,7 @@ msgstr "Domain terverifikasi!" #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/ThreadgateEditor.tsx:88 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 @@ -1826,8 +1876,6 @@ msgstr "Selesai" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 #: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/Threadgate.tsx:136 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 #: src/view/screens/PreferencesThreads.tsx:162 @@ -1839,7 +1887,7 @@ msgstr "Selesai" msgid "Done{extraText}" msgstr "Selesai{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 msgid "Download Bluesky" msgstr "" @@ -1896,9 +1944,9 @@ msgstr "contoh: Pengguna yang membalas dengan iklan secara berulang." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Tiap kode hanya berlaku sekali. Anda akan mendapatkan tambahan kode undangan secara berkala." -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:522 -#: src/screens/StarterPack/Wizard/index.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" @@ -1914,7 +1962,7 @@ msgstr "Ubah" msgid "Edit avatar" msgstr "Edit avatar" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "" @@ -1942,7 +1990,7 @@ msgstr "Edit Feed Saya" msgid "Edit my profile" msgstr "Edit profil saya" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "" @@ -1961,7 +2009,7 @@ msgstr "Edit Profil" #~ msgid "Edit Saved Feeds" #~ msgstr "Edit Feed Tersimpan" -#: src/screens/StarterPack/StarterPackScreen.tsx:430 +#: src/screens/StarterPack/StarterPackScreen.tsx:437 msgid "Edit starter pack" msgstr "" @@ -1969,8 +2017,7 @@ msgstr "" msgid "Edit User List" msgstr "Edit Daftar Pengguna" -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" msgstr "" @@ -1987,9 +2034,14 @@ msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:86 msgid "Education" msgstr "Pendidikan" +#: src/components/dialogs/ThreadgateEditor.tsx:98 +msgid "Either choose \"Everybody\" or \"Nobody\"" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" @@ -2038,7 +2090,7 @@ msgstr "Sematkan postingan ini di situs web Anda. Salin potongan kode berikut da msgid "Enable {0} only" msgstr "Aktifkan {0} saja" -#: src/screens/Moderation/index.tsx:329 +#: src/screens/Moderation/index.tsx:333 msgid "Enable adult content" msgstr "Aktifkan konten dewasa" @@ -2070,7 +2122,7 @@ msgstr "Aktifkan hanya sumber ini saja" #: src/screens/Messages/Settings.tsx:131 #: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:339 +#: src/screens/Moderation/index.tsx:344 msgid "Enabled" msgstr "Diaktifkan" @@ -2140,19 +2192,18 @@ msgstr "Terjadi kesalahan saat menyimpan berkas" msgid "Error receiving captcha response." msgstr "Gagal menerima respons captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Eror:" -#: src/view/com/modals/Threadgate.tsx:79 +#: src/components/dialogs/ThreadgateEditor.tsx:102 msgid "Everybody" msgstr "Semua orang" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#: src/view/com/threadgate/WhoCanReply.tsx:64 -#: src/view/com/threadgate/WhoCanReply.tsx:121 -#: src/view/com/threadgate/WhoCanReply.tsx:235 +#: src/components/WhoCanReply.tsx:69 +#: src/components/WhoCanReply.tsx:240 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "Semua orang dapat membalas" @@ -2247,8 +2298,8 @@ msgstr "Pengaturan media eksternal" msgid "Failed to create app password." msgstr "Gagal membuat kata sandi aplikasi." -#: src/screens/StarterPack/Wizard/index.tsx:241 -#: src/screens/StarterPack/Wizard/index.tsx:249 +#: src/screens/StarterPack/Wizard/index.tsx:230 +#: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" msgstr "" @@ -2264,7 +2315,7 @@ msgstr "Gagal menghapus pesan" msgid "Failed to delete post, please try again" msgstr "Gagal menghapus postingan, silakan coba lagi" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/StarterPackScreen.tsx:569 msgid "Failed to delete starter pack" msgstr "" @@ -2300,7 +2351,7 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" msgstr "Gagal menyimpan gambar: {0}" @@ -2321,7 +2372,7 @@ msgstr "Gagal mengirimkan banding, silakan coba lagi." msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:280 +#: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "" @@ -2343,7 +2394,7 @@ msgstr "Feed {0}" #~ msgid "Feed offline" #~ msgstr "Feed offline" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "" @@ -2353,10 +2404,9 @@ msgid "Feedback" msgstr "Masukan" #: src/Navigation.tsx:320 -#: src/screens/StarterPack/Wizard/index.tsx:201 #: src/view/screens/Feeds.tsx:445 #: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:220 +#: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:373 #: src/view/shell/Drawer.tsx:493 @@ -2376,7 +2426,7 @@ msgstr "Feeds adalah algoritma kustom yang dibuat pengguna dengan sedikit keahli #~ msgid "Feeds can be topical as well!" #~ msgstr "Feed juga bisa berdasarkan topik!" -#: src/components/FeedCard.tsx:277 +#: src/components/FeedCard.tsx:282 msgid "Feeds updated!" msgstr "" @@ -2426,7 +2476,7 @@ msgstr "Sesuaikan konten yang Anda lihat di feed Mengikuti." msgid "Fine-tune the discussion threads." msgstr "Sesuaikan utasan diskusi." -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" msgstr "" @@ -2474,8 +2524,8 @@ msgstr "" msgid "Follow Account" msgstr "Ikuti Akun" -#: src/screens/StarterPack/StarterPackScreen.tsx:308 -#: src/screens/StarterPack/StarterPackScreen.tsx:315 +#: src/screens/StarterPack/StarterPackScreen.tsx:317 +#: src/screens/StarterPack/StarterPackScreen.tsx:324 msgid "Follow all" msgstr "" @@ -2523,7 +2573,7 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/view/com/modals/Threadgate.tsx:101 +#: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" msgstr "Pengguna yang Anda ikuti" @@ -2587,6 +2637,7 @@ msgid "Follows You" msgstr "Mengikuti Anda" #: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:87 msgid "Food" msgstr "Makanan" @@ -2628,7 +2679,7 @@ msgstr "Dari <0/>" msgid "Gallery" msgstr "Galeri" -#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" msgstr "" @@ -2658,7 +2709,7 @@ msgstr "Pelanggaran hukum atau ketentuan layanan secara terang-terangan" #: src/view/com/auth/LoggedOut.tsx:78 #: src/view/com/auth/LoggedOut.tsx:79 #: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:133 msgid "Go back" @@ -2667,9 +2718,9 @@ msgstr "Kembali" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:628 #: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Kembali" @@ -2683,7 +2734,7 @@ msgstr "Kembali" msgid "Go back to previous step" msgstr "Kembali ke langkah sebelumnya" -#: src/screens/StarterPack/Wizard/index.tsx:313 +#: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" msgstr "" @@ -2824,7 +2875,7 @@ msgstr "Hmm, server feed memberikan respons yang buruk. Harap beri tahu pemilik msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, kami kesulitan menemukan feed ini. Mungkin sudah dihapus." -#: src/screens/Moderation/index.tsx:59 +#: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmmmm, tampaknya kami mengalami kesulitan memuat data ini. Lihat detail lebih lanjut di bawah ini. Jika masalah berlanjut, silakan hubungi kami." @@ -2915,7 +2966,7 @@ msgstr "Gambar" msgid "Image alt text" msgstr "Teks alt gambar" -#: src/components/StarterPack/ShareDialog.tsx:88 +#: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" msgstr "" @@ -3008,7 +3059,7 @@ msgstr "Kode undangan: {0} tersedia" msgid "Invite codes: 1 available" msgstr "Kode undangan: 1 tersedia" -#: src/components/StarterPack/ShareDialog.tsx:109 +#: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" msgstr "" @@ -3024,7 +3075,7 @@ msgstr "" #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "Feed ini menampilkan postingan secara langsung dari orang yang Anda ikuti." -#: src/screens/StarterPack/Wizard/index.tsx:473 +#: 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 "" @@ -3032,8 +3083,8 @@ msgstr "" msgid "Jobs" msgstr "Karir" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 msgid "Join Bluesky" msgstr "" @@ -3042,6 +3093,7 @@ msgid "Join the conversation" msgstr "" #: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:89 msgid "Journalism" msgstr "Jurnalisme" @@ -3057,7 +3109,7 @@ msgstr "Dilabeli oleh {0}." msgid "Labeled by the author." msgstr "Dilabeli oleh pemosting." -#: src/view/screens/Profile.tsx:214 +#: src/view/screens/Profile.tsx:207 msgid "Labels" msgstr "Label" @@ -3113,7 +3165,7 @@ msgstr "Pelajari lebih lanjut tentang moderasi yang diterapkan pada konten ini." msgid "Learn more about this warning" msgstr "Pelajari lebih lanjut tentang peringatan ini" -#: src/screens/Moderation/index.tsx:549 +#: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." msgstr "Pelajari lebih lanjut tentang apa yang publik di Bluesky." @@ -3154,7 +3206,7 @@ msgstr "yang tersisa" msgid "Legacy storage cleared, you need to restart the app now." msgstr "Penyimpanan lama dihapus, Anda perlu memulai ulang aplikasi sekarang." -#: src/components/StarterPack/ProfileStarterPacks.tsx:293 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" msgstr "" @@ -3176,7 +3228,7 @@ msgstr "Terang" #~ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Suka feed ini" @@ -3214,7 +3266,7 @@ msgstr "menyukai feed kustom Anda" msgid "liked your post" msgstr "menyukai postingan Anda" -#: src/view/screens/Profile.tsx:219 +#: src/view/screens/Profile.tsx:212 msgid "Likes" msgstr "Suka" @@ -3260,8 +3312,8 @@ msgid "List unmuted" msgstr "Daftar tidak dibisukan" #: src/Navigation.tsx:122 +#: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/screens/Profile.tsx:222 #: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 @@ -3290,7 +3342,7 @@ msgstr "Muat notifikasi baru" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:493 +#: src/view/screens/ProfileFeed.tsx:494 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Muat postingan baru" @@ -3315,7 +3367,7 @@ msgstr "" msgid "Log out" msgstr "Keluar" -#: src/screens/Moderation/index.tsx:442 +#: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" msgstr "Visibilitas pengguna yang tidak login" @@ -3347,7 +3399,7 @@ msgstr "Sepertinya Anda menghapus semua feed tersemat. Tapi jangan khawatir, And msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "Sepertinya Anda kehilangan feed mengikuti. <0>Klik di sini untuk menambahkan." -#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +#: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" msgstr "" @@ -3365,15 +3417,15 @@ msgid "Mark as read" msgstr "Tandai telah dibaca" #: src/view/screens/AccessibilitySettings.tsx:102 -#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:211 msgid "Media" msgstr "Media" -#: src/view/com/threadgate/WhoCanReply.tsx:270 +#: src/components/WhoCanReply.tsx:275 msgid "mentioned users" msgstr "pengguna yang disebutkan" -#: src/view/com/modals/Threadgate.tsx:96 +#: src/components/dialogs/ThreadgateEditor.tsx:119 msgid "Mentioned users" msgstr "Pengguna yang Anda sebut" @@ -3424,7 +3476,7 @@ msgid "Misleading Account" msgstr "Akun Menyesatkan" #: src/Navigation.tsx:127 -#: src/screens/Moderation/index.tsx:104 +#: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "Moderasi" @@ -3457,7 +3509,7 @@ msgstr "Daftar moderasi dibuat" msgid "Moderation list updated" msgstr "Daftar moderasi diperbarui" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:246 msgid "Moderation lists" msgstr "Daftar moderasi" @@ -3474,7 +3526,7 @@ msgstr "Pengaturan moderasi" msgid "Moderation states" msgstr "Status moderasi" -#: src/screens/Moderation/index.tsx:215 +#: src/screens/Moderation/index.tsx:218 msgid "Moderation tools" msgstr "Alat moderasi" @@ -3483,7 +3535,7 @@ msgstr "Alat moderasi" msgid "Moderator has chosen to set a general warning on the content." msgstr "Moderator telah memilih untuk menetapkan peringatan umum pada konten." -#: src/view/com/post-thread/PostThreadItem.tsx:567 +#: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" msgstr "Lebih lanjut" @@ -3499,6 +3551,10 @@ msgstr "Pilihan lainnya" msgid "Most-liked replies first" msgstr "Balasan yang paling disukai lebih dulu" +#: src/screens/Onboarding/state.ts:90 +msgid "Movies" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "Bisukan" @@ -3568,7 +3624,7 @@ msgstr "Bisukan kata & tagar" msgid "Muted" msgstr "Dibisukan" -#: src/screens/Moderation/index.tsx:255 +#: src/screens/Moderation/index.tsx:258 msgid "Muted accounts" msgstr "Akun yang dibisukan" @@ -3585,7 +3641,7 @@ msgstr "Postingan dari akun yang dibisukan akan dihilangkan dari feed dan notifi msgid "Muted by \"{0}\"" msgstr "Dibisukan oleh \"{0}\"" -#: src/screens/Moderation/index.tsx:231 +#: src/screens/Moderation/index.tsx:234 msgid "Muted words & tags" msgstr "Kata & tagar yang dibisukan" @@ -3631,6 +3687,7 @@ msgid "Name or Description Violates Community Standards" msgstr "Nama atau Deskripsi Melanggar Standar Komunitas" #: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:91 msgid "Nature" msgstr "Alam" @@ -3699,8 +3756,8 @@ msgstr "Postingan baru" #: src/view/screens/Feeds.tsx:580 #: src/view/screens/Notifications.tsx:193 -#: src/view/screens/Profile.tsx:485 -#: src/view/screens/ProfileFeed.tsx:427 +#: src/view/screens/Profile.tsx:478 +#: src/view/screens/ProfileFeed.tsx:428 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:277 @@ -3712,7 +3769,7 @@ msgctxt "action" msgid "New Post" msgstr "Postingan baru" -#: src/components/NewskieDialog.tsx:71 +#: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "" @@ -3725,6 +3782,7 @@ msgid "Newest replies first" msgstr "Balasan terbaru terlebih dahulu" #: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:92 msgid "News" msgstr "Berita" @@ -3735,10 +3793,10 @@ msgstr "Berita" #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:258 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:195 -#: src/screens/StarterPack/Wizard/index.tsx:372 -#: src/screens/StarterPack/Wizard/index.tsx:379 +#: src/screens/StarterPack/Wizard/index.tsx:184 +#: src/screens/StarterPack/Wizard/index.tsx:188 +#: src/screens/StarterPack/Wizard/index.tsx:359 +#: src/screens/StarterPack/Wizard/index.tsx:366 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3762,7 +3820,7 @@ msgstr "Gambar berikutnya" msgid "No" msgstr "Tidak" -#: src/view/screens/ProfileFeed.tsx:560 +#: src/view/screens/ProfileFeed.tsx:562 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Tidak ada deskripsi" @@ -3776,7 +3834,7 @@ msgstr "Tanpa Panel DNS" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "GIF tidak ditemukan. Mungkin ada masalah dengan Tenor." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." msgstr "" @@ -3849,11 +3907,11 @@ msgstr "Tidak ada hasil pencarian yang ditemukan untuk \"{search}\"." msgid "No thanks" msgstr "Tidak terima kasih" -#: src/view/com/modals/Threadgate.tsx:85 +#: src/components/dialogs/ThreadgateEditor.tsx:108 msgid "Nobody" msgstr "Tak seorang pun" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Nobody can reply" msgstr "Tidak ada yang dapat membalas" @@ -3862,7 +3920,7 @@ msgstr "Tidak ada yang dapat membalas" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Belum ada yang menyukai ini. Mungkin Anda bisa jadi yang pertama!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -3875,7 +3933,7 @@ msgstr "Ketelanjangan Non-Seksual" #~ msgstr "" #: src/Navigation.tsx:117 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Tidak ditemukan" @@ -3890,7 +3948,7 @@ msgstr "Jangan sekarang" msgid "Note about sharing" msgstr "Catatan tentang berbagi" -#: src/screens/Moderation/index.tsx:540 +#: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Catatan: Bluesky merupakan jaringan terbuka dan publik. Pengaturan ini hanya akan membatasi visibilitas konten Anda pada aplikasi dan situs web Bluesky, dan aplikasi lain mungkin tidak menghormati pengaturan ini. Konten Anda mungkin tetap ditampilkan kepada pengguna yang tidak login oleh aplikasi dan website lain." @@ -3946,7 +4004,7 @@ msgstr "Matikan" msgid "Oh no!" msgstr "Oh tidak!" -#: src/screens/Onboarding/StepInterests/index.tsx:133 +#: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." msgstr "Oh tidak! Sepertinya ada yang salah." @@ -3982,7 +4040,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/view/com/threadgate/WhoCanReply.tsx:239 +#: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" msgstr "" @@ -3999,10 +4057,10 @@ msgid "Oops, something went wrong!" msgstr "Ups, sepertinya ada yang salah!" #: src/components/Lists.tsx:191 -#: src/components/StarterPack/ProfileStarterPacks.tsx:302 -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Uups!" @@ -4028,7 +4086,7 @@ msgstr "Buka opsi percakapan" msgid "Open emoji picker" msgstr "Buka pemilih emoji" -#: src/view/screens/ProfileFeed.tsx:295 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Open feed options menu" msgstr "Buka menu opsi feed" @@ -4040,7 +4098,7 @@ msgstr "Buka tautan dengan browser dalam aplikasi" msgid "Open message options" msgstr "Buka opsi pesan" -#: src/screens/Moderation/index.tsx:227 +#: src/screens/Moderation/index.tsx:230 msgid "Open muted words and tags settings" msgstr "Buka pengaturan kata dan tagar yang dibisukan" @@ -4052,7 +4110,7 @@ msgstr "Buka navigasi" msgid "Open post options menu" msgstr "Buka menu opsi postingan" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 msgid "Open starter pack menu" msgstr "" @@ -4069,6 +4127,10 @@ msgstr "Buka log sistem" msgid "Opens {numItems} options" msgstr "Membuka opsi {numItems}" +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" msgstr "Membuka pengaturan aksesibilitas" @@ -4211,7 +4273,7 @@ msgstr "Opsi {0} dari {numItems}" msgid "Optionally provide additional information below:" msgstr "Jika perlu, berikan informasi tambahan di bawah ini:" -#: src/view/com/modals/Threadgate.tsx:92 +#: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" msgstr "Atau gabungkan opsi-opsi berikut:" @@ -4271,7 +4333,6 @@ msgstr "Kata sandi diganti!" msgid "Pause" msgstr "Jeda" -#: src/screens/StarterPack/Wizard/index.tsx:194 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "Orang" @@ -4284,32 +4345,37 @@ msgstr "Orang yang diikuti oleh @{0}" msgid "People following @{0}" msgstr "Orang yang mengikuti @{0}" -#: src/view/com/lightbox/Lightbox.tsx:67 +#: src/view/com/lightbox/Lightbox.tsx:69 msgid "Permission to access camera roll is required." msgstr "Diperlukan izin untuk mengakses rol kamera." -#: src/view/com/lightbox/Lightbox.tsx:73 +#: src/view/com/lightbox/Lightbox.tsx:75 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." -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:93 msgid "Pets" msgstr "Hewan Peliharaan" +#: src/screens/Onboarding/state.ts:94 +msgid "Photography" +msgstr "" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "Gambar yang ditujukan untuk orang dewasa." -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Sematkan ke beranda" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 msgid "Pin to Home" msgstr "Sematkan ke Beranda" @@ -4405,6 +4471,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Harap tunggu hingga kartu tautan Anda selesai dimuat" #: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:95 msgid "Politics" msgstr "Politik" @@ -4468,7 +4535,7 @@ msgstr "Postingan tidak ditemukan" msgid "posts" msgstr "postingan" -#: src/view/screens/Profile.tsx:216 +#: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Postingan" @@ -4542,7 +4609,7 @@ msgid "Processing..." msgstr "Memproses..." #: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:353 +#: src/view/screens/Profile.tsx:346 msgid "profile" msgstr "profil" @@ -4582,15 +4649,15 @@ msgstr "Publikasikan postingan" msgid "Publish reply" msgstr "Publikasikan balasan" -#: src/components/StarterPack/QrCodeDialog.tsx:131 +#: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:109 +#: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:110 +#: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" msgstr "" @@ -4652,7 +4719,9 @@ msgid "Reload conversations" msgstr "Memuat ulang percakapan" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:325 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -4661,7 +4730,7 @@ msgstr "Memuat ulang percakapan" msgid "Remove" msgstr "Hapus" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" msgstr "" @@ -4693,13 +4762,13 @@ msgstr "Hapus feed?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:332 +#: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Hapus dari feed saya" -#: src/components/FeedCard.tsx:315 +#: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Hapus dari feed saya?" @@ -4747,7 +4816,7 @@ msgid "Removed from my feeds" msgstr "Dihapus dari feed saya" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "Dihapus dari feed Anda" @@ -4765,19 +4834,19 @@ msgstr "Hapus postingan yang dikutip" msgid "Replace with Discover" msgstr "Ganti dengan Discover" -#: src/view/screens/Profile.tsx:217 +#: src/view/screens/Profile.tsx:210 msgid "Replies" msgstr "Balasan" -#: src/view/com/threadgate/WhoCanReply.tsx:66 +#: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" msgstr "" #: src/view/com/threadgate/WhoCanReply.tsx:123 -msgid "Replies on this thread are disabled" -msgstr "" +#~ msgid "Replies on this thread are disabled" +#~ msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:237 +#: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "Balasan ke utas ini dinonaktifkan" @@ -4833,8 +4902,8 @@ msgstr "Laporkan percakapan" msgid "Report dialog" msgstr "Dialog laporan" -#: src/view/screens/ProfileFeed.tsx:348 -#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:351 msgid "Report feed" msgstr "Laporkan feed" @@ -4851,8 +4920,8 @@ msgstr "Laporkan pesan" msgid "Report post" msgstr "Laporkan postingan" -#: src/screens/StarterPack/StarterPackScreen.tsx:469 -#: src/screens/StarterPack/StarterPackScreen.tsx:472 +#: src/screens/StarterPack/StarterPackScreen.tsx:476 +#: src/screens/StarterPack/StarterPackScreen.tsx:479 msgid "Report starter pack" msgstr "" @@ -4898,7 +4967,7 @@ msgstr "Posting ulang" msgid "Repost" msgstr "Posting ulang" -#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:418 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4998,12 +5067,12 @@ msgstr "Coba kembali tindakan terakhir, yang gagal" #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 #: src/screens/Login/LoginForm.tsx:291 #: src/screens/Login/LoginForm.tsx:298 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/Onboarding/StepInterests/index.tsx:234 #: src/screens/Signup/index.tsx:245 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 @@ -5015,7 +5084,7 @@ msgstr "Ulangi" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:622 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Kembali ke halaman sebelumnya" @@ -5025,12 +5094,13 @@ msgid "Returns to home page" msgstr "Kembali ke beranda" #: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/ProfileFeed.tsx:113 msgid "Returns to previous page" msgstr "Kembali ke halaman sebelumnya" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/StarterPack/QrCodeDialog.tsx:190 +#: src/components/dialogs/ThreadgateEditor.tsx:88 +#: src/components/StarterPack/QrCodeDialog.tsx:184 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5039,7 +5109,7 @@ msgstr "Kembali ke halaman sebelumnya" msgid "Save" msgstr "Simpan" -#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/lightbox/Lightbox.tsx:135 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5061,8 +5131,8 @@ msgstr "Simpan Perubahan" msgid "Save handle change" msgstr "Simpan perubahan handle" -#: src/components/StarterPack/ShareDialog.tsx:163 -#: src/components/StarterPack/ShareDialog.tsx:170 +#: src/components/StarterPack/ShareDialog.tsx:150 +#: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" msgstr "" @@ -5070,12 +5140,12 @@ msgstr "" msgid "Save image crop" msgstr "Simpan potongan gambar" -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" msgstr "Simpan ke feed saya" @@ -5083,7 +5153,7 @@ msgstr "Simpan ke feed saya" msgid "Saved Feeds" msgstr "Feed Tersimpan" -#: src/view/com/lightbox/Lightbox.tsx:82 +#: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" msgstr "Disimpan ke rol kamera Anda" @@ -5091,7 +5161,7 @@ msgstr "Disimpan ke rol kamera Anda" #~ msgid "Saved to your camera roll." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "Disimpan ke feed Anda" @@ -5109,13 +5179,14 @@ msgid "Saves image crop settings" msgstr "Menyimpan pengaturan pemangkasan gambar" #: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:82 +#: src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:372 #: src/view/com/notifications/FeedItem.tsx:397 msgid "Say hello!" msgstr "Katakan halo!" #: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:96 msgid "Science" msgstr "Sains" @@ -5157,7 +5228,7 @@ msgstr "Cari semua postingan dari @{authorHandle} dengan tagar {displayTag}" msgid "Search for all posts with tag {displayTag}" msgstr "Cari semua postingan dengan tagar {displayTag}" -#: src/screens/StarterPack/Wizard/index.tsx:467 +#: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -5299,7 +5370,7 @@ msgstr "Pilih bahasa untuk teks default yang akan ditampilkan dalam aplikasi." msgid "Select your date of birth" msgstr "Pilih tanggal lahir Anda" -#: src/screens/Onboarding/StepInterests/index.tsx:201 +#: src/screens/Onboarding/StepInterests/index.tsx:206 msgid "Select your interests from the options below" msgstr "Pilih minat Anda dari opsi di bawah ini" @@ -5376,7 +5447,7 @@ msgstr "Kirim email dengan kode konfirmasi untuk penghapusan akun" msgid "Server address" msgstr "Alamat server" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:307 msgid "Set birthdate" msgstr "Atur tanggal lahir" @@ -5464,9 +5535,9 @@ msgstr "Aktivitas seksual atau ketelanjangan erotis." msgid "Sexually Suggestive" msgstr "Bermuatan Seksual" -#: src/components/StarterPack/QrCodeDialog.tsx:180 -#: src/screens/StarterPack/StarterPackScreen.tsx:303 -#: src/screens/StarterPack/StarterPackScreen.tsx:458 +#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/screens/StarterPack/StarterPackScreen.tsx:312 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5476,7 +5547,7 @@ msgstr "Bermuatan Seksual" msgid "Share" msgstr "Bagikan" -#: src/view/com/lightbox/Lightbox.tsx:142 +#: src/view/com/lightbox/Lightbox.tsx:144 msgctxt "action" msgid "Share" msgstr "Bagikan" @@ -5495,30 +5566,36 @@ msgstr "Bagikan fakta menarik!" msgid "Share anyway" msgstr "Tetap bagikan" -#: src/view/screens/ProfileFeed.tsx:358 -#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:361 msgid "Share feed" msgstr "Bagikan feed" -#: src/screens/StarterPack/StarterPackScreen.tsx:462 +#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/screens/StarterPack/StarterPackScreen.tsx:469 msgid "Share link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "Bagikan Tautan" -#: src/components/StarterPack/ShareDialog.tsx:100 +#: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:296 +#: src/components/StarterPack/ShareDialog.tsx:134 +#: src/components/StarterPack/ShareDialog.tsx:145 +msgid "Share QR code" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:305 msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:112 +#: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5572,7 +5649,7 @@ msgstr "" msgid "Show less like this" msgstr "Tampilkan lebih sedikit" -#: src/view/com/post-thread/PostThreadItem.tsx:533 +#: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" @@ -5732,33 +5809,33 @@ msgstr "Masuk sebagai @{0}" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:240 -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Lewati" -#: src/screens/Onboarding/StepInterests/index.tsx:237 +#: src/screens/Onboarding/StepInterests/index.tsx:242 msgid "Skip this flow" msgstr "Lewati tahap ini" #: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:85 msgid "Software Dev" msgstr "Pengembang Perangkat Lunak" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 -#: src/view/com/threadgate/WhoCanReply.tsx:67 -#: src/view/com/threadgate/WhoCanReply.tsx:124 +#: src/components/WhoCanReply.tsx:72 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "Beberapa orang dapat membalas" #: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "" +#~ msgid "Some subtitle" +#~ msgstr "" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -5770,7 +5847,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 +#: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Terjadi kesalahan, silakan coba lagi." @@ -5806,6 +5883,7 @@ msgid "Spam; excessive mentions or replies" msgstr "Spam; menyebut atau membalas secara berlebihan" #: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:97 msgid "Sports" msgstr "Olahraga" @@ -5827,7 +5905,7 @@ msgstr "Mulai mengobrol" #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -5835,14 +5913,18 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:214 msgid "Starter Packs" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + #: src/view/screens/Settings/index.tsx:862 #~ msgid "Status page" #~ msgstr "" @@ -5960,6 +6042,7 @@ msgid "Tap to view fully" msgstr "Ketuk untuk melihat sepenuhnya" #: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:98 msgid "Tech" msgstr "Teknologi" @@ -6012,10 +6095,10 @@ msgstr "Berisi hal berikut:" msgid "That handle is already taken." msgstr "Handle telah terpakai." -#: src/screens/StarterPack/StarterPackScreen.tsx:100 -#: src/screens/StarterPack/StarterPackScreen.tsx:101 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:102 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/Wizard/index.tsx:106 +#: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." msgstr "" @@ -6036,7 +6119,7 @@ msgstr "Panduan Komunitas telah dipindahkan ke <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "Kebijakan Hak Cipta telah dipindahkan ke <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6065,7 +6148,7 @@ msgstr "Postingan mungkin telah dihapus." msgid "The Privacy Policy has been moved to <0/>" msgstr "Kebijakan Privasi telah dipindahkan ke <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:589 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6086,7 +6169,7 @@ 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:542 +#: src/view/screens/ProfileFeed.tsx:544 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." @@ -6096,7 +6179,7 @@ msgstr "Ada masalah saat menghapus feed ini. Periksa koneksi internet Anda dan c #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: 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." @@ -6109,7 +6192,7 @@ msgstr "Ada masalah saat menghubungkan ke Tenor." #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:233 +#: src/view/screens/ProfileFeed.tsx:234 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6167,6 +6250,7 @@ msgstr "Ada masalah dengan pengambilan kata sandi aplikasi Anda" msgid "There was an issue! {0}" msgstr "Ada masalah! {0}" +#: src/components/WhoCanReply.tsx:116 #: src/view/screens/ProfileList.tsx:335 #: src/view/screens/ProfileList.tsx:349 #: src/view/screens/ProfileList.tsx:363 @@ -6259,7 +6343,7 @@ msgstr "Feed ini sedang menerima terlalu banyak trafik dan sementara tidak terse msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "Feed ini kosong! Anda mungkin perlu mengikuti lebih banyak pengguna atau menyesuaikan pengaturan bahasa Anda." -#: src/view/screens/ProfileFeed.tsx:472 +#: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" @@ -6366,7 +6450,7 @@ msgstr "Pengguna ini termasuk dalam daftar <0>{0} yang telah Anda blokir" msgid "This user is included in the <0>{0} list which you have muted." msgstr "Pengguna ini termasuk dalam daftar <0>{0} yang telah Anda bisukan" -#: src/components/NewskieDialog.tsx:53 +#: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." msgstr "" @@ -6391,6 +6475,10 @@ msgstr "Preferensi utasan" msgid "Thread Preferences" msgstr "Preferensi Utasan" +#: src/components/WhoCanReply.tsx:109 +msgid "Thread settings updated" +msgstr "" + #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "Mode Utasan" @@ -6419,7 +6507,7 @@ msgstr "Beralih antara opsi kata yang dibisukan." msgid "Toggle dropdown" msgstr "Beralih dropdown" -#: src/screens/Moderation/index.tsx:332 +#: src/screens/Moderation/index.tsx:336 msgid "Toggle to enable or disable adult content" msgstr "Beralih untuk mengaktifkan atau menonaktifkan konten dewasa" @@ -6434,8 +6522,8 @@ msgstr "Transformasi" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: 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 msgid "Translate" @@ -6446,6 +6534,10 @@ msgctxt "action" msgid "Try again" msgstr "Coba lagi" +#: src/screens/Onboarding/state.ts:99 +msgid "TV" +msgstr "" + #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" msgstr "Autentikasi dua faktor" @@ -6475,7 +6567,7 @@ msgstr "Bunyikan daftar" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Tidak dapat terhubung ke layanan. Mohon periksa koneksi internet Anda." -#: src/screens/StarterPack/StarterPackScreen.tsx:513 +#: src/screens/StarterPack/StarterPackScreen.tsx:520 msgid "Unable to delete" msgstr "" @@ -6538,7 +6630,7 @@ msgstr "Batal Ikuti Akun" #~ msgid "Unlike" #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Unlike this feed" msgstr "Batalkan suka feed ini" @@ -6573,12 +6665,12 @@ msgstr "Bunyikan percakapan" msgid "Unmute thread" msgstr "Bunyikan utasan" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Lepas sematan" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 msgid "Unpin from home" msgstr "Lepaskan sematan dari beranda" @@ -6748,7 +6840,7 @@ msgstr "Nama pengguna atau alamat email" msgid "Users" msgstr "Pengguna" -#: src/view/com/threadgate/WhoCanReply.tsx:274 +#: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" msgstr "pengguna yang diikuti <0/>" @@ -6759,7 +6851,7 @@ msgstr "pengguna yang diikuti <0/>" msgid "Users I follow" msgstr "Pengguna yang saya ikuti" -#: src/view/com/modals/Threadgate.tsx:109 +#: src/components/dialogs/ThreadgateEditor.tsx:132 msgid "Users in \"{0}\"" msgstr "Pengguna di \"{0}\"" @@ -6813,6 +6905,7 @@ msgid "Version {appVersion} {bundleInfo}" msgstr "Versi {appVersion} {bundleInfo}" #: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:88 msgid "Video Games" msgstr "Permainan Video" @@ -6864,7 +6957,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:583 +#: src/view/screens/ProfileFeed.tsx:585 msgid "View users who like this feed" msgstr "Lihat pengguna yang menyukai feed ini" @@ -6924,11 +7017,11 @@ msgstr "Sebaiknya hindari kata-kata umum yang muncul dalam postingan, karena dap msgid "We were unable to load your birth date preferences. Please try again." msgstr "Kami tidak dapat memuat preferensi tanggal lahir Anda. Silakan coba lagi." -#: src/screens/Moderation/index.tsx:385 +#: src/screens/Moderation/index.tsx:409 msgid "We were unable to load your configured labelers at this time." msgstr "Kami tidak dapat memuat pelabel yang Anda konfigurasikan saat ini." -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:143 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Sepertinya ada masalah koneksi. Mohon coba lagi untuk melanjutkan pengaturan akun Anda. Jika terus gagal, Anda dapat melewati langkah ini." @@ -6936,7 +7029,7 @@ msgstr "Sepertinya ada masalah koneksi. Mohon coba lagi untuk melanjutkan pengat msgid "We will let you know when your account is ready." msgstr "Kami akan memberi tahu Anda ketika akun Anda siap." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:148 msgid "We'll use this to help customize your experience." msgstr "Kami akan menggunakan ini untuk menyesuaikan pengalaman Anda." @@ -6985,7 +7078,11 @@ msgstr "" #~ msgid "Welcome to <0>Bluesky" #~ msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:135 +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" msgstr "Apa saja minat Anda?" @@ -7012,17 +7109,15 @@ msgstr "Bahasa apa yang ingin Anda lihat di feed Anda?" msgid "Who can message you?" msgstr "Siapa yang dapat mengirim pesan kepada Anda?" -#: src/view/com/modals/Threadgate.tsx:69 -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Who can reply" msgstr "Siapa yang dapat membalas" -#: src/view/com/threadgate/WhoCanReply.tsx:206 +#: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:210 +#: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" msgstr "" @@ -7078,6 +7173,7 @@ msgid "Write your reply" msgstr "Tulis balasan Anda" #: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:100 msgid "Writers" msgstr "Penulis" @@ -7096,7 +7192,7 @@ msgstr "Ya" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:525 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Yes, delete this starter pack" msgstr "" @@ -7112,6 +7208,10 @@ msgstr "Kemarin, {time}" msgid "you" msgstr "" +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + #: src/screens/SignupQueued.tsx:136 msgid "You are in line." msgstr "Anda sedang dalam antrian." @@ -7245,6 +7345,10 @@ msgstr "Anda belum membisukan akun apa pun. Untuk membisukan akun, buka profil m msgid "You have reached the end" msgstr "Anda telah mencapai akhir" +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +msgid "You haven't created a starter pack yet!" +msgstr "" + #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "Anda belum membisukan kata atau tagar apa pun" @@ -7273,15 +7377,15 @@ msgstr "Anda harus berusia 13 tahun atau lebih untuk mendaftar." #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Anda harus berusia 18 tahun atau lebih untuk mengaktifkan konten dewasa" -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:62 +#: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." msgstr "" @@ -7333,7 +7437,7 @@ msgstr "" msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po index 809c4e2b0c..87de3885d2 100644 --- a/src/locale/locales/it/messages.po +++ b/src/locale/locales/it/messages.po @@ -63,7 +63,7 @@ msgstr "" msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:215 +#: src/components/FeedCard.tsx:216 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -90,7 +90,11 @@ msgstr "" #~ msgid "{0} {purposeLabel} List" #~ msgstr "Lista {purposeLabel} {0}" -#: src/screens/StarterPack/StarterPackScreen.tsx:343 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +msgid "{0} joined this week" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:350 msgid "{0} people have used this starter pack!" msgstr "" @@ -133,7 +137,7 @@ msgstr "" msgid "{diffSeconds, plural, one {second} other {seconds}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" msgstr "" @@ -165,7 +169,7 @@ 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:586 +#: src/view/screens/ProfileFeed.tsx:588 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -176,11 +180,11 @@ msgstr "" msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} non letto" -#: src/components/NewskieDialog.tsx:92 +#: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" msgstr "" -#: src/components/NewskieDialog.tsx:87 +#: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "" @@ -188,17 +192,27 @@ msgstr "" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:290 +#: src/components/WhoCanReply.tsx:295 msgid "<0/> members" msgstr "<0/> membri" #: src/screens/StarterPack/Wizard/index.tsx:485 -msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +#~ 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 "" + +#: 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 "" +#~ 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 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -208,10 +222,14 @@ msgstr "" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:507 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + #~ msgid "<0>{0} following" #~ msgstr "<0>{0} following" -#: src/screens/StarterPack/Wizard/index.tsx:478 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -234,6 +252,10 @@ msgstr "<0>Non applicabile. Questo avviso è disponibile solo per i post che #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "<0>Ti diamo il benvenuto su<1>Bluesky" +#: src/screens/StarterPack/Wizard/index.tsx:457 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠Nome utente non valido" @@ -329,11 +351,11 @@ msgstr "Account non silenziato" msgid "Add" msgstr "Aggiungi" -#: src/screens/StarterPack/Wizard/index.tsx:539 +#: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:56 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" msgstr "" @@ -391,14 +413,14 @@ msgid "Add muted words and tags" msgstr "Aggiungi parole silenziate e tags" #: src/screens/StarterPack/Wizard/index.tsx:197 -msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "" +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "Aggiungi feed raccomandati" -#: src/screens/StarterPack/Wizard/index.tsx:464 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" msgstr "" @@ -410,7 +432,7 @@ msgstr "Aggiungi il feed predefinito delle sole persone che segui" msgid "Add the following DNS record to your domain:" msgstr "Aggiungi il seguente record DNS al tuo dominio:" -#: src/components/FeedCard.tsx:300 +#: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" msgstr "" @@ -447,16 +469,20 @@ msgstr "Contenuto per adulti" #~ msgid "Adult content can only be enabled via the Web at <0/>." #~ msgstr "I contenuti per adulti possono essere abilitati solo dal sito Web a <0/>." +#: src/screens/Moderation/index.tsx:356 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "Il contenuto per adulti è disattivato." -#: src/screens/Moderation/index.tsx:375 +#: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "Avanzato" -#: src/screens/StarterPack/StarterPackScreen.tsx:271 +#: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "All accounts have been followed!" msgstr "" @@ -520,23 +546,23 @@ msgstr "Una email è stata inviata al tuo indirizzo precedente, {0}. Include un msgid "An error occured" msgstr "Si è verificato un errore" -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +#: 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 "" +#~ msgid "An error occurred while saving the image." +#~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:76 -#: src/components/StarterPack/ShareDialog.tsx:91 +#: src/components/StarterPack/QrCodeDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "È avvenuto un errore durante la cancellazione del messaggio. Riprovare un altra volta" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:275 msgid "An error occurred while trying to follow all" msgstr "" @@ -553,16 +579,17 @@ msgstr "Un problema non incluso in queste opzioni" msgid "An issue occurred, please try again." msgstr "Si è verificato un problema, riprova un'altra volta." -#: src/screens/Onboarding/StepInterests/index.tsx:194 +#: src/screens/Onboarding/StepInterests/index.tsx:199 msgid "an unknown error occurred" msgstr "si è verificato un errore sconosciuto" +#: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:280 -#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "e" #: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:79 msgid "Animals" msgstr "Animali" @@ -648,7 +675,7 @@ msgstr "Aspetto" msgid "Apply default recommended feeds" msgstr "Applica i feed raccomandati predefiniti" -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -672,7 +699,7 @@ msgstr "Sei sicuro di voler abbandonare questa conversazione? I messaggi verrann msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Confermi di voler rimuovere {0} dai tuoi feed?" -#: src/components/FeedCard.tsx:317 +#: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -692,6 +719,7 @@ msgid "Are you writing in <0>{0}?" msgstr "Stai scrivendo in <0>{0}?" #: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:80 msgid "Art" msgstr "Arte" @@ -718,7 +746,7 @@ msgstr "Almeno 3 caratteri" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:312 +#: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Indietro" @@ -782,7 +810,7 @@ msgstr "Vuoi bloccare questi accounts?" msgid "Blocked" msgstr "Bloccato" -#: src/screens/Moderation/index.tsx:267 +#: src/screens/Moderation/index.tsx:270 msgid "Blocked accounts" msgstr "Accounts bloccati" @@ -840,11 +868,11 @@ msgstr "Bluesky è un network aperto in cui puoi scegliere il tuo provider di ho #~ msgid "Bluesky uses invites to build a healthier community. If you don't know anybody with an invite, you can sign up for the waitlist and we'll send one soon." #~ msgstr "Bluesky utilizza gli inviti per costruire una comunità più sana. Se non conosci nessuno con un invito, puoi iscriverti alla lista d'attesa e te ne invieremo uno al più presto." -#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:533 +#: 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 non mostrerà il tuo profilo e i tuoi post agli utenti non loggati. Altre applicazioni potrebbero non rispettare questa istruzione. Ciò non rende il tuo account privato." @@ -860,6 +888,7 @@ msgid "Blur images and filter from feeds" msgstr "Sfoca le immagini e filtra dai feed" #: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:81 msgid "Books" msgstr "Libri" @@ -1081,16 +1110,24 @@ msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "Controlla la tua posta in arrivo, dovrebbe contenere un'e-mail con il codice di conferma da inserire di seguito:" #: src/view/com/modals/Threadgate.tsx:75 -msgid "Choose \"Everybody\" or \"Nobody\"" -msgstr "Scegli \"Tutti\" o \"Nessuno\"" +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "Scegli \"Tutti\" o \"Nessuno\"" #~ msgid "Choose a new Bluesky username or create" #~ msgstr "Scegli un nuovo nome utente Bluesky o creane uno" -#: src/components/StarterPack/ProfileStarterPacks.tsx:288 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:187 +msgid "Choose People" +msgstr "" + #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Scegli il servizio" @@ -1106,6 +1143,11 @@ msgstr "Scegli gli algoritmi che compilano i tuoi feed personalizzati." msgid "Choose this color as your avatar" msgstr "Scegli questo colore per il tuo 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 "Scegli i tuoi feed principali" @@ -1181,18 +1223,18 @@ msgstr "" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/NewskieDialog.tsx:120 -#: src/components/NewskieDialog.tsx:127 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:121 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:127 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: 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:189 msgid "Close" msgstr "Chiudi" -#: src/components/Dialog/index.web.tsx:113 -#: src/components/Dialog/index.web.tsx:251 +#: src/components/Dialog/index.web.tsx:116 +#: src/components/Dialog/index.web.tsx:254 msgid "Close active dialog" msgstr "Chiudi la finestra attiva" @@ -1259,10 +1301,12 @@ msgid "Collapses list of users for a given notification" msgstr "Comprime l'elenco degli utenti per una determinata notifica" #: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:82 msgid "Comedy" msgstr "Commedia" #: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:83 msgid "Comics" msgstr "Fumetti" @@ -1331,11 +1375,11 @@ msgstr "Conferma l'eliminazione dell'account" #~ msgid "Confirm your age to enable adult content." #~ msgstr "Conferma la tua età per abilitare i contenuti per adulti." -#: src/screens/Moderation/index.tsx:301 +#: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "Conferma la tua età:" -#: src/screens/Moderation/index.tsx:292 +#: src/screens/Moderation/index.tsx:295 msgid "Confirm your birthdate" msgstr "Conferma la tua data di nascita" @@ -1373,7 +1417,7 @@ msgstr "Contenuto Bloccato" #~ msgid "Content Filtering" #~ msgstr "Filtro dei Contenuti" -#: src/screens/Moderation/index.tsx:285 +#: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "Filtri dei contenuti" @@ -1402,7 +1446,7 @@ msgstr "Avviso sui contenuti" msgid "Context menu backdrop, click to close the menu." msgstr "Sfondo del menu contestuale, clicca per chiudere il menu." -#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepInterests/index.tsx:258 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Continua" @@ -1415,7 +1459,7 @@ msgstr "Continua come {0} (attualmente connesso)" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:251 msgid "Continue to next step" @@ -1463,7 +1507,7 @@ msgstr "Copiato!" msgid "Copies app password" msgstr "Copia la password dell'app" -#: src/components/StarterPack/QrCodeDialog.tsx:180 +#: src/components/StarterPack/QrCodeDialog.tsx:174 #: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Copia" @@ -1477,7 +1521,11 @@ msgstr "Copia {0}" msgid "Copy code" msgstr "Copia il codice" -#: src/components/StarterPack/ShareDialog.tsx:143 +#: src/components/StarterPack/ShareDialog.tsx:123 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" msgstr "" @@ -1503,7 +1551,7 @@ msgstr "Copia il testo del messaggio" msgid "Copy post text" msgstr "Copia il testo del post" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" msgstr "" @@ -1516,7 +1564,7 @@ msgstr "Politica sul diritto d'autore" msgid "Could not leave chat" msgstr "Errore nell'abbandonare la conversione" -#: src/view/screens/ProfileFeed.tsx:102 +#: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" msgstr "Feed non caricato" @@ -1535,7 +1583,7 @@ msgstr "Errore nel silenziare la conversazione" #~ msgid "Country" #~ msgstr "Paese" -#: src/components/StarterPack/ProfileStarterPacks.tsx:270 +#: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" msgstr "" @@ -1548,17 +1596,17 @@ msgstr "Crea un nuovo account" msgid "Create a new Bluesky account" msgstr "Crea un nuovo Bluesky account" -#: src/components/StarterPack/QrCodeDialog.tsx:157 +#: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:257 +#: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +#: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" msgstr "" @@ -1589,8 +1637,8 @@ msgid "Create new account" msgstr "Crea un nuovo account" #: src/components/StarterPack/ShareDialog.tsx:158 -msgid "Create QR code" -msgstr "" +#~ msgid "Create QR code" +#~ msgstr "" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1610,6 +1658,7 @@ msgstr "Creato {0}" #~ msgstr "Crea una scheda con una miniatura. La scheda si collega a {url}" #: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:84 msgid "Culture" msgstr "Cultura" @@ -1669,9 +1718,9 @@ msgid "Debug panel" msgstr "Pannello per il debug" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:449 -#: src/screens/StarterPack/StarterPackScreen.tsx:528 -#: src/screens/StarterPack/StarterPackScreen.tsx:608 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1734,12 +1783,12 @@ msgstr "Cancellare Account…" msgid "Delete post" msgstr "Elimina il post" -#: src/screens/StarterPack/StarterPackScreen.tsx:443 -#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:450 +#: src/screens/StarterPack/StarterPackScreen.tsx:606 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:494 +#: src/screens/StarterPack/StarterPackScreen.tsx:501 msgid "Delete starter pack?" msgstr "" @@ -1809,7 +1858,7 @@ msgstr "Disattiva il feedback tattile" #: src/lib/moderation/useLabelBehaviorDescription.ts:68 #: src/screens/Messages/Settings.tsx:140 #: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:341 +#: src/screens/Moderation/index.tsx:346 msgid "Disabled" msgstr "Disabilitato" @@ -1824,8 +1873,8 @@ msgstr "Scartare" msgid "Discard draft?" msgstr "Scartare la bozza?" -#: src/screens/Moderation/index.tsx:518 -#: src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:542 +#: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" msgstr "Scoraggia le app dal mostrare il mio account agli utenti disconnessi" @@ -1879,6 +1928,7 @@ msgstr "Dominio verificato!" #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/ThreadgateEditor.tsx:88 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 @@ -1898,8 +1948,6 @@ msgstr "Fatto" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 #: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/Threadgate.tsx:136 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 #: src/view/screens/PreferencesThreads.tsx:162 @@ -1914,7 +1962,7 @@ msgstr "Fatto{extraText}" #~ msgid "Double tap to sign in" #~ msgstr "Usa il doppio tocco per accedere" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 msgid "Download Bluesky" msgstr "" @@ -1974,9 +2022,9 @@ msgstr "e.g. Utenti che rispondono ripetutamente con annunci." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Ogni codice funziona per un solo uso. Riceverai periodicamente più codici di invito." -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:522 -#: src/screens/StarterPack/Wizard/index.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" @@ -1992,7 +2040,7 @@ msgstr "Modifica" msgid "Edit avatar" msgstr "Modifica l'avatar" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "" @@ -2020,7 +2068,7 @@ msgstr "Modifica i miei feed" msgid "Edit my profile" msgstr "Modifica il mio profilo" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "" @@ -2039,7 +2087,7 @@ msgstr "Modifica il Profilo" #~ msgid "Edit Saved Feeds" #~ msgstr "Modifica i feed memorizzati" -#: src/screens/StarterPack/StarterPackScreen.tsx:430 +#: src/screens/StarterPack/StarterPackScreen.tsx:437 msgid "Edit starter pack" msgstr "" @@ -2047,8 +2095,7 @@ msgstr "" msgid "Edit User List" msgstr "Modifica l'elenco degli utenti" -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" msgstr "" @@ -2065,9 +2112,14 @@ msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:86 msgid "Education" msgstr "Formazione scolastica" +#: src/components/dialogs/ThreadgateEditor.tsx:98 +msgid "Either choose \"Everybody\" or \"Nobody\"" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" @@ -2116,7 +2168,7 @@ msgstr "Incorpora questo post nel tuo sito web. Copia il seguente ritaglio e inc msgid "Enable {0} only" msgstr "Attiva {0} solo" -#: src/screens/Moderation/index.tsx:329 +#: src/screens/Moderation/index.tsx:333 msgid "Enable adult content" msgstr "Attiva il contenuto per adulti" @@ -2151,7 +2203,7 @@ msgstr "Abilita solo questa fonte" #: src/screens/Messages/Settings.tsx:131 #: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:339 +#: src/screens/Moderation/index.tsx:344 msgid "Enabled" msgstr "Abilitato" @@ -2226,19 +2278,18 @@ msgstr "Un errore è avvenuto durante il salvataggio del file" msgid "Error receiving captcha response." msgstr "Errore nella risposta del captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Errore:" -#: src/view/com/modals/Threadgate.tsx:79 +#: src/components/dialogs/ThreadgateEditor.tsx:102 msgid "Everybody" msgstr "Tutti" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#: src/view/com/threadgate/WhoCanReply.tsx:64 -#: src/view/com/threadgate/WhoCanReply.tsx:121 -#: src/view/com/threadgate/WhoCanReply.tsx:235 +#: src/components/WhoCanReply.tsx:69 +#: src/components/WhoCanReply.tsx:240 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "Tutti possono rispondere" @@ -2336,8 +2387,8 @@ msgstr "Impostazioni multimediali esterni" msgid "Failed to create app password." msgstr "Impossibile creare la password dell'app." -#: src/screens/StarterPack/Wizard/index.tsx:241 -#: src/screens/StarterPack/Wizard/index.tsx:249 +#: src/screens/StarterPack/Wizard/index.tsx:230 +#: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" msgstr "" @@ -2353,7 +2404,7 @@ msgstr "Errore nel cancellare il messaggio" msgid "Failed to delete post, please try again" msgstr "Non possiamo eliminare il post, riprova di nuovo" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/StarterPackScreen.tsx:569 msgid "Failed to delete starter pack" msgstr "" @@ -2383,7 +2434,7 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" msgstr "Non è possibile salvare l'immagine: {0}" @@ -2400,7 +2451,7 @@ msgstr "Errore nel invio dell'appello, si prega di riprovare." msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:280 +#: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "" @@ -2425,7 +2476,7 @@ msgstr "Feed fatto da {0}" #~ msgid "Feed Preferences" #~ msgstr "Preferenze del feed" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "" @@ -2435,10 +2486,9 @@ msgid "Feedback" msgstr "Commenti" #: src/Navigation.tsx:320 -#: src/screens/StarterPack/Wizard/index.tsx:201 #: src/view/screens/Feeds.tsx:445 #: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:220 +#: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:373 #: src/view/shell/Drawer.tsx:493 @@ -2457,7 +2507,7 @@ msgstr "I feed sono algoritmi personalizzati che gli utenti creano con un minimo #~ msgid "Feeds can be topical as well!" #~ msgstr "I feed possono anche avere tematiche!" -#: src/components/FeedCard.tsx:277 +#: src/components/FeedCard.tsx:282 msgid "Feeds updated!" msgstr "" @@ -2507,7 +2557,7 @@ msgstr "Ottimizza il contenuto che vedi nel tuo Following feed." msgid "Fine-tune the discussion threads." msgstr "Ottimizza i la visualizzazione delle discussioni." -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" msgstr "" @@ -2555,8 +2605,8 @@ msgstr "" msgid "Follow Account" msgstr "Segui l'Account" -#: src/screens/StarterPack/StarterPackScreen.tsx:308 -#: src/screens/StarterPack/StarterPackScreen.tsx:315 +#: src/screens/StarterPack/StarterPackScreen.tsx:317 +#: src/screens/StarterPack/StarterPackScreen.tsx:324 msgid "Follow all" msgstr "" @@ -2603,7 +2653,7 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/view/com/modals/Threadgate.tsx:101 +#: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" msgstr "Utenti seguiti" @@ -2670,6 +2720,7 @@ msgid "Follows You" msgstr "Ti Segue" #: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:87 msgid "Food" msgstr "Gastronomia" @@ -2717,7 +2768,7 @@ msgstr "Da <0/>" msgid "Gallery" msgstr "Galleria" -#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" msgstr "" @@ -2747,7 +2798,7 @@ msgstr "Evidenti violazioni della legge o dei termini di servizio" #: src/view/com/auth/LoggedOut.tsx:78 #: src/view/com/auth/LoggedOut.tsx:79 #: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:133 msgid "Go back" @@ -2756,9 +2807,9 @@ msgstr "Torna indietro" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:628 #: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Torna Indietro" @@ -2772,7 +2823,7 @@ msgstr "Torna Indietro" msgid "Go back to previous step" msgstr "Torna al passaggio precedente" -#: src/screens/StarterPack/Wizard/index.tsx:313 +#: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" msgstr "" @@ -2914,7 +2965,7 @@ msgstr "Il server del feed ha dato una risposta negativa. Informa il proprietari msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Stiamo riscontrando problemi nel trovare questo feed. Potrebbe essere stato cancellato." -#: src/screens/Moderation/index.tsx:59 +#: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Stiamo riscontrando problemi nel trovare questi dati. Guarda PI[U giù per trovare più dettagli. Se il problema continua mettiti in contatto." @@ -3014,7 +3065,7 @@ msgstr "Testo alternativo dell'immagine" #~ msgid "Image options" #~ msgstr "Opzioni per l'immagine" -#: src/components/StarterPack/ShareDialog.tsx:88 +#: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" msgstr "" @@ -3128,7 +3179,7 @@ msgstr "Codici di invito: {0} disponibili" msgid "Invite codes: 1 available" msgstr "Codici di invito: 1 disponibile" -#: src/components/StarterPack/ShareDialog.tsx:109 +#: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" msgstr "" @@ -3144,7 +3195,7 @@ msgstr "" #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "Mostra i post delle persone che segui." -#: src/screens/StarterPack/Wizard/index.tsx:473 +#: 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 "" @@ -3152,8 +3203,8 @@ msgstr "" msgid "Jobs" msgstr "Lavori" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 msgid "Join Bluesky" msgstr "" @@ -3171,6 +3222,7 @@ msgstr "" #~ msgstr "Iscriviti alla Lista d'Attesa" #: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:89 msgid "Journalism" msgstr "Giornalismo" @@ -3185,7 +3237,7 @@ msgstr "Etichettato da {0}." msgid "Labeled by the author." msgstr "Etichettato dall'autore." -#: src/view/screens/Profile.tsx:214 +#: src/view/screens/Profile.tsx:207 msgid "Labels" msgstr "Etichette" @@ -3246,7 +3298,7 @@ msgstr "Scopri di più sulla moderazione applicata a questo contenuto." msgid "Learn more about this warning" msgstr "Ulteriori informazioni su questo avviso" -#: src/screens/Moderation/index.tsx:549 +#: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." msgstr "Scopri cosa è pubblico su Bluesky." @@ -3287,7 +3339,7 @@ msgstr "mancano." msgid "Legacy storage cleared, you need to restart the app now." msgstr "L'archivio legacy è stato cancellato, riattiva la app." -#: src/components/StarterPack/ProfileStarterPacks.tsx:293 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" msgstr "" @@ -3311,7 +3363,7 @@ msgstr "Chiaro" #~ msgstr "Mi piace" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Metti mi piace a questo feed" @@ -3347,7 +3399,7 @@ msgstr "piace il tuo feed personalizzato" msgid "liked your post" msgstr "piace il tuo post" -#: src/view/screens/Profile.tsx:219 +#: src/view/screens/Profile.tsx:212 msgid "Likes" msgstr "Mi piace" @@ -3393,8 +3445,8 @@ msgid "List unmuted" msgstr "Lista non mutata" #: src/Navigation.tsx:122 +#: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/screens/Profile.tsx:222 #: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 @@ -3426,7 +3478,7 @@ msgstr "Carica più notifiche" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:493 +#: src/view/screens/ProfileFeed.tsx:494 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Carica nuovi posts" @@ -3454,7 +3506,7 @@ msgstr "" msgid "Log out" msgstr "Disconnetta l'account" -#: src/screens/Moderation/index.tsx:442 +#: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" msgstr "Visibilità degli utenti disconnessi" @@ -3485,7 +3537,7 @@ msgstr "Sembra che tu non abbia più feed fissati. Ma non ti preoccupare, puoi a msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "Sembra che ti manchi un following feed. <0>Clicca qui per aggiungere uno." -#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +#: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" msgstr "" @@ -3509,15 +3561,15 @@ msgstr "Segna come letto" #~ msgstr "Può contenere solo lettere e numeri" #: src/view/screens/AccessibilitySettings.tsx:102 -#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:211 msgid "Media" msgstr "Media" -#: src/view/com/threadgate/WhoCanReply.tsx:270 +#: src/components/WhoCanReply.tsx:275 msgid "mentioned users" msgstr "utenti menzionati" -#: src/view/com/modals/Threadgate.tsx:96 +#: src/components/dialogs/ThreadgateEditor.tsx:119 msgid "Mentioned users" msgstr "Utenti menzionati" @@ -3567,7 +3619,7 @@ msgid "Misleading Account" msgstr "Account Ingannevole" #: src/Navigation.tsx:127 -#: src/screens/Moderation/index.tsx:104 +#: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "Moderazione" @@ -3600,7 +3652,7 @@ msgstr "Lista di moderazione creata" msgid "Moderation list updated" msgstr "Lista di moderazione aggiornata" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:246 msgid "Moderation lists" msgstr "Liste di moderazione" @@ -3617,7 +3669,7 @@ msgstr "Impostazioni di moderazione" msgid "Moderation states" msgstr "Stati di moderazione" -#: src/screens/Moderation/index.tsx:215 +#: src/screens/Moderation/index.tsx:218 msgid "Moderation tools" msgstr "Strumenti di moderazione" @@ -3626,7 +3678,7 @@ msgstr "Strumenti di moderazione" msgid "Moderator has chosen to set a general warning on the content." msgstr "Il moderatore ha scelto di mettere un avviso generale sul contenuto." -#: src/view/com/post-thread/PostThreadItem.tsx:567 +#: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" msgstr "Di più" @@ -3645,6 +3697,10 @@ msgstr "Altre opzioni" msgid "Most-liked replies first" msgstr "Dai priorità alle risposte con più likes" +#: src/screens/Onboarding/state.ts:90 +msgid "Movies" +msgstr "" + #~ msgid "Must be at least 3 characters" #~ msgstr "Deve contenere almeno 3 caratteri" @@ -3720,7 +3776,7 @@ msgstr "Silenzia parole & tags" msgid "Muted" msgstr "Silenziato" -#: src/screens/Moderation/index.tsx:255 +#: src/screens/Moderation/index.tsx:258 msgid "Muted accounts" msgstr "Account silenziato" @@ -3737,7 +3793,7 @@ msgstr "I post degli account silenziati verranno rimossi dal tuo feed e dalle tu msgid "Muted by \"{0}\"" msgstr "Silenziato da \"{0}\"" -#: src/screens/Moderation/index.tsx:231 +#: src/screens/Moderation/index.tsx:234 msgid "Muted words & tags" msgstr "Parole e tags silenziati" @@ -3786,6 +3842,7 @@ msgid "Name or Description Violates Community Standards" msgstr "Il Nome o la Descrizione Viola gli Standard della Comunità" #: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:91 msgid "Nature" msgstr "Natura" @@ -3855,8 +3912,8 @@ msgstr "Nuovo Post" #: src/view/screens/Feeds.tsx:580 #: src/view/screens/Notifications.tsx:193 -#: src/view/screens/Profile.tsx:485 -#: src/view/screens/ProfileFeed.tsx:427 +#: src/view/screens/Profile.tsx:478 +#: src/view/screens/ProfileFeed.tsx:428 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:277 @@ -3871,7 +3928,7 @@ msgstr "Nuovo post" #~ msgid "New Post" #~ msgstr "Nuovo Post" -#: src/components/NewskieDialog.tsx:71 +#: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "" @@ -3884,6 +3941,7 @@ msgid "Newest replies first" msgstr "Mostrare prima le risposte più recenti" #: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:92 msgid "News" msgstr "Notizie" @@ -3894,10 +3952,10 @@ msgstr "Notizie" #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:258 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:195 -#: src/screens/StarterPack/Wizard/index.tsx:372 -#: src/screens/StarterPack/Wizard/index.tsx:379 +#: src/screens/StarterPack/Wizard/index.tsx:184 +#: src/screens/StarterPack/Wizard/index.tsx:188 +#: src/screens/StarterPack/Wizard/index.tsx:359 +#: src/screens/StarterPack/Wizard/index.tsx:366 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3920,7 +3978,7 @@ msgstr "Immagine seguente" msgid "No" msgstr "No" -#: src/view/screens/ProfileFeed.tsx:560 +#: src/view/screens/ProfileFeed.tsx:562 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Senza descrizione" @@ -3934,7 +3992,7 @@ msgstr "Nessun pannello DNS" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Non si è trovata nessuna GIF in primo piano. Potrebbe esserci un problema con Tenor." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." msgstr "" @@ -4003,11 +4061,11 @@ msgstr "Nessun risultato trovato per \"{search}\"." msgid "No thanks" msgstr "No grazie" -#: src/view/com/modals/Threadgate.tsx:85 +#: src/components/dialogs/ThreadgateEditor.tsx:108 msgid "Nobody" msgstr "Nessuno" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Nobody can reply" msgstr "Nessuno puo rispondere" @@ -4016,7 +4074,7 @@ msgstr "Nessuno puo rispondere" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Nessuno ha fatto ancora un like. Fai il primo tu!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -4028,7 +4086,7 @@ msgstr "Nudità non sessuale" #~ msgstr "Non applicabile." #: src/Navigation.tsx:117 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Non trovato" @@ -4043,7 +4101,7 @@ msgstr "Non adesso" msgid "Note about sharing" msgstr "Nota sulla condivisione" -#: src/screens/Moderation/index.tsx:540 +#: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: Bluesky è una rete aperta e pubblica. Questa impostazione limita solo la visibilità dei tuoi contenuti sull'app e sul sito Web di Bluesky e altre app potrebbero non rispettare questa impostazione. I tuoi contenuti potrebbero comunque essere mostrati agli utenti disconnessi da altre app e siti web." @@ -4101,7 +4159,7 @@ msgstr "Spento" msgid "Oh no!" msgstr "Oh no!" -#: src/screens/Onboarding/StepInterests/index.tsx:133 +#: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." msgstr "Oh no! Qualcosa è andato male." @@ -4137,7 +4195,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/view/com/threadgate/WhoCanReply.tsx:239 +#: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" msgstr "" @@ -4154,10 +4212,10 @@ msgid "Oops, something went wrong!" msgstr "Ops! Qualcosa è andato male!" #: src/components/Lists.tsx:191 -#: src/components/StarterPack/ProfileStarterPacks.tsx:302 -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Ops!" @@ -4183,7 +4241,7 @@ msgstr "Apri opzioni conversazione" msgid "Open emoji picker" msgstr "Apri il selettore emoji" -#: src/view/screens/ProfileFeed.tsx:295 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Open feed options menu" msgstr "Apri il menu delle opzioni del feed" @@ -4195,7 +4253,7 @@ msgstr "Apri i links con il navigatore della app" msgid "Open message options" msgstr "Apri opzioni messaggio" -#: src/screens/Moderation/index.tsx:227 +#: src/screens/Moderation/index.tsx:230 msgid "Open muted words and tags settings" msgstr "Apri le impostazioni delle parole e dei tag silenziati" @@ -4207,7 +4265,7 @@ msgstr "Apri la navigazione" msgid "Open post options menu" msgstr "Apri il menu delle opzioni del post" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 msgid "Open starter pack menu" msgstr "" @@ -4224,6 +4282,10 @@ msgstr "Apri il registro di sistema" msgid "Opens {numItems} options" msgstr "Apre le {numItems} opzioni" +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" msgstr "Apre le impostazioni di accessibilità" @@ -4387,7 +4449,7 @@ msgstr "Opzione {0} di {numItems}" msgid "Optionally provide additional information below:" msgstr "Facoltativamente, fornisci ulteriori informazioni di seguito:" -#: src/view/com/modals/Threadgate.tsx:92 +#: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" msgstr "Oppure combina queste opzioni:" @@ -4450,7 +4512,6 @@ msgstr "Password aggiornata!" msgid "Pause" msgstr "Pausa" -#: src/screens/StarterPack/Wizard/index.tsx:194 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "Gente" @@ -4463,35 +4524,40 @@ msgstr "Persone seguite da @{0}" msgid "People following @{0}" msgstr "Persone che seguono @{0}" -#: src/view/com/lightbox/Lightbox.tsx:67 +#: src/view/com/lightbox/Lightbox.tsx:69 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:73 +#: src/view/com/lightbox/Lightbox.tsx:75 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." -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:93 msgid "Pets" msgstr "Animali di compagnia" #~ msgid "Phone number" #~ msgstr "Numero di telefono" +#: src/screens/Onboarding/state.ts:94 +msgid "Photography" +msgstr "" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "Immagini per adulti." -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Fissa su Home" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 msgid "Pin to Home" msgstr "Fissa su Home" @@ -4597,6 +4663,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Attendi il caricamento della scheda di collegamento" #: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:95 msgid "Politics" msgstr "Politica" @@ -4666,7 +4733,7 @@ msgstr "Post non trovato" msgid "posts" msgstr "post" -#: src/view/screens/Profile.tsx:216 +#: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Post" @@ -4735,7 +4802,7 @@ msgid "Processing..." msgstr "Elaborazione in corso…" #: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:353 +#: src/view/screens/Profile.tsx:346 msgid "profile" msgstr "profilo" @@ -4775,15 +4842,15 @@ msgstr "Pubblica il post" msgid "Publish reply" msgstr "Pubblica la risposta" -#: src/components/StarterPack/QrCodeDialog.tsx:131 +#: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:109 +#: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:110 +#: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" msgstr "" @@ -4842,7 +4909,9 @@ msgid "Reload conversations" msgstr "Ricarica conversazioni" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:325 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -4854,7 +4923,7 @@ msgstr "Rimuovi" #~ msgid "Remove {0} from my feeds?" #~ msgstr "Rimuovere {0} dai miei feed?" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" msgstr "" @@ -4886,13 +4955,13 @@ msgstr "Rimuovere il feed?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:332 +#: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Rimuovi dai miei feed" -#: src/components/FeedCard.tsx:315 +#: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Rimuovere dai miei feed?" @@ -4946,7 +5015,7 @@ msgid "Removed from my feeds" msgstr "Rimuovere dai miei feed" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "Rimosso dai tuoi feed" @@ -4964,19 +5033,19 @@ msgstr "Rimuovi post citato" msgid "Replace with Discover" msgstr "Sostituisci con Discover" -#: src/view/screens/Profile.tsx:217 +#: src/view/screens/Profile.tsx:210 msgid "Replies" msgstr "Risposte" -#: src/view/com/threadgate/WhoCanReply.tsx:66 +#: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" msgstr "" #: src/view/com/threadgate/WhoCanReply.tsx:123 -msgid "Replies on this thread are disabled" -msgstr "" +#~ msgid "Replies on this thread are disabled" +#~ msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:237 +#: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "Le risposte a questo thread sono disabilitate" @@ -5028,8 +5097,8 @@ msgstr "Segnala la conversazione" msgid "Report dialog" msgstr "Segnala il dialogo" -#: src/view/screens/ProfileFeed.tsx:348 -#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:351 msgid "Report feed" msgstr "Segnala il feed" @@ -5046,8 +5115,8 @@ msgstr "Segnala il messaggio" msgid "Report post" msgstr "Segnala il post" -#: src/screens/StarterPack/StarterPackScreen.tsx:469 -#: src/screens/StarterPack/StarterPackScreen.tsx:472 +#: src/screens/StarterPack/StarterPackScreen.tsx:476 +#: src/screens/StarterPack/StarterPackScreen.tsx:479 msgid "Report starter pack" msgstr "" @@ -5093,7 +5162,7 @@ msgstr "Ripubblicare" msgid "Repost" msgstr "Ripubblicare" -#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:418 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5207,12 +5276,12 @@ msgstr "Ritenta l'ultima azione che ha generato un errore" #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 #: src/screens/Login/LoginForm.tsx:291 #: src/screens/Login/LoginForm.tsx:298 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/Onboarding/StepInterests/index.tsx:234 #: src/screens/Signup/index.tsx:245 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 @@ -5223,7 +5292,7 @@ msgstr "Riprova" #~ msgstr "Riprova." #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:622 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Ritorna alla pagina precedente" @@ -5233,7 +5302,7 @@ msgid "Returns to home page" msgstr "Ritorna su Home" #: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/ProfileFeed.tsx:113 msgid "Returns to previous page" msgstr "Ritorna alla pagina precedente" @@ -5241,7 +5310,8 @@ msgstr "Ritorna alla pagina precedente" #~ msgstr "SANDBOX. I post e gli account non sono permanenti." #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/StarterPack/QrCodeDialog.tsx:190 +#: src/components/dialogs/ThreadgateEditor.tsx:88 +#: src/components/StarterPack/QrCodeDialog.tsx:184 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5250,7 +5320,7 @@ msgstr "Ritorna alla pagina precedente" msgid "Save" msgstr "Salva" -#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/lightbox/Lightbox.tsx:135 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5272,8 +5342,8 @@ msgstr "Salva i cambi" msgid "Save handle change" msgstr "Salva la modifica del tuo identificatore" -#: src/components/StarterPack/ShareDialog.tsx:163 -#: src/components/StarterPack/ShareDialog.tsx:170 +#: src/components/StarterPack/ShareDialog.tsx:150 +#: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" msgstr "" @@ -5281,12 +5351,12 @@ msgstr "" msgid "Save image crop" msgstr "Salva il ritaglio dell'immagine" -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" msgstr "Salva nei miei feed" @@ -5294,14 +5364,14 @@ msgstr "Salva nei miei feed" msgid "Saved Feeds" msgstr "Canali salvati" -#: src/view/com/lightbox/Lightbox.tsx:82 +#: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" msgstr "Salvata nella tua galleria" #~ msgid "Saved to your camera roll." #~ msgstr "Salvato nel rullino fotografico." -#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "Salvato nei tuoi feed" @@ -5319,13 +5389,14 @@ msgid "Saves image crop settings" msgstr "Salva le impostazioni di ritaglio dell'immagine" #: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:82 +#: src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:372 #: src/view/com/notifications/FeedItem.tsx:397 msgid "Say hello!" msgstr "Di ciao!" #: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:96 msgid "Science" msgstr "Scienza" @@ -5367,7 +5438,7 @@ msgstr "Cerca tutti i post di @{authorHandle} con tag {displayTag}" msgid "Search for all posts with tag {displayTag}" msgstr "Cerca tutti i post con il tag {displayTag}" -#: src/screens/StarterPack/Wizard/index.tsx:467 +#: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -5513,7 +5584,7 @@ msgstr "Seleziona la lingua dell'app per il testo predefinito da visualizzare ne msgid "Select your date of birth" msgstr "Seleziona la tua data di nascita" -#: src/screens/Onboarding/StepInterests/index.tsx:201 +#: src/screens/Onboarding/StepInterests/index.tsx:206 msgid "Select your interests from the options below" msgstr "Seleziona i tuoi interessi dalle seguenti opzioni" @@ -5606,7 +5677,7 @@ msgstr "Indirizzo del server" #~ msgid "Set Age" #~ msgstr "Imposta l'età" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:307 msgid "Set birthdate" msgstr "Imposta la data di nascita" @@ -5721,9 +5792,9 @@ msgstr "Attività sessuale o nudità erotica." msgid "Sexually Suggestive" msgstr "Sessualmente suggestivo" -#: src/components/StarterPack/QrCodeDialog.tsx:180 -#: src/screens/StarterPack/StarterPackScreen.tsx:303 -#: src/screens/StarterPack/StarterPackScreen.tsx:458 +#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/screens/StarterPack/StarterPackScreen.tsx:312 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5733,7 +5804,7 @@ msgstr "Sessualmente suggestivo" msgid "Share" msgstr "Condividi" -#: src/view/com/lightbox/Lightbox.tsx:142 +#: src/view/com/lightbox/Lightbox.tsx:144 msgctxt "action" msgid "Share" msgstr "Condividi" @@ -5752,30 +5823,36 @@ msgstr "Condividi un fatto divertente!" msgid "Share anyway" msgstr "Condividi comunque" -#: src/view/screens/ProfileFeed.tsx:358 -#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:361 msgid "Share feed" msgstr "Condividi il feed" -#: src/screens/StarterPack/StarterPackScreen.tsx:462 +#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/screens/StarterPack/StarterPackScreen.tsx:469 msgid "Share link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "Condividi il link" -#: src/components/StarterPack/ShareDialog.tsx:100 +#: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:296 +#: src/components/StarterPack/ShareDialog.tsx:134 +#: src/components/StarterPack/ShareDialog.tsx:145 +msgid "Share QR code" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:305 msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:112 +#: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5831,7 +5908,7 @@ msgstr "" msgid "Show less like this" msgstr "Mostra meno come questo" -#: src/view/com/post-thread/PostThreadItem.tsx:533 +#: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" @@ -6002,17 +6079,17 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "{0} esce da Bluesky" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:240 -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Salta questo passo" -#: src/screens/Onboarding/StepInterests/index.tsx:237 +#: src/screens/Onboarding/StepInterests/index.tsx:242 msgid "Skip this flow" msgstr "Salta questa corrente" @@ -6020,18 +6097,18 @@ msgstr "Salta questa corrente" #~ msgstr "Verifica tramite SMS" #: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:85 msgid "Software Dev" msgstr "Sviluppo Software" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 -#: src/view/com/threadgate/WhoCanReply.tsx:67 -#: src/view/com/threadgate/WhoCanReply.tsx:124 +#: src/components/WhoCanReply.tsx:72 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "Solo alcune persone possono rispondere" #: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "" +#~ msgid "Some subtitle" +#~ msgstr "" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -6046,7 +6123,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 +#: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Qualcosa è andato male, prova di nuovo." @@ -6084,6 +6161,7 @@ msgid "Spam; excessive mentions or replies" msgstr "Spam; menzioni o risposte eccessive" #: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:97 msgid "Sports" msgstr "Sports" @@ -6108,7 +6186,7 @@ msgstr "Iniza a conversare" #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -6116,14 +6194,18 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:214 msgid "Starter Packs" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + #~ msgid "Status page" #~ msgstr "Pagina di stato" @@ -6245,6 +6327,7 @@ msgid "Tap to view fully" msgstr "Tocca per visualizzare completamente" #: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:98 msgid "Tech" msgstr "Tecnologia" @@ -6297,10 +6380,10 @@ msgstr "Che contiene il seguente:" msgid "That handle is already taken." msgstr "Questo handle è già stato preso." -#: src/screens/StarterPack/StarterPackScreen.tsx:100 -#: src/screens/StarterPack/StarterPackScreen.tsx:101 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:102 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/Wizard/index.tsx:106 +#: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." msgstr "" @@ -6320,7 +6403,7 @@ msgstr "Le Linee guida della community sono state spostate a<0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "La politica sul copyright è stata spostata a <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6349,7 +6432,7 @@ msgstr "Il post potrebbe essere stato cancellato." msgid "The Privacy Policy has been moved to <0/>" msgstr "La politica sulla privacy è stata spostata a <0/><0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:589 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6373,7 +6456,7 @@ 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:542 +#: src/view/screens/ProfileFeed.tsx:544 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." @@ -6383,7 +6466,7 @@ msgstr "Si è verificato un problema durante la rimozione di questo feed. Per fa #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: 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." @@ -6396,7 +6479,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:233 +#: src/view/screens/ProfileFeed.tsx:234 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6454,6 +6537,7 @@ msgstr "Si è verificato un problema durante il recupero delle password dell'app msgid "There was an issue! {0}" msgstr "Si è verificato un problema! {0}" +#: src/components/WhoCanReply.tsx:116 #: src/view/screens/ProfileList.tsx:335 #: src/view/screens/ProfileList.tsx:349 #: src/view/screens/ProfileList.tsx:363 @@ -6551,7 +6635,7 @@ msgstr "Questo canale al momento sta ricevendo molte visite ed è temporaneament msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "Questo feed è vuoto! Prova a seguire più utenti o ottimizza le impostazioni della lingua." -#: src/view/screens/ProfileFeed.tsx:472 +#: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" @@ -6665,7 +6749,7 @@ msgstr "Questo utente è incluso nell'elenco <0>{0} che hai silenziato." #~ msgid "This user is included the <0/> list which you have muted." #~ msgstr "Questo utente è incluso nella lista <0/> che hai silenziato." -#: src/components/NewskieDialog.tsx:53 +#: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." msgstr "" @@ -6692,6 +6776,10 @@ msgstr "Preferenze delle discussioni" msgid "Thread Preferences" msgstr "Preferenze delle Discussioni" +#: src/components/WhoCanReply.tsx:109 +msgid "Thread settings updated" +msgstr "" + #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "Modalità discussione" @@ -6720,7 +6808,7 @@ msgstr "Alterna tra le opzioni delle parole silenziate." msgid "Toggle dropdown" msgstr "Attiva/disattiva il menu a discesa" -#: src/screens/Moderation/index.tsx:332 +#: src/screens/Moderation/index.tsx:336 msgid "Toggle to enable or disable adult content" msgstr "Seleziona per abilitare o disabilitare i contenuti per adulti" @@ -6735,8 +6823,8 @@ msgstr "Trasformazioni" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: 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 msgid "Translate" @@ -6750,6 +6838,10 @@ msgstr "Riprova" #~ msgid "Try again" #~ msgstr "Provalo di nuovo" +#: src/screens/Onboarding/state.ts:99 +msgid "TV" +msgstr "" + #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" msgstr "Autenticazione a due fattori" @@ -6779,7 +6871,7 @@ msgstr "Riattiva questa lista" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Impossibile contattare il servizio. Per favore controlla la tua connessione Internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:513 +#: src/screens/StarterPack/StarterPackScreen.tsx:520 msgid "Unable to delete" msgstr "" @@ -6844,7 +6936,7 @@ msgstr "Smetti di seguire questo account" #~ msgid "Unlike" #~ msgstr "Togli Mi piace" -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Unlike this feed" msgstr "Togli il like a questo feed" @@ -6875,12 +6967,12 @@ msgstr "Riattiva conversazione" msgid "Unmute thread" msgstr "Riattiva questa discussione" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Stacca dal profilo" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 msgid "Unpin from home" msgstr "Stacca dalla Home" @@ -7058,7 +7150,7 @@ msgstr "Nome utente o indirizzo Email" msgid "Users" msgstr "Utenti" -#: src/view/com/threadgate/WhoCanReply.tsx:274 +#: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" msgstr "utenti seguiti da <0/>" @@ -7069,7 +7161,7 @@ msgstr "utenti seguiti da <0/>" msgid "Users I follow" msgstr "Utenti che seguo" -#: src/view/com/modals/Threadgate.tsx:109 +#: src/components/dialogs/ThreadgateEditor.tsx:132 msgid "Users in \"{0}\"" msgstr "Utenti in «{0}»" @@ -7124,6 +7216,7 @@ msgid "Version {appVersion} {bundleInfo}" msgstr "Versione {appVersion} {bundleInfo}" #: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:88 msgid "Video Games" msgstr "Video Games" @@ -7175,7 +7268,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:583 +#: src/view/screens/ProfileFeed.tsx:585 msgid "View users who like this feed" msgstr "Visualizza gli utenti a cui piace questo feed" @@ -7238,11 +7331,11 @@ msgstr "Ti consigliamo di evitare usare parole comuni che compaiono in molti pos msgid "We were unable to load your birth date preferences. Please try again." msgstr "Non siamo riusciti a caricare le tue preferenze relative alla data di nascita. Per favore riprova." -#: src/screens/Moderation/index.tsx:385 +#: src/screens/Moderation/index.tsx:409 msgid "We were unable to load your configured labelers at this time." msgstr "Al momento non è stato possibile caricare le etichettatori configurati." -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:143 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Non siamo riusciti a connetterci. Riprova per continuare a configurare il tuo account. Se il problema persiste, puoi ignorare questo flusso." @@ -7253,7 +7346,7 @@ msgstr "Ti faremo sapere quando il tuo account sarà pronto." #~ msgid "We'll look into your appeal promptly." #~ msgstr "Esamineremo il tuo ricorso al più presto." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:148 msgid "We'll use this to help customize your experience." msgstr "Lo useremo per personalizzare la tua esperienza." @@ -7301,7 +7394,11 @@ msgstr "" #~ msgid "Welcome to <0>Bluesky" #~ msgstr "Ti diamo il benvenuto a <0>Bluesky" -#: src/screens/Onboarding/StepInterests/index.tsx:135 +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" msgstr "Quali sono i tuoi interessi?" @@ -7334,17 +7431,15 @@ msgstr "Quali lingue vorresti vedere negli algoritmi dei tuoi feed?" msgid "Who can message you?" msgstr "Chi puoi inviarti messaggi?" -#: src/view/com/modals/Threadgate.tsx:69 -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Who can reply" msgstr "Chi può rispondere" -#: src/view/com/threadgate/WhoCanReply.tsx:206 +#: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:210 +#: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" msgstr "" @@ -7400,6 +7495,7 @@ msgid "Write your reply" msgstr "Scrivi la tua risposta" #: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:100 msgid "Writers" msgstr "Scrittori" @@ -7421,7 +7517,7 @@ msgstr "Si" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:525 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Yes, delete this starter pack" msgstr "" @@ -7437,6 +7533,10 @@ msgstr "Ieri, {time}" msgid "you" msgstr "" +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + #: src/screens/SignupQueued.tsx:136 msgid "You are in line." msgstr "Sei nella fila." @@ -7577,6 +7677,10 @@ msgstr "Non hai ancora silenziato nessun account. Per silenziare un account, vai msgid "You have reached the end" msgstr "Hai raggiunto la fine" +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +msgid "You haven't created a starter pack yet!" +msgstr "" + #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "Non hai ancora silenziato nessuna parola o tag" @@ -7608,15 +7712,15 @@ msgstr "Per iscriverti devi avere almeno 13 anni." #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Devi avere almeno 18 anni per abilitare i contenuti per adulti" -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:62 +#: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." msgstr "" @@ -7668,7 +7772,7 @@ msgstr "" msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po index a4a923f629..f77107cb20 100644 --- a/src/locale/locales/ja/messages.po +++ b/src/locale/locales/ja/messages.po @@ -55,7 +55,7 @@ msgstr "{0, plural, other {いいね(#個のいいね)}}" msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, other {いいね}}" -#: src/components/FeedCard.tsx:215 +#: src/components/FeedCard.tsx:216 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, other {#人のユーザーがいいね}}" @@ -80,7 +80,7 @@ msgstr "{0, plural, other {いいねを外す(#個のいいね)}}" msgid "{0} joined this week" msgstr "今週、{0}人が参加しました" -#: src/screens/StarterPack/StarterPackScreen.tsx:343 +#: src/screens/StarterPack/StarterPackScreen.tsx:350 msgid "{0} people have used this starter pack!" msgstr "{0}人がこのスターターパックを使用しました!" @@ -120,7 +120,7 @@ msgstr "{diff, plural, other {ヶ月}}" msgid "{diffSeconds, plural, one {second} other {seconds}}" msgstr "{diffSeconds, plural, other {秒}}" -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" msgstr "{displayName}のスターターパック" @@ -143,7 +143,7 @@ msgstr "{handle}にメッセージを送れません" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:586 +#: src/view/screens/ProfileFeed.tsx:588 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, other {#人のユーザーがいいね}}" @@ -151,11 +151,11 @@ msgstr "{likeCount, plural, other {#人のユーザーがいいね}}" msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications}件の未読" -#: src/components/NewskieDialog.tsx:92 +#: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" msgstr "{profileName}はBlueskyに{0}前に参加しました" -#: src/components/NewskieDialog.tsx:87 +#: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "{profileName}はスターターパックを使って{0}前に参加しました" @@ -163,16 +163,16 @@ 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/view/com/threadgate/WhoCanReply.tsx:290 +#: src/components/WhoCanReply.tsx:295 msgid "<0/> members" msgstr "<0/>のメンバー" -#: src/screens/StarterPack/Wizard/index.tsx:497 +#: 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 "<0>{0}、<1>{1}、そして{2, plural, other {他#人}}があなたのスターターパックに含まれています" -#: src/screens/StarterPack/Wizard/index.tsx:509 +#: 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 "<0>{0}、<1>{1}、そして{2, plural, other {他#フィード}}があなたのスターターパックに含まれています" @@ -185,11 +185,11 @@ msgstr "<0>{0} {1, plural, other {フォロワー}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, other {フォロー}}" -#: src/screens/StarterPack/Wizard/index.tsx:497 +#: src/screens/StarterPack/Wizard/index.tsx:507 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" msgstr "<0>{0}と<2>{1}はあなたのスターターパックに含まれています" -#: src/screens/StarterPack/Wizard/index.tsx:478 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" msgstr "<0>{0}はあなたのスターターパックに含まれています" @@ -197,7 +197,7 @@ msgstr "<0>{0}はあなたのスターターパックに含まれていま msgid "<0>Not Applicable. This warning is only available for posts with media attached." msgstr "<0>適用できません。 この警告はメディアが添付された投稿にのみ利用可能です。" -#: src/screens/StarterPack/Wizard/index.tsx:472 +#: src/screens/StarterPack/Wizard/index.tsx:457 msgid "<0>You and<1> <2>{0} are included in your starter pack" msgstr "<0>あなたと<1><2>{0}はあなたのスターターパックに含まれています" @@ -287,11 +287,11 @@ msgstr "アカウントのミュートを解除しました" msgid "Add" msgstr "追加" -#: src/screens/StarterPack/Wizard/index.tsx:539 +#: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" msgstr "続けるにはさらに{0}ユーザー追加してください" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:56 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" msgstr "{displayName}をスターターパックに加える" @@ -337,7 +337,7 @@ msgstr "ミュートするワードとタグを追加" msgid "Add recommended feeds" msgstr "おすすめのフィードを追加" -#: src/screens/StarterPack/Wizard/index.tsx:464 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" msgstr "あなたのスターターパックにフィードをいくつか追加してください!" @@ -349,7 +349,7 @@ msgstr "フォローしているユーザーのみのデフォルトのフィー msgid "Add the following DNS record to your domain:" msgstr "次のDNSレコードをドメインに追加してください:" -#: src/components/FeedCard.tsx:300 +#: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" msgstr "このフィードをあなたのフィードに追加する" @@ -380,16 +380,20 @@ msgstr "返信がフィードに表示されるために必要ないいねの数 msgid "Adult Content" msgstr "成人向けコンテンツ" +#: src/screens/Moderation/index.tsx:356 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "成人向けコンテンツは無効になっています。" -#: src/screens/Moderation/index.tsx:375 +#: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "高度な設定" -#: src/screens/StarterPack/StarterPackScreen.tsx:271 +#: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "All accounts have been followed!" msgstr "すべてのアカウントをフォローしました!" @@ -449,16 +453,16 @@ msgstr "以前のメールアドレス{0}にメールが送信されました。 msgid "An error occured" msgstr "エラーが発生しました" -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +#: src/components/StarterPack/ProfileStarterPacks.tsx:315 msgid "An error occurred while generating your starter pack. Want to try again?" msgstr "スターターパックの生成中にエラーが発生しました。再度試しますか?" -#: src/components/StarterPack/QrCodeDialog.tsx:76 -#: src/components/StarterPack/ShareDialog.tsx:91 +#: src/components/StarterPack/QrCodeDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "QRコードの保存中にエラーが発生しました!" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:275 msgid "An error occurred while trying to follow all" msgstr "すべてフォローしようとしたらエラーが発生しました" @@ -475,16 +479,17 @@ msgstr "ほかの選択肢にはあてはまらない問題" msgid "An issue occurred, please try again." msgstr "問題が発生しました。もう一度お試しください。" -#: src/screens/Onboarding/StepInterests/index.tsx:194 +#: src/screens/Onboarding/StepInterests/index.tsx:199 msgid "an unknown error occurred" msgstr "何らかのエラーが発生しました" +#: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:280 -#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "および" #: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:79 msgid "Animals" msgstr "動物" @@ -552,7 +557,7 @@ msgstr "背景" msgid "Apply default recommended feeds" msgstr "デフォルトのおすすめフィードを追加" -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "Are you sure you want delete this starter pack?" msgstr "このスターターパックを本当に削除したいですか?" @@ -572,7 +577,7 @@ msgstr "この会話から退出しますか?あなたのメッセージはあ msgid "Are you sure you want to remove {0} from your feeds?" msgstr "あなたのフィードから{0}を削除してもよろしいですか?" -#: src/components/FeedCard.tsx:317 +#: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" msgstr "本当にこのフィードをあなたのフィードから削除したいですか?" @@ -589,6 +594,7 @@ msgid "Are you writing in <0>{0}?" msgstr "<0>{0}で書かれた投稿ですか?" #: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:80 msgid "Art" msgstr "アート" @@ -615,7 +621,7 @@ msgstr "少なくとも3文字" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:312 +#: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "戻る" @@ -668,7 +674,7 @@ msgstr "これらのアカウントをブロックしますか?" msgid "Blocked" msgstr "ブロックされています" -#: src/screens/Moderation/index.tsx:267 +#: src/screens/Moderation/index.tsx:270 msgid "Blocked accounts" msgstr "ブロック中のアカウント" @@ -714,11 +720,11 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky は、ホスティング プロバイダーを選択できるオープン ネットワークです。 カスタムホスティングは、開発者向けのベータ版で利用できるようになりました。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Blueskyはあなたのつながっているユーザーからおすすめのアカウントを選びます。" -#: src/screens/Moderation/index.tsx:533 +#: 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はログアウトしたユーザーにあなたのプロフィールや投稿を表示しません。他のアプリはこのリクエストに応じない場合があります。この設定はあなたのアカウントを非公開にするものではありません。" @@ -731,6 +737,7 @@ msgid "Blur images and filter from feeds" msgstr "画像のぼかしとフィードからのフィルタリング" #: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:81 msgid "Books" msgstr "書籍" @@ -923,7 +930,7 @@ msgstr "入力したメールアドレスの受信トレイを確認して、以 msgid "Choose Feeds" msgstr "フィードの選択" -#: src/components/StarterPack/ProfileStarterPacks.tsx:288 +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" msgstr "私向けに選んで" @@ -944,6 +951,7 @@ msgid "Choose this color as your avatar" msgstr "この色をアバターとして選択" #: src/components/dialogs/ThreadgateEditor.tsx:91 +#: src/components/dialogs/ThreadgateEditor.tsx:95 msgid "Choose who can reply" msgstr "誰が返信できるかを選択" @@ -951,10 +959,6 @@ msgstr "誰が返信できるかを選択" msgid "Choose your password" msgstr "パスワードを入力" -#: src/components/dialogs/ThreadgateEditor.tsx:95 -msgid "Choose who can reply" -msgstr "誰が返信できるかを選択" - #: src/view/screens/Settings/index.tsx:910 msgid "Clear all legacy storage data" msgstr "レガシーストレージデータをすべてクリア" @@ -1015,18 +1019,18 @@ msgstr "パカラッ 🐴 パカラッ 🐴" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/NewskieDialog.tsx:120 -#: src/components/NewskieDialog.tsx:127 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:121 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:127 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: 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:189 msgid "Close" msgstr "閉じる" -#: src/components/Dialog/index.web.tsx:113 -#: src/components/Dialog/index.web.tsx:251 +#: src/components/Dialog/index.web.tsx:116 +#: src/components/Dialog/index.web.tsx:254 msgid "Close active dialog" msgstr "アクティブなダイアログを閉じる" @@ -1093,10 +1097,12 @@ msgid "Collapses list of users for a given notification" msgstr "指定した通知のユーザーリストを折りたたむ" #: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:82 msgid "Comedy" msgstr "コメディー" #: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:83 msgid "Comics" msgstr "漫画" @@ -1154,11 +1160,11 @@ msgstr "コンテンツの言語設定を確認" msgid "Confirm delete account" msgstr "アカウントの削除を確認" -#: src/screens/Moderation/index.tsx:301 +#: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "年齢の確認:" -#: src/screens/Moderation/index.tsx:292 +#: src/screens/Moderation/index.tsx:295 msgid "Confirm your birthdate" msgstr "生年月日の確認" @@ -1184,7 +1190,7 @@ msgstr "サポートに連絡" msgid "Content Blocked" msgstr "ブロックされたコンテンツ" -#: src/screens/Moderation/index.tsx:285 +#: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "コンテンツのフィルター" @@ -1213,7 +1219,7 @@ msgstr "コンテンツの警告" msgid "Context menu backdrop, click to close the menu." msgstr "コンテキストメニューの背景をクリックし、メニューを閉じる。" -#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepInterests/index.tsx:258 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "続行" @@ -1226,7 +1232,7 @@ msgstr "{0}として続行(現在サインイン中)" msgid "Continue thread..." msgstr "スレッドの続き…" -#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:251 msgid "Continue to next step" @@ -1266,7 +1272,7 @@ msgstr "コピーしました!" msgid "Copies app password" msgstr "アプリパスワードをコピーします" -#: src/components/StarterPack/QrCodeDialog.tsx:180 +#: src/components/StarterPack/QrCodeDialog.tsx:174 #: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "コピー" @@ -1284,7 +1290,7 @@ msgstr "コードをコピー" msgid "Copy link" msgstr "リンクをコピー" -#: src/components/StarterPack/ShareDialog.tsx:143 +#: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" msgstr "リンクをコピー" @@ -1307,7 +1313,7 @@ msgstr "メッセージのテキストをコピー" msgid "Copy post text" msgstr "投稿のテキストをコピー" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" msgstr "QRコードをコピー" @@ -1320,7 +1326,7 @@ msgstr "著作権ポリシー" msgid "Could not leave chat" msgstr "チャットからの退出に失敗しました" -#: src/view/screens/ProfileFeed.tsx:102 +#: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" msgstr "フィードの読み込みに失敗しました" @@ -1332,7 +1338,7 @@ msgstr "リストの読み込みに失敗しました" msgid "Could not mute chat" msgstr "チャットのミュートに失敗しました" -#: src/components/StarterPack/ProfileStarterPacks.tsx:270 +#: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" msgstr "作成" @@ -1345,17 +1351,17 @@ msgstr "新しいアカウントを作成" msgid "Create a new Bluesky account" msgstr "新しいBlueskyアカウントを作成" -#: src/components/StarterPack/QrCodeDialog.tsx:157 +#: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" msgstr "スターターパックのQRコードを作成" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:257 +#: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" msgstr "スターターパックを作成" -#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +#: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" msgstr "私向けのスターターパックを作成" @@ -1394,6 +1400,7 @@ msgid "Created {0}" msgstr "{0}に作成" #: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:84 msgid "Culture" msgstr "文化" @@ -1450,9 +1457,9 @@ msgid "Debug panel" msgstr "デバッグパネル" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:449 -#: src/screens/StarterPack/StarterPackScreen.tsx:528 -#: src/screens/StarterPack/StarterPackScreen.tsx:608 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1509,12 +1516,12 @@ msgstr "アカウントを削除…" msgid "Delete post" msgstr "投稿を削除" -#: src/screens/StarterPack/StarterPackScreen.tsx:443 -#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:450 +#: src/screens/StarterPack/StarterPackScreen.tsx:606 msgid "Delete starter pack" msgstr "スターターパックを削除" -#: src/screens/StarterPack/StarterPackScreen.tsx:494 +#: src/screens/StarterPack/StarterPackScreen.tsx:501 msgid "Delete starter pack?" msgstr "スターターパックを削除しますか?" @@ -1578,7 +1585,7 @@ msgstr "触覚フィードバックを無効化" #: src/lib/moderation/useLabelBehaviorDescription.ts:68 #: src/screens/Messages/Settings.tsx:140 #: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:341 +#: src/screens/Moderation/index.tsx:346 msgid "Disabled" msgstr "無効" @@ -1590,8 +1597,8 @@ msgstr "破棄" msgid "Discard draft?" msgstr "下書きを削除しますか?" -#: src/screens/Moderation/index.tsx:518 -#: src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:542 +#: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" msgstr "アプリがログアウトしたユーザーに自分のアカウントを表示しないようにする" @@ -1642,6 +1649,7 @@ msgstr "ドメインを確認しました!" #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/ThreadgateEditor.tsx:88 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 @@ -1661,8 +1669,6 @@ msgstr "完了" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 #: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/Threadgate.tsx:136 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 #: src/view/screens/PreferencesThreads.tsx:162 @@ -1674,7 +1680,7 @@ msgstr "完了" msgid "Done{extraText}" msgstr "完了{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 msgid "Download Bluesky" msgstr "Blueskyをダウンロード" @@ -1727,9 +1733,9 @@ msgstr "例:返信として広告を繰り返し送ってくるユーザー。 msgid "Each code works once. You'll receive more invite codes periodically." msgstr "それぞれのコードは一回限り有効です。定期的に追加の招待コードをお送りします。" -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:522 -#: src/screens/StarterPack/Wizard/index.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" @@ -1745,7 +1751,7 @@ msgstr "編集" msgid "Edit avatar" msgstr "アバターを編集" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "フィードを編集" @@ -1773,7 +1779,7 @@ msgstr "マイフィードを編集" msgid "Edit my profile" msgstr "マイプロフィールを編集" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "ユーザーを編集" @@ -1787,7 +1793,7 @@ msgstr "プロフィールを編集" msgid "Edit Profile" msgstr "プロフィールを編集" -#: src/screens/StarterPack/StarterPackScreen.tsx:430 +#: src/screens/StarterPack/StarterPackScreen.tsx:437 msgid "Edit starter pack" msgstr "スターターパックを編集" @@ -1795,8 +1801,7 @@ msgstr "スターターパックを編集" msgid "Edit User List" msgstr "ユーザーリストを編集" -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" msgstr "誰が返信できるのかを編集" @@ -1813,6 +1818,7 @@ msgid "Edit your starter pack" msgstr "スターターパックを編集" #: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:86 msgid "Education" msgstr "教育" @@ -1868,7 +1874,7 @@ msgstr "この投稿をあなたのウェブサイトに埋め込みます。以 msgid "Enable {0} only" msgstr "{0}のみ有効にする" -#: src/screens/Moderation/index.tsx:329 +#: src/screens/Moderation/index.tsx:333 msgid "Enable adult content" msgstr "成人向けコンテンツを有効にする" @@ -1891,7 +1897,7 @@ msgstr "このソースのみ有効にする" #: src/screens/Messages/Settings.tsx:131 #: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:339 +#: src/screens/Moderation/index.tsx:344 msgid "Enabled" msgstr "有効" @@ -1957,19 +1963,18 @@ msgstr "ファイルの保存中にエラーが発生しました" msgid "Error receiving captcha response." msgstr "Captchaレスポンスの受信中にエラーが発生しました。" -#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "エラー:" -#: src/view/com/modals/Threadgate.tsx:79 +#: src/components/dialogs/ThreadgateEditor.tsx:102 msgid "Everybody" msgstr "全員" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#: src/view/com/threadgate/WhoCanReply.tsx:64 -#: src/view/com/threadgate/WhoCanReply.tsx:121 -#: src/view/com/threadgate/WhoCanReply.tsx:235 +#: src/components/WhoCanReply.tsx:69 +#: src/components/WhoCanReply.tsx:240 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "誰でも返信可能" @@ -2064,8 +2069,8 @@ msgstr "外部メディアの設定" msgid "Failed to create app password." msgstr "アプリパスワードの作成に失敗しました。" -#: src/screens/StarterPack/Wizard/index.tsx:241 -#: src/screens/StarterPack/Wizard/index.tsx:249 +#: src/screens/StarterPack/Wizard/index.tsx:230 +#: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" msgstr "スターターパックの作成に失敗しました" @@ -2081,7 +2086,7 @@ msgstr "メッセージの削除に失敗しました" msgid "Failed to delete post, please try again" msgstr "投稿の削除に失敗しました。もう一度お試しください。" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/StarterPackScreen.tsx:569 msgid "Failed to delete starter pack" msgstr "スターターパックの削除に失敗しました" @@ -2108,7 +2113,7 @@ msgstr "おすすめのフィードの読み込みに失敗しました" msgid "Failed to load suggested follows" msgstr "おすすめのフォローの読み込みに失敗しました" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" msgstr "画像の保存に失敗しました:{0}" @@ -2125,7 +2130,7 @@ msgstr "異議申し立ての送信に失敗しました。再度試してくだ msgid "Failed to toggle thread mute, please try again" msgstr "スレッドのミュートの切り替えに失敗しました。再度試してください" -#: src/components/FeedCard.tsx:280 +#: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "フィードの更新に失敗しました" @@ -2143,7 +2148,7 @@ msgstr "フィード" msgid "Feed by {0}" msgstr "{0}によるフィード" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "フィードの切替" @@ -2153,10 +2158,9 @@ msgid "Feedback" msgstr "フィードバック" #: src/Navigation.tsx:320 -#: src/screens/StarterPack/Wizard/index.tsx:201 #: src/view/screens/Feeds.tsx:445 #: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:220 +#: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:373 #: src/view/shell/Drawer.tsx:493 @@ -2168,7 +2172,7 @@ msgstr "フィード" msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "フィードはユーザーがプログラミングの専門知識を持って構築するカスタムアルゴリズムです。詳細については、<0/>を参照してください。" -#: src/components/FeedCard.tsx:277 +#: src/components/FeedCard.tsx:282 msgid "Feeds updated!" msgstr "フィードを更新しました!" @@ -2206,7 +2210,7 @@ msgstr "Followingフィードに表示されるコンテンツを調整します msgid "Fine-tune the discussion threads." msgstr "ディスカッションスレッドを微調整します。" -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" msgstr "完了" @@ -2254,8 +2258,8 @@ msgstr "{name}をフォロー" msgid "Follow Account" msgstr "アカウントをフォロー" -#: src/screens/StarterPack/StarterPackScreen.tsx:308 -#: src/screens/StarterPack/StarterPackScreen.tsx:315 +#: src/screens/StarterPack/StarterPackScreen.tsx:317 +#: src/screens/StarterPack/StarterPackScreen.tsx:324 msgid "Follow all" msgstr "すべてフォロー" @@ -2287,7 +2291,7 @@ msgstr "<0>{0}と<1>{1}がフォロー中" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0}、<1>{1}および{2, plural, other {他#人}}がフォロー中" -#: src/view/com/modals/Threadgate.tsx:101 +#: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" msgstr "自分がフォローしているユーザー" @@ -2351,6 +2355,7 @@ msgid "Follows You" msgstr "あなたをフォロー" #: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:87 msgid "Food" msgstr "食べ物" @@ -2392,7 +2397,7 @@ msgstr "<0/>から" msgid "Gallery" msgstr "ギャラリー" -#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" msgstr "スターターパックを生成" @@ -2422,7 +2427,7 @@ msgstr "法律または利用規約への明らかな違反" #: src/view/com/auth/LoggedOut.tsx:78 #: src/view/com/auth/LoggedOut.tsx:79 #: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:133 msgid "Go back" @@ -2431,9 +2436,9 @@ msgstr "戻る" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:628 #: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "戻る" @@ -2447,7 +2452,7 @@ msgstr "戻る" msgid "Go back to previous step" msgstr "前のステップに戻る" -#: src/screens/StarterPack/Wizard/index.tsx:313 +#: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" msgstr "前のステップに戻る" @@ -2571,7 +2576,7 @@ msgstr "フィードサーバーの反応が悪いようです。この問題を msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "このフィードが見つからないようです。もしかしたら削除されたのかもしれません。" -#: src/screens/Moderation/index.tsx:59 +#: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "このデータの読み込みに問題があるようです。詳細は以下をご覧ください。この問題が解決しない場合は、サポートにご連絡ください。" @@ -2662,7 +2667,7 @@ msgstr "画像" msgid "Image alt text" msgstr "画像のALTテキスト" -#: src/components/StarterPack/ShareDialog.tsx:88 +#: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" msgstr "画像をカメラロールに保存しました!" @@ -2755,7 +2760,7 @@ msgstr "招待コード:{0}個使用可能" msgid "Invite codes: 1 available" msgstr "招待コード:1個使用可能" -#: src/components/StarterPack/ShareDialog.tsx:109 +#: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" msgstr "このスターターパックにユーザーを招待!" @@ -2767,7 +2772,7 @@ msgstr "お気に入りのフィードやユーザーをフォローするよう msgid "Invites, but personal" msgstr "招待、ただし個人的なもの" -#: src/screens/StarterPack/Wizard/index.tsx:473 +#: 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 "今はあなただけ!上で検索してスターターパックにより多くのユーザーを追加してください。" @@ -2775,8 +2780,8 @@ msgstr "今はあなただけ!上で検索してスターターパックによ msgid "Jobs" msgstr "仕事" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 msgid "Join Bluesky" msgstr "Blueskyに参加" @@ -2785,6 +2790,7 @@ msgid "Join the conversation" msgstr "会話に参加" #: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:89 msgid "Journalism" msgstr "報道" @@ -2796,7 +2802,7 @@ msgstr "{0}によるラベル" msgid "Labeled by the author." msgstr "投稿者によるラベル。" -#: src/view/screens/Profile.tsx:214 +#: src/view/screens/Profile.tsx:207 msgid "Labels" msgstr "ラベル" @@ -2848,7 +2854,7 @@ msgstr "このコンテンツに適用されるモデレーションはこちら msgid "Learn more about this warning" msgstr "この警告の詳細" -#: src/screens/Moderation/index.tsx:549 +#: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." msgstr "Blueskyで公開されている内容はこちらを参照してください。" @@ -2889,7 +2895,7 @@ msgstr "あと少しです。" msgid "Legacy storage cleared, you need to restart the app now." msgstr "レガシーストレージがクリアされたため、今すぐアプリを再起動する必要があります。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:293 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" msgstr "選ばせて" @@ -2907,7 +2913,7 @@ msgid "Light" msgstr "ライト" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "このフィードをいいね" @@ -2931,7 +2937,7 @@ msgstr "があなたのカスタムフィードをいいねしました" msgid "liked your post" msgstr "があなたの投稿をいいねしました" -#: src/view/screens/Profile.tsx:219 +#: src/view/screens/Profile.tsx:212 msgid "Likes" msgstr "いいね" @@ -2977,8 +2983,8 @@ msgid "List unmuted" msgstr "リストのミュートを解除しました" #: src/Navigation.tsx:122 +#: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/screens/Profile.tsx:222 #: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 @@ -3007,7 +3013,7 @@ msgstr "最新の通知を読み込む" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:493 +#: src/view/screens/ProfileFeed.tsx:494 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "最新の投稿を読み込む" @@ -3032,7 +3038,7 @@ msgstr "ログインまたはサインアップ" msgid "Log out" msgstr "ログアウト" -#: src/screens/Moderation/index.tsx:442 +#: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" msgstr "ログアウトしたユーザーからの可視性" @@ -3060,7 +3066,7 @@ msgstr "すべてのフィードのピン留めを外したようですね。心 msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "Followingフィードを消したようです。<0>ここをクリックして追加。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +#: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" msgstr "私のために作って" @@ -3078,15 +3084,15 @@ msgid "Mark as read" msgstr "既読にする" #: src/view/screens/AccessibilitySettings.tsx:102 -#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:211 msgid "Media" msgstr "メディア" -#: src/view/com/threadgate/WhoCanReply.tsx:270 +#: src/components/WhoCanReply.tsx:275 msgid "mentioned users" msgstr "メンションされたユーザー" -#: src/view/com/modals/Threadgate.tsx:96 +#: src/components/dialogs/ThreadgateEditor.tsx:119 msgid "Mentioned users" msgstr "メンションされたユーザー" @@ -3133,7 +3139,7 @@ msgid "Misleading Account" msgstr "誤解を招くアカウント" #: src/Navigation.tsx:127 -#: src/screens/Moderation/index.tsx:104 +#: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "モデレーション" @@ -3166,7 +3172,7 @@ msgstr "モデレーションリストを作成しました" msgid "Moderation list updated" msgstr "モデレーションリストを更新しました" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:246 msgid "Moderation lists" msgstr "モデレーションリスト" @@ -3183,7 +3189,7 @@ msgstr "モデレーションの設定" msgid "Moderation states" msgstr "モデレーションのステータス" -#: src/screens/Moderation/index.tsx:215 +#: src/screens/Moderation/index.tsx:218 msgid "Moderation tools" msgstr "モデレーションのツール" @@ -3192,7 +3198,7 @@ msgstr "モデレーションのツール" msgid "Moderator has chosen to set a general warning on the content." msgstr "モデレーターによりコンテンツに一般的な警告が設定されました。" -#: src/view/com/post-thread/PostThreadItem.tsx:567 +#: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" msgstr "さらに" @@ -3208,6 +3214,10 @@ msgstr "その他のオプション" msgid "Most-liked replies first" msgstr "いいねの数が多い順に返信を表示" +#: src/screens/Onboarding/state.ts:90 +msgid "Movies" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "ミュート" @@ -3272,7 +3282,7 @@ msgstr "ワードとタグをミュート" msgid "Muted" msgstr "ミュートされています" -#: src/screens/Moderation/index.tsx:255 +#: src/screens/Moderation/index.tsx:258 msgid "Muted accounts" msgstr "ミュート中のアカウント" @@ -3289,7 +3299,7 @@ msgstr "ミュート中のアカウントの投稿は、フィードや通知か msgid "Muted by \"{0}\"" msgstr "「{0}」によってミュート中" -#: src/screens/Moderation/index.tsx:231 +#: src/screens/Moderation/index.tsx:234 msgid "Muted words & tags" msgstr "ミュートしたワードとタグ" @@ -3335,6 +3345,7 @@ msgid "Name or Description Violates Community Standards" msgstr "名前または説明がコミュニティ基準に違反" #: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:91 msgid "Nature" msgstr "自然" @@ -3398,8 +3409,8 @@ msgstr "新しい投稿" #: src/view/screens/Feeds.tsx:580 #: src/view/screens/Notifications.tsx:193 -#: src/view/screens/Profile.tsx:485 -#: src/view/screens/ProfileFeed.tsx:427 +#: src/view/screens/Profile.tsx:478 +#: src/view/screens/ProfileFeed.tsx:428 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:277 @@ -3411,7 +3422,7 @@ msgctxt "action" msgid "New Post" msgstr "新しい投稿" -#: src/components/NewskieDialog.tsx:71 +#: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "新しいユーザー情報ダイアログ" @@ -3424,6 +3435,7 @@ msgid "Newest replies first" msgstr "新しい順に返信を表示" #: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:92 msgid "News" msgstr "ニュース" @@ -3434,10 +3446,10 @@ msgstr "ニュース" #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:258 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:195 -#: src/screens/StarterPack/Wizard/index.tsx:372 -#: src/screens/StarterPack/Wizard/index.tsx:379 +#: src/screens/StarterPack/Wizard/index.tsx:184 +#: src/screens/StarterPack/Wizard/index.tsx:188 +#: src/screens/StarterPack/Wizard/index.tsx:359 +#: src/screens/StarterPack/Wizard/index.tsx:366 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3456,7 +3468,7 @@ msgstr "次の画像" msgid "No" msgstr "いいえ" -#: src/view/screens/ProfileFeed.tsx:560 +#: src/view/screens/ProfileFeed.tsx:562 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "説明はありません" @@ -3470,7 +3482,7 @@ msgstr "DNSパネルがない場合" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "おすすめのGIFが見つかりません。Tenorに問題があるかもしれません。" -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." msgstr "フィードが見つかりませんでした。他を探してみて。" @@ -3539,11 +3551,11 @@ msgstr "「{search}」の検索結果はありません。" msgid "No thanks" msgstr "結構です" -#: src/view/com/modals/Threadgate.tsx:85 +#: src/components/dialogs/ThreadgateEditor.tsx:108 msgid "Nobody" msgstr "返信不可" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Nobody can reply" msgstr "誰も返信できない" @@ -3552,7 +3564,7 @@ msgstr "誰も返信できない" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "まだ誰もこれをいいねしていません。あなたが最初になるべきかもしれません!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." msgstr "誰も見つかりませんでした。他を探してみて。" @@ -3561,7 +3573,7 @@ msgid "Non-sexual Nudity" msgstr "性的ではないヌード" #: src/Navigation.tsx:117 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "見つかりません" @@ -3576,7 +3588,7 @@ msgstr "今はしない" msgid "Note about sharing" msgstr "共有についての注意事項" -#: src/screens/Moderation/index.tsx:540 +#: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "注記:Blueskyはオープンでパブリックなネットワークです。この設定はBlueskyのアプリおよびウェブサイト上のみでのあなたのコンテンツの可視性を制限するものであり、他のアプリではこの設定を尊重しない場合があります。他のアプリやウェブサイトでは、ログアウトしたユーザーにあなたのコンテンツが表示される場合があります。" @@ -3628,7 +3640,7 @@ msgstr "オフ" msgid "Oh no!" msgstr "ちょっと!" -#: src/screens/Onboarding/StepInterests/index.tsx:133 +#: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." msgstr "ちょっと!なにかがおかしいです。" @@ -3664,7 +3676,7 @@ msgstr "1つもしくは複数の画像にALTテキストがありません。 msgid "Only .jpg and .png files are supported" msgstr ".jpgと.pngファイルのみに対応しています" -#: src/view/com/threadgate/WhoCanReply.tsx:239 +#: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" msgstr "{0}のみ返信可能" @@ -3677,10 +3689,10 @@ msgid "Oops, something went wrong!" msgstr "おっと、なにかが間違っているようです!" #: src/components/Lists.tsx:191 -#: src/components/StarterPack/ProfileStarterPacks.tsx:302 -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "おっと!" @@ -3706,7 +3718,7 @@ msgstr "会話のオプションを開く" msgid "Open emoji picker" msgstr "絵文字を入力" -#: src/view/screens/ProfileFeed.tsx:295 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Open feed options menu" msgstr "フィードの設定メニューを開く" @@ -3718,7 +3730,7 @@ msgstr "アプリ内ブラウザーでリンクを開く" msgid "Open message options" msgstr "メッセージのオプションを開く" -#: src/screens/Moderation/index.tsx:227 +#: src/screens/Moderation/index.tsx:230 msgid "Open muted words and tags settings" msgstr "ミュートしたワードとタグの設定を開く" @@ -3730,7 +3742,7 @@ msgstr "ナビゲーションを開く" msgid "Open post options menu" msgstr "投稿のオプションを開く" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 msgid "Open starter pack menu" msgstr "スターターパックのメニューを開く" @@ -3880,7 +3892,7 @@ msgstr "{numItems}個中{0}目のオプション" msgid "Optionally provide additional information below:" msgstr "オプションとして、以下に追加情報をご記入ください:" -#: src/view/com/modals/Threadgate.tsx:92 +#: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" msgstr "または以下のオプションを組み合わせてください:" @@ -3940,7 +3952,6 @@ msgstr "パスワードが更新されました!" msgid "Pause" msgstr "一時停止" -#: src/screens/StarterPack/Wizard/index.tsx:194 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "ユーザー" @@ -3953,32 +3964,37 @@ msgstr "@{0}がフォロー中のユーザー" msgid "People following @{0}" msgstr "@{0}をフォロー中のユーザー" -#: src/view/com/lightbox/Lightbox.tsx:67 +#: src/view/com/lightbox/Lightbox.tsx:69 msgid "Permission to access camera roll is required." msgstr "カメラへのアクセス権限が必要です。" -#: src/view/com/lightbox/Lightbox.tsx:73 +#: src/view/com/lightbox/Lightbox.tsx:75 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "カメラへのアクセスが拒否されました。システムの設定で有効にしてください。" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "ユーザーを切替" #: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:93 msgid "Pets" msgstr "ペット" +#: src/screens/Onboarding/state.ts:94 +msgid "Photography" +msgstr "" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "成人向けの画像です。" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "ホームにピン留め" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 msgid "Pin to Home" msgstr "ホームにピン留め" @@ -4069,6 +4085,7 @@ msgid "Please wait for your link card to finish loading" msgstr "リンクカードが読み込まれるまでお待ちください" #: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:95 msgid "Politics" msgstr "政治" @@ -4132,7 +4149,7 @@ msgstr "投稿が見つかりません" msgid "posts" msgstr "投稿" -#: src/view/screens/Profile.tsx:216 +#: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "投稿" @@ -4201,7 +4218,7 @@ msgid "Processing..." msgstr "処理中…" #: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:353 +#: src/view/screens/Profile.tsx:346 msgid "profile" msgstr "プロフィール" @@ -4241,15 +4258,15 @@ msgstr "投稿を公開" msgid "Publish reply" msgstr "返信を公開" -#: src/components/StarterPack/QrCodeDialog.tsx:131 +#: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" msgstr "QRコードをクリップボードにコピーしました" -#: src/components/StarterPack/QrCodeDialog.tsx:109 +#: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" msgstr "QRコードをダウンロードしました!" -#: src/components/StarterPack/QrCodeDialog.tsx:110 +#: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" msgstr "QRコードをカメラロールに保存しました!" @@ -4289,7 +4306,9 @@ msgid "Reload conversations" msgstr "会話を再読み込み" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:325 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -4298,7 +4317,7 @@ msgstr "会話を再読み込み" msgid "Remove" msgstr "削除" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" msgstr "{displayName}をスターターパックから削除" @@ -4330,13 +4349,13 @@ msgstr "フィードを削除しますか?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:332 +#: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "マイフィードから削除" -#: src/components/FeedCard.tsx:315 +#: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "マイフィードから削除しますか?" @@ -4384,7 +4403,7 @@ msgid "Removed from my feeds" msgstr "マイフィードから削除しました" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "あなたのフィードから削除しました" @@ -4402,15 +4421,15 @@ msgstr "引用を削除する" msgid "Replace with Discover" msgstr "Discoverで置き換える" -#: src/view/screens/Profile.tsx:217 +#: src/view/screens/Profile.tsx:210 msgid "Replies" msgstr "返信" -#: src/view/com/threadgate/WhoCanReply.tsx:66 +#: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" msgstr "返信できません" -#: src/view/com/threadgate/WhoCanReply.tsx:237 +#: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "このスレッドへの返信はできません" @@ -4455,8 +4474,8 @@ msgstr "会話を報告" msgid "Report dialog" msgstr "報告ダイアログ" -#: src/view/screens/ProfileFeed.tsx:348 -#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:351 msgid "Report feed" msgstr "フィードを報告" @@ -4473,8 +4492,8 @@ msgstr "メッセージを報告" msgid "Report post" msgstr "投稿を報告" -#: src/screens/StarterPack/StarterPackScreen.tsx:469 -#: src/screens/StarterPack/StarterPackScreen.tsx:472 +#: src/screens/StarterPack/StarterPackScreen.tsx:476 +#: src/screens/StarterPack/StarterPackScreen.tsx:479 msgid "Report starter pack" msgstr "スタータパックを報告" @@ -4520,7 +4539,7 @@ msgstr "リポスト" msgid "Repost" msgstr "リポスト" -#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:418 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4616,12 +4635,12 @@ msgstr "エラーになった最後のアクションをやり直す" #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 #: src/screens/Login/LoginForm.tsx:291 #: src/screens/Login/LoginForm.tsx:298 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/Onboarding/StepInterests/index.tsx:234 #: src/screens/Signup/index.tsx:245 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 @@ -4629,7 +4648,7 @@ msgid "Retry" msgstr "再試行" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:622 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "前のページに戻る" @@ -4639,12 +4658,13 @@ msgid "Returns to home page" msgstr "ホームページに戻る" #: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/ProfileFeed.tsx:113 msgid "Returns to previous page" msgstr "前のページに戻る" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/StarterPack/QrCodeDialog.tsx:190 +#: src/components/dialogs/ThreadgateEditor.tsx:88 +#: src/components/StarterPack/QrCodeDialog.tsx:184 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -4653,7 +4673,7 @@ msgstr "前のページに戻る" msgid "Save" msgstr "保存" -#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/lightbox/Lightbox.tsx:135 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -4675,8 +4695,8 @@ msgstr "変更を保存" msgid "Save handle change" msgstr "ハンドルの変更を保存" -#: src/components/StarterPack/ShareDialog.tsx:163 -#: src/components/StarterPack/ShareDialog.tsx:170 +#: src/components/StarterPack/ShareDialog.tsx:150 +#: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" msgstr "画像を保存" @@ -4684,12 +4704,12 @@ msgstr "画像を保存" msgid "Save image crop" msgstr "画像の切り抜きを保存" -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" msgstr "QRコードを保存" -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" msgstr "マイフィードに保存" @@ -4697,11 +4717,11 @@ msgstr "マイフィードに保存" msgid "Saved Feeds" msgstr "保存されたフィード" -#: src/view/com/lightbox/Lightbox.tsx:82 +#: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" msgstr "カメラロールに保存しました" -#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "フィードを保存しました" @@ -4719,13 +4739,14 @@ msgid "Saves image crop settings" msgstr "画像の切り抜き設定を保存" #: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:82 +#: src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:372 #: src/view/com/notifications/FeedItem.tsx:397 msgid "Say hello!" msgstr "よろしく!" #: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:96 msgid "Science" msgstr "科学" @@ -4767,7 +4788,7 @@ msgstr "{displayTag}のすべての投稿を検索(@{authorHandle}のみ)" msgid "Search for all posts with tag {displayTag}" msgstr "{displayTag}のすべての投稿を検索(すべてのユーザー)" -#: src/screens/StarterPack/Wizard/index.tsx:467 +#: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." msgstr "他の人におすすめしたいフィードを検索。" @@ -4884,7 +4905,7 @@ msgstr "アプリに表示されるデフォルトのテキストの言語を選 msgid "Select your date of birth" msgstr "生年月日を選択" -#: src/screens/Onboarding/StepInterests/index.tsx:201 +#: src/screens/Onboarding/StepInterests/index.tsx:206 msgid "Select your interests from the options below" msgstr "次のオプションから興味のあるものを選択してください" @@ -4953,7 +4974,7 @@ msgstr "アカウントの削除の確認コードをメールに送信" msgid "Server address" msgstr "サーバーアドレス" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:307 msgid "Set birthdate" msgstr "生年月日を設定" @@ -5041,9 +5062,9 @@ msgstr "性的行為または性的なヌード。" msgid "Sexually Suggestive" msgstr "性的にきわどい" -#: src/components/StarterPack/QrCodeDialog.tsx:180 -#: src/screens/StarterPack/StarterPackScreen.tsx:303 -#: src/screens/StarterPack/StarterPackScreen.tsx:458 +#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/screens/StarterPack/StarterPackScreen.tsx:312 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5053,7 +5074,7 @@ msgstr "性的にきわどい" msgid "Share" msgstr "共有" -#: src/view/com/lightbox/Lightbox.tsx:142 +#: src/view/com/lightbox/Lightbox.tsx:144 msgctxt "action" msgid "Share" msgstr "共有" @@ -5072,22 +5093,23 @@ msgstr "面白いことをシェアして!" msgid "Share anyway" msgstr "とにかく共有" -#: src/view/screens/ProfileFeed.tsx:358 -#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:361 msgid "Share feed" msgstr "フィードを共有" -#: src/screens/StarterPack/StarterPackScreen.tsx:462 +#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/screens/StarterPack/StarterPackScreen.tsx:469 msgid "Share link" msgstr "リンクを共有" -#: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "リンクを共有" -#: src/components/StarterPack/ShareDialog.tsx:100 +#: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" msgstr "リンク共有のダイアログ" @@ -5096,11 +5118,11 @@ msgstr "リンク共有のダイアログ" msgid "Share QR code" msgstr "QRコードを共有" -#: src/screens/StarterPack/StarterPackScreen.tsx:296 +#: src/screens/StarterPack/StarterPackScreen.tsx:305 msgid "Share this starter pack" msgstr "このスターターパックを共有" -#: src/components/StarterPack/ShareDialog.tsx:112 +#: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "このスターターパックを共有して、他のユーザーがBlueskyでのコミュニティに参加するよう手伝います" @@ -5150,7 +5172,7 @@ msgstr "隠れている返信を表示" msgid "Show less like this" msgstr "このような投稿の表示を減らす" -#: src/view/com/post-thread/PostThreadItem.tsx:533 +#: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" @@ -5278,27 +5300,27 @@ msgstr "@{0}でサインイン" msgid "signed up with your starter pack" msgstr "あなたのスターターパックでサインアップ" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 msgid "Signup without a starter pack" msgstr "スターターパックを使わずにサインアップ" -#: src/screens/Onboarding/StepInterests/index.tsx:240 -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "スキップ" -#: src/screens/Onboarding/StepInterests/index.tsx:237 +#: src/screens/Onboarding/StepInterests/index.tsx:242 msgid "Skip this flow" msgstr "この手順をスキップする" #: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:85 msgid "Software Dev" msgstr "ソフトウェア開発" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 -#: src/view/com/threadgate/WhoCanReply.tsx:67 -#: src/view/com/threadgate/WhoCanReply.tsx:124 +#: src/components/WhoCanReply.tsx:72 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "一部の人が返信可能" @@ -5312,7 +5334,7 @@ msgid "Something went wrong, please try again" msgstr "なにか間違っているようなので、もう一度お試しください" #: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 +#: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "なにか間違っているようなので、もう一度お試しください。" @@ -5344,6 +5366,7 @@ msgid "Spam; excessive mentions or replies" msgstr "スパム、過剰なメンションや返信" #: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:97 msgid "Sports" msgstr "スポーツ" @@ -5365,7 +5388,7 @@ msgstr "チャットを開始" #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "スターターパック" @@ -5373,14 +5396,18 @@ msgstr "スターターパック" msgid "Starter pack by {0}" msgstr "{0}によるスターターパック" -#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 msgid "Starter pack is invalid" msgstr "スターターパックが無効です" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:214 msgid "Starter Packs" msgstr "スターターパック" +#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + #: src/view/screens/Settings/index.tsx:963 msgid "Status Page" msgstr "ステータスページ" @@ -5481,6 +5508,7 @@ msgid "Tap to view fully" msgstr "タップして全体を表示" #: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:98 msgid "Tech" msgstr "テクノロジー" @@ -5533,10 +5561,10 @@ msgstr "その内容は以下の通りです:" msgid "That handle is already taken." msgstr "そのハンドルはすでに使用されています。" -#: src/screens/StarterPack/StarterPackScreen.tsx:100 -#: src/screens/StarterPack/StarterPackScreen.tsx:101 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:102 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/Wizard/index.tsx:106 +#: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." msgstr "そのスターターパックが見つかりませんでした。" @@ -5553,7 +5581,7 @@ msgstr "コミュニティーガイドラインは<0/>に移動しました" msgid "The Copyright Policy has been moved to <0/>" msgstr "著作権ポリシーは<0/>に移動しました" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "アプリのほうがより良い体験をすることができます。今すぐBlueskyをダウンロードして、中断したところから再開しましょう。" @@ -5582,7 +5610,7 @@ msgstr "投稿が削除された可能性があります。" msgid "The Privacy Policy has been moved to <0/>" msgstr "プライバシーポリシーは<0/>に移動しました" -#: src/screens/StarterPack/StarterPackScreen.tsx:589 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "見ようとしたスターターパックが無効です。代わりにスターターパックを削除してください。" @@ -5599,7 +5627,7 @@ 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:542 +#: src/view/screens/ProfileFeed.tsx:544 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "サーバーへの問い合わせ中に問題が発生しました。インターネットへの接続を確認の上、もう一度お試しください。" @@ -5609,7 +5637,7 @@ msgstr "フィードの削除中に問題が発生しました。インターネ #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "フィードの更新中に問題が発生しました。インターネットへの接続を確認の上、もう一度お試しください。" @@ -5618,7 +5646,7 @@ msgstr "フィードの更新中に問題が発生しました。インターネ msgid "There was an issue connecting to Tenor." msgstr "Tenorへの接続中に問題が発生しました。" -#: src/view/screens/ProfileFeed.tsx:233 +#: src/view/screens/ProfileFeed.tsx:234 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -5672,6 +5700,7 @@ msgstr "アプリパスワードの取得中に問題が発生しました" msgid "There was an issue! {0}" msgstr "問題が発生しました! {0}" +#: src/components/WhoCanReply.tsx:116 #: src/view/screens/ProfileList.tsx:335 #: src/view/screens/ProfileList.tsx:349 #: src/view/screens/ProfileList.tsx:363 @@ -5750,7 +5779,7 @@ msgstr "現在このフィードにはアクセスが集中しており、一時 msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "このフィードは空です!もっと多くのユーザーをフォローするか、言語の設定を調整する必要があるかもしれません。" -#: src/view/screens/ProfileFeed.tsx:472 +#: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "このフィードは空です。" @@ -5849,7 +5878,7 @@ msgstr "このユーザーはブロックした<0>{0}リストに含まれ msgid "This user is included in the <0>{0} list which you have muted." msgstr "このユーザーはミュートした<0>{0}リストに含まれています。" -#: src/components/NewskieDialog.tsx:53 +#: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." msgstr "新しいユーザーです。ここを押すといつ参加したかの情報が表示されます。" @@ -5902,7 +5931,7 @@ msgstr "ミュートしたワードのオプションを切り替えます。" msgid "Toggle dropdown" msgstr "ドロップダウンをトグル" -#: src/screens/Moderation/index.tsx:332 +#: src/screens/Moderation/index.tsx:336 msgid "Toggle to enable or disable adult content" msgstr "成人向けコンテンツの有効もしくは無効の切り替え" @@ -5917,8 +5946,8 @@ msgstr "変換" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: 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 msgid "Translate" @@ -5929,6 +5958,10 @@ msgctxt "action" msgid "Try again" msgstr "再試行" +#: src/screens/Onboarding/state.ts:99 +msgid "TV" +msgstr "" + #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" msgstr "2要素認証" @@ -5958,7 +5991,7 @@ msgstr "リストでのミュートを解除" msgid "Unable to contact your service. Please check your Internet connection." msgstr "あなたのサービスに接続できません。インターネットの接続を確認してください。" -#: src/screens/StarterPack/StarterPackScreen.tsx:513 +#: src/screens/StarterPack/StarterPackScreen.tsx:520 msgid "Unable to delete" msgstr "削除できません" @@ -6017,7 +6050,7 @@ msgstr "{0}のフォローを解除" msgid "Unfollow Account" msgstr "アカウントのフォローを解除" -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Unlike this feed" msgstr "このフィードからいいねを外す" @@ -6048,12 +6081,12 @@ msgstr "会話のミュートを解除" msgid "Unmute thread" msgstr "スレッドのミュートを解除" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "ピン留めを解除" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 msgid "Unpin from home" msgstr "ホームからピン留めを解除" @@ -6219,7 +6252,7 @@ msgstr "ユーザー名またはメールアドレス" msgid "Users" msgstr "ユーザー" -#: src/view/com/threadgate/WhoCanReply.tsx:274 +#: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" msgstr "<0/>にフォローされているユーザー" @@ -6230,7 +6263,7 @@ msgstr "<0/>にフォローされているユーザー" msgid "Users I follow" msgstr "フォローしているユーザー" -#: src/view/com/modals/Threadgate.tsx:109 +#: src/components/dialogs/ThreadgateEditor.tsx:132 msgid "Users in \"{0}\"" msgstr "{0}のユーザー" @@ -6276,6 +6309,7 @@ msgid "Version {appVersion} {bundleInfo}" msgstr "バージョン {appVersion} {bundleInfo}" #: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:88 msgid "Video Games" msgstr "ビデオゲーム" @@ -6327,7 +6361,7 @@ msgstr "アバターを表示" msgid "View the labeling service provided by @{0}" msgstr "@{0}によって提供されるラベリングサービスを見る" -#: src/view/screens/ProfileFeed.tsx:583 +#: src/view/screens/ProfileFeed.tsx:585 msgid "View users who like this feed" msgstr "このフィードにいいねしたユーザーを見る" @@ -6383,11 +6417,11 @@ msgstr "投稿が表示されなくなる可能性があるため、多くの投 msgid "We were unable to load your birth date preferences. Please try again." msgstr "生年月日の設定を読み込むことはできませんでした。もう一度お試しください。" -#: src/screens/Moderation/index.tsx:385 +#: src/screens/Moderation/index.tsx:409 msgid "We were unable to load your configured labelers at this time." msgstr "現在設定されたラベラーを読み込めません。" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:143 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "接続できませんでした。アカウントの設定を続けるためにもう一度お試しください。繰り返し失敗する場合は、この手順をスキップすることもできます。" @@ -6395,7 +6429,7 @@ msgstr "接続できませんでした。アカウントの設定を続けるた msgid "We will let you know when your account is ready." msgstr "アカウントの準備ができたらお知らせします。" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:148 msgid "We'll use this to help customize your experience." msgstr "これはあなたの体験をカスタマイズするために使用されます。" @@ -6440,7 +6474,7 @@ msgstr "おかえりなさい!" msgid "Welcome, friend!" msgstr "ようこそ、友よ!" -#: src/screens/Onboarding/StepInterests/index.tsx:135 +#: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" msgstr "なにに興味がありますか?" @@ -6467,17 +6501,15 @@ msgstr "アルゴリズムによるフィードにはどの言語を使用しま msgid "Who can message you?" msgstr "誰があなたへメッセージを送れるか?" -#: src/view/com/modals/Threadgate.tsx:69 -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Who can reply" msgstr "返信できるユーザー" -#: src/view/com/threadgate/WhoCanReply.tsx:206 +#: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" msgstr "誰が返信できるのかについてのダイアログ" -#: src/view/com/threadgate/WhoCanReply.tsx:210 +#: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" msgstr "誰が返信できますか?" @@ -6533,6 +6565,7 @@ msgid "Write your reply" msgstr "返信を書く" #: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:100 msgid "Writers" msgstr "ライター" @@ -6551,7 +6584,7 @@ msgstr "はい" msgid "Yes, deactivate" msgstr "はい、無効化します" -#: src/screens/StarterPack/StarterPackScreen.tsx:525 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Yes, delete this starter pack" msgstr "はい、このスターターパックを削除します" @@ -6692,6 +6725,10 @@ msgstr "ミュートしているアカウントはまだありません。アカ msgid "You have reached the end" msgstr "最後まで到達しました" +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +msgid "You haven't created a starter pack yet!" +msgstr "" + #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "まだワードやタグをミュートしていません" @@ -6716,15 +6753,15 @@ msgstr "50ユーザーまで追加できます" msgid "You must be 13 years of age or older to sign up." msgstr "サインアップするには、13歳以上である必要があります。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." msgstr "スターターパックを作成するには少なくとも7人フォローしていなくてはなりません" -#: src/components/StarterPack/QrCodeDialog.tsx:62 +#: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "QRコードを保存するには写真ライブラリへのアクセスを許可する必要があります" -#: src/components/StarterPack/ShareDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." msgstr "画像を保存するには写真ライブラリへのアクセスを許可する必要があります。" @@ -6776,7 +6813,7 @@ msgstr "これらのユーザーや他{0}をフォローします" msgid "You'll follow these people right away" msgstr "これらのユーザーをすぐにフォローします" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 msgid "You'll stay updated with these feeds" msgstr "これらのフィードの更新を受け取ります" diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po index 299a409897..136e902454 100644 --- a/src/locale/locales/ko/messages.po +++ b/src/locale/locales/ko/messages.po @@ -55,7 +55,7 @@ msgstr "좋아요 ({0, plural, other {#}}개)" msgid "{0, plural, one {like} other {likes}}" msgstr "좋아요" -#: src/components/FeedCard.tsx:215 +#: src/components/FeedCard.tsx:216 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, other {#}}명의 사용자가 좋아함" @@ -76,7 +76,11 @@ msgstr "재게시" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "좋아요 취소 ({0, plural, other {#}}개)" -#: src/screens/StarterPack/StarterPackScreen.tsx:343 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +msgid "{0} joined this week" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:350 msgid "{0} people have used this starter pack!" msgstr "" @@ -116,7 +120,7 @@ msgstr "개월" msgid "{diffSeconds, plural, one {second} other {seconds}}" msgstr "초" -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" msgstr "{displayName} 님의 스타터 팩" @@ -139,7 +143,7 @@ msgstr "{handle} 님에게 메시지를 보낼 수 없습니다" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:586 +#: src/view/screens/ProfileFeed.tsx:588 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, other {#}}명의 사용자가 좋아함" @@ -147,11 +151,11 @@ msgstr "{likeCount, plural, other {#}}명의 사용자가 좋아함" msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications}개 읽지 않음" -#: src/components/NewskieDialog.tsx:92 +#: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" msgstr "{profileName} 님은 {0} 전에 Bluesky에 가입했습니다." -#: src/components/NewskieDialog.tsx:87 +#: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "" @@ -159,20 +163,20 @@ 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 {모든 답글 표시} other {좋아요가 #개 이상인 답글 표시}}" -#: src/view/com/threadgate/WhoCanReply.tsx:290 +#: src/components/WhoCanReply.tsx:295 msgid "<0/> members" msgstr "<0/>의 멤버" #: src/screens/StarterPack/Wizard/index.tsx:485 -msgid "<0>{0} and<1> <2>{1} are included in your starter pack" -msgstr "" +#~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +#~ msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:497 +#: 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 "" -#: src/screens/StarterPack/Wizard/index.tsx:509 +#: 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 "" @@ -185,7 +189,11 @@ msgstr "<0>{0} 팔로워" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} 팔로우 중" -#: src/screens/StarterPack/Wizard/index.tsx:478 +#: src/screens/StarterPack/Wizard/index.tsx:507 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -193,6 +201,10 @@ msgstr "" msgid "<0>Not Applicable. This warning is only available for posts with media attached." msgstr "<0>해당 없음. 이 경고는 미디어가 첨부된 게시물에만 사용할 수 있습니다." +#: src/screens/StarterPack/Wizard/index.tsx:457 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠잘못된 핸들" @@ -279,11 +291,11 @@ msgstr "계정 언뮤트됨" msgid "Add" msgstr "추가" -#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:56 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" msgstr "" @@ -326,14 +338,14 @@ msgid "Add muted words and tags" msgstr "뮤트할 단어 및 태그 추가" #: src/screens/StarterPack/Wizard/index.tsx:197 -msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "" +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "추천 피드 추가" -#: src/screens/StarterPack/Wizard/index.tsx:464 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" msgstr "" @@ -345,7 +357,7 @@ msgstr "내가 팔로우하는 사람의 기본 피드만 추가하기" msgid "Add the following DNS record to your domain:" msgstr "도메인에 다음 DNS 레코드를 추가하세요:" -#: src/components/FeedCard.tsx:300 +#: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" msgstr "이 피드를 내 피드에 추가하기" @@ -376,16 +388,20 @@ msgstr "답글이 피드에 표시되기 위해 필요한 좋아요 수를 조 msgid "Adult Content" msgstr "성인 콘텐츠" +#: src/screens/Moderation/index.tsx:356 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "성인 콘텐츠가 비활성화되어 있습니다." -#: src/screens/Moderation/index.tsx:375 +#: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "고급" -#: src/screens/StarterPack/StarterPackScreen.tsx:271 +#: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "All accounts have been followed!" msgstr "모든 계정을 팔로우했습니다" @@ -445,20 +461,20 @@ msgstr "이전 주소인 {0}(으)로 이메일을 보냈습니다. 이 이메일 msgid "An error occured" msgstr "오류 발생" -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +#: 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 "이미지를 저장하는 동안 오류가 발생했습니다" +#~ msgid "An error occurred while saving the image." +#~ msgstr "이미지를 저장하는 동안 오류가 발생했습니다" -#: src/components/StarterPack/QrCodeDialog.tsx:76 -#: src/components/StarterPack/ShareDialog.tsx:91 +#: src/components/StarterPack/QrCodeDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "QR 코드를 저장하는 동안 오류가 발생했습니다" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:275 msgid "An error occurred while trying to follow all" msgstr "모두 팔로우하려고 하는 동안 오류가 발생했습니다" @@ -475,16 +491,17 @@ msgstr "어떤 옵션에도 포함되지 않는 문제" msgid "An issue occurred, please try again." msgstr "문제가 발생했습니다. 다시 시도해 주세요." -#: src/screens/Onboarding/StepInterests/index.tsx:194 +#: src/screens/Onboarding/StepInterests/index.tsx:199 msgid "an unknown error occurred" msgstr "알 수 없는 오류가 발생했습니다" +#: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:280 -#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "및" #: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:79 msgid "Animals" msgstr "동물" @@ -552,7 +569,7 @@ msgstr "모양" msgid "Apply default recommended feeds" msgstr "기본 추천 피드 적용하기" -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "Are you sure you want delete this starter pack?" msgstr "이 스타터 팩을 삭제하시겠습니까?" @@ -572,7 +589,7 @@ msgstr "정말 이 대화에서 나가시겠습니까? 나에게 보이는 메 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "피드에서 {0}을(를) 제거하시겠습니까?" -#: src/components/FeedCard.tsx:317 +#: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" msgstr "내 피드에서 이 피드를 삭제하시겠습니까?" @@ -589,6 +606,7 @@ msgid "Are you writing in <0>{0}?" msgstr "{0}(으)로 쓰고 있나요?" #: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:80 msgid "Art" msgstr "예술" @@ -615,7 +633,7 @@ msgstr "3자 이상" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:312 +#: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "뒤로" @@ -668,7 +686,7 @@ msgstr "이 계정들을 차단하시겠습니까?" msgid "Blocked" msgstr "차단됨" -#: src/screens/Moderation/index.tsx:267 +#: src/screens/Moderation/index.tsx:270 msgid "Blocked accounts" msgstr "차단한 계정" @@ -714,11 +732,11 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky는 호스팅 제공자를 선택할 수 있는 개방형 네트워크입니다. 개발자를 위한 사용자 지정 호스팅이 베타 버전으로 제공됩니다." -#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:533 +#: 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 "로그아웃한 사용자에게 내 프로필과 게시물을 표시하지 않습니다. 다른 앱에서는 이 설정을 따르지 않을 수 있습니다. 내 계정을 비공개로 전환하지는 않습니다." @@ -731,6 +749,7 @@ msgid "Blur images and filter from feeds" msgstr "이미지 흐리게 및 피드에서 필터링" #: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:81 msgid "Books" msgstr "책" @@ -920,13 +939,21 @@ msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "받은 편지함에서 아래에 입력하는 인증 코드가 포함된 이메일이 있는지 확인하세요:" #: src/view/com/modals/Threadgate.tsx:75 -msgid "Choose \"Everybody\" or \"Nobody\"" -msgstr "\"모두\" 또는 \"없음\"을 선택하세요." +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "\"모두\" 또는 \"없음\"을 선택하세요." -#: src/components/StarterPack/ProfileStarterPacks.tsx:288 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:187 +msgid "Choose People" +msgstr "" + #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "서비스 선택" @@ -939,6 +966,11 @@ msgstr "맞춤 피드를 구동할 알고리즘을 선택하세요." msgid "Choose this color as your avatar" msgstr "이 색상을 아바타로 선택" +#: src/components/dialogs/ThreadgateEditor.tsx:91 +#: src/components/dialogs/ThreadgateEditor.tsx:95 +msgid "Choose who can reply" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:114 msgid "Choose your password" msgstr "비밀번호를 입력하세요" @@ -1003,18 +1035,18 @@ msgstr "다그닥 🐴 다그닥 🐴" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/NewskieDialog.tsx:120 -#: src/components/NewskieDialog.tsx:127 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:121 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:127 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: 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:189 msgid "Close" msgstr "닫기" -#: src/components/Dialog/index.web.tsx:113 -#: src/components/Dialog/index.web.tsx:251 +#: src/components/Dialog/index.web.tsx:116 +#: src/components/Dialog/index.web.tsx:254 msgid "Close active dialog" msgstr "열려 있는 대화 상자 닫기" @@ -1081,10 +1113,12 @@ msgid "Collapses list of users for a given notification" msgstr "이 알림에 대한 사용자 목록을 축소합니다" #: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:82 msgid "Comedy" msgstr "코미디" #: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:83 msgid "Comics" msgstr "만화" @@ -1142,11 +1176,11 @@ msgstr "콘텐츠 언어 설정 확인" msgid "Confirm delete account" msgstr "계정 삭제 확인" -#: src/screens/Moderation/index.tsx:301 +#: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "나이를 확인하세요:" -#: src/screens/Moderation/index.tsx:292 +#: src/screens/Moderation/index.tsx:295 msgid "Confirm your birthdate" msgstr "생년월일 확인" @@ -1172,7 +1206,7 @@ msgstr "지원에 연락하기" msgid "Content Blocked" msgstr "콘텐츠 차단됨" -#: src/screens/Moderation/index.tsx:285 +#: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "콘텐츠 필터" @@ -1201,7 +1235,7 @@ msgstr "콘텐츠 경고" msgid "Context menu backdrop, click to close the menu." msgstr "컨텍스트 메뉴 배경을 클릭하여 메뉴를 닫습니다." -#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepInterests/index.tsx:258 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "계속" @@ -1214,7 +1248,7 @@ msgstr "{0}(으)로 계속하기 (현재 로그인)" msgid "Continue thread..." msgstr "스레드 더 보기..." -#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:251 msgid "Continue to next step" @@ -1254,7 +1288,7 @@ msgstr "복사했습니다!" msgid "Copies app password" msgstr "앱 비밀번호를 복사합니다" -#: src/components/StarterPack/QrCodeDialog.tsx:180 +#: src/components/StarterPack/QrCodeDialog.tsx:174 #: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "복사" @@ -1268,7 +1302,11 @@ msgstr "{0} 복사" msgid "Copy code" msgstr "코드 복사" -#: src/components/StarterPack/ShareDialog.tsx:143 +#: src/components/StarterPack/ShareDialog.tsx:123 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" msgstr "링크 복사" @@ -1291,7 +1329,7 @@ msgstr "메시지 텍스트 복사" msgid "Copy post text" msgstr "게시물 텍스트 복사" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" msgstr "QR 코드 복사" @@ -1304,7 +1342,7 @@ msgstr "저작권 정책" msgid "Could not leave chat" msgstr "대화에서 나갈 수 없습니다" -#: src/view/screens/ProfileFeed.tsx:102 +#: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" msgstr "피드를 불러올 수 없습니다" @@ -1316,7 +1354,7 @@ msgstr "리스트를 불러올 수 없습니다" msgid "Could not mute chat" msgstr "대화를 뮤트할 수 없습니다" -#: src/components/StarterPack/ProfileStarterPacks.tsx:270 +#: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" msgstr "만들기" @@ -1329,17 +1367,17 @@ msgstr "새 계정 만들기" msgid "Create a new Bluesky account" msgstr "새 Bluesky 계정을 만듭니다" -#: src/components/StarterPack/QrCodeDialog.tsx:157 +#: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" msgstr "스타터 팩 QR 코드 만들기" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:257 +#: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" msgstr "스타터 팩 만들기" -#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +#: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" msgstr "나를 위한 스타터 팩 만들기" @@ -1370,8 +1408,8 @@ msgid "Create new account" msgstr "새 계정 만들기" #: src/components/StarterPack/ShareDialog.tsx:158 -msgid "Create QR code" -msgstr "QR 코드 만들기" +#~ msgid "Create QR code" +#~ msgstr "QR 코드 만들기" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1382,6 +1420,7 @@ msgid "Created {0}" msgstr "{0}에 생성됨" #: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:84 msgid "Culture" msgstr "문화" @@ -1438,9 +1477,9 @@ msgid "Debug panel" msgstr "디버그 패널" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:449 -#: src/screens/StarterPack/StarterPackScreen.tsx:528 -#: src/screens/StarterPack/StarterPackScreen.tsx:608 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1497,12 +1536,12 @@ msgstr "내 계정 삭제…" msgid "Delete post" msgstr "게시물 삭제" -#: src/screens/StarterPack/StarterPackScreen.tsx:443 -#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:450 +#: src/screens/StarterPack/StarterPackScreen.tsx:606 msgid "Delete starter pack" msgstr "스타터 팩 삭제" -#: src/screens/StarterPack/StarterPackScreen.tsx:494 +#: src/screens/StarterPack/StarterPackScreen.tsx:501 msgid "Delete starter pack?" msgstr "스타터 팩을 삭제하시겠습니까?" @@ -1566,7 +1605,7 @@ msgstr "햅틱 피드백 끄기" #: src/lib/moderation/useLabelBehaviorDescription.ts:68 #: src/screens/Messages/Settings.tsx:140 #: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:341 +#: src/screens/Moderation/index.tsx:346 msgid "Disabled" msgstr "사용 안 함" @@ -1578,8 +1617,8 @@ msgstr "삭제" msgid "Discard draft?" msgstr "초안 삭제" -#: src/screens/Moderation/index.tsx:518 -#: src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:542 +#: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" msgstr "앱이 로그아웃한 사용자에게 내 계정을 표시하지 않도록 설정하기" @@ -1630,6 +1669,7 @@ msgstr "도메인을 확인했습니다." #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/ThreadgateEditor.tsx:88 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 @@ -1649,8 +1689,6 @@ msgstr "완료" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 #: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/Threadgate.tsx:136 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 #: src/view/screens/PreferencesThreads.tsx:162 @@ -1662,7 +1700,7 @@ msgstr "완료" msgid "Done{extraText}" msgstr "완료{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 msgid "Download Bluesky" msgstr "Bluesky 다운로드" @@ -1720,9 +1758,9 @@ msgctxt "action" msgid "Edit" msgstr "편집" -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:534 -#: src/screens/StarterPack/Wizard/index.tsx:541 +#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" @@ -1733,7 +1771,7 @@ msgstr "편집" msgid "Edit avatar" msgstr "아바타 편집" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "피드 편집" @@ -1761,7 +1799,7 @@ msgstr "내 피드 편집" msgid "Edit my profile" msgstr "내 프로필 편집" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "사람들 편집" @@ -1775,7 +1813,7 @@ msgstr "프로필 편집" msgid "Edit Profile" msgstr "프로필 편집" -#: src/screens/StarterPack/StarterPackScreen.tsx:430 +#: src/screens/StarterPack/StarterPackScreen.tsx:437 msgid "Edit starter pack" msgstr "스타터 팩 편집" @@ -1783,8 +1821,7 @@ msgstr "스타터 팩 편집" msgid "Edit User List" msgstr "사용자 리스트 편집" -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" msgstr "답글을 달 수 있는 사람 편집" @@ -1801,9 +1838,14 @@ msgid "Edit your starter pack" msgstr "스타터 팩 편집" #: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:86 msgid "Education" msgstr "교육" +#: src/components/dialogs/ThreadgateEditor.tsx:98 +msgid "Either choose \"Everybody\" or \"Nobody\"" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" @@ -1852,7 +1894,7 @@ msgstr "웹사이트에 이 게시물을 임베드하세요. 다음 코드를 msgid "Enable {0} only" msgstr "{0}에서만 사용" -#: src/screens/Moderation/index.tsx:329 +#: src/screens/Moderation/index.tsx:333 msgid "Enable adult content" msgstr "성인 콘텐츠 활성화" @@ -1875,7 +1917,7 @@ msgstr "이 소스에서만 사용" #: src/screens/Messages/Settings.tsx:131 #: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:339 +#: src/screens/Moderation/index.tsx:344 msgid "Enabled" msgstr "사용" @@ -1941,19 +1983,18 @@ msgstr "파일을 저장하는 동안 오류가 발생했습니다" msgid "Error receiving captcha response." msgstr "캡차 응답을 수신하는 동안 오류가 발생했습니다." -#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "오류:" -#: src/view/com/modals/Threadgate.tsx:79 +#: src/components/dialogs/ThreadgateEditor.tsx:102 msgid "Everybody" msgstr "모두" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#: src/view/com/threadgate/WhoCanReply.tsx:64 -#: src/view/com/threadgate/WhoCanReply.tsx:121 -#: src/view/com/threadgate/WhoCanReply.tsx:235 +#: src/components/WhoCanReply.tsx:69 +#: src/components/WhoCanReply.tsx:240 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "누구나 답글을 달 수 있음" @@ -2048,8 +2089,8 @@ msgstr "외부 미디어 설정" msgid "Failed to create app password." msgstr "앱 비밀번호를 만들지 못했습니다." -#: src/screens/StarterPack/Wizard/index.tsx:241 -#: src/screens/StarterPack/Wizard/index.tsx:249 +#: src/screens/StarterPack/Wizard/index.tsx:230 +#: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" msgstr "스타터 팩을 만들지 못했습니다" @@ -2065,7 +2106,7 @@ msgstr "메시지를 삭제하지 못했습니다" msgid "Failed to delete post, please try again" msgstr "게시물을 삭제하지 못했습니다. 다시 시도해 주세요" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/StarterPackScreen.tsx:569 msgid "Failed to delete starter pack" msgstr "스타터 팩을 삭제하지 못했습니다" @@ -2092,7 +2133,7 @@ msgstr "추천 피드를 불러오지 못했습니다" msgid "Failed to load suggested follows" msgstr "추천 팔로우를 불러오지 못했습니다" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" msgstr "이미지를 저장하지 못함: {0}" @@ -2109,7 +2150,7 @@ msgstr "이의신청을 제출하지 못했습니다. 다시 시도해 주세요 msgid "Failed to toggle thread mute, please try again" msgstr "스레드 뮤트를 전환하지 못했습니다. 다시 시도해 주세요" -#: src/components/FeedCard.tsx:280 +#: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "피드를 업데이트하지 못했습니다" @@ -2127,7 +2168,7 @@ msgstr "피드" msgid "Feed by {0}" msgstr "{0} 님의 피드" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "피드 켜거나 끄기" @@ -2137,10 +2178,9 @@ msgid "Feedback" msgstr "피드백" #: src/Navigation.tsx:320 -#: src/screens/StarterPack/Wizard/index.tsx:201 #: src/view/screens/Feeds.tsx:445 #: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:220 +#: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:373 #: src/view/shell/Drawer.tsx:493 @@ -2152,7 +2192,7 @@ msgstr "피드" msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "피드는 사용자가 약간의 코딩 전문 지식만으로 구축할 수 있는 맞춤 알고리즘입니다. <0/>에서 자세한 내용을 확인하세요." -#: src/components/FeedCard.tsx:277 +#: src/components/FeedCard.tsx:282 msgid "Feeds updated!" msgstr "피드 업데이트됨" @@ -2190,7 +2230,7 @@ msgstr "팔로우 중 피드에 표시되는 콘텐츠를 미세 조정합니다 msgid "Fine-tune the discussion threads." msgstr "대화 스레드를 미세 조정합니다." -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" msgstr "종료" @@ -2238,8 +2278,8 @@ msgstr "{name} 님을 팔로우" msgid "Follow Account" msgstr "계정 팔로우" -#: src/screens/StarterPack/StarterPackScreen.tsx:308 -#: src/screens/StarterPack/StarterPackScreen.tsx:315 +#: src/screens/StarterPack/StarterPackScreen.tsx:317 +#: src/screens/StarterPack/StarterPackScreen.tsx:324 msgid "Follow all" msgstr "모두 팔로우" @@ -2271,7 +2311,7 @@ msgstr "<0>{0} 님과 <1>{1} 님이 팔로우함" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "<0>{0} 님, <1>{1} 님 외 {2, plural, other {#}}명이 팔로우함" -#: src/view/com/modals/Threadgate.tsx:101 +#: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" msgstr "팔로우한 사용자" @@ -2335,6 +2375,7 @@ msgid "Follows You" msgstr "나를 팔로우함" #: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:87 msgid "Food" msgstr "음식" @@ -2376,7 +2417,7 @@ msgstr "<0/>에서" msgid "Gallery" msgstr "갤러리" -#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" msgstr "스타터 팩 만들기" @@ -2406,7 +2447,7 @@ msgstr "명백한 법률 또는 서비스 이용약관 위반 행위" #: src/view/com/auth/LoggedOut.tsx:78 #: src/view/com/auth/LoggedOut.tsx:79 #: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:133 msgid "Go back" @@ -2415,9 +2456,9 @@ msgstr "뒤로" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:628 #: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "뒤로" @@ -2431,7 +2472,7 @@ msgstr "뒤로" msgid "Go back to previous step" msgstr "이전 단계로 돌아가기" -#: src/screens/StarterPack/Wizard/index.tsx:313 +#: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" msgstr "이전 단계로 돌아갑니다" @@ -2555,7 +2596,7 @@ msgstr "피드 서버에서 잘못된 응답을 보냈습니다. 피드 소유 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "이 피드를 찾는 데 문제가 있습니다. 피드가 삭제되었을 수 있습니다." -#: src/screens/Moderation/index.tsx:59 +#: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "이 데이터를 불러오는 데 문제가 있는 것 같습니다. 자세한 내용은 아래를 참조하세요. 이 문제가 지속되면 문의해 주세요." @@ -2646,7 +2687,7 @@ msgstr "이미지" msgid "Image alt text" msgstr "이미지 대체 텍스트" -#: src/components/StarterPack/ShareDialog.tsx:88 +#: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" msgstr "이미지를 앨범에 저장했습니다." @@ -2739,7 +2780,7 @@ msgstr "초대 코드: {0}개 사용 가능" msgid "Invite codes: 1 available" msgstr "초대 코드: 1개 사용 가능" -#: src/components/StarterPack/ShareDialog.tsx:109 +#: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" msgstr "이 스타터 팩을 사용할 사람들을 초대하세요!" @@ -2751,7 +2792,7 @@ msgstr "" msgid "Invites, but personal" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:473 +#: 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 "" @@ -2759,8 +2800,8 @@ msgstr "" msgid "Jobs" msgstr "채용" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 msgid "Join Bluesky" msgstr "Bluesky 가입하기" @@ -2769,6 +2810,7 @@ msgid "Join the conversation" msgstr "대화에 참여하기" #: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:89 msgid "Journalism" msgstr "저널리즘" @@ -2780,7 +2822,7 @@ msgstr "{0}이(가) 라벨 지정함." msgid "Labeled by the author." msgstr "작성자가 라벨 지정함." -#: src/view/screens/Profile.tsx:214 +#: src/view/screens/Profile.tsx:207 msgid "Labels" msgstr "라벨" @@ -2832,7 +2874,7 @@ msgstr "이 콘텐츠에 적용된 검토 설정에 대해 자세히 알아보 msgid "Learn more about this warning" msgstr "이 경고에 대해 더 알아보기" -#: src/screens/Moderation/index.tsx:549 +#: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." msgstr "Bluesky에서 공개되는 항목에 대해 자세히 알아보세요." @@ -2873,7 +2915,7 @@ msgstr "명 남았습니다." msgid "Legacy storage cleared, you need to restart the app now." msgstr "레거시 스토리지가 지워졌으며 지금 앱을 다시 시작해야 합니다." -#: src/components/StarterPack/ProfileStarterPacks.tsx:293 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" msgstr "직접 선택하기" @@ -2891,7 +2933,7 @@ msgid "Light" msgstr "밝음" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "이 피드에 좋아요 표시" @@ -2915,7 +2957,7 @@ msgstr "이(가) 내 맞춤 피드를 좋아합니다" msgid "liked your post" msgstr "이(가) 내 게시물을 좋아합니다" -#: src/view/screens/Profile.tsx:219 +#: src/view/screens/Profile.tsx:212 msgid "Likes" msgstr "좋아요" @@ -2961,8 +3003,8 @@ msgid "List unmuted" msgstr "리스트 언뮤트됨" #: src/Navigation.tsx:122 +#: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/screens/Profile.tsx:222 #: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 @@ -2991,7 +3033,7 @@ msgstr "새 알림 불러오기" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:493 +#: src/view/screens/ProfileFeed.tsx:494 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "새 게시물 불러오기" @@ -3016,7 +3058,7 @@ msgstr "로그인 또는 가입" msgid "Log out" msgstr "로그아웃" -#: src/screens/Moderation/index.tsx:442 +#: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" msgstr "로그아웃 표시" @@ -3044,7 +3086,7 @@ msgstr "모든 피드를 고정 해제했군요. 하지만 걱정하지 마세 msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "팔로우 중 피드가 누락된 것 같습니다. <0>이곳을 클릭해 하나 추가하세요." -#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +#: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" msgstr "" @@ -3062,15 +3104,15 @@ msgid "Mark as read" msgstr "읽음으로 표시" #: src/view/screens/AccessibilitySettings.tsx:102 -#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:211 msgid "Media" msgstr "미디어" -#: src/view/com/threadgate/WhoCanReply.tsx:270 +#: src/components/WhoCanReply.tsx:275 msgid "mentioned users" msgstr "멘션한 사용자" -#: src/view/com/modals/Threadgate.tsx:96 +#: src/components/dialogs/ThreadgateEditor.tsx:119 msgid "Mentioned users" msgstr "멘션한 사용자" @@ -3117,7 +3159,7 @@ msgid "Misleading Account" msgstr "오해의 소지가 있는 계정" #: src/Navigation.tsx:127 -#: src/screens/Moderation/index.tsx:104 +#: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "검토" @@ -3150,7 +3192,7 @@ msgstr "검토 리스트 생성됨" msgid "Moderation list updated" msgstr "검토 리스트 업데이트됨" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:246 msgid "Moderation lists" msgstr "검토 리스트" @@ -3167,7 +3209,7 @@ msgstr "검토 설정" msgid "Moderation states" msgstr "검토 상태" -#: src/screens/Moderation/index.tsx:215 +#: src/screens/Moderation/index.tsx:218 msgid "Moderation tools" msgstr "검토 도구" @@ -3176,7 +3218,7 @@ msgstr "검토 도구" msgid "Moderator has chosen to set a general warning on the content." msgstr "검토자가 콘텐츠에 일반 경고를 설정했습니다." -#: src/view/com/post-thread/PostThreadItem.tsx:567 +#: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" msgstr "더 보기" @@ -3192,6 +3234,10 @@ msgstr "옵션 더 보기" msgid "Most-liked replies first" msgstr "좋아요 많은 순" +#: src/screens/Onboarding/state.ts:90 +msgid "Movies" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "뮤트" @@ -3256,7 +3302,7 @@ msgstr "단어 및 태그 뮤트" msgid "Muted" msgstr "뮤트됨" -#: src/screens/Moderation/index.tsx:255 +#: src/screens/Moderation/index.tsx:258 msgid "Muted accounts" msgstr "뮤트한 계정" @@ -3273,7 +3319,7 @@ msgstr "계정을 뮤트하면 피드와 알림에서 해당 계정의 게시물 msgid "Muted by \"{0}\"" msgstr "\"{0}\" 님이 뮤트함" -#: src/screens/Moderation/index.tsx:231 +#: src/screens/Moderation/index.tsx:234 msgid "Muted words & tags" msgstr "뮤트한 단어 및 태그" @@ -3319,6 +3365,7 @@ msgid "Name or Description Violates Community Standards" msgstr "이름 또는 설명이 커뮤니티 기준을 위반함" #: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:91 msgid "Nature" msgstr "자연" @@ -3382,8 +3429,8 @@ msgstr "새 게시물" #: src/view/screens/Feeds.tsx:580 #: src/view/screens/Notifications.tsx:193 -#: src/view/screens/Profile.tsx:485 -#: src/view/screens/ProfileFeed.tsx:427 +#: src/view/screens/Profile.tsx:478 +#: src/view/screens/ProfileFeed.tsx:428 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:277 @@ -3395,7 +3442,7 @@ msgctxt "action" msgid "New Post" msgstr "새 게시물" -#: src/components/NewskieDialog.tsx:71 +#: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "새 사용자 정보 대화 상자" @@ -3408,6 +3455,7 @@ msgid "Newest replies first" msgstr "새로운 순" #: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:92 msgid "News" msgstr "뉴스" @@ -3418,10 +3466,10 @@ msgstr "뉴스" #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:258 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:195 -#: src/screens/StarterPack/Wizard/index.tsx:372 -#: src/screens/StarterPack/Wizard/index.tsx:379 +#: src/screens/StarterPack/Wizard/index.tsx:184 +#: src/screens/StarterPack/Wizard/index.tsx:188 +#: src/screens/StarterPack/Wizard/index.tsx:359 +#: src/screens/StarterPack/Wizard/index.tsx:366 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3440,7 +3488,7 @@ msgstr "다음 이미지" msgid "No" msgstr "아니요" -#: src/view/screens/ProfileFeed.tsx:560 +#: src/view/screens/ProfileFeed.tsx:562 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "설명 없음" @@ -3454,7 +3502,7 @@ msgstr "DNS 패널 없음" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "인기 GIF를 찾을 수 없습니다. Tenor에 문제가 있을 수 있습니다." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." msgstr "피드를 찾을 수 없습니다. 다른 피드를 검색해 보세요." @@ -3523,11 +3571,11 @@ msgstr "\"{search}\"에 대한 검색 결과를 찾을 수 없습니다." msgid "No thanks" msgstr "사용하지 않음" -#: src/view/com/modals/Threadgate.tsx:85 +#: src/components/dialogs/ThreadgateEditor.tsx:108 msgid "Nobody" msgstr "없음" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Nobody can reply" msgstr "아무도 답글을 달 수 없음" @@ -3536,7 +3584,7 @@ msgstr "아무도 답글을 달 수 없음" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "아직 아무도 좋아요를 누르지 않았습니다. 첫 번째가 되어 보세요!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." msgstr "아무도 찾을 수 없습니다. 다른 사용자를 검색해 보세요." @@ -3545,7 +3593,7 @@ msgid "Non-sexual Nudity" msgstr "선정적이지 않은 노출" #: src/Navigation.tsx:117 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "찾을 수 없음" @@ -3560,7 +3608,7 @@ msgstr "나중에 하기" msgid "Note about sharing" msgstr "공유 관련 참고 사항" -#: src/screens/Moderation/index.tsx:540 +#: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "참고: Bluesky는 개방형 공개 네트워크입니다. 이 설정은 Bluesky 앱과 웹사이트에서만 내 콘텐츠가 표시되는 것을 제한하며, 다른 앱에서는 이 설정을 준수하지 않을 수 있습니다. 다른 앱과 웹사이트에서는 로그아웃한 사용자에게 내 콘텐츠가 계속 표시될 수 있습니다." @@ -3612,7 +3660,7 @@ msgstr "끄기" msgid "Oh no!" msgstr "이런!" -#: src/screens/Onboarding/StepInterests/index.tsx:133 +#: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." msgstr "이런! 뭔가 잘못되었습니다." @@ -3648,7 +3696,7 @@ msgstr "하나 이상의 이미지에 대체 텍스트가 누락되었습니다. msgid "Only .jpg and .png files are supported" msgstr ".jpg 및 .png 파일만 지원합니다" -#: src/view/com/threadgate/WhoCanReply.tsx:239 +#: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" msgstr "{0}만 답글을 달 수 있음" @@ -3661,10 +3709,10 @@ msgid "Oops, something went wrong!" msgstr "이런, 뭔가 잘못되었습니다!" #: src/components/Lists.tsx:191 -#: src/components/StarterPack/ProfileStarterPacks.tsx:302 -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "이런!" @@ -3690,7 +3738,7 @@ msgstr "대화 옵션 열기" msgid "Open emoji picker" msgstr "이모티콘 선택기 열기" -#: src/view/screens/ProfileFeed.tsx:295 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Open feed options menu" msgstr "피드 옵션 메뉴 열기" @@ -3702,7 +3750,7 @@ msgstr "링크를 인앱 브라우저로 열기" msgid "Open message options" msgstr "메시지 옵션 열기" -#: src/screens/Moderation/index.tsx:227 +#: src/screens/Moderation/index.tsx:230 msgid "Open muted words and tags settings" msgstr "뮤트한 단어 및 태그 설정 열기" @@ -3714,7 +3762,7 @@ msgstr "내비게이션 열기" msgid "Open post options menu" msgstr "게시물 옵션 메뉴 열기" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 msgid "Open starter pack menu" msgstr "스타터 팩 메뉴 열기" @@ -3731,6 +3779,10 @@ msgstr "시스템 로그 열기" msgid "Opens {numItems} options" msgstr "{numItems}번째 옵션을 엽니다" +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" msgstr "접근성 설정을 엽니다" @@ -3860,7 +3912,7 @@ msgstr "{numItems}개 중 {0}번째 옵션" msgid "Optionally provide additional information below:" msgstr "선택 사항으로 아래에 추가 정보를 입력하세요:" -#: src/view/com/modals/Threadgate.tsx:92 +#: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" msgstr "또는 다음 옵션을 결합하세요:" @@ -3920,7 +3972,6 @@ msgstr "비밀번호 변경됨" msgid "Pause" msgstr "일시 정지" -#: src/screens/StarterPack/Wizard/index.tsx:194 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "사람들" @@ -3933,32 +3984,37 @@ msgstr "@{0} 님이 팔로우한 사람들" msgid "People following @{0}" msgstr "@{0} 님을 팔로우하는 사람들" -#: src/view/com/lightbox/Lightbox.tsx:67 +#: src/view/com/lightbox/Lightbox.tsx:69 msgid "Permission to access camera roll is required." msgstr "앨범에 접근할 수 있는 권한이 필요합니다." -#: src/view/com/lightbox/Lightbox.tsx:73 +#: src/view/com/lightbox/Lightbox.tsx:75 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "앨범에 접근할 수 있는 권한이 거부되었습니다. 시스템 설정에서 활성화하세요." -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "사람 켜거나 끄기" #: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:93 msgid "Pets" msgstr "반려동물" +#: src/screens/Onboarding/state.ts:94 +msgid "Photography" +msgstr "" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "성인용 사진." -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "홈에 고정" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 msgid "Pin to Home" msgstr "홈에 고정" @@ -4049,6 +4105,7 @@ msgid "Please wait for your link card to finish loading" msgstr "링크 카드를 완전히 불러올 때까지 기다려주세요" #: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:95 msgid "Politics" msgstr "정치" @@ -4112,7 +4169,7 @@ msgstr "게시물을 찾을 수 없음" msgid "posts" msgstr "게시물" -#: src/view/screens/Profile.tsx:216 +#: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "게시물" @@ -4181,7 +4238,7 @@ msgid "Processing..." msgstr "처리 중…" #: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:353 +#: src/view/screens/Profile.tsx:346 msgid "profile" msgstr "프로필" @@ -4221,15 +4278,15 @@ msgstr "게시물 게시하기" msgid "Publish reply" msgstr "답글 게시하기" -#: src/components/StarterPack/QrCodeDialog.tsx:131 +#: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" msgstr "QR 코드를 클립보드에 복사했습니다." -#: src/components/StarterPack/QrCodeDialog.tsx:109 +#: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" msgstr "QR 코드를 다운로드했습니다." -#: src/components/StarterPack/QrCodeDialog.tsx:110 +#: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" msgstr "QR 코드를 앨범에 저장했습니다." @@ -4269,7 +4326,9 @@ msgid "Reload conversations" msgstr "대화 다시 불러오기" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:325 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -4278,7 +4337,7 @@ msgstr "대화 다시 불러오기" msgid "Remove" msgstr "제거" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" msgstr "{displayName} 님을 스타터 팩에서 제거" @@ -4310,13 +4369,13 @@ msgstr "피드를 제거하시겠습니까?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:332 +#: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "내 피드에서 제거" -#: src/components/FeedCard.tsx:315 +#: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "내 피드에서 제거하시겠습니까?" @@ -4364,7 +4423,7 @@ msgid "Removed from my feeds" msgstr "내 피드에서 제거됨" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "내 피드에서 제거됨" @@ -4382,19 +4441,19 @@ msgstr "인용된 게시물을 제거합니다" msgid "Replace with Discover" msgstr "Discover로 교체" -#: src/view/screens/Profile.tsx:217 +#: src/view/screens/Profile.tsx:210 msgid "Replies" msgstr "답글" -#: src/view/com/threadgate/WhoCanReply.tsx:66 +#: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" msgstr "답글 비활성화됨" #: src/view/com/threadgate/WhoCanReply.tsx:123 -msgid "Replies on this thread are disabled" -msgstr "이 스레드에 대한 답글이 비활성화됨" +#~ msgid "Replies on this thread are disabled" +#~ msgstr "이 스레드에 대한 답글이 비활성화됨" -#: src/view/com/threadgate/WhoCanReply.tsx:237 +#: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "이 스레드에 대한 답글이 비활성화됨" @@ -4439,8 +4498,8 @@ msgstr "대화 신고" msgid "Report dialog" msgstr "신고 대화 상자" -#: src/view/screens/ProfileFeed.tsx:348 -#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:351 msgid "Report feed" msgstr "피드 신고" @@ -4457,8 +4516,8 @@ msgstr "메시지 신고" msgid "Report post" msgstr "게시물 신고" -#: src/screens/StarterPack/StarterPackScreen.tsx:469 -#: src/screens/StarterPack/StarterPackScreen.tsx:472 +#: src/screens/StarterPack/StarterPackScreen.tsx:476 +#: src/screens/StarterPack/StarterPackScreen.tsx:479 msgid "Report starter pack" msgstr "스타터 팩 신고" @@ -4504,7 +4563,7 @@ msgstr "재게시" msgid "Repost" msgstr "재게시" -#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:418 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4600,12 +4659,12 @@ msgstr "오류가 발생한 마지막 작업을 다시 시도합니다" #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 #: src/screens/Login/LoginForm.tsx:291 #: src/screens/Login/LoginForm.tsx:298 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/Onboarding/StepInterests/index.tsx:234 #: src/screens/Signup/index.tsx:245 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 @@ -4613,7 +4672,7 @@ msgid "Retry" msgstr "다시 시도" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:622 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "이전 페이지로 돌아갑니다" @@ -4623,12 +4682,13 @@ msgid "Returns to home page" msgstr "홈 페이지로 돌아갑니다" #: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/ProfileFeed.tsx:113 msgid "Returns to previous page" msgstr "이전 페이지로 돌아갑니다" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/StarterPack/QrCodeDialog.tsx:190 +#: src/components/dialogs/ThreadgateEditor.tsx:88 +#: src/components/StarterPack/QrCodeDialog.tsx:184 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -4637,7 +4697,7 @@ msgstr "이전 페이지로 돌아갑니다" msgid "Save" msgstr "저장" -#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/lightbox/Lightbox.tsx:135 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -4659,8 +4719,8 @@ msgstr "변경 사항 저장" msgid "Save handle change" msgstr "핸들 변경 저장" -#: src/components/StarterPack/ShareDialog.tsx:163 -#: src/components/StarterPack/ShareDialog.tsx:170 +#: src/components/StarterPack/ShareDialog.tsx:150 +#: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" msgstr "이미지 저장" @@ -4668,12 +4728,12 @@ msgstr "이미지 저장" msgid "Save image crop" msgstr "이미지 자르기 저장" -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" msgstr "QR 코드 저장" -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" msgstr "내 피드에 저장" @@ -4681,11 +4741,11 @@ msgstr "내 피드에 저장" msgid "Saved Feeds" msgstr "저장한 피드" -#: src/view/com/lightbox/Lightbox.tsx:82 +#: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" msgstr "내 앨범에 저장됨" -#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "내 피드에 저장됨" @@ -4703,13 +4763,14 @@ msgid "Saves image crop settings" msgstr "이미지 자르기 설정을 저장합니다" #: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:82 +#: src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:372 #: src/view/com/notifications/FeedItem.tsx:397 msgid "Say hello!" msgstr "인사해 보세요!" #: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:96 msgid "Science" msgstr "과학" @@ -4751,7 +4812,7 @@ msgstr "{displayTag} 태그를 사용한 @{authorHandle} 님의 모든 게시물 msgid "Search for all posts with tag {displayTag}" msgstr "{displayTag} 태그를 사용한 모든 게시물 검색" -#: src/screens/StarterPack/Wizard/index.tsx:467 +#: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." msgstr "다른 사람에게 추천할 피드를 검색하세요." @@ -4868,7 +4929,7 @@ msgstr "앱에 표시되는 기본 텍스트 언어를 선택합니다." msgid "Select your date of birth" msgstr "생년월일을 선택하세요" -#: src/screens/Onboarding/StepInterests/index.tsx:201 +#: src/screens/Onboarding/StepInterests/index.tsx:206 msgid "Select your interests from the options below" msgstr "아래 옵션에서 관심사를 선택하세요" @@ -4937,7 +4998,7 @@ msgstr "계정 삭제를 위한 확인 코드가 포함된 이메일을 전송 msgid "Server address" msgstr "서버 주소" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:307 msgid "Set birthdate" msgstr "생년월일 설정" @@ -5025,14 +5086,14 @@ msgstr "성행위 또는 선정적인 노출." msgid "Sexually Suggestive" msgstr "외설적" -#: src/view/com/lightbox/Lightbox.tsx:142 +#: src/view/com/lightbox/Lightbox.tsx:144 msgctxt "action" msgid "Share" msgstr "공유" -#: src/components/StarterPack/QrCodeDialog.tsx:180 -#: src/screens/StarterPack/StarterPackScreen.tsx:303 -#: src/screens/StarterPack/StarterPackScreen.tsx:458 +#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/screens/StarterPack/StarterPackScreen.tsx:312 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5056,30 +5117,36 @@ msgstr "재미있는 사실을 전하세요!" msgid "Share anyway" msgstr "무시하고 공유" -#: src/view/screens/ProfileFeed.tsx:358 -#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:361 msgid "Share feed" msgstr "피드 공유" -#: src/screens/StarterPack/StarterPackScreen.tsx:462 +#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/screens/StarterPack/StarterPackScreen.tsx:469 msgid "Share link" msgstr "링크 공유" -#: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "링크 공유" -#: src/components/StarterPack/ShareDialog.tsx:100 +#: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" msgstr "링크 공유 대화 상자" -#: src/screens/StarterPack/StarterPackScreen.tsx:296 +#: src/components/StarterPack/ShareDialog.tsx:134 +#: src/components/StarterPack/ShareDialog.tsx:145 +msgid "Share QR code" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:305 msgid "Share this starter pack" msgstr "이 스타터 팩 공유하기" -#: src/components/StarterPack/ShareDialog.tsx:112 +#: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "이 스타터 팩을 공유하여 사람들이 Bluesky에서 커뮤니티에 참여할 수 있도록 도와주세요." @@ -5129,7 +5196,7 @@ msgstr "숨겨진 답글 표시" msgid "Show less like this" msgstr "이런 항목 덜 보기" -#: src/view/com/post-thread/PostThreadItem.tsx:533 +#: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" @@ -5257,33 +5324,33 @@ msgstr "@{0}(으)로 로그인했습니다" msgid "signed up with your starter pack" msgstr "(이)가 내 스타터 팩으로 가입했습니다" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 msgid "Signup without a starter pack" msgstr "스타터 팩 없이 가입하기" -#: src/screens/Onboarding/StepInterests/index.tsx:240 -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "건너뛰기" -#: src/screens/Onboarding/StepInterests/index.tsx:237 +#: src/screens/Onboarding/StepInterests/index.tsx:242 msgid "Skip this flow" msgstr "이 단계 건너뛰기" #: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:85 msgid "Software Dev" msgstr "소프트웨어 개발" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 -#: src/view/com/threadgate/WhoCanReply.tsx:67 -#: src/view/com/threadgate/WhoCanReply.tsx:124 +#: src/components/WhoCanReply.tsx:72 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "일부 사람들이 답글을 달 수 있음" #: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "적당한 부제목" +#~ msgid "Some subtitle" +#~ msgstr "적당한 부제목" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -5295,7 +5362,7 @@ msgid "Something went wrong, please try again" msgstr "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요" #: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 +#: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요." @@ -5327,6 +5394,7 @@ msgid "Spam; excessive mentions or replies" msgstr "스팸, 과도한 멘션 또는 답글" #: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:97 msgid "Sports" msgstr "스포츠" @@ -5348,7 +5416,7 @@ msgstr "대화 시작하기" #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "스타터 팩" @@ -5356,14 +5424,18 @@ msgstr "스타터 팩" msgid "Starter pack by {0}" msgstr "{0} 님의 스타터 팩" -#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 msgid "Starter pack is invalid" msgstr "스타터 팩이 유효하지 않음" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:214 msgid "Starter Packs" msgstr "스타터 팩" +#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + #: src/view/screens/Settings/index.tsx:963 msgid "Status Page" msgstr "상태 페이지" @@ -5464,6 +5536,7 @@ msgid "Tap to view fully" msgstr "탭하여 전체 크기로 봅니다" #: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:98 msgid "Tech" msgstr "기술" @@ -5516,10 +5589,10 @@ msgstr "텍스트 파일 내용:" msgid "That handle is already taken." msgstr "이 핸들은 이미 사용 중입니다." -#: src/screens/StarterPack/StarterPackScreen.tsx:100 -#: src/screens/StarterPack/StarterPackScreen.tsx:101 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:102 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/Wizard/index.tsx:106 +#: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." msgstr "" @@ -5536,7 +5609,7 @@ msgstr "커뮤니티 가이드라인을 <0/>(으)로 이동했습니다" msgid "The Copyright Policy has been moved to <0/>" msgstr "저작권 정책을 <0/>(으)로 이동했습니다" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -5565,7 +5638,7 @@ msgstr "게시물이 삭제되었을 수 있습니다." msgid "The Privacy Policy has been moved to <0/>" msgstr "개인정보 처리방침을 <0/>(으)로 이동했습니다" -#: src/screens/StarterPack/StarterPackScreen.tsx:589 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "이 스타터 팩은 유효하지 않습니다. 대신 이 스타터 팩을 삭제할 수 있습니다." @@ -5582,7 +5655,7 @@ 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:542 +#: src/view/screens/ProfileFeed.tsx:544 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "서버에 연결하는 동안 문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도하세요." @@ -5592,7 +5665,7 @@ msgstr "이 피드를 삭제하는 동안 문제가 발생했습니다. 인터 #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "피드를 업데이트하는 동안 문제가 발생했습니다. 인터넷 연결을 확인한 후 다시 시도하세요." @@ -5601,7 +5674,7 @@ msgstr "피드를 업데이트하는 동안 문제가 발생했습니다. 인터 msgid "There was an issue connecting to Tenor." msgstr "Tenor에 연결하는 동안 문제가 발생했습니다." -#: src/view/screens/ProfileFeed.tsx:233 +#: src/view/screens/ProfileFeed.tsx:234 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -5655,6 +5728,7 @@ msgstr "앱 비밀번호를 가져오는 동안 문제가 발생했습니다" msgid "There was an issue! {0}" msgstr "문제가 발생했습니다! {0}" +#: src/components/WhoCanReply.tsx:116 #: src/view/screens/ProfileList.tsx:335 #: src/view/screens/ProfileList.tsx:349 #: src/view/screens/ProfileList.tsx:363 @@ -5733,7 +5807,7 @@ msgstr "이 피드는 현재 트래픽이 많아 일시적으로 사용할 수 msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "이 피드는 비어 있습니다. 더 많은 사용자를 팔로우하거나 언어 설정을 조정해 보세요." -#: src/view/screens/ProfileFeed.tsx:472 +#: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "이 피드는 비어 있습니다." @@ -5832,7 +5906,7 @@ msgstr "이 사용자는 내가 차단한 <0>{0} 리스트에 포함되어 msgid "This user is included in the <0>{0} list which you have muted." msgstr "이 사용자는 내가 뮤트한 <0>{0} 리스트에 포함되어 있습니다." -#: src/components/NewskieDialog.tsx:53 +#: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." msgstr "이 사용자는 새로 가입했습니다. 언제 가입했는지 자세한 정보를 보려면 누르세요." @@ -5853,6 +5927,10 @@ msgstr "스레드 설정" msgid "Thread Preferences" msgstr "스레드 설정" +#: src/components/WhoCanReply.tsx:109 +msgid "Thread settings updated" +msgstr "" + #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "스레드 모드" @@ -5881,7 +5959,7 @@ msgstr "뮤트한 단어 옵션 사이를 전환합니다." msgid "Toggle dropdown" msgstr "드롭다운 열기 및 닫기" -#: src/screens/Moderation/index.tsx:332 +#: src/screens/Moderation/index.tsx:336 msgid "Toggle to enable or disable adult content" msgstr "성인 콘텐츠 활성화 또는 비활성화 전환" @@ -5896,8 +5974,8 @@ msgstr "변형" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: 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 msgid "Translate" @@ -5908,6 +5986,10 @@ msgctxt "action" msgid "Try again" msgstr "다시 시도" +#: src/screens/Onboarding/state.ts:99 +msgid "TV" +msgstr "" + #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" msgstr "2단계 인증" @@ -5937,7 +6019,7 @@ msgstr "리스트 언뮤트" msgid "Unable to contact your service. Please check your Internet connection." msgstr "서비스에 연결할 수 없습니다. 인터넷 연결을 확인하세요." -#: src/screens/StarterPack/StarterPackScreen.tsx:513 +#: src/screens/StarterPack/StarterPackScreen.tsx:520 msgid "Unable to delete" msgstr "삭제할 수 없음" @@ -5996,7 +6078,7 @@ msgstr "{0} 님을 언팔로우" msgid "Unfollow Account" msgstr "계정 언팔로우" -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Unlike this feed" msgstr "이 피드 좋아요 취소" @@ -6027,12 +6109,12 @@ msgstr "알림 언뮤트" msgid "Unmute thread" msgstr "스레드 언뮤트" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "고정 해제" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 msgid "Unpin from home" msgstr "홈에서 고정 해제" @@ -6198,7 +6280,7 @@ msgstr "사용자 이름 또는 이메일 주소" msgid "Users" msgstr "사용자" -#: src/view/com/threadgate/WhoCanReply.tsx:274 +#: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" msgstr "<0/> 님이 팔로우한 사용자" @@ -6209,7 +6291,7 @@ msgstr "<0/> 님이 팔로우한 사용자" msgid "Users I follow" msgstr "내가 팔로우하는 사용자" -#: src/view/com/modals/Threadgate.tsx:109 +#: src/components/dialogs/ThreadgateEditor.tsx:132 msgid "Users in \"{0}\"" msgstr "\"{0}\"에 있는 사용자" @@ -6255,6 +6337,7 @@ msgid "Version {appVersion} {bundleInfo}" msgstr "버전 {appVersion} {bundleInfo}" #: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:88 msgid "Video Games" msgstr "비디오 게임" @@ -6306,7 +6389,7 @@ msgstr "아바타 보기" msgid "View the labeling service provided by @{0}" msgstr "{0} 님이 제공하는 라벨링 서비스 보기" -#: src/view/screens/ProfileFeed.tsx:583 +#: src/view/screens/ProfileFeed.tsx:585 msgid "View users who like this feed" msgstr "이 피드를 좋아하는 사용자 보기" @@ -6362,11 +6445,11 @@ msgstr "게시물이 표시되지 않을 수 있으므로 많은 게시물에 msgid "We were unable to load your birth date preferences. Please try again." msgstr "생년월일 설정을 불러올 수 없습니다. 다시 시도해 주세요." -#: src/screens/Moderation/index.tsx:385 +#: src/screens/Moderation/index.tsx:409 msgid "We were unable to load your configured labelers at this time." msgstr "현재 구성된 라벨러를 불러올 수 없습니다." -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:143 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "연결하지 못했습니다. 계정 설정을 계속하려면 다시 시도해 주세요. 계속 실패하면 이 과정을 건너뛸 수 있습니다." @@ -6374,7 +6457,7 @@ msgstr "연결하지 못했습니다. 계정 설정을 계속하려면 다시 msgid "We will let you know when your account is ready." msgstr "계정이 준비되면 알려드리겠습니다." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:148 msgid "We'll use this to help customize your experience." msgstr "이를 통해 사용자 환경을 맞춤 설정할 수 있습니다." @@ -6415,7 +6498,11 @@ msgstr "죄송합니다. 라벨러는 20개까지만 구독할 수 있으며 20 msgid "Welcome back!" msgstr "다시 돌아오셨군요!" -#: src/screens/Onboarding/StepInterests/index.tsx:135 +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" msgstr "어떤 관심사가 있으신가요?" @@ -6442,17 +6529,15 @@ msgstr "알고리즘 피드에 어떤 언어를 표시하시겠습니까?" msgid "Who can message you?" msgstr "누구의 메시지를 허용하시겠습니까?" -#: src/view/com/modals/Threadgate.tsx:69 -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Who can reply" msgstr "답글을 달 수 있는 사람" -#: src/view/com/threadgate/WhoCanReply.tsx:206 +#: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" msgstr "답글을 달 수 있는 사람 대화 상자" -#: src/view/com/threadgate/WhoCanReply.tsx:210 +#: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" msgstr "누가 답글을 달 수 있나요?" @@ -6508,6 +6593,7 @@ msgid "Write your reply" msgstr "답글 작성하기" #: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:100 msgid "Writers" msgstr "작가" @@ -6526,7 +6612,7 @@ msgstr "예" msgid "Yes, deactivate" msgstr "비활성화" -#: src/screens/StarterPack/StarterPackScreen.tsx:525 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Yes, delete this starter pack" msgstr "" @@ -6542,6 +6628,10 @@ msgstr "어제 {time}" msgid "you" msgstr "나" +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + #: src/screens/SignupQueued.tsx:136 msgid "You are in line." msgstr "대기 중입니다." @@ -6663,6 +6753,10 @@ msgstr "아직 어떤 계정도 뮤트하지 않았습니다. 계정을 뮤트 msgid "You have reached the end" msgstr "끝에 도달했습니다" +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +msgid "You haven't created a starter pack yet!" +msgstr "" + #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "아직 어떤 단어나 태그도 뮤트하지 않았습니다" @@ -6687,15 +6781,15 @@ msgstr "" msgid "You must be 13 years of age or older to sign up." msgstr "가입하려면 만 13세 이상이어야 합니다." -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:62 +#: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." msgstr "" @@ -6747,7 +6841,7 @@ msgstr "" msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/pt-BR/messages.po b/src/locale/locales/pt-BR/messages.po index 03e8feb553..bfc0eafbb9 100644 --- a/src/locale/locales/pt-BR/messages.po +++ b/src/locale/locales/pt-BR/messages.po @@ -67,7 +67,7 @@ msgstr "{0, plural, one {Curtir (# curtida)} other {Curtir (# curtidas)}}" msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {curtida} other {curtidas}}" -#: src/components/FeedCard.tsx:215 +#: src/components/FeedCard.tsx:216 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, one {Curtido por # usuário} other {Curtido por # usuários}}" @@ -88,7 +88,11 @@ 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/StarterPackScreen.tsx:343 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +msgid "{0} joined this week" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:350 msgid "{0} people have used this starter pack!" msgstr "" @@ -132,7 +136,7 @@ msgstr "" msgid "{diffSeconds, plural, one {second} other {seconds}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" msgstr "" @@ -155,7 +159,7 @@ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:586 +#: src/view/screens/ProfileFeed.tsx:588 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {Curtido por # usuário} other {Curtido por # usuários}}" @@ -163,11 +167,11 @@ msgstr "{likeCount, plural, one {Curtido por # usuário} other {Curtido por # us msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} não lidas" -#: src/components/NewskieDialog.tsx:92 +#: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" msgstr "" -#: src/components/NewskieDialog.tsx:87 +#: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "" @@ -175,17 +179,27 @@ 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/view/com/threadgate/WhoCanReply.tsx:290 +#: src/components/WhoCanReply.tsx:295 msgid "<0/> members" msgstr "<0/> membros" #: src/screens/StarterPack/Wizard/index.tsx:485 -msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +#~ 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 "" + +#: 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 "" +#~ 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 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -195,11 +209,15 @@ msgstr "<0>{0} {1, plural, one {seguidor} other {seguidores}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {seguindo} other {seguindo}}" +#: 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 "<0>{0} seguindo" -#: src/screens/StarterPack/Wizard/index.tsx:478 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -228,6 +246,10 @@ msgstr "<0>Não se aplica. Este aviso só funciona para posts com mídia." #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "<0>Bem-vindo ao<1>Bluesky" +#: src/screens/StarterPack/Wizard/index.tsx:457 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠Usuário Inválido" @@ -318,11 +340,11 @@ msgstr "Conta dessilenciada" msgid "Add" msgstr "Adicionar" -#: src/screens/StarterPack/Wizard/index.tsx:539 +#: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:56 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" msgstr "" @@ -377,14 +399,14 @@ msgid "Add muted words and tags" msgstr "Adicionar palavras/tags silenciadas" #: src/screens/StarterPack/Wizard/index.tsx:197 -msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "" +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "Utilizar feeds recomendados" -#: src/screens/StarterPack/Wizard/index.tsx:464 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" msgstr "" @@ -396,7 +418,7 @@ msgstr "Adicionar o feed padrão com as pessoas que você segue" msgid "Add the following DNS record to your domain:" msgstr "Adicione o seguinte registro DNS ao seu domínio:" -#: src/components/FeedCard.tsx:300 +#: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" msgstr "" @@ -431,16 +453,20 @@ msgstr "Ajuste o número de curtidas para que uma resposta apareça no seu feed. msgid "Adult Content" msgstr "Conteúdo Adulto" +#: src/screens/Moderation/index.tsx:356 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "O conteúdo adulto está desabilitado." -#: src/screens/Moderation/index.tsx:375 +#: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "Avançado" -#: src/screens/StarterPack/StarterPackScreen.tsx:271 +#: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "All accounts have been followed!" msgstr "" @@ -505,16 +531,16 @@ msgstr "Um email foi enviado para seu email anterior, {0}. Ele inclui um código msgid "An error occured" msgstr "Tivemos um problema" -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +#: 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 "" +#~ msgid "An error occurred while saving the image." +#~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:76 -#: src/components/StarterPack/ShareDialog.tsx:91 +#: src/components/StarterPack/QrCodeDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "" @@ -522,7 +548,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "Ocorreu um erro ao tentar deletar esta mensagem. Por favor, tente novamente." -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:275 msgid "An error occurred while trying to follow all" msgstr "" @@ -539,16 +565,17 @@ msgstr "Outro problema" msgid "An issue occurred, please try again." msgstr "Ocorreu um problema, por favor tente novamente." -#: src/screens/Onboarding/StepInterests/index.tsx:194 +#: src/screens/Onboarding/StepInterests/index.tsx:199 msgid "an unknown error occurred" msgstr "ocorreu um erro desconhecido" +#: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:280 -#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "e" #: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:79 msgid "Animals" msgstr "Animais" @@ -620,7 +647,7 @@ msgstr "Aparência" msgid "Apply default recommended feeds" msgstr "Utilizar feeds recomendados" -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -648,7 +675,7 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Tem certeza que deseja remover {0} dos seus feeds?" -#: src/components/FeedCard.tsx:317 +#: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -665,6 +692,7 @@ msgid "Are you writing in <0>{0}?" msgstr "Você está escrevendo em <0>{0}?" #: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:80 msgid "Art" msgstr "Arte" @@ -691,7 +719,7 @@ msgstr "No mínimo 3 caracteres" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:312 +#: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Voltar" @@ -748,7 +776,7 @@ msgstr "Bloquear estas contas?" msgid "Blocked" msgstr "Bloqueado" -#: src/screens/Moderation/index.tsx:267 +#: src/screens/Moderation/index.tsx:270 msgid "Blocked accounts" msgstr "Contas bloqueadas" @@ -809,11 +837,11 @@ msgstr "Bluesky é uma rede aberta que permite a escolha do seu provedor de hosp #~ msgid "Bluesky is public." #~ msgstr "Bluesky é público." -#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:533 +#: 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 "O Bluesky não mostrará seu perfil e publicações para usuários desconectados. Outros aplicativos podem não honrar esta solicitação. Isso não torna a sua conta privada." @@ -826,6 +854,7 @@ msgid "Blur images and filter from feeds" msgstr "Desfocar imagens e filtrar dos feeds" #: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:81 msgid "Books" msgstr "Livros" @@ -1035,13 +1064,21 @@ msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "Verifique em sua caixa de entrada um e-mail com o código de confirmação abaixo:" #: src/view/com/modals/Threadgate.tsx:75 -msgid "Choose \"Everybody\" or \"Nobody\"" -msgstr "Escolha \"Todos\" ou \"Ninguém\"" +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "Escolha \"Todos\" ou \"Ninguém\"" -#: src/components/StarterPack/ProfileStarterPacks.tsx:288 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:187 +msgid "Choose People" +msgstr "" + #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Escolher Serviço" @@ -1059,6 +1096,11 @@ msgstr "Escolha os algoritmos que geram seus feeds customizados." msgid "Choose this color as your avatar" msgstr "Selecionar esta cor como seu 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 "Escolha seus feeds principais" @@ -1135,18 +1177,18 @@ msgstr "" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/NewskieDialog.tsx:120 -#: src/components/NewskieDialog.tsx:127 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:121 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:127 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: 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:189 msgid "Close" msgstr "Fechar" -#: src/components/Dialog/index.web.tsx:113 -#: src/components/Dialog/index.web.tsx:251 +#: src/components/Dialog/index.web.tsx:116 +#: src/components/Dialog/index.web.tsx:254 msgid "Close active dialog" msgstr "Fechar janela ativa" @@ -1213,10 +1255,12 @@ msgid "Collapses list of users for a given notification" msgstr "Fecha lista de usuários da notificação" #: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:82 msgid "Comedy" msgstr "Comédia" #: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:83 msgid "Comics" msgstr "Quadrinhos" @@ -1278,11 +1322,11 @@ msgstr "Confirmar configurações de idioma de conteúdo" msgid "Confirm delete account" msgstr "Confirmar a exclusão da conta" -#: src/screens/Moderation/index.tsx:301 +#: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "Confirme sua idade:" -#: src/screens/Moderation/index.tsx:292 +#: src/screens/Moderation/index.tsx:295 msgid "Confirm your birthdate" msgstr "Confirme sua data de nascimento" @@ -1312,7 +1356,7 @@ msgstr "Contatar suporte" msgid "Content Blocked" msgstr "Conteúdo bloqueado" -#: src/screens/Moderation/index.tsx:285 +#: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "Filtros de conteúdo" @@ -1341,7 +1385,7 @@ msgstr "Avisos de conteúdo" msgid "Context menu backdrop, click to close the menu." msgstr "Fundo do menu, clique para fechá-lo." -#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepInterests/index.tsx:258 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Continuar" @@ -1354,7 +1398,7 @@ msgstr "Continuar como {0} (já conectado)" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:251 msgid "Continue to next step" @@ -1402,7 +1446,7 @@ msgstr "Copiado!" msgid "Copies app password" msgstr "Copia senha de aplicativo" -#: src/components/StarterPack/QrCodeDialog.tsx:180 +#: src/components/StarterPack/QrCodeDialog.tsx:174 #: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Copiar" @@ -1416,7 +1460,11 @@ msgstr "Copiar {0}" msgid "Copy code" msgstr "Copiar código" -#: src/components/StarterPack/ShareDialog.tsx:143 +#: src/components/StarterPack/ShareDialog.tsx:123 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" msgstr "" @@ -1439,7 +1487,7 @@ msgstr "Copiar texto da mensagem" msgid "Copy post text" msgstr "Copiar texto do post" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" msgstr "" @@ -1452,7 +1500,7 @@ msgstr "Política de Direitos Autorais" msgid "Could not leave chat" msgstr "Não foi possível sair deste chat" -#: src/view/screens/ProfileFeed.tsx:102 +#: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" msgstr "Não foi possível carregar o feed" @@ -1472,7 +1520,7 @@ msgstr "Não foi possível silenciar este chat" #~ msgid "Could not unmute chat" #~ msgstr "Não foi possível dessilenciar este chat" -#: src/components/StarterPack/ProfileStarterPacks.tsx:270 +#: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" msgstr "" @@ -1485,17 +1533,17 @@ msgstr "Criar uma nova conta" msgid "Create a new Bluesky account" msgstr "Criar uma nova conta do Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:157 +#: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:257 +#: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +#: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" msgstr "" @@ -1526,8 +1574,8 @@ msgid "Create new account" msgstr "Criar uma nova conta" #: src/components/StarterPack/ShareDialog.tsx:158 -msgid "Create QR code" -msgstr "" +#~ msgid "Create QR code" +#~ msgstr "" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1542,6 +1590,7 @@ msgstr "{0} criada" #~ msgstr "Cria uma prévia com miniatura. A prévia faz um link para {url}" #: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:84 msgid "Culture" msgstr "Cultura" @@ -1598,9 +1647,9 @@ msgid "Debug panel" msgstr "Painel de depuração" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:449 -#: src/screens/StarterPack/StarterPackScreen.tsx:528 -#: src/screens/StarterPack/StarterPackScreen.tsx:608 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1661,12 +1710,12 @@ msgstr "Excluir minha conta…" msgid "Delete post" msgstr "Excluir post" -#: src/screens/StarterPack/StarterPackScreen.tsx:443 -#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:450 +#: src/screens/StarterPack/StarterPackScreen.tsx:606 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:494 +#: src/screens/StarterPack/StarterPackScreen.tsx:501 msgid "Delete starter pack?" msgstr "" @@ -1738,7 +1787,7 @@ msgstr "Desabilitar feedback tátil" #: src/lib/moderation/useLabelBehaviorDescription.ts:68 #: src/screens/Messages/Settings.tsx:140 #: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:341 +#: src/screens/Moderation/index.tsx:346 msgid "Disabled" msgstr "Desabilitado" @@ -1750,8 +1799,8 @@ msgstr "Descartar" msgid "Discard draft?" msgstr "Descartar rascunho?" -#: src/screens/Moderation/index.tsx:518 -#: src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:542 +#: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" msgstr "Desencorajar aplicativos a mostrar minha conta para usuários desautenticados" @@ -1802,6 +1851,7 @@ msgstr "Domínio verificado!" #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/ThreadgateEditor.tsx:88 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 @@ -1821,8 +1871,6 @@ msgstr "Feito" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 #: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/Threadgate.tsx:136 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 #: src/view/screens/PreferencesThreads.tsx:162 @@ -1834,7 +1882,7 @@ msgstr "Feito" msgid "Done{extraText}" msgstr "Feito{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 msgid "Download Bluesky" msgstr "" @@ -1891,9 +1939,9 @@ msgstr "ex. Perfis que enchem o saco." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cada convite só funciona uma vez. Você receberá mais convites periodicamente." -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:522 -#: src/screens/StarterPack/Wizard/index.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" @@ -1909,7 +1957,7 @@ msgstr "Editar" msgid "Edit avatar" msgstr "Editar avatar" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "" @@ -1937,7 +1985,7 @@ msgstr "Editar Meus Feeds" msgid "Edit my profile" msgstr "Editar meu perfil" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "" @@ -1956,7 +2004,7 @@ msgstr "Editar Perfil" #~ msgid "Edit Saved Feeds" #~ msgstr "Editar Feeds Salvos" -#: src/screens/StarterPack/StarterPackScreen.tsx:430 +#: src/screens/StarterPack/StarterPackScreen.tsx:437 msgid "Edit starter pack" msgstr "" @@ -1964,8 +2012,7 @@ msgstr "" msgid "Edit User List" msgstr "Editar lista de usuários" -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" msgstr "" @@ -1982,9 +2029,14 @@ msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:86 msgid "Education" msgstr "Educação" +#: src/components/dialogs/ThreadgateEditor.tsx:98 +msgid "Either choose \"Everybody\" or \"Nobody\"" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" @@ -2033,7 +2085,7 @@ msgstr "Incorpore este post no seu site. Basta copiar o trecho abaixo e colar no msgid "Enable {0} only" msgstr "Habilitar somente {0}" -#: src/screens/Moderation/index.tsx:329 +#: src/screens/Moderation/index.tsx:333 msgid "Enable adult content" msgstr "Habilitar conteúdo adulto" @@ -2065,7 +2117,7 @@ msgstr "Habilitar mídia somente para este site" #: src/screens/Messages/Settings.tsx:131 #: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:339 +#: src/screens/Moderation/index.tsx:344 msgid "Enabled" msgstr "Habilitado" @@ -2135,19 +2187,18 @@ msgstr "Não foi possível salvar o arquivo" msgid "Error receiving captcha response." msgstr "Não foi possível processar o captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Erro:" -#: src/view/com/modals/Threadgate.tsx:79 +#: src/components/dialogs/ThreadgateEditor.tsx:102 msgid "Everybody" msgstr "Todos" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#: src/view/com/threadgate/WhoCanReply.tsx:64 -#: src/view/com/threadgate/WhoCanReply.tsx:121 -#: src/view/com/threadgate/WhoCanReply.tsx:235 +#: src/components/WhoCanReply.tsx:69 +#: src/components/WhoCanReply.tsx:240 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "" @@ -2242,8 +2293,8 @@ msgstr "Preferências de mídia externa" msgid "Failed to create app password." msgstr "Não foi possível criar senha de aplicativo." -#: src/screens/StarterPack/Wizard/index.tsx:241 -#: src/screens/StarterPack/Wizard/index.tsx:249 +#: src/screens/StarterPack/Wizard/index.tsx:230 +#: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" msgstr "" @@ -2259,7 +2310,7 @@ msgstr "Não foi possível excluir esta mensagem" msgid "Failed to delete post, please try again" msgstr "Não foi possível excluir o post, por favor tente novamente." -#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/StarterPackScreen.tsx:569 msgid "Failed to delete starter pack" msgstr "" @@ -2295,7 +2346,7 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" msgstr "Não foi possível salvar a imagem: {0}" @@ -2316,7 +2367,7 @@ msgstr "" msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:280 +#: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "" @@ -2338,7 +2389,7 @@ msgstr "Feed por {0}" #~ msgid "Feed offline" #~ msgstr "Feed offline" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "" @@ -2348,10 +2399,9 @@ msgid "Feedback" msgstr "Comentários" #: src/Navigation.tsx:320 -#: src/screens/StarterPack/Wizard/index.tsx:201 #: src/view/screens/Feeds.tsx:445 #: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:220 +#: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:373 #: src/view/shell/Drawer.tsx:493 @@ -2371,7 +2421,7 @@ msgstr "Os feeds são algoritmos personalizados que os usuários com um pouco de #~ msgid "Feeds can be topical as well!" #~ msgstr "Feeds podem ser de assuntos específicos também!" -#: src/components/FeedCard.tsx:277 +#: src/components/FeedCard.tsx:282 msgid "Feeds updated!" msgstr "" @@ -2421,7 +2471,7 @@ msgstr "Ajuste o conteúdo que você vê na sua tela inicial." msgid "Fine-tune the discussion threads." msgstr "Ajuste as threads." -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" msgstr "" @@ -2469,8 +2519,8 @@ msgstr "" msgid "Follow Account" msgstr "Seguir Conta" -#: src/screens/StarterPack/StarterPackScreen.tsx:308 -#: src/screens/StarterPack/StarterPackScreen.tsx:315 +#: src/screens/StarterPack/StarterPackScreen.tsx:317 +#: src/screens/StarterPack/StarterPackScreen.tsx:324 msgid "Follow all" msgstr "" @@ -2518,7 +2568,7 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/view/com/modals/Threadgate.tsx:101 +#: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" msgstr "Usuários seguidos" @@ -2582,6 +2632,7 @@ msgid "Follows You" msgstr "Segue Você" #: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:87 msgid "Food" msgstr "Comida" @@ -2623,7 +2674,7 @@ msgstr "Por <0/>" msgid "Gallery" msgstr "Galeria" -#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" msgstr "" @@ -2653,7 +2704,7 @@ msgstr "Violações flagrantes da lei ou dos termos de serviço" #: src/view/com/auth/LoggedOut.tsx:78 #: src/view/com/auth/LoggedOut.tsx:79 #: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:133 msgid "Go back" @@ -2662,9 +2713,9 @@ msgstr "Voltar" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:628 #: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Voltar" @@ -2678,7 +2729,7 @@ msgstr "Voltar" msgid "Go back to previous step" msgstr "Voltar para o passo anterior" -#: src/screens/StarterPack/Wizard/index.tsx:313 +#: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" msgstr "" @@ -2819,7 +2870,7 @@ msgstr "Hmm, o servidor do feed teve algum problema. Por favor, avise o criador msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, estamos com problemas para encontrar este feed. Ele pode ter sido excluído." -#: src/screens/Moderation/index.tsx:59 +#: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Hmmmm, parece que estamos com problemas pra carregar isso. Veja mais detalhes abaixo. Se o problema continuar, por favor, entre em contato." @@ -2910,7 +2961,7 @@ msgstr "Imagem" msgid "Image alt text" msgstr "Texto alternativo da imagem" -#: src/components/StarterPack/ShareDialog.tsx:88 +#: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" msgstr "" @@ -3003,7 +3054,7 @@ msgstr "Convites: {0} disponíveis" msgid "Invite codes: 1 available" msgstr "Convites: 1 disponível" -#: src/components/StarterPack/ShareDialog.tsx:109 +#: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" msgstr "" @@ -3019,7 +3070,7 @@ msgstr "" #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "Mostra os posts de quem você segue conforme acontecem." -#: src/screens/StarterPack/Wizard/index.tsx:473 +#: 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 "" @@ -3027,8 +3078,8 @@ msgstr "" msgid "Jobs" msgstr "Carreiras" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 msgid "Join Bluesky" msgstr "" @@ -3037,6 +3088,7 @@ msgid "Join the conversation" msgstr "" #: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:89 msgid "Journalism" msgstr "Jornalismo" @@ -3052,7 +3104,7 @@ msgstr "Rotulado por {0}." msgid "Labeled by the author." msgstr "Rotulado pelo autor." -#: src/view/screens/Profile.tsx:214 +#: src/view/screens/Profile.tsx:207 msgid "Labels" msgstr "Rótulos" @@ -3108,7 +3160,7 @@ msgstr "Saiba mais sobre a decisão de moderação aplicada neste conteúdo." msgid "Learn more about this warning" msgstr "Saiba mais sobre este aviso" -#: src/screens/Moderation/index.tsx:549 +#: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." msgstr "Saiba mais sobre o que é público no Bluesky." @@ -3149,7 +3201,7 @@ msgstr "na sua frente." msgid "Legacy storage cleared, you need to restart the app now." msgstr "Armazenamento limpo, você precisa reiniciar o app agora." -#: src/components/StarterPack/ProfileStarterPacks.tsx:293 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" msgstr "" @@ -3171,7 +3223,7 @@ msgstr "Claro" #~ msgstr "Curtir" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Curtir este feed" @@ -3209,7 +3261,7 @@ msgstr "curtiram seu feed" msgid "liked your post" msgstr "curtiu seu post" -#: src/view/screens/Profile.tsx:219 +#: src/view/screens/Profile.tsx:212 msgid "Likes" msgstr "Curtidas" @@ -3255,8 +3307,8 @@ msgid "List unmuted" msgstr "Lista dessilenciada" #: src/Navigation.tsx:122 +#: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/screens/Profile.tsx:222 #: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 @@ -3285,7 +3337,7 @@ msgstr "Carregar novas notificações" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:493 +#: src/view/screens/ProfileFeed.tsx:494 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Carregar novos posts" @@ -3310,7 +3362,7 @@ msgstr "" msgid "Log out" msgstr "Sair" -#: src/screens/Moderation/index.tsx:442 +#: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" msgstr "Visibilidade do seu perfil" @@ -3342,7 +3394,7 @@ msgstr "Parece que você desafixou todos os seus feeds, mas não esquenta, dá u msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +#: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" msgstr "" @@ -3360,15 +3412,15 @@ msgid "Mark as read" msgstr "Marcar como lida" #: src/view/screens/AccessibilitySettings.tsx:102 -#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:211 msgid "Media" msgstr "Mídia" -#: src/view/com/threadgate/WhoCanReply.tsx:270 +#: src/components/WhoCanReply.tsx:275 msgid "mentioned users" msgstr "usuários mencionados" -#: src/view/com/modals/Threadgate.tsx:96 +#: src/components/dialogs/ThreadgateEditor.tsx:119 msgid "Mentioned users" msgstr "Usuários mencionados" @@ -3419,7 +3471,7 @@ msgid "Misleading Account" msgstr "Conta Enganosa" #: src/Navigation.tsx:127 -#: src/screens/Moderation/index.tsx:104 +#: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "Moderação" @@ -3452,7 +3504,7 @@ msgstr "Lista de moderação criada" msgid "Moderation list updated" msgstr "Lista de moderação criada" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:246 msgid "Moderation lists" msgstr "Listas de moderação" @@ -3469,7 +3521,7 @@ msgstr "Moderação" msgid "Moderation states" msgstr "Moderação" -#: src/screens/Moderation/index.tsx:215 +#: src/screens/Moderation/index.tsx:218 msgid "Moderation tools" msgstr "Ferramentas de moderação" @@ -3478,7 +3530,7 @@ msgstr "Ferramentas de moderação" msgid "Moderator has chosen to set a general warning on the content." msgstr "O moderador escolheu um aviso geral neste conteúdo." -#: src/view/com/post-thread/PostThreadItem.tsx:567 +#: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" msgstr "Mais" @@ -3494,6 +3546,10 @@ msgstr "Mais opções" msgid "Most-liked replies first" msgstr "Respostas mais curtidas primeiro" +#: src/screens/Onboarding/state.ts:90 +msgid "Movies" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "Silenciar" @@ -3563,7 +3619,7 @@ msgstr "Silenciar palavras/tags" msgid "Muted" msgstr "Silenciada" -#: src/screens/Moderation/index.tsx:255 +#: src/screens/Moderation/index.tsx:258 msgid "Muted accounts" msgstr "Contas silenciadas" @@ -3580,7 +3636,7 @@ msgstr "Contas silenciadas não aparecem no seu feed ou nas suas notificações. msgid "Muted by \"{0}\"" msgstr "Silenciado por \"{0}\"" -#: src/screens/Moderation/index.tsx:231 +#: src/screens/Moderation/index.tsx:234 msgid "Muted words & tags" msgstr "Palavras/tags silenciadas" @@ -3626,6 +3682,7 @@ msgid "Name or Description Violates Community Standards" msgstr "Nome ou Descrição Viola os Padrões da Comunidade" #: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:91 msgid "Nature" msgstr "Natureza" @@ -3694,8 +3751,8 @@ msgstr "Novo post" #: src/view/screens/Feeds.tsx:580 #: src/view/screens/Notifications.tsx:193 -#: src/view/screens/Profile.tsx:485 -#: src/view/screens/ProfileFeed.tsx:427 +#: src/view/screens/Profile.tsx:478 +#: src/view/screens/ProfileFeed.tsx:428 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:277 @@ -3707,7 +3764,7 @@ msgctxt "action" msgid "New Post" msgstr "Novo Post" -#: src/components/NewskieDialog.tsx:71 +#: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "" @@ -3720,6 +3777,7 @@ msgid "Newest replies first" msgstr "Respostas mais recentes primeiro" #: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:92 msgid "News" msgstr "Notícias" @@ -3730,10 +3788,10 @@ msgstr "Notícias" #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:258 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:195 -#: src/screens/StarterPack/Wizard/index.tsx:372 -#: src/screens/StarterPack/Wizard/index.tsx:379 +#: src/screens/StarterPack/Wizard/index.tsx:184 +#: src/screens/StarterPack/Wizard/index.tsx:188 +#: src/screens/StarterPack/Wizard/index.tsx:359 +#: src/screens/StarterPack/Wizard/index.tsx:366 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3757,7 +3815,7 @@ msgstr "Próxima imagem" msgid "No" msgstr "Não" -#: src/view/screens/ProfileFeed.tsx:560 +#: src/view/screens/ProfileFeed.tsx:562 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Sem descrição" @@ -3771,7 +3829,7 @@ msgstr "Não tenho painel de DNS" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "Nenhum GIF em destaque encontrado." -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." msgstr "" @@ -3844,11 +3902,11 @@ msgstr "Nenhum resultado encontrado para \"{search}\"." msgid "No thanks" msgstr "Não, obrigado" -#: src/view/com/modals/Threadgate.tsx:85 +#: src/components/dialogs/ThreadgateEditor.tsx:108 msgid "Nobody" msgstr "Ninguém" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Nobody can reply" msgstr "" @@ -3857,7 +3915,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Ninguém curtiu isso ainda. Você pode ser o primeiro!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -3870,7 +3928,7 @@ msgstr "Nudez não-erótica" #~ msgstr "Não Aplicável." #: src/Navigation.tsx:117 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Não encontrado" @@ -3885,7 +3943,7 @@ msgstr "Agora não" msgid "Note about sharing" msgstr "Nota sobre compartilhamento" -#: src/screens/Moderation/index.tsx:540 +#: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Nota: o Bluesky é uma rede aberta e pública. Esta configuração limita somente a visibilidade do seu conteúdo no site e aplicativo do Bluesky, e outros aplicativos podem não respeitar esta configuração. Seu conteúdo ainda poderá ser exibido para usuários não autenticados por outros aplicativos e sites." @@ -3941,7 +3999,7 @@ msgstr "Desligado" msgid "Oh no!" msgstr "Opa!" -#: src/screens/Onboarding/StepInterests/index.tsx:133 +#: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." msgstr "Opa! Algo deu errado." @@ -3977,7 +4035,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/view/com/threadgate/WhoCanReply.tsx:239 +#: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" msgstr "" @@ -3994,10 +4052,10 @@ msgid "Oops, something went wrong!" msgstr "Opa, algo deu errado!" #: src/components/Lists.tsx:191 -#: src/components/StarterPack/ProfileStarterPacks.tsx:302 -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Opa!" @@ -4023,7 +4081,7 @@ msgstr "" msgid "Open emoji picker" msgstr "Abrir seletor de emojis" -#: src/view/screens/ProfileFeed.tsx:295 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Open feed options menu" msgstr "Abrir opções do feed" @@ -4035,7 +4093,7 @@ msgstr "Abrir links no navegador interno" msgid "Open message options" msgstr "" -#: src/screens/Moderation/index.tsx:227 +#: src/screens/Moderation/index.tsx:230 msgid "Open muted words and tags settings" msgstr "Abrir opções de palavras/tags silenciadas" @@ -4047,7 +4105,7 @@ msgstr "Abrir navegação" msgid "Open post options menu" msgstr "Abrir opções do post" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 msgid "Open starter pack menu" msgstr "" @@ -4064,6 +4122,10 @@ msgstr "Abrir registros do sistema" msgid "Opens {numItems} options" msgstr "Abre {numItems} opções" +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" msgstr "Abre as configurações de acessibilidade" @@ -4206,7 +4268,7 @@ msgstr "Opção {0} de {numItems}" msgid "Optionally provide additional information below:" msgstr "Se quiser adicionar mais informações, digite abaixo:" -#: src/view/com/modals/Threadgate.tsx:92 +#: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" msgstr "Ou combine estas opções:" @@ -4266,7 +4328,6 @@ msgstr "Senha atualizada!" msgid "Pause" msgstr "Pausar" -#: src/screens/StarterPack/Wizard/index.tsx:194 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "Pessoas" @@ -4279,32 +4340,37 @@ msgstr "Pessoas seguidas por @{0}" msgid "People following @{0}" msgstr "Pessoas seguindo @{0}" -#: src/view/com/lightbox/Lightbox.tsx:67 +#: src/view/com/lightbox/Lightbox.tsx:69 msgid "Permission to access camera roll is required." msgstr "A permissão de galeria é obrigatória." -#: src/view/com/lightbox/Lightbox.tsx:73 +#: src/view/com/lightbox/Lightbox.tsx:75 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." -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:93 msgid "Pets" msgstr "Pets" +#: src/screens/Onboarding/state.ts:94 +msgid "Photography" +msgstr "" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "Imagens destinadas a adultos." -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Fixar na tela inicial" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 msgid "Pin to Home" msgstr "Fixar na Tela Inicial" @@ -4400,6 +4466,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Aguarde até que a prévia de link termine de carregar" #: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:95 msgid "Politics" msgstr "Política" @@ -4463,7 +4530,7 @@ msgstr "Post não encontrado" msgid "posts" msgstr "posts" -#: src/view/screens/Profile.tsx:216 +#: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Posts" @@ -4537,7 +4604,7 @@ msgid "Processing..." msgstr "Processando..." #: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:353 +#: src/view/screens/Profile.tsx:346 msgid "profile" msgstr "perfil" @@ -4577,15 +4644,15 @@ msgstr "Publicar post" msgid "Publish reply" msgstr "Publicar resposta" -#: src/components/StarterPack/QrCodeDialog.tsx:131 +#: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:109 +#: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:110 +#: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" msgstr "" @@ -4647,7 +4714,9 @@ msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:325 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -4656,7 +4725,7 @@ msgstr "" msgid "Remove" msgstr "Remover" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" msgstr "" @@ -4688,13 +4757,13 @@ msgstr "Remover feed?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:332 +#: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Remover dos meus feeds" -#: src/components/FeedCard.tsx:315 +#: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Remover dos meus feeds?" @@ -4742,7 +4811,7 @@ msgid "Removed from my feeds" msgstr "Removido dos meus feeds" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "Removido dos feeds salvos" @@ -4760,19 +4829,19 @@ msgstr "Remove o post citado" msgid "Replace with Discover" msgstr "Trocar pelo Discover" -#: src/view/screens/Profile.tsx:217 +#: src/view/screens/Profile.tsx:210 msgid "Replies" msgstr "Respostas" -#: src/view/com/threadgate/WhoCanReply.tsx:66 +#: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" msgstr "" #: src/view/com/threadgate/WhoCanReply.tsx:123 -msgid "Replies on this thread are disabled" -msgstr "" +#~ msgid "Replies on this thread are disabled" +#~ msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:237 +#: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "Respostas para esta thread estão desativadas" @@ -4828,8 +4897,8 @@ msgstr "Denunciar conversa" msgid "Report dialog" msgstr "Janela de denúncia" -#: src/view/screens/ProfileFeed.tsx:348 -#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:351 msgid "Report feed" msgstr "Denunciar feed" @@ -4846,8 +4915,8 @@ msgstr "Denunciar mensagem" msgid "Report post" msgstr "Denunciar post" -#: src/screens/StarterPack/StarterPackScreen.tsx:469 -#: src/screens/StarterPack/StarterPackScreen.tsx:472 +#: src/screens/StarterPack/StarterPackScreen.tsx:476 +#: src/screens/StarterPack/StarterPackScreen.tsx:479 msgid "Report starter pack" msgstr "" @@ -4893,7 +4962,7 @@ msgstr "Repostar" msgid "Repost" msgstr "Repostar" -#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:418 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4993,12 +5062,12 @@ msgstr "Tenta a última ação, que deu erro" #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 #: src/screens/Login/LoginForm.tsx:291 #: src/screens/Login/LoginForm.tsx:298 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/Onboarding/StepInterests/index.tsx:234 #: src/screens/Signup/index.tsx:245 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 @@ -5010,7 +5079,7 @@ msgstr "Tente novamente" #~ msgstr "Tentar novamente." #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:622 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Voltar para página anterior" @@ -5020,12 +5089,13 @@ msgid "Returns to home page" msgstr "Voltar para a tela inicial" #: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/ProfileFeed.tsx:113 msgid "Returns to previous page" msgstr "Voltar para página anterior" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/StarterPack/QrCodeDialog.tsx:190 +#: src/components/dialogs/ThreadgateEditor.tsx:88 +#: src/components/StarterPack/QrCodeDialog.tsx:184 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5034,7 +5104,7 @@ msgstr "Voltar para página anterior" msgid "Save" msgstr "Salvar" -#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/lightbox/Lightbox.tsx:135 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5056,8 +5126,8 @@ msgstr "Salvar Alterações" msgid "Save handle change" msgstr "Salvar usuário" -#: src/components/StarterPack/ShareDialog.tsx:163 -#: src/components/StarterPack/ShareDialog.tsx:170 +#: src/components/StarterPack/ShareDialog.tsx:150 +#: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" msgstr "" @@ -5065,12 +5135,12 @@ msgstr "" msgid "Save image crop" msgstr "Salvar corte de imagem" -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" msgstr "Salvar nos meus feeds" @@ -5078,7 +5148,7 @@ msgstr "Salvar nos meus feeds" msgid "Saved Feeds" msgstr "Feeds Salvos" -#: src/view/com/lightbox/Lightbox.tsx:82 +#: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" msgstr "Imagem salva na galeria." @@ -5086,7 +5156,7 @@ msgstr "Imagem salva na galeria." #~ msgid "Saved to your camera roll." #~ msgstr "Imagem salva na galeria." -#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "Adicionado aos seus feeds" @@ -5104,13 +5174,14 @@ msgid "Saves image crop settings" msgstr "Salva o corte da imagem" #: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:82 +#: src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:372 #: src/view/com/notifications/FeedItem.tsx:397 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:96 msgid "Science" msgstr "Ciência" @@ -5152,7 +5223,7 @@ msgstr "Pesquisar por posts de @{authorHandle} com a tag {displayTag}" msgid "Search for all posts with tag {displayTag}" msgstr "Pesquisar por posts com a tag {displayTag}" -#: src/screens/StarterPack/Wizard/index.tsx:467 +#: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -5294,7 +5365,7 @@ msgstr "Selecione o idioma do seu aplicativo" msgid "Select your date of birth" msgstr "Selecione sua data de nascimento" -#: src/screens/Onboarding/StepInterests/index.tsx:201 +#: src/screens/Onboarding/StepInterests/index.tsx:206 msgid "Select your interests from the options below" msgstr "Selecione seus interesses" @@ -5371,7 +5442,7 @@ msgstr "Envia o e-mail com o código de confirmação para excluir a conta" msgid "Server address" msgstr "URL do servidor" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:307 msgid "Set birthdate" msgstr "Definir data de nascimento" @@ -5459,9 +5530,9 @@ msgstr "Atividade sexual ou nudez erótica." msgid "Sexually Suggestive" msgstr "Sexualmente Sugestivo" -#: src/components/StarterPack/QrCodeDialog.tsx:180 -#: src/screens/StarterPack/StarterPackScreen.tsx:303 -#: src/screens/StarterPack/StarterPackScreen.tsx:458 +#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/screens/StarterPack/StarterPackScreen.tsx:312 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5471,7 +5542,7 @@ msgstr "Sexualmente Sugestivo" msgid "Share" msgstr "Compartilhar" -#: src/view/com/lightbox/Lightbox.tsx:142 +#: src/view/com/lightbox/Lightbox.tsx:144 msgctxt "action" msgid "Share" msgstr "Compartilhar" @@ -5490,30 +5561,36 @@ msgstr "" msgid "Share anyway" msgstr "Compartilhar assim" -#: src/view/screens/ProfileFeed.tsx:358 -#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:361 msgid "Share feed" msgstr "Compartilhar feed" -#: src/screens/StarterPack/StarterPackScreen.tsx:462 +#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/screens/StarterPack/StarterPackScreen.tsx:469 msgid "Share link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "Compartilhar Link" -#: src/components/StarterPack/ShareDialog.tsx:100 +#: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:296 +#: src/components/StarterPack/ShareDialog.tsx:134 +#: src/components/StarterPack/ShareDialog.tsx:145 +msgid "Share QR code" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:305 msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:112 +#: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5567,7 +5644,7 @@ msgstr "" msgid "Show less like this" msgstr "Mostrar menos disso" -#: src/view/com/post-thread/PostThreadItem.tsx:533 +#: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" @@ -5727,33 +5804,33 @@ msgstr "autenticado como @{0}" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:240 -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Pular" -#: src/screens/Onboarding/StepInterests/index.tsx:237 +#: src/screens/Onboarding/StepInterests/index.tsx:242 msgid "Skip this flow" msgstr "Pular" #: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:85 msgid "Software Dev" msgstr "Desenvolvimento de software" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 -#: src/view/com/threadgate/WhoCanReply.tsx:67 -#: src/view/com/threadgate/WhoCanReply.tsx:124 +#: src/components/WhoCanReply.tsx:72 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "" #: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "" +#~ msgid "Some subtitle" +#~ msgstr "" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -5765,7 +5842,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 +#: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Algo deu errado. Por favor, tente novamente." @@ -5801,6 +5878,7 @@ msgid "Spam; excessive mentions or replies" msgstr "Spam; menções ou respostas excessivas" #: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:97 msgid "Sports" msgstr "Esportes" @@ -5822,7 +5900,7 @@ msgstr "" #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -5830,14 +5908,18 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:214 msgid "Starter Packs" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + #: src/view/screens/Settings/index.tsx:862 #~ msgid "Status page" #~ msgstr "Página de status" @@ -5955,6 +6037,7 @@ msgid "Tap to view fully" msgstr "Toque para ver tudo" #: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:98 msgid "Tech" msgstr "Tecnologia" @@ -6007,10 +6090,10 @@ msgstr "Contém o seguinte:" msgid "That handle is already taken." msgstr "Este identificador de usuário já está sendo usado." -#: src/screens/StarterPack/StarterPackScreen.tsx:100 -#: src/screens/StarterPack/StarterPackScreen.tsx:101 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:102 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/Wizard/index.tsx:106 +#: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." msgstr "" @@ -6031,7 +6114,7 @@ msgstr "As Diretrizes da Comunidade foram movidas para <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "A Política de Direitos Autorais foi movida para <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6060,7 +6143,7 @@ msgstr "O post pode ter sido excluído." msgid "The Privacy Policy has been moved to <0/>" msgstr "A Política de Privacidade foi movida para <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:589 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6081,7 +6164,7 @@ 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:542 +#: src/view/screens/ProfileFeed.tsx:544 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." @@ -6091,7 +6174,7 @@ msgstr "Tivemos um problema ao remover este feed, por favor verifique sua conex #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: 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." @@ -6104,7 +6187,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:233 +#: src/view/screens/ProfileFeed.tsx:234 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6162,6 +6245,7 @@ msgstr "Tivemos um problema ao carregar suas senhas de app." msgid "There was an issue! {0}" msgstr "Tivemos um problema! {0}" +#: src/components/WhoCanReply.tsx:116 #: src/view/screens/ProfileList.tsx:335 #: src/view/screens/ProfileList.tsx:349 #: src/view/screens/ProfileList.tsx:363 @@ -6254,7 +6338,7 @@ msgstr "Este feed está recebendo muito tráfego e está temporariamente indispo msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "Este feed está vazio! Talvez você precise seguir mais usuários ou configurar os idiomas filtrados." -#: src/view/screens/ProfileFeed.tsx:472 +#: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" @@ -6361,7 +6445,7 @@ msgstr "Este usuário está incluído na lista <0>{0}, que você bloqueou." msgid "This user is included in the <0>{0} list which you have muted." msgstr "Este usuário está incluído na lista <0>{0}, que você silenciou." -#: src/components/NewskieDialog.tsx:53 +#: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." msgstr "" @@ -6386,6 +6470,10 @@ msgstr "Preferências das Threads" msgid "Thread Preferences" msgstr "Preferências das Threads" +#: src/components/WhoCanReply.tsx:109 +msgid "Thread settings updated" +msgstr "" + #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "Visualização de Threads" @@ -6414,7 +6502,7 @@ msgstr "Alternar entre opções de uma palavra silenciada" msgid "Toggle dropdown" msgstr "Alternar menu suspenso" -#: src/screens/Moderation/index.tsx:332 +#: src/screens/Moderation/index.tsx:336 msgid "Toggle to enable or disable adult content" msgstr "Ligar ou desligar conteúdo adulto" @@ -6429,8 +6517,8 @@ msgstr "Transformações" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: 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 msgid "Translate" @@ -6441,6 +6529,10 @@ msgctxt "action" msgid "Try again" msgstr "Tentar novamente" +#: src/screens/Onboarding/state.ts:99 +msgid "TV" +msgstr "" + #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" msgstr "Autenticação de dois fatores (2FA)" @@ -6470,7 +6562,7 @@ msgstr "Dessilenciar lista" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Não foi possível entrar em contato com seu serviço. Por favor, verifique sua conexão à internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:513 +#: src/screens/StarterPack/StarterPackScreen.tsx:520 msgid "Unable to delete" msgstr "" @@ -6533,7 +6625,7 @@ msgstr "Deixar de seguir" #~ msgid "Unlike" #~ msgstr "Descurtir" -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Unlike this feed" msgstr "Descurtir este feed" @@ -6568,12 +6660,12 @@ msgstr "" msgid "Unmute thread" msgstr "Dessilenciar thread" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Desafixar" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 msgid "Unpin from home" msgstr "Desafixar da tela inicial" @@ -6743,7 +6835,7 @@ msgstr "Nome de usuário ou endereço de e-mail" msgid "Users" msgstr "Usuários" -#: src/view/com/threadgate/WhoCanReply.tsx:274 +#: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" msgstr "usuários seguidos por <0/>" @@ -6754,7 +6846,7 @@ msgstr "usuários seguidos por <0/>" msgid "Users I follow" msgstr "" -#: src/view/com/modals/Threadgate.tsx:109 +#: src/components/dialogs/ThreadgateEditor.tsx:132 msgid "Users in \"{0}\"" msgstr "Usuários em \"{0}\"" @@ -6808,6 +6900,7 @@ msgid "Version {appVersion} {bundleInfo}" msgstr "Versão {appVersion} {bundleInfo}" #: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:88 msgid "Video Games" msgstr "Games" @@ -6859,7 +6952,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:583 +#: src/view/screens/ProfileFeed.tsx:585 msgid "View users who like this feed" msgstr "Ver usuários que curtiram este feed" @@ -6919,11 +7012,11 @@ msgstr "Não recomendamos utilizar palavras comuns que aparecem em muitos posts, msgid "We were unable to load your birth date preferences. Please try again." msgstr "Não foi possível carregar sua data de nascimento. Por favor, tente novamente." -#: src/screens/Moderation/index.tsx:385 +#: src/screens/Moderation/index.tsx:409 msgid "We were unable to load your configured labelers at this time." msgstr "Não foi possível carregar seus rotuladores." -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:143 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Não conseguimos conectar. Por favor, tente novamente para continuar configurando a sua conta. Se continuar falhando, você pode pular este fluxo." @@ -6931,7 +7024,7 @@ msgstr "Não conseguimos conectar. Por favor, tente novamente para continuar con msgid "We will let you know when your account is ready." msgstr "Avisaremos quando sua conta estiver pronta." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:148 msgid "We'll use this to help customize your experience." msgstr "Usaremos isto para customizar a sua experiência." @@ -6980,7 +7073,11 @@ msgstr "" #~ msgid "Welcome to <0>Bluesky" #~ msgstr "Bem-vindo ao <0>Bluesky" -#: src/screens/Onboarding/StepInterests/index.tsx:135 +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" msgstr "Do que você gosta?" @@ -7007,17 +7104,15 @@ msgstr "Quais idiomas você gostaria de ver nos seus feeds?" msgid "Who can message you?" msgstr "" -#: src/view/com/modals/Threadgate.tsx:69 -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Who can reply" msgstr "Quem pode responder" -#: src/view/com/threadgate/WhoCanReply.tsx:206 +#: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:210 +#: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" msgstr "" @@ -7073,6 +7168,7 @@ msgid "Write your reply" msgstr "Escreva sua resposta" #: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:100 msgid "Writers" msgstr "Escritores" @@ -7091,7 +7187,7 @@ msgstr "Sim" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:525 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Yes, delete this starter pack" msgstr "" @@ -7107,6 +7203,10 @@ msgstr "Ontem, {time}" msgid "you" msgstr "" +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + #: src/screens/SignupQueued.tsx:136 msgid "You are in line." msgstr "Você está na fila." @@ -7240,6 +7340,10 @@ msgstr "Você ainda não silenciou nenhuma conta. Para silenciar uma conta, aces msgid "You have reached the end" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +msgid "You haven't created a starter pack yet!" +msgstr "" + #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "Você não silenciou nenhuma palavra ou tag ainda" @@ -7268,15 +7372,15 @@ msgstr "Você precisa ter no mínimo 13 anos de idade para se cadastrar." #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Você precisa ser maior de idade para habilitar conteúdo adulto." -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:62 +#: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." msgstr "" @@ -7328,7 +7432,7 @@ msgstr "" msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/tr/messages.po b/src/locale/locales/tr/messages.po index 6652d4f1f9..0f53e003c4 100644 --- a/src/locale/locales/tr/messages.po +++ b/src/locale/locales/tr/messages.po @@ -71,7 +71,7 @@ msgstr "" msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:215 +#: src/components/FeedCard.tsx:216 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -92,7 +92,11 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:343 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +msgid "{0} joined this week" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:350 msgid "{0} people have used this starter pack!" msgstr "" @@ -136,7 +140,7 @@ msgstr "" msgid "{diffSeconds, plural, one {second} other {seconds}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" msgstr "" @@ -171,7 +175,7 @@ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:586 +#: src/view/screens/ProfileFeed.tsx:588 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -179,11 +183,11 @@ msgstr "" msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} okunmamış" -#: src/components/NewskieDialog.tsx:92 +#: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" msgstr "" -#: src/components/NewskieDialog.tsx:87 +#: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "" @@ -191,17 +195,27 @@ msgstr "" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:290 +#: src/components/WhoCanReply.tsx:295 msgid "<0/> members" msgstr "<0/> üyeleri" #: src/screens/StarterPack/Wizard/index.tsx:485 -msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +#~ 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 "" + +#: 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 "" +#~ 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 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -211,11 +225,15 @@ msgstr "" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" +#: 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 "" -#: src/screens/StarterPack/Wizard/index.tsx:478 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -244,6 +262,10 @@ msgstr "" #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "<0>Bluesky'e<1>Hoşgeldiniz" +#: src/screens/StarterPack/Wizard/index.tsx:457 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠Geçersiz Kullanıcı Adı" @@ -342,11 +364,11 @@ msgstr "Hesap susturulması kaldırıldı" msgid "Add" msgstr "Ekle" -#: src/screens/StarterPack/Wizard/index.tsx:539 +#: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:56 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" msgstr "" @@ -410,14 +432,14 @@ msgid "Add muted words and tags" msgstr "" #: src/screens/StarterPack/Wizard/index.tsx:197 -msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "" +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:464 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" msgstr "" @@ -429,7 +451,7 @@ msgstr "" msgid "Add the following DNS record to your domain:" msgstr "Alan adınıza aşağıdaki DNS kaydını ekleyin:" -#: src/components/FeedCard.tsx:300 +#: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" msgstr "" @@ -468,16 +490,20 @@ msgstr "Yetişkin İçerik" #~ msgid "Adult content can only be enabled via the Web at <0/>." #~ msgstr "Yetişkin içeriği yalnızca Web üzerinden <0/> etkinleştirilebilir." +#: src/screens/Moderation/index.tsx:356 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "" -#: src/screens/Moderation/index.tsx:375 +#: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "Gelişmiş" -#: src/screens/StarterPack/StarterPackScreen.tsx:271 +#: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "All accounts have been followed!" msgstr "" @@ -542,16 +568,16 @@ msgstr "Önceki adresinize, {0} bir e-posta gönderildi. Aşağıda girebileceğ msgid "An error occured" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +#: 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 "" +#~ msgid "An error occurred while saving the image." +#~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:76 -#: src/components/StarterPack/ShareDialog.tsx:91 +#: src/components/StarterPack/QrCodeDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "" @@ -559,7 +585,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:275 msgid "An error occurred while trying to follow all" msgstr "" @@ -576,16 +602,17 @@ msgstr "" msgid "An issue occurred, please try again." msgstr "Bir sorun oluştu, lütfen tekrar deneyin." -#: src/screens/Onboarding/StepInterests/index.tsx:194 +#: src/screens/Onboarding/StepInterests/index.tsx:199 msgid "an unknown error occurred" msgstr "" +#: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:280 -#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "ve" #: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:79 msgid "Animals" msgstr "Hayvanlar" @@ -669,7 +696,7 @@ msgstr "Görünüm" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -697,7 +724,7 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "" -#: src/components/FeedCard.tsx:317 +#: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -718,6 +745,7 @@ msgid "Are you writing in <0>{0}?" msgstr "<0>{0} dilinde mi yazıyorsunuz?" #: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:80 msgid "Art" msgstr "Sanat" @@ -744,7 +772,7 @@ msgstr "" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:312 +#: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Geri" @@ -810,7 +838,7 @@ msgstr "Bu hesapları engelle?" msgid "Blocked" msgstr "Engellendi" -#: src/screens/Moderation/index.tsx:267 +#: src/screens/Moderation/index.tsx:270 msgid "Blocked accounts" msgstr "Engellenen hesaplar" @@ -875,11 +903,11 @@ msgstr "" #~ msgid "Bluesky uses invites to build a healthier community. If you don't know anybody with an invite, you can sign up for the waitlist and we'll send one soon." #~ msgstr "Bluesky, daha sağlıklı bir topluluk oluşturmak için davetleri kullanır. Bir daveti olan kimseyi tanımıyorsanız, bekleme listesine kaydolabilir ve yakında bir tane göndereceğiz." -#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:533 +#: 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, profilinizi ve gönderilerinizi oturum açmamış kullanıcılara göstermeyecektir. Diğer uygulamalar bu isteği yerine getirmeyebilir. Bu, hesabınızı özel yapmaz." @@ -896,6 +924,7 @@ msgid "Blur images and filter from feeds" msgstr "" #: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:81 msgid "Books" msgstr "Kitaplar" @@ -1121,17 +1150,25 @@ msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "Aşağıya gireceğiniz onay kodu içeren bir e-posta için gelen kutunuzu kontrol edin:" #: src/view/com/modals/Threadgate.tsx:75 -msgid "Choose \"Everybody\" or \"Nobody\"" -msgstr "\"Herkes\" veya \"Hiç kimse\" seçin" +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "\"Herkes\" veya \"Hiç kimse\" seçin" #: src/view/screens/Settings.tsx:691 #~ msgid "Choose a new Bluesky username or create" #~ msgstr "Yeni bir Bluesky kullanıcı adı seçin veya oluşturun" -#: src/components/StarterPack/ProfileStarterPacks.tsx:288 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:187 +msgid "Choose People" +msgstr "" + #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Hizmet Seç" @@ -1149,6 +1186,11 @@ msgstr "Özel beslemelerinizi destekleyen algoritmaları seçin." msgid "Choose this color as your avatar" msgstr "" +#: 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 "Ana beslemelerinizi seçin" @@ -1225,18 +1267,18 @@ msgstr "" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/NewskieDialog.tsx:120 -#: src/components/NewskieDialog.tsx:127 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:121 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:127 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: 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:189 msgid "Close" msgstr "Kapat" -#: src/components/Dialog/index.web.tsx:113 -#: src/components/Dialog/index.web.tsx:251 +#: src/components/Dialog/index.web.tsx:116 +#: src/components/Dialog/index.web.tsx:254 msgid "Close active dialog" msgstr "Etkin iletişim kutusunu kapat" @@ -1303,10 +1345,12 @@ msgid "Collapses list of users for a given notification" msgstr "Belirli bir bildirim için kullanıcı listesini daraltır" #: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:82 msgid "Comedy" msgstr "Komedi" #: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:83 msgid "Comics" msgstr "Çizgi romanlar" @@ -1377,11 +1421,11 @@ msgstr "Hesabı silmeyi onayla" #~ msgid "Confirm your age to enable adult content." #~ msgstr "Yetişkin içeriği etkinleştirmek için yaşınızı onaylayın." -#: src/screens/Moderation/index.tsx:301 +#: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "" -#: src/screens/Moderation/index.tsx:292 +#: src/screens/Moderation/index.tsx:295 msgid "Confirm your birthdate" msgstr "" @@ -1423,7 +1467,7 @@ msgstr "" #~ msgid "Content Filtering" #~ msgstr "İçerik Filtreleme" -#: src/screens/Moderation/index.tsx:285 +#: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "" @@ -1452,7 +1496,7 @@ msgstr "İçerik uyarıları" msgid "Context menu backdrop, click to close the menu." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepInterests/index.tsx:258 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Devam et" @@ -1465,7 +1509,7 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:251 msgid "Continue to next step" @@ -1513,7 +1557,7 @@ msgstr "" msgid "Copies app password" msgstr "Uygulama şifresini kopyalar" -#: src/components/StarterPack/QrCodeDialog.tsx:180 +#: src/components/StarterPack/QrCodeDialog.tsx:174 #: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Kopyala" @@ -1527,7 +1571,11 @@ msgstr "" msgid "Copy code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 +#: src/components/StarterPack/ShareDialog.tsx:123 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" msgstr "" @@ -1554,7 +1602,7 @@ msgstr "" msgid "Copy post text" msgstr "Gönderi metnini kopyala" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" msgstr "" @@ -1567,7 +1615,7 @@ msgstr "Telif Hakkı Politikası" msgid "Could not leave chat" msgstr "" -#: src/view/screens/ProfileFeed.tsx:102 +#: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" msgstr "Besleme yüklenemedi" @@ -1591,7 +1639,7 @@ msgstr "" #~ msgid "Country" #~ msgstr "Ülke" -#: src/components/StarterPack/ProfileStarterPacks.tsx:270 +#: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" msgstr "" @@ -1604,17 +1652,17 @@ msgstr "Yeni bir hesap oluştur" msgid "Create a new Bluesky account" msgstr "Yeni bir Bluesky hesabı oluştur" -#: src/components/StarterPack/QrCodeDialog.tsx:157 +#: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:257 +#: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +#: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" msgstr "" @@ -1645,8 +1693,8 @@ msgid "Create new account" msgstr "Yeni hesap oluştur" #: src/components/StarterPack/ShareDialog.tsx:158 -msgid "Create QR code" -msgstr "" +#~ msgid "Create QR code" +#~ msgstr "" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1669,6 +1717,7 @@ msgstr "{0} oluşturuldu" #~ msgstr "Küçük resimli bir kart oluşturur. Kart, {url} bağlantısına gider" #: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:84 msgid "Culture" msgstr "Kültür" @@ -1725,9 +1774,9 @@ msgid "Debug panel" msgstr "Hata ayıklama paneli" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:449 -#: src/screens/StarterPack/StarterPackScreen.tsx:528 -#: src/screens/StarterPack/StarterPackScreen.tsx:608 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1788,12 +1837,12 @@ msgstr "Hesabımı Sil…" msgid "Delete post" msgstr "Gönderiyi sil" -#: src/screens/StarterPack/StarterPackScreen.tsx:443 -#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:450 +#: src/screens/StarterPack/StarterPackScreen.tsx:606 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:494 +#: src/screens/StarterPack/StarterPackScreen.tsx:501 msgid "Delete starter pack?" msgstr "" @@ -1869,7 +1918,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:68 #: src/screens/Messages/Settings.tsx:140 #: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:341 +#: src/screens/Moderation/index.tsx:346 msgid "Disabled" msgstr "" @@ -1885,8 +1934,8 @@ msgstr "Sil" msgid "Discard draft?" msgstr "" -#: src/screens/Moderation/index.tsx:518 -#: src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:542 +#: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" msgstr "Uygulamaların hesabımı oturum açmamış kullanıcılara göstermesini engelle" @@ -1941,6 +1990,7 @@ msgstr "Alan adı doğrulandı!" #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/ThreadgateEditor.tsx:88 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 @@ -1960,8 +2010,6 @@ msgstr "Tamam" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 #: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/Threadgate.tsx:136 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 #: src/view/screens/PreferencesThreads.tsx:162 @@ -1977,7 +2025,7 @@ msgstr "Tamam{extraText}" #~ msgid "Double tap to sign in" #~ msgstr "Oturum açmak için çift dokunun" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 msgid "Download Bluesky" msgstr "" @@ -2034,9 +2082,9 @@ msgstr "örn: Reklamlarla tekrar tekrar yanıt veren kullanıcılar." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Her kod bir kez çalışır. Düzenli aralıklarla daha fazla davet kodu alacaksınız." -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:522 -#: src/screens/StarterPack/Wizard/index.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" @@ -2052,7 +2100,7 @@ msgstr "Düzenle" msgid "Edit avatar" msgstr "" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "" @@ -2080,7 +2128,7 @@ msgstr "Beslemelerimi Düzenle" msgid "Edit my profile" msgstr "Profilimi düzenle" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "" @@ -2099,7 +2147,7 @@ msgstr "Profil Düzenle" #~ msgid "Edit Saved Feeds" #~ msgstr "Kayıtlı Beslemeleri Düzenle" -#: src/screens/StarterPack/StarterPackScreen.tsx:430 +#: src/screens/StarterPack/StarterPackScreen.tsx:437 msgid "Edit starter pack" msgstr "" @@ -2107,8 +2155,7 @@ msgstr "" msgid "Edit User List" msgstr "Kullanıcı Listesini Düzenle" -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" msgstr "" @@ -2125,9 +2172,14 @@ msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:86 msgid "Education" msgstr "Eğitim" +#: src/components/dialogs/ThreadgateEditor.tsx:98 +msgid "Either choose \"Everybody\" or \"Nobody\"" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" @@ -2176,7 +2228,7 @@ msgstr "" msgid "Enable {0} only" msgstr "Yalnızca {0} etkinleştir" -#: src/screens/Moderation/index.tsx:329 +#: src/screens/Moderation/index.tsx:333 msgid "Enable adult content" msgstr "" @@ -2212,7 +2264,7 @@ msgstr "" #: src/screens/Messages/Settings.tsx:131 #: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:339 +#: src/screens/Moderation/index.tsx:344 msgid "Enabled" msgstr "" @@ -2290,19 +2342,18 @@ msgstr "" msgid "Error receiving captcha response." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Hata:" -#: src/view/com/modals/Threadgate.tsx:79 +#: src/components/dialogs/ThreadgateEditor.tsx:102 msgid "Everybody" msgstr "Herkes" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#: src/view/com/threadgate/WhoCanReply.tsx:64 -#: src/view/com/threadgate/WhoCanReply.tsx:121 -#: src/view/com/threadgate/WhoCanReply.tsx:235 +#: src/components/WhoCanReply.tsx:69 +#: src/components/WhoCanReply.tsx:240 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "" @@ -2401,8 +2452,8 @@ msgstr "Harici medya ayarları" msgid "Failed to create app password." msgstr "Uygulama şifresi oluşturulamadı." -#: src/screens/StarterPack/Wizard/index.tsx:241 -#: src/screens/StarterPack/Wizard/index.tsx:249 +#: src/screens/StarterPack/Wizard/index.tsx:230 +#: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" msgstr "" @@ -2418,7 +2469,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "Gönderi silinemedi, lütfen tekrar deneyin" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/StarterPackScreen.tsx:569 msgid "Failed to delete starter pack" msgstr "" @@ -2454,7 +2505,7 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" msgstr "" @@ -2475,7 +2526,7 @@ msgstr "" msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:280 +#: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "" @@ -2501,7 +2552,7 @@ msgstr "{0} tarafından besleme" #~ msgid "Feed Preferences" #~ msgstr "Besleme Tercihleri" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "" @@ -2511,10 +2562,9 @@ msgid "Feedback" msgstr "Geribildirim" #: src/Navigation.tsx:320 -#: src/screens/StarterPack/Wizard/index.tsx:201 #: src/view/screens/Feeds.tsx:445 #: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:220 +#: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:373 #: src/view/shell/Drawer.tsx:493 @@ -2534,7 +2584,7 @@ msgstr "Beslemeler, kullanıcıların biraz kodlama uzmanlığı ile oluşturdu #~ msgid "Feeds can be topical as well!" #~ msgstr "Beslemeler aynı zamanda konusal olabilir!" -#: src/components/FeedCard.tsx:277 +#: src/components/FeedCard.tsx:282 msgid "Feeds updated!" msgstr "" @@ -2588,7 +2638,7 @@ msgstr "" msgid "Fine-tune the discussion threads." msgstr "Tartışma konularını ayarlayın." -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" msgstr "" @@ -2636,8 +2686,8 @@ msgstr "" msgid "Follow Account" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:308 -#: src/screens/StarterPack/StarterPackScreen.tsx:315 +#: src/screens/StarterPack/StarterPackScreen.tsx:317 +#: src/screens/StarterPack/StarterPackScreen.tsx:324 msgid "Follow all" msgstr "" @@ -2685,7 +2735,7 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/view/com/modals/Threadgate.tsx:101 +#: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" msgstr "Takip edilen kullanıcılar" @@ -2749,6 +2799,7 @@ msgid "Follows You" msgstr "Sizi Takip Ediyor" #: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:87 msgid "Food" msgstr "Yiyecek" @@ -2798,7 +2849,7 @@ msgstr "<0/> tarafından" msgid "Gallery" msgstr "Galeri" -#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" msgstr "" @@ -2828,7 +2879,7 @@ msgstr "" #: src/view/com/auth/LoggedOut.tsx:78 #: src/view/com/auth/LoggedOut.tsx:79 #: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:133 msgid "Go back" @@ -2837,9 +2888,9 @@ msgstr "Geri git" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:628 #: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Geri Git" @@ -2853,7 +2904,7 @@ msgstr "Geri Git" msgid "Go back to previous step" msgstr "Önceki adıma geri dön" -#: src/screens/StarterPack/Wizard/index.tsx:313 +#: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" msgstr "" @@ -2998,7 +3049,7 @@ msgstr "Hmm, besleme sunucusu kötü bir yanıt verdi. Lütfen bu konuda besleme msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Hmm, bu beslemeyi bulmakta sorun yaşıyoruz. Silinmiş olabilir." -#: src/screens/Moderation/index.tsx:59 +#: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "" @@ -3099,7 +3150,7 @@ msgstr "Resim alternatif metni" #~ msgid "Image options" #~ msgstr "Resim seçenekleri" -#: src/components/StarterPack/ShareDialog.tsx:88 +#: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" msgstr "" @@ -3220,7 +3271,7 @@ msgstr "Davet kodları: {0} kullanılabilir" msgid "Invite codes: 1 available" msgstr "Davet kodları: 1 kullanılabilir" -#: src/components/StarterPack/ShareDialog.tsx:109 +#: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" msgstr "" @@ -3236,7 +3287,7 @@ msgstr "" #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "Takip ettiğiniz kişilerin gönderilerini olduğu gibi gösterir." -#: src/screens/StarterPack/Wizard/index.tsx:473 +#: 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 "" @@ -3244,8 +3295,8 @@ msgstr "" msgid "Jobs" msgstr "İşler" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 msgid "Join Bluesky" msgstr "" @@ -3267,6 +3318,7 @@ msgstr "" #~ msgstr "Bekleme Listesine Katıl" #: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:89 msgid "Journalism" msgstr "Gazetecilik" @@ -3282,7 +3334,7 @@ msgstr "" msgid "Labeled by the author." msgstr "" -#: src/view/screens/Profile.tsx:214 +#: src/view/screens/Profile.tsx:207 msgid "Labels" msgstr "" @@ -3346,7 +3398,7 @@ msgstr "" msgid "Learn more about this warning" msgstr "Bu uyarı hakkında daha fazla bilgi edinin" -#: src/screens/Moderation/index.tsx:549 +#: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." msgstr "Bluesky'da neyin herkese açık olduğu hakkında daha fazla bilgi edinin." @@ -3387,7 +3439,7 @@ msgstr "kaldı." msgid "Legacy storage cleared, you need to restart the app now." msgstr "Eski depolama temizlendi, şimdi uygulamayı yeniden başlatmanız gerekiyor." -#: src/components/StarterPack/ProfileStarterPacks.tsx:293 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" msgstr "" @@ -3413,7 +3465,7 @@ msgstr "Açık" #~ msgstr "Beğen" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Bu beslemeyi beğen" @@ -3451,7 +3503,7 @@ msgstr "özel beslemenizi beğendi" msgid "liked your post" msgstr "gönderinizi beğendi" -#: src/view/screens/Profile.tsx:219 +#: src/view/screens/Profile.tsx:212 msgid "Likes" msgstr "Beğeniler" @@ -3497,8 +3549,8 @@ msgid "List unmuted" msgstr "Liste sessizden çıkarıldı" #: src/Navigation.tsx:122 +#: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/screens/Profile.tsx:222 #: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 @@ -3532,7 +3584,7 @@ msgstr "Yeni bildirimleri yükle" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:493 +#: src/view/screens/ProfileFeed.tsx:494 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Yeni gönderileri yükle" @@ -3561,7 +3613,7 @@ msgstr "" msgid "Log out" msgstr "Çıkış yap" -#: src/screens/Moderation/index.tsx:442 +#: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" msgstr "Çıkış yapan görünürlüğü" @@ -3593,7 +3645,7 @@ msgstr "" msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +#: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" msgstr "" @@ -3611,15 +3663,15 @@ msgid "Mark as read" msgstr "" #: src/view/screens/AccessibilitySettings.tsx:102 -#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:211 msgid "Media" msgstr "Medya" -#: src/view/com/threadgate/WhoCanReply.tsx:270 +#: src/components/WhoCanReply.tsx:275 msgid "mentioned users" msgstr "bahsedilen kullanıcılar" -#: src/view/com/modals/Threadgate.tsx:96 +#: src/components/dialogs/ThreadgateEditor.tsx:119 msgid "Mentioned users" msgstr "Bahsedilen kullanıcılar" @@ -3670,7 +3722,7 @@ msgid "Misleading Account" msgstr "" #: src/Navigation.tsx:127 -#: src/screens/Moderation/index.tsx:104 +#: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "Moderasyon" @@ -3703,7 +3755,7 @@ msgstr "Moderasyon listesi oluşturuldu" msgid "Moderation list updated" msgstr "Moderasyon listesi güncellendi" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:246 msgid "Moderation lists" msgstr "Moderasyon listeleri" @@ -3720,7 +3772,7 @@ msgstr "Moderasyon ayarları" msgid "Moderation states" msgstr "" -#: src/screens/Moderation/index.tsx:215 +#: src/screens/Moderation/index.tsx:218 msgid "Moderation tools" msgstr "" @@ -3729,7 +3781,7 @@ msgstr "" msgid "Moderator has chosen to set a general warning on the content." msgstr "Moderatör, içeriğe genel bir uyarı koymayı seçti." -#: src/view/com/post-thread/PostThreadItem.tsx:567 +#: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" msgstr "" @@ -3749,6 +3801,10 @@ msgstr "Daha fazla seçenek" msgid "Most-liked replies first" msgstr "En çok beğenilen yanıtlar önce" +#: src/screens/Onboarding/state.ts:90 +msgid "Movies" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "" @@ -3822,7 +3878,7 @@ msgstr "" msgid "Muted" msgstr "Sessize alındı" -#: src/screens/Moderation/index.tsx:255 +#: src/screens/Moderation/index.tsx:258 msgid "Muted accounts" msgstr "Sessize alınan hesaplar" @@ -3839,7 +3895,7 @@ msgstr "Sessize alınan hesapların gönderileri beslemenizden ve bildirimlerini msgid "Muted by \"{0}\"" msgstr "" -#: src/screens/Moderation/index.tsx:231 +#: src/screens/Moderation/index.tsx:234 msgid "Muted words & tags" msgstr "" @@ -3885,6 +3941,7 @@ msgid "Name or Description Violates Community Standards" msgstr "" #: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:91 msgid "Nature" msgstr "Doğa" @@ -3958,8 +4015,8 @@ msgstr "Yeni gönderi" #: src/view/screens/Feeds.tsx:580 #: src/view/screens/Notifications.tsx:193 -#: src/view/screens/Profile.tsx:485 -#: src/view/screens/ProfileFeed.tsx:427 +#: src/view/screens/Profile.tsx:478 +#: src/view/screens/ProfileFeed.tsx:428 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:277 @@ -3971,7 +4028,7 @@ msgctxt "action" msgid "New Post" msgstr "Yeni Gönderi" -#: src/components/NewskieDialog.tsx:71 +#: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "" @@ -3984,6 +4041,7 @@ msgid "Newest replies first" msgstr "En yeni yanıtlar önce" #: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:92 msgid "News" msgstr "Haberler" @@ -3994,10 +4052,10 @@ msgstr "Haberler" #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:258 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:195 -#: src/screens/StarterPack/Wizard/index.tsx:372 -#: src/screens/StarterPack/Wizard/index.tsx:379 +#: src/screens/StarterPack/Wizard/index.tsx:184 +#: src/screens/StarterPack/Wizard/index.tsx:188 +#: src/screens/StarterPack/Wizard/index.tsx:359 +#: src/screens/StarterPack/Wizard/index.tsx:366 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4021,7 +4079,7 @@ msgstr "Sonraki resim" msgid "No" msgstr "Hayır" -#: src/view/screens/ProfileFeed.tsx:560 +#: src/view/screens/ProfileFeed.tsx:562 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Açıklama yok" @@ -4035,7 +4093,7 @@ msgstr "" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." msgstr "" @@ -4108,11 +4166,11 @@ msgstr "" msgid "No thanks" msgstr "Teşekkürler" -#: src/view/com/modals/Threadgate.tsx:85 +#: src/components/dialogs/ThreadgateEditor.tsx:108 msgid "Nobody" msgstr "Hiç kimse" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Nobody can reply" msgstr "" @@ -4121,7 +4179,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -4134,7 +4192,7 @@ msgstr "" #~ msgstr "Uygulanamaz." #: src/Navigation.tsx:117 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Bulunamadı" @@ -4149,7 +4207,7 @@ msgstr "Şu anda değil" msgid "Note about sharing" msgstr "" -#: src/screens/Moderation/index.tsx:540 +#: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Not: Bluesky açık ve kamusal bir ağdır. Bu ayar yalnızca içeriğinizin Bluesky uygulaması ve web sitesindeki görünürlüğünü sınırlar, diğer uygulamalar bu ayarı dikkate almayabilir. İçeriğiniz hala diğer uygulamalar ve web siteleri tarafından çıkış yapan kullanıcılara gösterilebilir." @@ -4205,7 +4263,7 @@ msgstr "" msgid "Oh no!" msgstr "Oh hayır!" -#: src/screens/Onboarding/StepInterests/index.tsx:133 +#: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." msgstr "Oh hayır! Bir şeyler yanlış gitti." @@ -4241,7 +4299,7 @@ msgstr "Bir veya daha fazla resimde alternatif metin eksik." msgid "Only .jpg and .png files are supported" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:239 +#: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" msgstr "" @@ -4258,10 +4316,10 @@ msgid "Oops, something went wrong!" msgstr "" #: src/components/Lists.tsx:191 -#: src/components/StarterPack/ProfileStarterPacks.tsx:302 -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Hata!" @@ -4287,7 +4345,7 @@ msgstr "" msgid "Open emoji picker" msgstr "Emoji seçiciyi aç" -#: src/view/screens/ProfileFeed.tsx:295 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Open feed options menu" msgstr "" @@ -4299,7 +4357,7 @@ msgstr "Uygulama içi tarayıcıda bağlantıları aç" msgid "Open message options" msgstr "" -#: src/screens/Moderation/index.tsx:227 +#: src/screens/Moderation/index.tsx:230 msgid "Open muted words and tags settings" msgstr "" @@ -4311,7 +4369,7 @@ msgstr "Navigasyonu aç" msgid "Open post options menu" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 msgid "Open starter pack menu" msgstr "" @@ -4328,6 +4386,10 @@ msgstr "" msgid "Opens {numItems} options" msgstr "{numItems} seçeneği açar" +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" msgstr "" @@ -4498,7 +4560,7 @@ msgstr "{0} seçeneği, {numItems} seçenekten" msgid "Optionally provide additional information below:" msgstr "" -#: src/view/com/modals/Threadgate.tsx:92 +#: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" msgstr "Veya bu seçenekleri birleştirin:" @@ -4562,7 +4624,6 @@ msgstr "Şifre güncellendi!" msgid "Pause" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:194 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "" @@ -4575,19 +4636,20 @@ msgstr "@{0} tarafından takip edilenler" msgid "People following @{0}" msgstr "@{0} tarafından takip edilenler" -#: src/view/com/lightbox/Lightbox.tsx:67 +#: src/view/com/lightbox/Lightbox.tsx:69 msgid "Permission to access camera roll is required." msgstr "Kamera rulosuna erişim izni gerekiyor." -#: src/view/com/lightbox/Lightbox.tsx:73 +#: src/view/com/lightbox/Lightbox.tsx:75 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." -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:93 msgid "Pets" msgstr "Evcil Hayvanlar" @@ -4595,16 +4657,20 @@ msgstr "Evcil Hayvanlar" #~ msgid "Phone number" #~ msgstr "Telefon numarası" +#: src/screens/Onboarding/state.ts:94 +msgid "Photography" +msgstr "" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "Yetişkinler için resimler." -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Ana ekrana sabitle" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 msgid "Pin to Home" msgstr "" @@ -4717,6 +4783,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Bağlantı kartınızın yüklenmesini bekleyin" #: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:95 msgid "Politics" msgstr "Politika" @@ -4780,7 +4847,7 @@ msgstr "Gönderi bulunamadı" msgid "posts" msgstr "" -#: src/view/screens/Profile.tsx:216 +#: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Gönderiler" @@ -4854,7 +4921,7 @@ msgid "Processing..." msgstr "İşleniyor..." #: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:353 +#: src/view/screens/Profile.tsx:346 msgid "profile" msgstr "" @@ -4894,15 +4961,15 @@ msgstr "Gönderiyi yayınla" msgid "Publish reply" msgstr "Yanıtı yayınla" -#: src/components/StarterPack/QrCodeDialog.tsx:131 +#: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:109 +#: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:110 +#: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" msgstr "" @@ -4964,7 +5031,9 @@ msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:325 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -4977,7 +5046,7 @@ msgstr "Kaldır" #~ msgid "Remove {0} from my feeds?" #~ msgstr "{0} beslemelerimden kaldırılsın mı?" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" msgstr "" @@ -5009,13 +5078,13 @@ msgstr "" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:332 +#: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Beslemelerimden kaldır" -#: src/components/FeedCard.tsx:315 +#: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "" @@ -5071,7 +5140,7 @@ msgid "Removed from my feeds" msgstr "Beslemelerimden kaldırıldı" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "" @@ -5089,19 +5158,19 @@ msgstr "" msgid "Replace with Discover" msgstr "" -#: src/view/screens/Profile.tsx:217 +#: src/view/screens/Profile.tsx:210 msgid "Replies" msgstr "Yanıtlar" -#: src/view/com/threadgate/WhoCanReply.tsx:66 +#: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" msgstr "" #: src/view/com/threadgate/WhoCanReply.tsx:123 -msgid "Replies on this thread are disabled" -msgstr "" +#~ msgid "Replies on this thread are disabled" +#~ msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:237 +#: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "Bu konuya yanıtlar devre dışı bırakıldı" @@ -5161,8 +5230,8 @@ msgstr "" msgid "Report dialog" msgstr "" -#: src/view/screens/ProfileFeed.tsx:348 -#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:351 msgid "Report feed" msgstr "Beslemeyi raporla" @@ -5179,8 +5248,8 @@ msgstr "" msgid "Report post" msgstr "Gönderiyi raporla" -#: src/screens/StarterPack/StarterPackScreen.tsx:469 -#: src/screens/StarterPack/StarterPackScreen.tsx:472 +#: src/screens/StarterPack/StarterPackScreen.tsx:476 +#: src/screens/StarterPack/StarterPackScreen.tsx:479 msgid "Report starter pack" msgstr "" @@ -5226,7 +5295,7 @@ msgstr "Yeniden gönder" msgid "Repost" msgstr "Yeniden gönder" -#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:418 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5338,12 +5407,12 @@ msgstr "Son hataya neden olan son eylemi tekrarlar" #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 #: src/screens/Login/LoginForm.tsx:291 #: src/screens/Login/LoginForm.tsx:298 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/Onboarding/StepInterests/index.tsx:234 #: src/screens/Signup/index.tsx:245 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 @@ -5355,7 +5424,7 @@ msgstr "Tekrar dene" #~ msgstr "Tekrar dene." #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:622 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Önceki sayfaya dön" @@ -5365,7 +5434,7 @@ msgid "Returns to home page" msgstr "" #: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/ProfileFeed.tsx:113 msgid "Returns to previous page" msgstr "" @@ -5374,7 +5443,8 @@ msgstr "" #~ msgstr "KUM KUTUSU. Gönderiler ve hesaplar kalıcı değildir." #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/StarterPack/QrCodeDialog.tsx:190 +#: src/components/dialogs/ThreadgateEditor.tsx:88 +#: src/components/StarterPack/QrCodeDialog.tsx:184 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5383,7 +5453,7 @@ msgstr "" msgid "Save" msgstr "Kaydet" -#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/lightbox/Lightbox.tsx:135 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5405,8 +5475,8 @@ msgstr "Değişiklikleri Kaydet" msgid "Save handle change" msgstr "Kullanıcı adı değişikliğini kaydet" -#: src/components/StarterPack/ShareDialog.tsx:163 -#: src/components/StarterPack/ShareDialog.tsx:170 +#: src/components/StarterPack/ShareDialog.tsx:150 +#: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" msgstr "" @@ -5414,12 +5484,12 @@ msgstr "" msgid "Save image crop" msgstr "Resim kırpma kaydet" -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" msgstr "" @@ -5427,7 +5497,7 @@ msgstr "" msgid "Saved Feeds" msgstr "Kayıtlı Beslemeler" -#: src/view/com/lightbox/Lightbox.tsx:82 +#: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" msgstr "" @@ -5435,7 +5505,7 @@ msgstr "" #~ msgid "Saved to your camera roll." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "" @@ -5453,13 +5523,14 @@ msgid "Saves image crop settings" msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:82 +#: src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:372 #: src/view/com/notifications/FeedItem.tsx:397 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:96 msgid "Science" msgstr "Bilim" @@ -5501,7 +5572,7 @@ msgstr "" msgid "Search for all posts with tag {displayTag}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:467 +#: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -5656,7 +5727,7 @@ msgstr "" msgid "Select your date of birth" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:201 +#: src/screens/Onboarding/StepInterests/index.tsx:206 msgid "Select your interests from the options below" msgstr "Aşağıdaki seçeneklerden ilgi alanlarınızı seçin" @@ -5751,7 +5822,7 @@ msgstr "" #~ msgid "Set Age" #~ msgstr "Yaş Ayarla" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:307 msgid "Set birthdate" msgstr "" @@ -5876,9 +5947,9 @@ msgstr "Cinsel aktivite veya erotik çıplaklık." msgid "Sexually Suggestive" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:180 -#: src/screens/StarterPack/StarterPackScreen.tsx:303 -#: src/screens/StarterPack/StarterPackScreen.tsx:458 +#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/screens/StarterPack/StarterPackScreen.tsx:312 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5888,7 +5959,7 @@ msgstr "" msgid "Share" msgstr "Paylaş" -#: src/view/com/lightbox/Lightbox.tsx:142 +#: src/view/com/lightbox/Lightbox.tsx:144 msgctxt "action" msgid "Share" msgstr "Paylaş" @@ -5907,30 +5978,36 @@ msgstr "" msgid "Share anyway" msgstr "" -#: src/view/screens/ProfileFeed.tsx:358 -#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:361 msgid "Share feed" msgstr "Beslemeyi paylaş" -#: src/screens/StarterPack/StarterPackScreen.tsx:462 +#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/screens/StarterPack/StarterPackScreen.tsx:469 msgid "Share link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:100 +#: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:296 +#: src/components/StarterPack/ShareDialog.tsx:134 +#: src/components/StarterPack/ShareDialog.tsx:145 +msgid "Share QR code" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:305 msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:112 +#: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5988,7 +6065,7 @@ msgstr "" msgid "Show less like this" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:533 +#: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" @@ -6166,17 +6243,17 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "{0} adresini Bluesky'den çıkarır" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:240 -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Atla" -#: src/screens/Onboarding/StepInterests/index.tsx:237 +#: src/screens/Onboarding/StepInterests/index.tsx:242 msgid "Skip this flow" msgstr "Bu akışı atla" @@ -6185,18 +6262,18 @@ msgstr "Bu akışı atla" #~ msgstr "SMS doğrulama" #: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:85 msgid "Software Dev" msgstr "Yazılım Geliştirme" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 -#: src/view/com/threadgate/WhoCanReply.tsx:67 -#: src/view/com/threadgate/WhoCanReply.tsx:124 +#: src/components/WhoCanReply.tsx:72 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "" #: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "" +#~ msgid "Some subtitle" +#~ msgstr "" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -6212,7 +6289,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 +#: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "" @@ -6252,6 +6329,7 @@ msgid "Spam; excessive mentions or replies" msgstr "" #: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:97 msgid "Sports" msgstr "Spor" @@ -6277,7 +6355,7 @@ msgstr "" #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -6285,14 +6363,18 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:214 msgid "Starter Packs" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + #: src/view/screens/Settings/index.tsx:862 #~ msgid "Status page" #~ msgstr "Durum sayfası" @@ -6418,6 +6500,7 @@ msgid "Tap to view fully" msgstr "Tamamen görüntülemek için dokunun" #: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:98 msgid "Tech" msgstr "Teknoloji" @@ -6470,10 +6553,10 @@ msgstr "" msgid "That handle is already taken." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:100 -#: src/screens/StarterPack/StarterPackScreen.tsx:101 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:102 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/Wizard/index.tsx:106 +#: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." msgstr "" @@ -6494,7 +6577,7 @@ msgstr "Topluluk Kuralları <0/> konumuna taşındı" msgid "The Copyright Policy has been moved to <0/>" msgstr "Telif Hakkı Politikası <0/> konumuna taşındı" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6523,7 +6606,7 @@ msgstr "Gönderi silinmiş olabilir." msgid "The Privacy Policy has been moved to <0/>" msgstr "Gizlilik Politikası <0/> konumuna taşındı" -#: src/screens/StarterPack/StarterPackScreen.tsx:589 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6544,7 +6627,7 @@ 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:542 +#: src/view/screens/ProfileFeed.tsx:544 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." @@ -6554,7 +6637,7 @@ msgstr "Bu beslemeyi kaldırma konusunda bir sorun oluştu. Lütfen internet ba #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: 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." @@ -6567,7 +6650,7 @@ msgstr "" #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:233 +#: src/view/screens/ProfileFeed.tsx:234 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6625,6 +6708,7 @@ msgstr "Uygulama şifrelerinizi almakta bir sorun oluştu" msgid "There was an issue! {0}" msgstr "Bir sorun oluştu! {0}" +#: src/components/WhoCanReply.tsx:116 #: src/view/screens/ProfileList.tsx:335 #: src/view/screens/ProfileList.tsx:349 #: src/view/screens/ProfileList.tsx:363 @@ -6721,7 +6805,7 @@ msgstr "Bu besleme şu anda yüksek trafik alıyor ve geçici olarak kullanılam msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "Bu besleme boş! Daha fazla kullanıcı takip etmeniz veya dil ayarlarınızı ayarlamanız gerekebilir." -#: src/view/screens/ProfileFeed.tsx:472 +#: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" @@ -6836,7 +6920,7 @@ msgstr "" msgid "This user is included in the <0>{0} list which you have muted." msgstr "" -#: src/components/NewskieDialog.tsx:53 +#: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." msgstr "" @@ -6865,6 +6949,10 @@ msgstr "" msgid "Thread Preferences" msgstr "Konu Tercihleri" +#: src/components/WhoCanReply.tsx:109 +msgid "Thread settings updated" +msgstr "" + #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "Konu Tabanlı Mod" @@ -6893,7 +6981,7 @@ msgstr "" msgid "Toggle dropdown" msgstr "Açılır menüyü aç/kapat" -#: src/screens/Moderation/index.tsx:332 +#: src/screens/Moderation/index.tsx:336 msgid "Toggle to enable or disable adult content" msgstr "" @@ -6908,8 +6996,8 @@ msgstr "Dönüşümler" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: 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 msgid "Translate" @@ -6920,6 +7008,10 @@ msgctxt "action" msgid "Try again" msgstr "Tekrar dene" +#: src/screens/Onboarding/state.ts:99 +msgid "TV" +msgstr "" + #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" msgstr "" @@ -6949,7 +7041,7 @@ msgstr "Listeyi sessizden çıkar" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Hizmetinize ulaşılamıyor. Lütfen internet bağlantınızı kontrol edin." -#: src/screens/StarterPack/StarterPackScreen.tsx:513 +#: src/screens/StarterPack/StarterPackScreen.tsx:520 msgid "Unable to delete" msgstr "" @@ -7016,7 +7108,7 @@ msgstr "" #~ msgid "Unlike" #~ msgstr "Beğenmeyi geri al" -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Unlike this feed" msgstr "" @@ -7051,12 +7143,12 @@ msgstr "" msgid "Unmute thread" msgstr "Konunun sessizliğini kaldır" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Sabitlemeyi kaldır" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 msgid "Unpin from home" msgstr "" @@ -7242,7 +7334,7 @@ msgstr "Kullanıcı adı veya e-posta adresi" msgid "Users" msgstr "Kullanıcılar" -#: src/view/com/threadgate/WhoCanReply.tsx:274 +#: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" msgstr "<0/> tarafından takip edilen kullanıcılar" @@ -7253,7 +7345,7 @@ msgstr "<0/> tarafından takip edilen kullanıcılar" msgid "Users I follow" msgstr "" -#: src/view/com/modals/Threadgate.tsx:109 +#: src/components/dialogs/ThreadgateEditor.tsx:132 msgid "Users in \"{0}\"" msgstr "\"{0}\" içindeki kullanıcılar" @@ -7311,6 +7403,7 @@ msgid "Version {appVersion} {bundleInfo}" msgstr "" #: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:88 msgid "Video Games" msgstr "Video Oyunları" @@ -7362,7 +7455,7 @@ msgstr "Avatarı görüntüle" msgid "View the labeling service provided by @{0}" msgstr "" -#: src/view/screens/ProfileFeed.tsx:583 +#: src/view/screens/ProfileFeed.tsx:585 msgid "View users who like this feed" msgstr "" @@ -7426,11 +7519,11 @@ msgstr "" msgid "We were unable to load your birth date preferences. Please try again." msgstr "" -#: src/screens/Moderation/index.tsx:385 +#: src/screens/Moderation/index.tsx:409 msgid "We were unable to load your configured labelers at this time." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:143 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Bağlantı kuramadık. Hesabınızı kurmaya devam etmek için tekrar deneyin. Başarısız olmaya devam ederse bu akışı atlayabilirsiniz." @@ -7442,7 +7535,7 @@ msgstr "Hesabınız hazır olduğunda size bildireceğiz." #~ msgid "We'll look into your appeal promptly." #~ msgstr "İtirazınıza hızlı bir şekilde bakacağız." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:148 msgid "We'll use this to help customize your experience." msgstr "Bu, deneyiminizi özelleştirmenize yardımcı olmak için kullanılacak." @@ -7491,7 +7584,11 @@ msgstr "" #~ msgid "Welcome to <0>Bluesky" #~ msgstr "<0>Bluesky'e hoş geldiniz" -#: src/screens/Onboarding/StepInterests/index.tsx:135 +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" msgstr "İlgi alanlarınız nelerdir?" @@ -7522,17 +7619,15 @@ msgstr "Algoritmik beslemelerinizde hangi dilleri görmek istersiniz?" msgid "Who can message you?" msgstr "" -#: src/view/com/modals/Threadgate.tsx:69 -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Who can reply" msgstr "Kimler yanıtlayabilir" -#: src/view/com/threadgate/WhoCanReply.tsx:206 +#: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:210 +#: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" msgstr "" @@ -7588,6 +7683,7 @@ msgid "Write your reply" msgstr "Yanıtınızı yazın" #: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:100 msgid "Writers" msgstr "Yazarlar" @@ -7610,7 +7706,7 @@ msgstr "Evet" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:525 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Yes, delete this starter pack" msgstr "" @@ -7626,6 +7722,10 @@ msgstr "" msgid "you" msgstr "" +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + #: src/screens/SignupQueued.tsx:136 msgid "You are in line." msgstr "Sıradasınız." @@ -7771,6 +7871,10 @@ msgstr "" msgid "You have reached the end" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +msgid "You haven't created a starter pack yet!" +msgstr "" + #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "" @@ -7803,15 +7907,15 @@ msgstr "" #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Yetişkin içeriğini etkinleştirmek için 18 yaşında veya daha büyük olmalısınız" -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:62 +#: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." msgstr "" @@ -7863,7 +7967,7 @@ msgstr "" msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/uk/messages.po b/src/locale/locales/uk/messages.po index 48ddc078da..cb8d52ca2c 100644 --- a/src/locale/locales/uk/messages.po +++ b/src/locale/locales/uk/messages.po @@ -72,7 +72,7 @@ msgstr "" msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:215 +#: src/components/FeedCard.tsx:216 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -93,7 +93,11 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:343 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +msgid "{0} joined this week" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:350 msgid "{0} people have used this starter pack!" msgstr "" @@ -137,7 +141,7 @@ msgstr "" msgid "{diffSeconds, plural, one {second} other {seconds}}" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" msgstr "" @@ -160,7 +164,7 @@ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:586 +#: src/view/screens/ProfileFeed.tsx:588 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -168,11 +172,11 @@ msgstr "" msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} непрочитаних" -#: src/components/NewskieDialog.tsx:92 +#: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" msgstr "" -#: src/components/NewskieDialog.tsx:87 +#: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "" @@ -180,17 +184,27 @@ msgstr "" msgid "{value, plural, =0 {Show all replies} one {Show replies with at least # like} other {Show replies with at least # likes}}" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:290 +#: src/components/WhoCanReply.tsx:295 msgid "<0/> members" msgstr "<0/> учасників" #: src/screens/StarterPack/Wizard/index.tsx:485 -msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +#~ 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 "" + +#: 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 "" +#~ 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 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -200,11 +214,15 @@ msgstr "" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "" +#: 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 "<0>{0} підписок" -#: src/screens/StarterPack/Wizard/index.tsx:478 +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -233,6 +251,10 @@ msgstr "" #~ msgid "<0>Welcome to<1>Bluesky" #~ msgstr "<0>Ласкаво просимо до<1>Bluesky" +#: src/screens/StarterPack/Wizard/index.tsx:457 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠Недопустимий псевдонім" @@ -323,11 +345,11 @@ msgstr "Обліковий запис більше не ігнорується" msgid "Add" msgstr "Додати" -#: src/screens/StarterPack/Wizard/index.tsx:539 +#: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:56 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" msgstr "" @@ -382,14 +404,14 @@ msgid "Add muted words and tags" msgstr "Додати ігноровані слова та теги" #: src/screens/StarterPack/Wizard/index.tsx:197 -msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "" +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:464 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" msgstr "" @@ -401,7 +423,7 @@ msgstr "" msgid "Add the following DNS record to your domain:" msgstr "Додайте наступний DNS-запис до вашого домену:" -#: src/components/FeedCard.tsx:300 +#: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" msgstr "" @@ -436,16 +458,20 @@ msgstr "Налаштуйте мінімальну кількість вподо msgid "Adult Content" msgstr "Вміст для дорослих" +#: src/screens/Moderation/index.tsx:356 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "Контент для дорослих вимкнено." -#: src/screens/Moderation/index.tsx:375 +#: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "Розширені" -#: src/screens/StarterPack/StarterPackScreen.tsx:271 +#: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "All accounts have been followed!" msgstr "" @@ -510,16 +536,16 @@ msgstr "Було надіслано лист на вашу попередню а msgid "An error occured" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +#: 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 "" +#~ msgid "An error occurred while saving the image." +#~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:76 -#: src/components/StarterPack/ShareDialog.tsx:91 +#: src/components/StarterPack/QrCodeDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "" @@ -527,7 +553,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:275 msgid "An error occurred while trying to follow all" msgstr "" @@ -544,16 +570,17 @@ msgstr "Проблема не включена до цих варіантів" msgid "An issue occurred, please try again." msgstr "Виникла проблема, будь ласка, спробуйте ще раз." -#: src/screens/Onboarding/StepInterests/index.tsx:194 +#: src/screens/Onboarding/StepInterests/index.tsx:199 msgid "an unknown error occurred" msgstr "" +#: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:280 -#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "та" #: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:79 msgid "Animals" msgstr "Тварини" @@ -625,7 +652,7 @@ msgstr "Оформлення" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -653,7 +680,7 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Ви впевнені, що бажаєте видалити {0} зі стрічки?" -#: src/components/FeedCard.tsx:317 +#: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -670,6 +697,7 @@ msgid "Are you writing in <0>{0}?" msgstr "Ви пишете <0>{0}?" #: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:80 msgid "Art" msgstr "Мистецтво" @@ -696,7 +724,7 @@ msgstr "Не менше 3-х символів" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:312 +#: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "Назад" @@ -753,7 +781,7 @@ msgstr "Заблокувати ці облікові записи?" msgid "Blocked" msgstr "Заблоковано" -#: src/screens/Moderation/index.tsx:267 +#: src/screens/Moderation/index.tsx:270 msgid "Blocked accounts" msgstr "Заблоковані облікові записи" @@ -814,11 +842,11 @@ msgstr "Bluesky є відкритою мережею, де ви можете о #~ msgid "Bluesky is public." #~ msgstr "Bluesky публічний." -#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:533 +#: 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 не буде показувати ваш профіль і повідомлення відвідувачам без облікового запису. Інші застосунки можуть не слідувати цьому запиту. Це не робить ваш обліковий запис приватним." @@ -831,6 +859,7 @@ msgid "Blur images and filter from feeds" msgstr "Розмити зображення і фільтрувати їх зі стрічки" #: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:81 msgid "Books" msgstr "Книги" @@ -1040,13 +1069,21 @@ msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "Перевірте свою поштову скриньку на наявність електронного листа з кодом підтвердження та введіть його нижче:" #: src/view/com/modals/Threadgate.tsx:75 -msgid "Choose \"Everybody\" or \"Nobody\"" -msgstr "Виберіть \"Усі\" або \"Ніхто\"" +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "Виберіть \"Усі\" або \"Ніхто\"" -#: src/components/StarterPack/ProfileStarterPacks.tsx:288 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:187 +msgid "Choose People" +msgstr "" + #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "Оберіть хостинг-провайдера" @@ -1064,6 +1101,11 @@ msgstr "Оберіть алгоритми, що наповнюватимуть msgid "Choose this color as your avatar" msgstr "" +#: 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 "Виберіть ваші основні стрічки" @@ -1140,18 +1182,18 @@ msgstr "" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/NewskieDialog.tsx:120 -#: src/components/NewskieDialog.tsx:127 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:121 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:127 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: 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:189 msgid "Close" msgstr "Закрити" -#: src/components/Dialog/index.web.tsx:113 -#: src/components/Dialog/index.web.tsx:251 +#: src/components/Dialog/index.web.tsx:116 +#: src/components/Dialog/index.web.tsx:254 msgid "Close active dialog" msgstr "Закрити діалогове вікно" @@ -1218,10 +1260,12 @@ msgid "Collapses list of users for a given notification" msgstr "Згортає список користувачів для даного сповіщення" #: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:82 msgid "Comedy" msgstr "Комедія" #: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:83 msgid "Comics" msgstr "Комікси" @@ -1283,11 +1327,11 @@ msgstr "Підтвердити налаштування мови вмісту" msgid "Confirm delete account" msgstr "Підтвердити видалення облікового запису" -#: src/screens/Moderation/index.tsx:301 +#: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "Підтвердіть ваш вік:" -#: src/screens/Moderation/index.tsx:292 +#: src/screens/Moderation/index.tsx:295 msgid "Confirm your birthdate" msgstr "Підтвердіть вашу дату народження" @@ -1317,7 +1361,7 @@ msgstr "Служба підтримки" msgid "Content Blocked" msgstr "Заблокований вміст" -#: src/screens/Moderation/index.tsx:285 +#: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "Фільтри контенту" @@ -1346,7 +1390,7 @@ msgstr "Попередження про вміст" msgid "Context menu backdrop, click to close the menu." msgstr "Тло контекстного меню натисніть, щоб закрити меню." -#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepInterests/index.tsx:258 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Далі" @@ -1359,7 +1403,7 @@ msgstr "Продовжити як {0} (поточний користувач)" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:251 msgid "Continue to next step" @@ -1407,7 +1451,7 @@ msgstr "Скопійовано!" msgid "Copies app password" msgstr "Копіює пароль застосунку" -#: src/components/StarterPack/QrCodeDialog.tsx:180 +#: src/components/StarterPack/QrCodeDialog.tsx:174 #: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "Скопіювати" @@ -1421,7 +1465,11 @@ msgstr "Копіювати {0}" msgid "Copy code" msgstr "Скопіювати код" -#: src/components/StarterPack/ShareDialog.tsx:143 +#: src/components/StarterPack/ShareDialog.tsx:123 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" msgstr "" @@ -1444,7 +1492,7 @@ msgstr "" msgid "Copy post text" msgstr "Копіювати текст повідомлення" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" msgstr "" @@ -1457,7 +1505,7 @@ msgstr "Політика захисту авторського права" msgid "Could not leave chat" msgstr "" -#: src/view/screens/ProfileFeed.tsx:102 +#: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" msgstr "Не вдалося завантажити стрічку" @@ -1477,7 +1525,7 @@ msgstr "" #~ msgid "Could not unmute chat" #~ msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:270 +#: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" msgstr "" @@ -1490,17 +1538,17 @@ msgstr "Створити новий обліковий запис" msgid "Create a new Bluesky account" msgstr "Створити новий обліковий запис Bluesky" -#: src/components/StarterPack/QrCodeDialog.tsx:157 +#: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:257 +#: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +#: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" msgstr "" @@ -1531,8 +1579,8 @@ msgid "Create new account" msgstr "Створити новий обліковий запис" #: src/components/StarterPack/ShareDialog.tsx:158 -msgid "Create QR code" -msgstr "" +#~ msgid "Create QR code" +#~ msgstr "" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1547,6 +1595,7 @@ msgstr "Створено: {0}" #~ msgstr "Створює картку з мініатюрою. Посилання картки: {url}" #: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:84 msgid "Culture" msgstr "Культура" @@ -1603,9 +1652,9 @@ msgid "Debug panel" msgstr "Панель налагодження" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:449 -#: src/screens/StarterPack/StarterPackScreen.tsx:528 -#: src/screens/StarterPack/StarterPackScreen.tsx:608 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1666,12 +1715,12 @@ msgstr "Видалити мій обліковий запис..." msgid "Delete post" msgstr "Видалити пост" -#: src/screens/StarterPack/StarterPackScreen.tsx:443 -#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:450 +#: src/screens/StarterPack/StarterPackScreen.tsx:606 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:494 +#: src/screens/StarterPack/StarterPackScreen.tsx:501 msgid "Delete starter pack?" msgstr "" @@ -1743,7 +1792,7 @@ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:68 #: src/screens/Messages/Settings.tsx:140 #: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:341 +#: src/screens/Moderation/index.tsx:346 msgid "Disabled" msgstr "Вимкнено" @@ -1755,8 +1804,8 @@ msgstr "Видалити" msgid "Discard draft?" msgstr "Відхилити чернетку?" -#: src/screens/Moderation/index.tsx:518 -#: src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:542 +#: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" msgstr "Попросити застосунки не показувати мій обліковий запис без входу" @@ -1807,6 +1856,7 @@ msgstr "Домен перевірено!" #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/ThreadgateEditor.tsx:88 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 @@ -1826,8 +1876,6 @@ msgstr "Готово" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 #: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/Threadgate.tsx:136 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 #: src/view/screens/PreferencesThreads.tsx:162 @@ -1839,7 +1887,7 @@ msgstr "Готово" msgid "Done{extraText}" msgstr "Готово{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 msgid "Download Bluesky" msgstr "" @@ -1896,9 +1944,9 @@ msgstr "напр. Користувачі, що неодноразово відп msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Кожен код запрошення працює лише один раз. Час від часу ви будете отримувати нові коди." -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:522 -#: src/screens/StarterPack/Wizard/index.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" @@ -1914,7 +1962,7 @@ msgstr "Редагувати" msgid "Edit avatar" msgstr "Змінити фото профілю" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "" @@ -1942,7 +1990,7 @@ msgstr "Редагувати мої стрічки" msgid "Edit my profile" msgstr "Редагувати мій профіль" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "" @@ -1961,7 +2009,7 @@ msgstr "Редагувати профіль" #~ msgid "Edit Saved Feeds" #~ msgstr "Редагувати збережені стрічки" -#: src/screens/StarterPack/StarterPackScreen.tsx:430 +#: src/screens/StarterPack/StarterPackScreen.tsx:437 msgid "Edit starter pack" msgstr "" @@ -1969,8 +2017,7 @@ msgstr "" msgid "Edit User List" msgstr "Редагувати список користувачів" -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" msgstr "" @@ -1987,9 +2034,14 @@ msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:86 msgid "Education" msgstr "Освіта" +#: src/components/dialogs/ThreadgateEditor.tsx:98 +msgid "Either choose \"Everybody\" or \"Nobody\"" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" @@ -2038,7 +2090,7 @@ msgstr "Вставте цей пост у Ваш сайт. Просто скоп msgid "Enable {0} only" msgstr "Увімкнути лише {0}" -#: src/screens/Moderation/index.tsx:329 +#: src/screens/Moderation/index.tsx:333 msgid "Enable adult content" msgstr "Дозволити вміст для дорослих" @@ -2070,7 +2122,7 @@ msgstr "Увімкнути лише джерело" #: src/screens/Messages/Settings.tsx:131 #: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:339 +#: src/screens/Moderation/index.tsx:344 msgid "Enabled" msgstr "Увімкнено" @@ -2140,19 +2192,18 @@ msgstr "" msgid "Error receiving captcha response." msgstr "Помилка отримання відповіді Captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Помилка:" -#: src/view/com/modals/Threadgate.tsx:79 +#: src/components/dialogs/ThreadgateEditor.tsx:102 msgid "Everybody" msgstr "Усі" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#: src/view/com/threadgate/WhoCanReply.tsx:64 -#: src/view/com/threadgate/WhoCanReply.tsx:121 -#: src/view/com/threadgate/WhoCanReply.tsx:235 +#: src/components/WhoCanReply.tsx:69 +#: src/components/WhoCanReply.tsx:240 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "" @@ -2247,8 +2298,8 @@ msgstr "Налаштування зовнішніх медіа" msgid "Failed to create app password." msgstr "Не вдалося створити пароль застосунку." -#: src/screens/StarterPack/Wizard/index.tsx:241 -#: src/screens/StarterPack/Wizard/index.tsx:249 +#: src/screens/StarterPack/Wizard/index.tsx:230 +#: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" msgstr "" @@ -2264,7 +2315,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "Не вдалося видалити пост, спробуйте ще раз" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/StarterPackScreen.tsx:569 msgid "Failed to delete starter pack" msgstr "" @@ -2300,7 +2351,7 @@ msgstr "" msgid "Failed to load suggested follows" msgstr "" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" msgstr "Не вдалося зберегти зображення: {0}" @@ -2321,7 +2372,7 @@ msgstr "" msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:280 +#: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "" @@ -2343,7 +2394,7 @@ msgstr "Стрічка від {0}" #~ msgid "Feed offline" #~ msgstr "Стрічка не працює" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "" @@ -2353,10 +2404,9 @@ msgid "Feedback" msgstr "Зворотний зв'язок" #: src/Navigation.tsx:320 -#: src/screens/StarterPack/Wizard/index.tsx:201 #: src/view/screens/Feeds.tsx:445 #: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:220 +#: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:373 #: src/view/shell/Drawer.tsx:493 @@ -2376,7 +2426,7 @@ msgstr "Стрічки – це алгоритми, створені корис #~ msgid "Feeds can be topical as well!" #~ msgstr "Стрічки також можуть бути тематичними!" -#: src/components/FeedCard.tsx:277 +#: src/components/FeedCard.tsx:282 msgid "Feeds updated!" msgstr "" @@ -2426,7 +2476,7 @@ msgstr "Оберіть, що ви хочете бачити у своїй стр msgid "Fine-tune the discussion threads." msgstr "Налаштуйте відображення обговорень." -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" msgstr "" @@ -2474,8 +2524,8 @@ msgstr "" msgid "Follow Account" msgstr "Підписатися на обліковий запис" -#: src/screens/StarterPack/StarterPackScreen.tsx:308 -#: src/screens/StarterPack/StarterPackScreen.tsx:315 +#: src/screens/StarterPack/StarterPackScreen.tsx:317 +#: src/screens/StarterPack/StarterPackScreen.tsx:324 msgid "Follow all" msgstr "" @@ -2523,7 +2573,7 @@ msgstr "" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "" -#: src/view/com/modals/Threadgate.tsx:101 +#: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" msgstr "Ваші підписки" @@ -2587,6 +2637,7 @@ msgid "Follows You" msgstr "Підписаний(-на) на вас" #: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:87 msgid "Food" msgstr "Їжа" @@ -2628,7 +2679,7 @@ msgstr "Зі стрічки \"<0/>\"" msgid "Gallery" msgstr "Галерея" -#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" msgstr "" @@ -2658,7 +2709,7 @@ msgstr "Грубі порушення закону чи умов викорис #: src/view/com/auth/LoggedOut.tsx:78 #: src/view/com/auth/LoggedOut.tsx:79 #: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:133 msgid "Go back" @@ -2667,9 +2718,9 @@ msgstr "Назад" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:628 #: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Назад" @@ -2683,7 +2734,7 @@ msgstr "Назад" msgid "Go back to previous step" msgstr "Повернутися до попереднього кроку" -#: src/screens/StarterPack/Wizard/index.tsx:313 +#: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" msgstr "" @@ -2824,7 +2875,7 @@ msgstr "Хм, сервер стрічки надіслав нам незрозу msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "Хм, ми не можемо знайти цю стрічку. Можливо вона була видалена." -#: src/screens/Moderation/index.tsx:59 +#: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "Здається, у нас виникли проблеми з завантаженням цих даних. Перегляньте деталі нижче. Якщо проблема не зникне, будь ласка, зв'яжіться з нами." @@ -2915,7 +2966,7 @@ msgstr "Зображення" msgid "Image alt text" msgstr "Опис зображення" -#: src/components/StarterPack/ShareDialog.tsx:88 +#: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" msgstr "" @@ -3008,7 +3059,7 @@ msgstr "Коди запрошення: {0}" msgid "Invite codes: 1 available" msgstr "Коди запрошення: 1" -#: src/components/StarterPack/ShareDialog.tsx:109 +#: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" msgstr "" @@ -3024,7 +3075,7 @@ msgstr "" #~ msgid "It shows posts from the people you follow as they happen." #~ msgstr "Ми показуємо пости людей, за якими ви слідкуєте в тому порядку в якому вони публікуються." -#: src/screens/StarterPack/Wizard/index.tsx:473 +#: 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 "" @@ -3032,8 +3083,8 @@ msgstr "" msgid "Jobs" msgstr "Вакансії" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 msgid "Join Bluesky" msgstr "" @@ -3042,6 +3093,7 @@ msgid "Join the conversation" msgstr "" #: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:89 msgid "Journalism" msgstr "Журналістика" @@ -3057,7 +3109,7 @@ msgstr "Помічений {0}." msgid "Labeled by the author." msgstr "Мітку додано автором." -#: src/view/screens/Profile.tsx:214 +#: src/view/screens/Profile.tsx:207 msgid "Labels" msgstr "Мітки" @@ -3113,7 +3165,7 @@ msgstr "Дізнайтеся більше про те, яка модерація msgid "Learn more about this warning" msgstr "Дізнатися більше про це попередження" -#: src/screens/Moderation/index.tsx:549 +#: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." msgstr "Дізнатися більше про те, що є публічним в Bluesky." @@ -3154,7 +3206,7 @@ msgstr "ще залишилося." msgid "Legacy storage cleared, you need to restart the app now." msgstr "Старе сховище очищено, тепер вам потрібно перезапустити застосунок." -#: src/components/StarterPack/ProfileStarterPacks.tsx:293 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" msgstr "" @@ -3176,7 +3228,7 @@ msgstr "Світла" #~ msgstr "Вподобати" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Вподобати цю стрічку" @@ -3214,7 +3266,7 @@ msgstr "вподобав(-ла) вашу стрічку" msgid "liked your post" msgstr "сподобався ваш пост" -#: src/view/screens/Profile.tsx:219 +#: src/view/screens/Profile.tsx:212 msgid "Likes" msgstr "Вподобання" @@ -3260,8 +3312,8 @@ msgid "List unmuted" msgstr "Список більше не ігнорується" #: src/Navigation.tsx:122 +#: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/screens/Profile.tsx:222 #: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 @@ -3290,7 +3342,7 @@ msgstr "Завантажити нові сповіщення" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:493 +#: src/view/screens/ProfileFeed.tsx:494 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "Завантажити нові пости" @@ -3315,7 +3367,7 @@ msgstr "" msgid "Log out" msgstr "Вийти" -#: src/screens/Moderation/index.tsx:442 +#: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" msgstr "Видимість для користувачів без облікового запису" @@ -3347,7 +3399,7 @@ msgstr "" msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +#: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" msgstr "" @@ -3365,15 +3417,15 @@ msgid "Mark as read" msgstr "" #: src/view/screens/AccessibilitySettings.tsx:102 -#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:211 msgid "Media" msgstr "Медіа" -#: src/view/com/threadgate/WhoCanReply.tsx:270 +#: src/components/WhoCanReply.tsx:275 msgid "mentioned users" msgstr "згадані користувачі" -#: src/view/com/modals/Threadgate.tsx:96 +#: src/components/dialogs/ThreadgateEditor.tsx:119 msgid "Mentioned users" msgstr "Згадані користувачі" @@ -3424,7 +3476,7 @@ msgid "Misleading Account" msgstr "Оманливий обліковий запис" #: src/Navigation.tsx:127 -#: src/screens/Moderation/index.tsx:104 +#: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "Модерація" @@ -3457,7 +3509,7 @@ msgstr "Список модерації створено" msgid "Moderation list updated" msgstr "Список модерації оновлено" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:246 msgid "Moderation lists" msgstr "Списки для модерації" @@ -3474,7 +3526,7 @@ msgstr "Налаштування модерації" msgid "Moderation states" msgstr "Статус модерації" -#: src/screens/Moderation/index.tsx:215 +#: src/screens/Moderation/index.tsx:218 msgid "Moderation tools" msgstr "Інструменти модерації" @@ -3483,7 +3535,7 @@ msgstr "Інструменти модерації" msgid "Moderator has chosen to set a general warning on the content." msgstr "Модератор вирішив встановити загальне попередження на вміст." -#: src/view/com/post-thread/PostThreadItem.tsx:567 +#: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" msgstr "Більше" @@ -3499,6 +3551,10 @@ msgstr "Додаткові опції" msgid "Most-liked replies first" msgstr "За кількістю вподобань" +#: src/screens/Onboarding/state.ts:90 +msgid "Movies" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "Ігнорувати" @@ -3568,7 +3624,7 @@ msgstr "Ігнорувати слова та теги" msgid "Muted" msgstr "Ігнорується" -#: src/screens/Moderation/index.tsx:255 +#: src/screens/Moderation/index.tsx:258 msgid "Muted accounts" msgstr "Ігноровані облікові записи" @@ -3585,7 +3641,7 @@ msgstr "Ігноровані облікові записи автоматичн msgid "Muted by \"{0}\"" msgstr "Проігноровано списком \"{0}\"" -#: src/screens/Moderation/index.tsx:231 +#: src/screens/Moderation/index.tsx:234 msgid "Muted words & tags" msgstr "Ігноровані слова та теги" @@ -3631,6 +3687,7 @@ msgid "Name or Description Violates Community Standards" msgstr "Ім'я чи Опис порушують стандарти спільноти" #: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:91 msgid "Nature" msgstr "Природа" @@ -3699,8 +3756,8 @@ msgstr "Новий пост" #: src/view/screens/Feeds.tsx:580 #: src/view/screens/Notifications.tsx:193 -#: src/view/screens/Profile.tsx:485 -#: src/view/screens/ProfileFeed.tsx:427 +#: src/view/screens/Profile.tsx:478 +#: src/view/screens/ProfileFeed.tsx:428 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:277 @@ -3712,7 +3769,7 @@ msgctxt "action" msgid "New Post" msgstr "Новий пост" -#: src/components/NewskieDialog.tsx:71 +#: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "" @@ -3725,6 +3782,7 @@ msgid "Newest replies first" msgstr "Спочатку найновіші" #: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:92 msgid "News" msgstr "Новини" @@ -3735,10 +3793,10 @@ msgstr "Новини" #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:258 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:195 -#: src/screens/StarterPack/Wizard/index.tsx:372 -#: src/screens/StarterPack/Wizard/index.tsx:379 +#: src/screens/StarterPack/Wizard/index.tsx:184 +#: src/screens/StarterPack/Wizard/index.tsx:188 +#: src/screens/StarterPack/Wizard/index.tsx:359 +#: src/screens/StarterPack/Wizard/index.tsx:366 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3762,7 +3820,7 @@ msgstr "Наступне зображення" msgid "No" msgstr "Ні" -#: src/view/screens/ProfileFeed.tsx:560 +#: src/view/screens/ProfileFeed.tsx:562 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "Опис відсутній" @@ -3776,7 +3834,7 @@ msgstr "Немає панелі DNS" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "" -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." msgstr "" @@ -3849,11 +3907,11 @@ msgstr "" msgid "No thanks" msgstr "Ні, дякую" -#: src/view/com/modals/Threadgate.tsx:85 +#: src/components/dialogs/ThreadgateEditor.tsx:108 msgid "Nobody" msgstr "Ніхто" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Nobody can reply" msgstr "" @@ -3862,7 +3920,7 @@ msgstr "" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "Поки що це нікому не сподобалося. Можливо, ви повинні бути першим!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -3875,7 +3933,7 @@ msgstr "Несексуальна оголеність" #~ msgstr "Не застосовно." #: src/Navigation.tsx:117 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Не знайдено" @@ -3890,7 +3948,7 @@ msgstr "Пізніше" msgid "Note about sharing" msgstr "Примітка щодо поширення" -#: src/screens/Moderation/index.tsx:540 +#: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "Примітка: Bluesky є відкритою і публічною мережею. Цей параметр обмежує видимість вашого вмісту лише у застосунках і на сайті Bluesky, але інші застосунки можуть цього не дотримуватися. Ваш вміст все ще може бути показаний відвідувачам без облікового запису іншими застосунками і вебсайтами." @@ -3946,7 +4004,7 @@ msgstr "Вимкнено" msgid "Oh no!" msgstr "О, ні!" -#: src/screens/Onboarding/StepInterests/index.tsx:133 +#: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." msgstr "Ой! Щось пішло не так." @@ -3982,7 +4040,7 @@ msgstr "Для одного або кількох зображень відсу msgid "Only .jpg and .png files are supported" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:239 +#: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" msgstr "" @@ -3999,10 +4057,10 @@ msgid "Oops, something went wrong!" msgstr "Ой, щось пішло не так!" #: src/components/Lists.tsx:191 -#: src/components/StarterPack/ProfileStarterPacks.tsx:302 -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Ой!" @@ -4028,7 +4086,7 @@ msgstr "" msgid "Open emoji picker" msgstr "Емоджі" -#: src/view/screens/ProfileFeed.tsx:295 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Open feed options menu" msgstr "Відкрити меню налаштувань стрічки" @@ -4040,7 +4098,7 @@ msgstr "Вбудований браузер" msgid "Open message options" msgstr "" -#: src/screens/Moderation/index.tsx:227 +#: src/screens/Moderation/index.tsx:230 msgid "Open muted words and tags settings" msgstr "Відкрити налаштування ігнорування слів і тегів" @@ -4052,7 +4110,7 @@ msgstr "Відкрити навігацію" msgid "Open post options menu" msgstr "Відкрити меню налаштувань посту" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 msgid "Open starter pack menu" msgstr "" @@ -4069,6 +4127,10 @@ msgstr "Відкрити системний журнал" msgid "Opens {numItems} options" msgstr "Відкриває меню з {numItems} опціями" +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" msgstr "" @@ -4211,7 +4273,7 @@ msgstr "Опція {0} з {numItems}" msgid "Optionally provide additional information below:" msgstr "За бажанням надайте додаткову інформацію нижче:" -#: src/view/com/modals/Threadgate.tsx:92 +#: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" msgstr "Або якісь із наступних варіантів:" @@ -4271,7 +4333,6 @@ msgstr "Пароль змінено!" msgid "Pause" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:194 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "Люди" @@ -4284,32 +4345,37 @@ msgstr "Люди, на яких підписаний(-на) @{0}" msgid "People following @{0}" msgstr "Люди, які підписані на @{0}" -#: src/view/com/lightbox/Lightbox.tsx:67 +#: src/view/com/lightbox/Lightbox.tsx:69 msgid "Permission to access camera roll is required." msgstr "Потрібен дозвіл на доступ до камери." -#: src/view/com/lightbox/Lightbox.tsx:73 +#: src/view/com/lightbox/Lightbox.tsx:75 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "Дозвіл на доступ до камери був заборонений. Будь ласка, включіть його в налаштуваннях системи." -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:93 msgid "Pets" msgstr "Домашні улюбленці" +#: src/screens/Onboarding/state.ts:94 +msgid "Photography" +msgstr "" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "Зображення, призначені для дорослих." -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "Закріпити" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 msgid "Pin to Home" msgstr "Закріпити на головній" @@ -4405,6 +4471,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Будь ласка, зачекайте доки завершиться створення попереднього перегляду для посилання" #: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:95 msgid "Politics" msgstr "Політика" @@ -4468,7 +4535,7 @@ msgstr "Пост не знайдено" msgid "posts" msgstr "пости" -#: src/view/screens/Profile.tsx:216 +#: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Пости" @@ -4542,7 +4609,7 @@ msgid "Processing..." msgstr "Обробка..." #: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:353 +#: src/view/screens/Profile.tsx:346 msgid "profile" msgstr "профіль" @@ -4582,15 +4649,15 @@ msgstr "Опублікувати пост" msgid "Publish reply" msgstr "Опублікувати відповідь" -#: src/components/StarterPack/QrCodeDialog.tsx:131 +#: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:109 +#: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:110 +#: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" msgstr "" @@ -4652,7 +4719,9 @@ msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:325 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -4661,7 +4730,7 @@ msgstr "" msgid "Remove" msgstr "Видалити" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" msgstr "" @@ -4693,13 +4762,13 @@ msgstr "Видалити стрічку?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:332 +#: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "Вилучити з моїх стрічок" -#: src/components/FeedCard.tsx:315 +#: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Видалити з моїх стрічок?" @@ -4747,7 +4816,7 @@ msgid "Removed from my feeds" msgstr "Вилучено з моїх стрічок" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "Видалено з моїх стрічок" @@ -4765,19 +4834,19 @@ msgstr "" msgid "Replace with Discover" msgstr "" -#: src/view/screens/Profile.tsx:217 +#: src/view/screens/Profile.tsx:210 msgid "Replies" msgstr "Відповіді" -#: src/view/com/threadgate/WhoCanReply.tsx:66 +#: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" msgstr "" #: src/view/com/threadgate/WhoCanReply.tsx:123 -msgid "Replies on this thread are disabled" -msgstr "" +#~ msgid "Replies on this thread are disabled" +#~ msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:237 +#: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "Відповіді до цього посту вимкнено" @@ -4833,8 +4902,8 @@ msgstr "" msgid "Report dialog" msgstr "Діалогове вікно для скарг" -#: src/view/screens/ProfileFeed.tsx:348 -#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:351 msgid "Report feed" msgstr "Поскаржитись на стрічку" @@ -4851,8 +4920,8 @@ msgstr "" msgid "Report post" msgstr "Поскаржитись на пост" -#: src/screens/StarterPack/StarterPackScreen.tsx:469 -#: src/screens/StarterPack/StarterPackScreen.tsx:472 +#: src/screens/StarterPack/StarterPackScreen.tsx:476 +#: src/screens/StarterPack/StarterPackScreen.tsx:479 msgid "Report starter pack" msgstr "" @@ -4898,7 +4967,7 @@ msgstr "Репост" msgid "Repost" msgstr "Репостити" -#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:418 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4998,12 +5067,12 @@ msgstr "Повторити останню дію, яка спричинила п #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 #: src/screens/Login/LoginForm.tsx:291 #: src/screens/Login/LoginForm.tsx:298 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/Onboarding/StepInterests/index.tsx:234 #: src/screens/Signup/index.tsx:245 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 @@ -5015,7 +5084,7 @@ msgstr "Повторити спробу" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:622 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Повернутися до попередньої сторінки" @@ -5025,12 +5094,13 @@ msgid "Returns to home page" msgstr "Повертає до головної сторінки" #: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/ProfileFeed.tsx:113 msgid "Returns to previous page" msgstr "Повертає до попередньої сторінки" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/StarterPack/QrCodeDialog.tsx:190 +#: src/components/dialogs/ThreadgateEditor.tsx:88 +#: src/components/StarterPack/QrCodeDialog.tsx:184 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -5039,7 +5109,7 @@ msgstr "Повертає до попередньої сторінки" msgid "Save" msgstr "Зберегти" -#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/lightbox/Lightbox.tsx:135 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -5061,8 +5131,8 @@ msgstr "Зберегти зміни" msgid "Save handle change" msgstr "Зберегти новий псевдонім" -#: src/components/StarterPack/ShareDialog.tsx:163 -#: src/components/StarterPack/ShareDialog.tsx:170 +#: src/components/StarterPack/ShareDialog.tsx:150 +#: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" msgstr "" @@ -5070,12 +5140,12 @@ msgstr "" msgid "Save image crop" msgstr "Обрізати зображення" -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" msgstr "Зберегти до моїх стрічок" @@ -5083,7 +5153,7 @@ msgstr "Зберегти до моїх стрічок" msgid "Saved Feeds" msgstr "Збережені стрічки" -#: src/view/com/lightbox/Lightbox.tsx:82 +#: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" msgstr "" @@ -5091,7 +5161,7 @@ msgstr "" #~ msgid "Saved to your camera roll." #~ msgstr "Збережено до галереї." -#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "Збережено до ваших стрічок" @@ -5109,13 +5179,14 @@ msgid "Saves image crop settings" msgstr "Зберігає налаштування обрізання зображення" #: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:82 +#: src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:372 #: src/view/com/notifications/FeedItem.tsx:397 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:96 msgid "Science" msgstr "Наука" @@ -5157,7 +5228,7 @@ msgstr "Пошук усіх повідомлень @{authorHandle} з тегом msgid "Search for all posts with tag {displayTag}" msgstr "Пошук усіх повідомлень з тегом {displayTag}" -#: src/screens/StarterPack/Wizard/index.tsx:467 +#: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -5299,7 +5370,7 @@ msgstr "Оберіть мову застосунку для відображен msgid "Select your date of birth" msgstr "Оберіть дату народження" -#: src/screens/Onboarding/StepInterests/index.tsx:201 +#: src/screens/Onboarding/StepInterests/index.tsx:206 msgid "Select your interests from the options below" msgstr "Виберіть ваші інтереси із нижченаведених варіантів" @@ -5376,7 +5447,7 @@ msgstr "Надсилає електронний лист з кодом підт msgid "Server address" msgstr "Адреса сервера" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:307 msgid "Set birthdate" msgstr "Додати дату народження" @@ -5464,9 +5535,9 @@ msgstr "Сексуальна активність або еротична ого msgid "Sexually Suggestive" msgstr "З сексуальним підтекстом" -#: src/components/StarterPack/QrCodeDialog.tsx:180 -#: src/screens/StarterPack/StarterPackScreen.tsx:303 -#: src/screens/StarterPack/StarterPackScreen.tsx:458 +#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/screens/StarterPack/StarterPackScreen.tsx:312 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5476,7 +5547,7 @@ msgstr "З сексуальним підтекстом" msgid "Share" msgstr "Поширити" -#: src/view/com/lightbox/Lightbox.tsx:142 +#: src/view/com/lightbox/Lightbox.tsx:144 msgctxt "action" msgid "Share" msgstr "Поширити" @@ -5495,30 +5566,36 @@ msgstr "" msgid "Share anyway" msgstr "Все одно поширити" -#: src/view/screens/ProfileFeed.tsx:358 -#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:361 msgid "Share feed" msgstr "Поширити стрічку" -#: src/screens/StarterPack/StarterPackScreen.tsx:462 +#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/screens/StarterPack/StarterPackScreen.tsx:469 msgid "Share link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "Поділитись посиланням" -#: src/components/StarterPack/ShareDialog.tsx:100 +#: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:296 +#: src/components/StarterPack/ShareDialog.tsx:134 +#: src/components/StarterPack/ShareDialog.tsx:145 +msgid "Share QR code" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:305 msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:112 +#: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5572,7 +5649,7 @@ msgstr "" msgid "Show less like this" msgstr "" -#: src/view/com/post-thread/PostThreadItem.tsx:533 +#: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" @@ -5732,33 +5809,33 @@ msgstr "Ви увійшли як @{0}" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:240 -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Пропустити" -#: src/screens/Onboarding/StepInterests/index.tsx:237 +#: src/screens/Onboarding/StepInterests/index.tsx:242 msgid "Skip this flow" msgstr "Пропустити цей процес" #: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:85 msgid "Software Dev" msgstr "Розробка П/З" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 -#: src/view/com/threadgate/WhoCanReply.tsx:67 -#: src/view/com/threadgate/WhoCanReply.tsx:124 +#: src/components/WhoCanReply.tsx:72 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "" #: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "" +#~ msgid "Some subtitle" +#~ msgstr "" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -5770,7 +5847,7 @@ msgid "Something went wrong, please try again" msgstr "" #: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 +#: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "Щось пішло не так. Будь ласка, спробуйте ще раз." @@ -5806,6 +5883,7 @@ msgid "Spam; excessive mentions or replies" msgstr "Спам; надмірні згадки або відповіді" #: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:97 msgid "Sports" msgstr "Спорт" @@ -5827,7 +5905,7 @@ msgstr "" #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -5835,14 +5913,18 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:214 msgid "Starter Packs" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + #: src/view/screens/Settings/index.tsx:862 #~ msgid "Status page" #~ msgstr "Сторінка стану" @@ -5960,6 +6042,7 @@ msgid "Tap to view fully" msgstr "Торкніться, щоб переглянути повністю" #: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:98 msgid "Tech" msgstr "Технології" @@ -6012,10 +6095,10 @@ msgstr "Що містить наступне:" msgid "That handle is already taken." msgstr "Цей псевдонім вже зайнятий." -#: src/screens/StarterPack/StarterPackScreen.tsx:100 -#: src/screens/StarterPack/StarterPackScreen.tsx:101 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:102 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/Wizard/index.tsx:106 +#: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." msgstr "" @@ -6036,7 +6119,7 @@ msgstr "Правила Спільноти переміщено до <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "Політику захисту авторського права переміщено до <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6065,7 +6148,7 @@ msgstr "Можливо цей пост було видалено." msgid "The Privacy Policy has been moved to <0/>" msgstr "Політика конфіденційності була переміщена до <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:589 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6086,7 +6169,7 @@ 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:542 +#: src/view/screens/ProfileFeed.tsx:544 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "Виникла проблема з доступом до сервера. Перевірте підключення до Інтернету і повторіть спробу знову." @@ -6096,7 +6179,7 @@ msgstr "Виникла проблема при видаленні цієї ст #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "Виникла проблема з оновленням ваших стрічок. Перевірте підключення до Інтернету і повторіть спробу." @@ -6109,7 +6192,7 @@ msgstr "" #~ msgid "There was an issue connecting to the chat." #~ msgstr "" -#: src/view/screens/ProfileFeed.tsx:233 +#: src/view/screens/ProfileFeed.tsx:234 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -6167,6 +6250,7 @@ msgstr "Виникла проблема з завантаженням ваших msgid "There was an issue! {0}" msgstr "Виникла проблема! {0}" +#: src/components/WhoCanReply.tsx:116 #: src/view/screens/ProfileList.tsx:335 #: src/view/screens/ProfileList.tsx:349 #: src/view/screens/ProfileList.tsx:363 @@ -6259,7 +6343,7 @@ msgstr "Ця стрічка зараз отримує забагато запи msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "Ця стрічка порожня! Можливо, вам треба підписатися на більшу кількість користувачів або змінити ваші налаштування мови." -#: src/view/screens/ProfileFeed.tsx:472 +#: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "" @@ -6366,7 +6450,7 @@ msgstr "Цей користувач є в списку <0>{0}, який ви msgid "This user is included in the <0>{0} list which you have muted." msgstr "Цей користувач є в списку <0>{0}, який ви додали до ігнорування." -#: src/components/NewskieDialog.tsx:53 +#: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." msgstr "" @@ -6391,6 +6475,10 @@ msgstr "Налаштування гілок" msgid "Thread Preferences" msgstr "Налаштування гілок" +#: src/components/WhoCanReply.tsx:109 +msgid "Thread settings updated" +msgstr "" + #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "Режим гілок" @@ -6419,7 +6507,7 @@ msgstr "Перемикання між опціями ігнорування сл msgid "Toggle dropdown" msgstr "Розкрити/сховати" -#: src/screens/Moderation/index.tsx:332 +#: src/screens/Moderation/index.tsx:336 msgid "Toggle to enable or disable adult content" msgstr "Увімкнути або вимкнути вміст для дорослих" @@ -6434,8 +6522,8 @@ msgstr "Редагування" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: 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 msgid "Translate" @@ -6446,6 +6534,10 @@ msgctxt "action" msgid "Try again" msgstr "Спробувати ще раз" +#: src/screens/Onboarding/state.ts:99 +msgid "TV" +msgstr "" + #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" msgstr "" @@ -6475,7 +6567,7 @@ msgstr "Перестати ігнорувати" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Не вдалося зв'язатися з вашим хостинг-провайдером. Перевірте ваше підключення до Інтернету." -#: src/screens/StarterPack/StarterPackScreen.tsx:513 +#: src/screens/StarterPack/StarterPackScreen.tsx:520 msgid "Unable to delete" msgstr "" @@ -6538,7 +6630,7 @@ msgstr "Відписатися від облікового запису" #~ msgid "Unlike" #~ msgstr "Прибрати вподобання" -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Unlike this feed" msgstr "Видалити вподобання цієї стрічки" @@ -6573,12 +6665,12 @@ msgstr "" msgid "Unmute thread" msgstr "Перестати ігнорувати" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "Відкріпити" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 msgid "Unpin from home" msgstr "Відкріпити від головної сторінки" @@ -6748,7 +6840,7 @@ msgstr "Ім'я користувача або електронна адреса" msgid "Users" msgstr "Користувачі" -#: src/view/com/threadgate/WhoCanReply.tsx:274 +#: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" msgstr "користувачі, на яких підписані <0/>" @@ -6759,7 +6851,7 @@ msgstr "користувачі, на яких підписані <0/>" msgid "Users I follow" msgstr "" -#: src/view/com/modals/Threadgate.tsx:109 +#: src/components/dialogs/ThreadgateEditor.tsx:132 msgid "Users in \"{0}\"" msgstr "Користувачі в «{0}»" @@ -6813,6 +6905,7 @@ msgid "Version {appVersion} {bundleInfo}" msgstr "" #: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:88 msgid "Video Games" msgstr "Відеоігри" @@ -6864,7 +6957,7 @@ msgstr "Переглянути аватар" msgid "View the labeling service provided by @{0}" msgstr "Переглянути послуги маркування, який надає @{0}" -#: src/view/screens/ProfileFeed.tsx:583 +#: src/view/screens/ProfileFeed.tsx:585 msgid "View users who like this feed" msgstr "Переглянути користувачів, які вподобали цю стрічку" @@ -6924,11 +7017,11 @@ msgstr "Ми рекомендуємо уникати загальних слів msgid "We were unable to load your birth date preferences. Please try again." msgstr "Не вдалося завантажити ваші налаштування дати дня народження. Повторіть спробу." -#: src/screens/Moderation/index.tsx:385 +#: src/screens/Moderation/index.tsx:409 msgid "We were unable to load your configured labelers at this time." msgstr "Наразі ми не змогли завантажити список ваших маркувальників." -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:143 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Ми не змогли під'єднатися. Будь ласка, спробуйте ще раз, щоб продовжити налаштування свого облікового запису. Якщо помилка повторюється, то ви можете пропустити цей процес." @@ -6936,7 +7029,7 @@ msgstr "Ми не змогли під'єднатися. Будь ласка, с msgid "We will let you know when your account is ready." msgstr "Ми повідомимо вас, коли ваш обліковий запис буде готовий." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:148 msgid "We'll use this to help customize your experience." msgstr "Ми скористаємося цим, щоб підлаштувати Ваш досвід." @@ -6985,7 +7078,11 @@ msgstr "" #~ msgid "Welcome to <0>Bluesky" #~ msgstr "Ласкаво просимо до <0>Bluesky" -#: src/screens/Onboarding/StepInterests/index.tsx:135 +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" msgstr "Чим ви цікавитесь?" @@ -7012,17 +7109,15 @@ msgstr "Якими мовами ви хочете бачити пости у а msgid "Who can message you?" msgstr "" -#: src/view/com/modals/Threadgate.tsx:69 -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Who can reply" msgstr "Хто може відповідати" -#: src/view/com/threadgate/WhoCanReply.tsx:206 +#: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" msgstr "" -#: src/view/com/threadgate/WhoCanReply.tsx:210 +#: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" msgstr "" @@ -7078,6 +7173,7 @@ msgid "Write your reply" msgstr "Написати відповідь" #: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:100 msgid "Writers" msgstr "Письменники" @@ -7096,7 +7192,7 @@ msgstr "Так" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:525 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Yes, delete this starter pack" msgstr "" @@ -7112,6 +7208,10 @@ msgstr "" msgid "you" msgstr "" +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + #: src/screens/SignupQueued.tsx:136 msgid "You are in line." msgstr "Ви в черзі." @@ -7245,6 +7345,10 @@ msgstr "Ви ще не ігноруєте жодного облікового з msgid "You have reached the end" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +msgid "You haven't created a starter pack yet!" +msgstr "" + #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "У вас ще немає ігнорованих слів чи тегів" @@ -7273,15 +7377,15 @@ msgstr "Вам має виповнитись 13 років для того, що #~ msgid "You must be 18 years or older to enable adult content" #~ msgstr "Ви повинні бути старше 18 років, щоб дозволити перегляд контенту для дорослих" -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:62 +#: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." msgstr "" @@ -7333,7 +7437,7 @@ msgstr "" msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po index 809df3a280..431390bc0f 100644 --- a/src/locale/locales/zh-CN/messages.po +++ b/src/locale/locales/zh-CN/messages.po @@ -55,7 +55,7 @@ msgstr "{0, plural, one {喜欢 (# 个喜欢)} other {喜欢 (# 个喜欢)}}" msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {喜欢} other {喜欢}}" -#: src/components/FeedCard.tsx:215 +#: src/components/FeedCard.tsx:216 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural, one {# 位用户喜欢} other {# 位用户喜欢}}" @@ -76,7 +76,11 @@ msgstr "{0, plural, one {转发} other {转发}}" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {取消喜欢 (# 个喜欢)} other {取消喜欢 (# 个喜欢)}}" -#: src/screens/StarterPack/StarterPackScreen.tsx:343 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +msgid "{0} joined this week" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:350 msgid "{0} people have used this starter pack!" msgstr "" @@ -116,7 +120,7 @@ msgstr "{diff, plural, one {月} other {月}}" msgid "{diffSeconds, plural, one {second} other {seconds}}" msgstr "{diffSeconds, plural, one {秒} other {秒}}" -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" msgstr "" @@ -139,7 +143,7 @@ msgstr "无法给 {handle} 发送私信" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:586 +#: src/view/screens/ProfileFeed.tsx:588 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {# 位用户喜欢} other {# 位用户喜欢}}" @@ -147,11 +151,11 @@ msgstr "{likeCount, plural, one {# 位用户喜欢} other {# 位用户喜欢}}" msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} 个未读" -#: src/components/NewskieDialog.tsx:92 +#: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" msgstr "{profileName} 在 {0} 前加入了 Bluesky" -#: src/components/NewskieDialog.tsx:87 +#: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "" @@ -159,17 +163,27 @@ 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 {显示所有回复} one {显示至少含有 # 个喜欢数的回复} other {显示至少含有 # 个喜欢数的回复}}" -#: src/view/com/threadgate/WhoCanReply.tsx:290 +#: src/components/WhoCanReply.tsx:295 msgid "<0/> members" msgstr "<0/> 个成员" #: src/screens/StarterPack/Wizard/index.tsx:485 -msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +#~ 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 "" + +#: 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 "" +#~ 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 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -179,7 +193,11 @@ msgstr "<0>{0} {1, plural, one {关注者} other {关注者}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {正在关注} other {正在关注}}" -#: src/screens/StarterPack/Wizard/index.tsx:478 +#: src/screens/StarterPack/Wizard/index.tsx:507 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -187,6 +205,10 @@ msgstr "" msgid "<0>Not Applicable. This warning is only available for posts with media attached." msgstr "<0>不适用。 这个警告仅适用于附加媒体内容的帖文。" +#: src/screens/StarterPack/Wizard/index.tsx:457 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠无效的用户识别符" @@ -273,11 +295,11 @@ msgstr "已取消隐藏账户" msgid "Add" msgstr "添加" -#: src/screens/StarterPack/Wizard/index.tsx:539 +#: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:56 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" msgstr "" @@ -320,14 +342,14 @@ msgid "Add muted words and tags" msgstr "添加隐藏词和标签" #: src/screens/StarterPack/Wizard/index.tsx:197 -msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "" +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "添加推荐的资讯源" -#: src/screens/StarterPack/Wizard/index.tsx:464 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" msgstr "" @@ -339,7 +361,7 @@ msgstr "添加默认的资讯源(仅显示你关注的人)" msgid "Add the following DNS record to your domain:" msgstr "将以下 DNS 记录新增到你的域名:" -#: src/components/FeedCard.tsx:300 +#: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" msgstr "添加此资讯源到你的自定义资讯源列表" @@ -370,16 +392,20 @@ msgstr "调整会在你的资讯源中显示的回复至少需要含有多少喜 msgid "Adult Content" msgstr "成人内容" +#: src/screens/Moderation/index.tsx:356 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "成人内容显示已被禁用。" -#: src/screens/Moderation/index.tsx:375 +#: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "详细设置" -#: src/screens/StarterPack/StarterPackScreen.tsx:271 +#: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "All accounts have been followed!" msgstr "" @@ -439,20 +465,20 @@ msgstr "一封电子邮件已发送至先前填写的邮箱 {0}。请查阅邮 msgid "An error occured" msgstr "发生错误" -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +#: 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 "" +#~ msgid "An error occurred while saving the image." +#~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:76 -#: src/components/StarterPack/ShareDialog.tsx:91 +#: src/components/StarterPack/QrCodeDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:275 msgid "An error occurred while trying to follow all" msgstr "" @@ -469,16 +495,17 @@ msgstr "不在这些选项中的问题" msgid "An issue occurred, please try again." msgstr "出现问题,请重试。" -#: src/screens/Onboarding/StepInterests/index.tsx:194 +#: src/screens/Onboarding/StepInterests/index.tsx:199 msgid "an unknown error occurred" msgstr "出现未知错误" +#: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:280 -#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "和" #: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:79 msgid "Animals" msgstr "动物" @@ -546,7 +573,7 @@ msgstr "外观" msgid "Apply default recommended feeds" msgstr "使用默认推荐的资讯源" -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -566,7 +593,7 @@ msgstr "你确定要离开这个对话吗?此操作仅会在你的私信列表 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "你确定要从你的资讯源中删除 {0} 吗?" -#: src/components/FeedCard.tsx:317 +#: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" msgstr "你确定要从自定义资讯源列表中删除此资讯源吗?" @@ -583,6 +610,7 @@ msgid "Are you writing in <0>{0}?" msgstr "你是用 <0>{0} 编写的吗?" #: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:80 msgid "Art" msgstr "艺术" @@ -609,7 +637,7 @@ msgstr "至少 3 个字符" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:312 +#: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "返回" @@ -662,7 +690,7 @@ msgstr "屏蔽这些账户?" msgid "Blocked" msgstr "已屏蔽" -#: src/screens/Moderation/index.tsx:267 +#: src/screens/Moderation/index.tsx:270 msgid "Blocked accounts" msgstr "已屏蔽账户" @@ -708,11 +736,11 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky 是一个开放的公共网络,你可以选择自己的托管提供商。现在,自定义托管现在已经进入开发者测试阶段。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:533 +#: 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 不会向未登录的用户显示你的个人资料和帖文。但其他应用可能不会遵照这个请求,这无法确保你的账户隐私。" @@ -725,6 +753,7 @@ msgid "Blur images and filter from feeds" msgstr "模糊化图片并从资讯源中过滤" #: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:81 msgid "Books" msgstr "书籍" @@ -914,13 +943,21 @@ msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "查看发送至你电子邮箱的确认邮件,并在下方输入收到的验证码:" #: src/view/com/modals/Threadgate.tsx:75 -msgid "Choose \"Everybody\" or \"Nobody\"" -msgstr "选择 \"所有人\" 或是 \"没有人\"" +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "选择 \"所有人\" 或是 \"没有人\"" -#: src/components/StarterPack/ProfileStarterPacks.tsx:288 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:187 +msgid "Choose People" +msgstr "" + #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "选择服务" @@ -933,6 +970,11 @@ msgstr "选择支持你的自定义资讯源的算法。" msgid "Choose this color as your avatar" msgstr "选择这个颜色作为你的头像" +#: src/components/dialogs/ThreadgateEditor.tsx:91 +#: src/components/dialogs/ThreadgateEditor.tsx:95 +msgid "Choose who can reply" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:114 msgid "Choose your password" msgstr "选择你的密码" @@ -997,18 +1039,18 @@ msgstr "哒哒🐴哒哒🐴" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/NewskieDialog.tsx:120 -#: src/components/NewskieDialog.tsx:127 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:121 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:127 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: 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:189 msgid "Close" msgstr "关闭" -#: src/components/Dialog/index.web.tsx:113 -#: src/components/Dialog/index.web.tsx:251 +#: src/components/Dialog/index.web.tsx:116 +#: src/components/Dialog/index.web.tsx:254 msgid "Close active dialog" msgstr "关闭活动对话框" @@ -1075,10 +1117,12 @@ msgid "Collapses list of users for a given notification" msgstr "折叠给定通知的用户列表" #: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:82 msgid "Comedy" msgstr "喜剧" #: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:83 msgid "Comics" msgstr "漫画" @@ -1136,11 +1180,11 @@ msgstr "确认内容语言设置" msgid "Confirm delete account" msgstr "确认删除账户" -#: src/screens/Moderation/index.tsx:301 +#: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "确认你的年龄:" -#: src/screens/Moderation/index.tsx:292 +#: src/screens/Moderation/index.tsx:295 msgid "Confirm your birthdate" msgstr "确认你的出生日期" @@ -1166,7 +1210,7 @@ msgstr "联系支持" msgid "Content Blocked" msgstr "内容已屏蔽" -#: src/screens/Moderation/index.tsx:285 +#: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "内容过滤器" @@ -1195,7 +1239,7 @@ msgstr "内容警告" msgid "Context menu backdrop, click to close the menu." msgstr "上下文菜单背景,点击关闭菜单。" -#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepInterests/index.tsx:258 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "继续" @@ -1208,7 +1252,7 @@ msgstr "以 {0} 继续(已登录)" msgid "Continue thread..." msgstr "加载更多帖文串..." -#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:251 msgid "Continue to next step" @@ -1248,7 +1292,7 @@ msgstr "已复制!" msgid "Copies app password" msgstr "已复制应用专用密码" -#: src/components/StarterPack/QrCodeDialog.tsx:180 +#: src/components/StarterPack/QrCodeDialog.tsx:174 #: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "复制" @@ -1262,7 +1306,11 @@ msgstr "复制{0}" msgid "Copy code" msgstr "复制代码" -#: src/components/StarterPack/ShareDialog.tsx:143 +#: src/components/StarterPack/ShareDialog.tsx:123 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" msgstr "" @@ -1285,7 +1333,7 @@ msgstr "复制私信文字" msgid "Copy post text" msgstr "复制帖文文字" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" msgstr "" @@ -1298,7 +1346,7 @@ msgstr "版权许可" msgid "Could not leave chat" msgstr "无法离开对话" -#: src/view/screens/ProfileFeed.tsx:102 +#: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" msgstr "无法加载资讯源" @@ -1310,7 +1358,7 @@ msgstr "无法加载列表" msgid "Could not mute chat" msgstr "无法隐藏对话" -#: src/components/StarterPack/ProfileStarterPacks.tsx:270 +#: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" msgstr "" @@ -1323,17 +1371,17 @@ msgstr "创建新的账户" msgid "Create a new Bluesky account" msgstr "创建新的 Bluesky 账户" -#: src/components/StarterPack/QrCodeDialog.tsx:157 +#: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:257 +#: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +#: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" msgstr "" @@ -1364,8 +1412,8 @@ msgid "Create new account" msgstr "创建新的账户" #: src/components/StarterPack/ShareDialog.tsx:158 -msgid "Create QR code" -msgstr "" +#~ msgid "Create QR code" +#~ msgstr "" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1376,6 +1424,7 @@ msgid "Created {0}" msgstr "{0} 已创建" #: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:84 msgid "Culture" msgstr "文化" @@ -1432,9 +1481,9 @@ msgid "Debug panel" msgstr "调试面板" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:449 -#: src/screens/StarterPack/StarterPackScreen.tsx:528 -#: src/screens/StarterPack/StarterPackScreen.tsx:608 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1491,12 +1540,12 @@ msgstr "删除我的账户…" msgid "Delete post" msgstr "删除帖文" -#: src/screens/StarterPack/StarterPackScreen.tsx:443 -#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:450 +#: src/screens/StarterPack/StarterPackScreen.tsx:606 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:494 +#: src/screens/StarterPack/StarterPackScreen.tsx:501 msgid "Delete starter pack?" msgstr "" @@ -1560,7 +1609,7 @@ msgstr "关闭触感反馈" #: src/lib/moderation/useLabelBehaviorDescription.ts:68 #: src/screens/Messages/Settings.tsx:140 #: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:341 +#: src/screens/Moderation/index.tsx:346 msgid "Disabled" msgstr "关闭" @@ -1572,8 +1621,8 @@ msgstr "丢弃" msgid "Discard draft?" msgstr "丢弃草稿?" -#: src/screens/Moderation/index.tsx:518 -#: src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:542 +#: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" msgstr "阻止应用向未登录用户显示我的账户" @@ -1624,6 +1673,7 @@ msgstr "域名已认证!" #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/ThreadgateEditor.tsx:88 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 @@ -1643,8 +1693,6 @@ msgstr "完成" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 #: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/Threadgate.tsx:136 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 #: src/view/screens/PreferencesThreads.tsx:162 @@ -1656,7 +1704,7 @@ msgstr "完成" msgid "Done{extraText}" msgstr "完成{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 msgid "Download Bluesky" msgstr "" @@ -1714,9 +1762,9 @@ msgctxt "action" msgid "Edit" msgstr "编辑" -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:522 -#: src/screens/StarterPack/Wizard/index.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" @@ -1727,7 +1775,7 @@ msgstr "编辑" msgid "Edit avatar" msgstr "编辑头像" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "" @@ -1755,7 +1803,7 @@ msgstr "编辑自定义资讯源" msgid "Edit my profile" msgstr "编辑个人资料" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "" @@ -1769,7 +1817,7 @@ msgstr "编辑个人资料" msgid "Edit Profile" msgstr "编辑个人资料" -#: src/screens/StarterPack/StarterPackScreen.tsx:430 +#: src/screens/StarterPack/StarterPackScreen.tsx:437 msgid "Edit starter pack" msgstr "" @@ -1777,8 +1825,7 @@ msgstr "" msgid "Edit User List" msgstr "编辑用户列表" -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" msgstr "编辑谁可以回复" @@ -1795,9 +1842,14 @@ msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:86 msgid "Education" msgstr "教育" +#: src/components/dialogs/ThreadgateEditor.tsx:98 +msgid "Either choose \"Everybody\" or \"Nobody\"" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" @@ -1846,7 +1898,7 @@ msgstr "将这条帖文嵌入到你的网站。只需复制以下代码片段, msgid "Enable {0} only" msgstr "仅启用 {0}" -#: src/screens/Moderation/index.tsx:329 +#: src/screens/Moderation/index.tsx:333 msgid "Enable adult content" msgstr "启用成人内容" @@ -1869,7 +1921,7 @@ msgstr "仅启用这个来源" #: src/screens/Messages/Settings.tsx:131 #: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:339 +#: src/screens/Moderation/index.tsx:344 msgid "Enabled" msgstr "已启用" @@ -1935,19 +1987,18 @@ msgstr "保存文件时发生错误" msgid "Error receiving captcha response." msgstr "Captcha 响应错误。" -#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "错误:" -#: src/view/com/modals/Threadgate.tsx:79 +#: src/components/dialogs/ThreadgateEditor.tsx:102 msgid "Everybody" msgstr "所有人" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#: src/view/com/threadgate/WhoCanReply.tsx:64 -#: src/view/com/threadgate/WhoCanReply.tsx:121 -#: src/view/com/threadgate/WhoCanReply.tsx:235 +#: src/components/WhoCanReply.tsx:69 +#: src/components/WhoCanReply.tsx:240 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "所有人都可以回复" @@ -2042,8 +2093,8 @@ msgstr "外部媒体设置" msgid "Failed to create app password." msgstr "创建应用专用密码失败。" -#: src/screens/StarterPack/Wizard/index.tsx:241 -#: src/screens/StarterPack/Wizard/index.tsx:249 +#: src/screens/StarterPack/Wizard/index.tsx:230 +#: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" msgstr "" @@ -2059,7 +2110,7 @@ msgstr "无法删除私信" msgid "Failed to delete post, please try again" msgstr "无法删除帖文,请重试" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/StarterPackScreen.tsx:569 msgid "Failed to delete starter pack" msgstr "" @@ -2086,7 +2137,7 @@ msgstr "无法加载建议的资讯源" msgid "Failed to load suggested follows" msgstr "无法加载建议关注" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" msgstr "无法保存这张图片:{0}" @@ -2103,7 +2154,7 @@ msgstr "无法提交申诉,请再试一次。" msgid "Failed to toggle thread mute, please try again" msgstr "无法隐藏讨论串,请再试一次" -#: src/components/FeedCard.tsx:280 +#: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "无法更新资讯源" @@ -2125,7 +2176,7 @@ msgstr "由 {0} 创建的资讯源" #~ msgid "Feed offline" #~ msgstr "资讯源已离线" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "" @@ -2135,10 +2186,9 @@ msgid "Feedback" msgstr "反馈" #: src/Navigation.tsx:320 -#: src/screens/StarterPack/Wizard/index.tsx:201 #: src/view/screens/Feeds.tsx:445 #: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:220 +#: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:373 #: src/view/shell/Drawer.tsx:493 @@ -2150,7 +2200,7 @@ msgstr "资讯源" msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "创建资讯源仅需你掌握一点编程基础。<0/>以获取详情。" -#: src/components/FeedCard.tsx:277 +#: src/components/FeedCard.tsx:282 msgid "Feeds updated!" msgstr "资讯源已更新!" @@ -2188,7 +2238,7 @@ msgstr "调整你在\"正在关注\"资讯源上所看到的内容。" msgid "Fine-tune the discussion threads." msgstr "调整讨论主题。" -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" msgstr "" @@ -2236,8 +2286,8 @@ msgstr "关注 {name}" msgid "Follow Account" msgstr "关注账户" -#: src/screens/StarterPack/StarterPackScreen.tsx:308 -#: src/screens/StarterPack/StarterPackScreen.tsx:315 +#: src/screens/StarterPack/StarterPackScreen.tsx:317 +#: src/screens/StarterPack/StarterPackScreen.tsx:324 msgid "Follow all" msgstr "" @@ -2269,7 +2319,7 @@ msgstr "由 <0>{0} 以及 <1>{1} 所关注" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "由 <0>{0}、<1>{1} 以及 {2, plural, one {其他#人} other {其他#人}} 所关注" -#: src/view/com/modals/Threadgate.tsx:101 +#: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" msgstr "已关注的用户" @@ -2333,6 +2383,7 @@ msgid "Follows You" msgstr "关注了你" #: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:87 msgid "Food" msgstr "食物" @@ -2374,7 +2425,7 @@ msgstr "来自 <0/>" msgid "Gallery" msgstr "相册" -#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" msgstr "" @@ -2404,7 +2455,7 @@ msgstr "明显违反法律或服务条款" #: src/view/com/auth/LoggedOut.tsx:78 #: src/view/com/auth/LoggedOut.tsx:79 #: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:133 msgid "Go back" @@ -2413,9 +2464,9 @@ msgstr "返回" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:628 #: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "返回" @@ -2429,7 +2480,7 @@ msgstr "返回" msgid "Go back to previous step" msgstr "返回上一步" -#: src/screens/StarterPack/Wizard/index.tsx:313 +#: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" msgstr "" @@ -2553,7 +2604,7 @@ msgstr "资讯源服务器返回错误的响应,请联系资讯源的维护者 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "无法找到该资讯源,似乎已被删除。" -#: src/screens/Moderation/index.tsx:59 +#: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "看起来在加载数据时遇到了问题,请查看下方获取更多详情。如果问题仍然存在,请联系我们。" @@ -2644,7 +2695,7 @@ msgstr "图片" msgid "Image alt text" msgstr "图片替代文本" -#: src/components/StarterPack/ShareDialog.tsx:88 +#: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" msgstr "" @@ -2737,7 +2788,7 @@ msgstr "邀请码:{0} 个可用" msgid "Invite codes: 1 available" msgstr "邀请码:1 个可用" -#: src/components/StarterPack/ShareDialog.tsx:109 +#: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" msgstr "" @@ -2749,7 +2800,7 @@ msgstr "" msgid "Invites, but personal" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:473 +#: 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 "" @@ -2757,8 +2808,8 @@ msgstr "" msgid "Jobs" msgstr "工作" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 msgid "Join Bluesky" msgstr "" @@ -2767,6 +2818,7 @@ msgid "Join the conversation" msgstr "" #: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:89 msgid "Journalism" msgstr "新闻学" @@ -2778,7 +2830,7 @@ msgstr "由 {0} 标记。" msgid "Labeled by the author." msgstr "由作者标记。" -#: src/view/screens/Profile.tsx:214 +#: src/view/screens/Profile.tsx:207 msgid "Labels" msgstr "标记" @@ -2830,7 +2882,7 @@ msgstr "了解更多有关审核应用于此内容的详细信息。" msgid "Learn more about this warning" msgstr "了解有关这个警告的更多详情" -#: src/screens/Moderation/index.tsx:549 +#: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." msgstr "了解有关 Bluesky 公开内容的更多详情。" @@ -2871,7 +2923,7 @@ msgstr "个人排在你前面。" msgid "Legacy storage cleared, you need to restart the app now." msgstr "旧存储数据已清除,你需要立即重新启动应用。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:293 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" msgstr "" @@ -2889,7 +2941,7 @@ msgid "Light" msgstr "亮色" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "喜欢这个资讯源" @@ -2913,7 +2965,7 @@ msgstr "喜欢了你的自定义资讯源" msgid "liked your post" msgstr "喜欢了你的帖文" -#: src/view/screens/Profile.tsx:219 +#: src/view/screens/Profile.tsx:212 msgid "Likes" msgstr "喜欢" @@ -2959,8 +3011,8 @@ msgid "List unmuted" msgstr "解除对列表的隐藏" #: src/Navigation.tsx:122 +#: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/screens/Profile.tsx:222 #: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 @@ -2989,7 +3041,7 @@ msgstr "加载新的通知" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:493 +#: src/view/screens/ProfileFeed.tsx:494 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "加载新的帖文" @@ -3014,7 +3066,7 @@ msgstr "登录或注册" msgid "Log out" msgstr "登出" -#: src/screens/Moderation/index.tsx:442 +#: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" msgstr "未登录用户可见性" @@ -3042,7 +3094,7 @@ msgstr "看起来你已取消固定所有资讯源。不过别担心,你仍然 msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "看起来你似乎缺少\"正在关注\"资讯源。<0>点击这里来重新添加它。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +#: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" msgstr "" @@ -3060,15 +3112,15 @@ msgid "Mark as read" msgstr "标记为已读" #: src/view/screens/AccessibilitySettings.tsx:102 -#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:211 msgid "Media" msgstr "媒体" -#: src/view/com/threadgate/WhoCanReply.tsx:270 +#: src/components/WhoCanReply.tsx:275 msgid "mentioned users" msgstr "提到的用户" -#: src/view/com/modals/Threadgate.tsx:96 +#: src/components/dialogs/ThreadgateEditor.tsx:119 msgid "Mentioned users" msgstr "提到的用户" @@ -3115,7 +3167,7 @@ msgid "Misleading Account" msgstr "误导性账户" #: src/Navigation.tsx:127 -#: src/screens/Moderation/index.tsx:104 +#: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "内容审核" @@ -3148,7 +3200,7 @@ msgstr "内容审核列表已创建" msgid "Moderation list updated" msgstr "内容审核列表已更新" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:246 msgid "Moderation lists" msgstr "内容审核列表" @@ -3165,7 +3217,7 @@ msgstr "内容审核设置" msgid "Moderation states" msgstr "内容审核状态" -#: src/screens/Moderation/index.tsx:215 +#: src/screens/Moderation/index.tsx:218 msgid "Moderation tools" msgstr "内容审核工具" @@ -3174,7 +3226,7 @@ msgstr "内容审核工具" msgid "Moderator has chosen to set a general warning on the content." msgstr "由内容审核服务提供方对这段内容设置的一般警告。" -#: src/view/com/post-thread/PostThreadItem.tsx:567 +#: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" msgstr "更多" @@ -3190,6 +3242,10 @@ msgstr "更多选项" msgid "Most-liked replies first" msgstr "优先显示最多喜欢" +#: src/screens/Onboarding/state.ts:90 +msgid "Movies" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "隐藏" @@ -3254,7 +3310,7 @@ msgstr "隐藏词和标签" msgid "Muted" msgstr "已隐藏" -#: src/screens/Moderation/index.tsx:255 +#: src/screens/Moderation/index.tsx:258 msgid "Muted accounts" msgstr "已隐藏账户" @@ -3271,7 +3327,7 @@ msgstr "已隐藏的账户将不会在你的通知或时间线中显示,被隐 msgid "Muted by \"{0}\"" msgstr "被 \"{0}\" 隐藏" -#: src/screens/Moderation/index.tsx:231 +#: src/screens/Moderation/index.tsx:234 msgid "Muted words & tags" msgstr "隐藏词汇和标签" @@ -3317,6 +3373,7 @@ msgid "Name or Description Violates Community Standards" msgstr "名称或描述违反了社群准则" #: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:91 msgid "Nature" msgstr "自然" @@ -3380,8 +3437,8 @@ msgstr "新帖文" #: src/view/screens/Feeds.tsx:580 #: src/view/screens/Notifications.tsx:193 -#: src/view/screens/Profile.tsx:485 -#: src/view/screens/ProfileFeed.tsx:427 +#: src/view/screens/Profile.tsx:478 +#: src/view/screens/ProfileFeed.tsx:428 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:277 @@ -3393,7 +3450,7 @@ msgctxt "action" msgid "New Post" msgstr "新帖文" -#: src/components/NewskieDialog.tsx:71 +#: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "新的用户信息对话框" @@ -3406,6 +3463,7 @@ msgid "Newest replies first" msgstr "优先显示最新回复" #: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:92 msgid "News" msgstr "新闻" @@ -3416,10 +3474,10 @@ msgstr "新闻" #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:258 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:195 -#: src/screens/StarterPack/Wizard/index.tsx:372 -#: src/screens/StarterPack/Wizard/index.tsx:379 +#: src/screens/StarterPack/Wizard/index.tsx:184 +#: src/screens/StarterPack/Wizard/index.tsx:188 +#: src/screens/StarterPack/Wizard/index.tsx:359 +#: src/screens/StarterPack/Wizard/index.tsx:366 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3438,7 +3496,7 @@ msgstr "下一张图片" msgid "No" msgstr "停用" -#: src/view/screens/ProfileFeed.tsx:560 +#: src/view/screens/ProfileFeed.tsx:562 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "没有描述" @@ -3452,7 +3510,7 @@ msgstr "没有 DNS 面板" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "未找到精选 GIF,Tensor 可能存在问题。" -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." msgstr "" @@ -3521,11 +3579,11 @@ msgstr "未找到 \"{search}\" 的搜索结果。" msgid "No thanks" msgstr "不,谢谢" -#: src/view/com/modals/Threadgate.tsx:85 +#: src/components/dialogs/ThreadgateEditor.tsx:108 msgid "Nobody" msgstr "没有人" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Nobody can reply" msgstr "没有人可以回复" @@ -3534,7 +3592,7 @@ msgstr "没有人可以回复" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "目前还没有人喜欢,也许你应该成为第一个!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -3543,7 +3601,7 @@ msgid "Non-sexual Nudity" msgstr "非性暗示裸露" #: src/Navigation.tsx:117 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "未找到" @@ -3558,7 +3616,7 @@ msgstr "暂时不需要" msgid "Note about sharing" msgstr "分享注意事项" -#: src/screens/Moderation/index.tsx:540 +#: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "注意:Bluesky 是一个开放的公共网络。这个设置项仅限制你发布的内容在 Bluesky 应用和网站上的可见性,其他应用可能不遵从这个设置项,仍可能会向未登录的用户显示你的动态。" @@ -3610,7 +3668,7 @@ msgstr "显示" msgid "Oh no!" msgstr "糟糕!" -#: src/screens/Onboarding/StepInterests/index.tsx:133 +#: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." msgstr "糟糕!发生了一些错误。" @@ -3646,7 +3704,7 @@ msgstr "至少有一张图片缺失了替代文本。" msgid "Only .jpg and .png files are supported" msgstr "目前只支持上传 .jpg 或 .png 格式的图片文件" -#: src/view/com/threadgate/WhoCanReply.tsx:239 +#: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" msgstr "只有 {0} 可以回复" @@ -3659,10 +3717,10 @@ msgid "Oops, something went wrong!" msgstr "糟糕,发生了一些错误!" #: src/components/Lists.tsx:191 -#: src/components/StarterPack/ProfileStarterPacks.tsx:302 -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "Oops!" @@ -3688,7 +3746,7 @@ msgstr "开启对话选项" msgid "Open emoji picker" msgstr "开启表情符号选择器" -#: src/view/screens/ProfileFeed.tsx:295 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Open feed options menu" msgstr "开启资讯源选项菜单" @@ -3700,7 +3758,7 @@ msgstr "在内置浏览器中打开链接" msgid "Open message options" msgstr "开启私信选项" -#: src/screens/Moderation/index.tsx:227 +#: src/screens/Moderation/index.tsx:230 msgid "Open muted words and tags settings" msgstr "开启隐藏词汇和标签设置" @@ -3712,7 +3770,7 @@ msgstr "打开导航" msgid "Open post options menu" msgstr "开启帖文选项菜单" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 msgid "Open starter pack menu" msgstr "" @@ -3729,6 +3787,10 @@ msgstr "开启系统日志" msgid "Opens {numItems} options" msgstr "开启 {numItems} 个选项" +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" msgstr "开启无障碍设置" @@ -3858,7 +3920,7 @@ msgstr "第 {0} 个选项,共 {numItems} 个" msgid "Optionally provide additional information below:" msgstr "可选在下方提供额外信息:" -#: src/view/com/modals/Threadgate.tsx:92 +#: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" msgstr "或者选择组合这些选项:" @@ -3918,7 +3980,6 @@ msgstr "密码已更新!" msgid "Pause" msgstr "暂停" -#: src/screens/StarterPack/Wizard/index.tsx:194 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "用户" @@ -3931,32 +3992,37 @@ msgstr "@{0} 关注的用户" msgid "People following @{0}" msgstr "关注 @{0} 的用户" -#: src/view/com/lightbox/Lightbox.tsx:67 +#: src/view/com/lightbox/Lightbox.tsx:69 msgid "Permission to access camera roll is required." msgstr "需要照片图库的访问权限。" -#: src/view/com/lightbox/Lightbox.tsx:73 +#: src/view/com/lightbox/Lightbox.tsx:75 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "照片图库的访问权限已被拒绝,请在系统设置中启用。" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:93 msgid "Pets" msgstr "宠物" +#: src/screens/Onboarding/state.ts:94 +msgid "Photography" +msgstr "" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "适合成年人的图像。" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "固定到主页" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 msgid "Pin to Home" msgstr "固定到主页" @@ -4047,6 +4113,7 @@ msgid "Please wait for your link card to finish loading" msgstr "请等待你的链接卡片加载完毕" #: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:95 msgid "Politics" msgstr "政治" @@ -4110,7 +4177,7 @@ msgstr "无法找到帖文" msgid "posts" msgstr "帖文" -#: src/view/screens/Profile.tsx:216 +#: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "帖文" @@ -4179,7 +4246,7 @@ msgid "Processing..." msgstr "处理中..." #: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:353 +#: src/view/screens/Profile.tsx:346 msgid "profile" msgstr "个人资料" @@ -4219,15 +4286,15 @@ msgstr "发布帖文" msgid "Publish reply" msgstr "发布回复" -#: src/components/StarterPack/QrCodeDialog.tsx:131 +#: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:109 +#: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:110 +#: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" msgstr "" @@ -4267,7 +4334,9 @@ msgid "Reload conversations" msgstr "重新加载对话" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:325 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -4276,7 +4345,7 @@ msgstr "重新加载对话" msgid "Remove" msgstr "移除" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" msgstr "" @@ -4308,13 +4377,13 @@ msgstr "删除资讯源?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:332 +#: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "从自定义资讯源中删除" -#: src/components/FeedCard.tsx:315 +#: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "从自定义资讯源中删除?" @@ -4362,7 +4431,7 @@ msgid "Removed from my feeds" msgstr "已从自定义资讯源中删除" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "从你的自定义资讯源中删除" @@ -4380,19 +4449,19 @@ msgstr "删除引用的帖文" msgid "Replace with Discover" msgstr "替换为\"Discover\"" -#: src/view/screens/Profile.tsx:217 +#: src/view/screens/Profile.tsx:210 msgid "Replies" msgstr "回复" -#: src/view/com/threadgate/WhoCanReply.tsx:66 +#: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" msgstr "回复已被禁用" #: src/view/com/threadgate/WhoCanReply.tsx:123 -msgid "Replies on this thread are disabled" -msgstr "该讨论串的回复已被禁用" +#~ msgid "Replies on this thread are disabled" +#~ msgstr "该讨论串的回复已被禁用" -#: src/view/com/threadgate/WhoCanReply.tsx:237 +#: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "该讨论串的回复已被禁用" @@ -4437,8 +4506,8 @@ msgstr "举报对话" msgid "Report dialog" msgstr "举报页面" -#: src/view/screens/ProfileFeed.tsx:348 -#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:351 msgid "Report feed" msgstr "举报资讯源" @@ -4455,8 +4524,8 @@ msgstr "举报私信" msgid "Report post" msgstr "举报帖文" -#: src/screens/StarterPack/StarterPackScreen.tsx:469 -#: src/screens/StarterPack/StarterPackScreen.tsx:472 +#: src/screens/StarterPack/StarterPackScreen.tsx:476 +#: src/screens/StarterPack/StarterPackScreen.tsx:479 msgid "Report starter pack" msgstr "" @@ -4502,7 +4571,7 @@ msgstr "转发" msgid "Repost" msgstr "转发" -#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:418 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4598,12 +4667,12 @@ msgstr "重试上次出错的操作" #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 #: src/screens/Login/LoginForm.tsx:291 #: src/screens/Login/LoginForm.tsx:298 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/Onboarding/StepInterests/index.tsx:234 #: src/screens/Signup/index.tsx:245 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 @@ -4611,7 +4680,7 @@ msgid "Retry" msgstr "重试" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:622 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "回到上一页" @@ -4621,12 +4690,13 @@ msgid "Returns to home page" msgstr "回到主页" #: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/ProfileFeed.tsx:113 msgid "Returns to previous page" msgstr "回到上一页" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/StarterPack/QrCodeDialog.tsx:190 +#: src/components/dialogs/ThreadgateEditor.tsx:88 +#: src/components/StarterPack/QrCodeDialog.tsx:184 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -4635,7 +4705,7 @@ msgstr "回到上一页" msgid "Save" msgstr "保存" -#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/lightbox/Lightbox.tsx:135 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -4657,8 +4727,8 @@ msgstr "保存更改" msgid "Save handle change" msgstr "保存用户识别符更改" -#: src/components/StarterPack/ShareDialog.tsx:163 -#: src/components/StarterPack/ShareDialog.tsx:170 +#: src/components/StarterPack/ShareDialog.tsx:150 +#: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" msgstr "" @@ -4666,12 +4736,12 @@ msgstr "" msgid "Save image crop" msgstr "保存图片裁切" -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" msgstr "保存到自定义资讯源" @@ -4679,11 +4749,11 @@ msgstr "保存到自定义资讯源" msgid "Saved Feeds" msgstr "已保存资讯源" -#: src/view/com/lightbox/Lightbox.tsx:82 +#: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" msgstr "保存到你的照片图库" -#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "已保存到你的自定义资讯源" @@ -4701,13 +4771,14 @@ msgid "Saves image crop settings" msgstr "保存图片裁剪设置" #: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:82 +#: src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:372 #: src/view/com/notifications/FeedItem.tsx:397 msgid "Say hello!" msgstr "说嗨!" #: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:96 msgid "Science" msgstr "科学" @@ -4749,7 +4820,7 @@ msgstr "搜索 @{authorHandle} 带有 {displayTag} 的所有帖文" msgid "Search for all posts with tag {displayTag}" msgstr "搜索所有带有 {displayTag} 的帖文" -#: src/screens/StarterPack/Wizard/index.tsx:467 +#: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -4866,7 +4937,7 @@ msgstr "选择你的应用语言,以显示应用中的默认文本。" msgid "Select your date of birth" msgstr "输入你的出生日期" -#: src/screens/Onboarding/StepInterests/index.tsx:201 +#: src/screens/Onboarding/StepInterests/index.tsx:206 msgid "Select your interests from the options below" msgstr "下面选择你感兴趣的选项" @@ -4935,7 +5006,7 @@ msgstr "发送包含账户删除验证码的电子邮件" msgid "Server address" msgstr "服务器地址" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:307 msgid "Set birthdate" msgstr "设置生日" @@ -5023,14 +5094,14 @@ msgstr "性行为或性暗示裸露。" msgid "Sexually Suggestive" msgstr "性暗示" -#: src/view/com/lightbox/Lightbox.tsx:142 +#: src/view/com/lightbox/Lightbox.tsx:144 msgctxt "action" msgid "Share" msgstr "分享" -#: src/components/StarterPack/QrCodeDialog.tsx:180 -#: src/screens/StarterPack/StarterPackScreen.tsx:303 -#: src/screens/StarterPack/StarterPackScreen.tsx:458 +#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/screens/StarterPack/StarterPackScreen.tsx:312 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5054,30 +5125,36 @@ msgstr "分享一个有趣的事实!" msgid "Share anyway" msgstr "仍然分享" -#: src/view/screens/ProfileFeed.tsx:358 -#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:361 msgid "Share feed" msgstr "分享资讯源" -#: src/screens/StarterPack/StarterPackScreen.tsx:462 +#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/screens/StarterPack/StarterPackScreen.tsx:469 msgid "Share link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "分享链接" -#: src/components/StarterPack/ShareDialog.tsx:100 +#: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:296 +#: src/components/StarterPack/ShareDialog.tsx:134 +#: src/components/StarterPack/ShareDialog.tsx:145 +msgid "Share QR code" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:305 msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:112 +#: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5127,7 +5204,7 @@ msgstr "显示已隐藏的回复" msgid "Show less like this" msgstr "更少显示类似这样的" -#: src/view/com/post-thread/PostThreadItem.tsx:533 +#: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" @@ -5255,33 +5332,33 @@ msgstr "以 @{0} 身份登录" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:240 -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "跳过" -#: src/screens/Onboarding/StepInterests/index.tsx:237 +#: src/screens/Onboarding/StepInterests/index.tsx:242 msgid "Skip this flow" msgstr "跳过这段流程" #: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:85 msgid "Software Dev" msgstr "程序开发" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 -#: src/view/com/threadgate/WhoCanReply.tsx:67 -#: src/view/com/threadgate/WhoCanReply.tsx:124 +#: src/components/WhoCanReply.tsx:72 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "一些人可以回复" #: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "" +#~ msgid "Some subtitle" +#~ msgstr "" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -5293,7 +5370,7 @@ msgid "Something went wrong, please try again" msgstr "出了点问题,请重试" #: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 +#: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "出了点问题,请重试。" @@ -5325,6 +5402,7 @@ msgid "Spam; excessive mentions or replies" msgstr "垃圾内容;过于频繁的提及或回复" #: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:97 msgid "Sports" msgstr "运动" @@ -5346,7 +5424,7 @@ msgstr "开始私信" #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -5354,14 +5432,18 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:214 msgid "Starter Packs" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + #: src/view/screens/Settings/index.tsx:963 msgid "Status Page" msgstr "状态页" @@ -5462,6 +5544,7 @@ msgid "Tap to view fully" msgstr "点击查看完整内容" #: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:98 msgid "Tech" msgstr "科技" @@ -5514,10 +5597,10 @@ msgstr "其中包含以下内容:" msgid "That handle is already taken." msgstr "该用户识别符已被占用。" -#: src/screens/StarterPack/StarterPackScreen.tsx:100 -#: src/screens/StarterPack/StarterPackScreen.tsx:101 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:102 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/Wizard/index.tsx:106 +#: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." msgstr "" @@ -5534,7 +5617,7 @@ msgstr "社群准则已迁移至 <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "版权许可已迁移至 <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -5563,7 +5646,7 @@ msgstr "这条帖文可能已被删除。" msgid "The Privacy Policy has been moved to <0/>" msgstr "隐私政策已迁移至 <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:589 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -5580,7 +5663,7 @@ 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:542 +#: src/view/screens/ProfileFeed.tsx:544 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "连接至服务器时出现问题,请检查你的互联网连接并重试。" @@ -5590,7 +5673,7 @@ msgstr "删除资讯源时出现问题,请检查你的互联网连接并重试 #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "更新资讯源时出现问题,请检查你的互联网连接并重试。" @@ -5599,7 +5682,7 @@ msgstr "更新资讯源时出现问题,请检查你的互联网连接并重试 msgid "There was an issue connecting to Tenor." msgstr "连接 Tenor 时出现问题。" -#: src/view/screens/ProfileFeed.tsx:233 +#: src/view/screens/ProfileFeed.tsx:234 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -5653,6 +5736,7 @@ msgstr "获取应用专用密码时出现问题" msgid "There was an issue! {0}" msgstr "出现问题了!{0}" +#: src/components/WhoCanReply.tsx:116 #: src/view/screens/ProfileList.tsx:335 #: src/view/screens/ProfileList.tsx:349 #: src/view/screens/ProfileList.tsx:363 @@ -5731,7 +5815,7 @@ msgstr "该资讯源当前使用人数较多,服务暂时不可用。请稍后 msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "这个资讯源是空的!你或许需要先关注更多的用户,或检查你的语言设置。" -#: src/view/screens/ProfileFeed.tsx:472 +#: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "这里是空的。" @@ -5830,7 +5914,7 @@ msgstr "这个用户包含在你已屏蔽的 <0>{0} 列表中。" msgid "This user is included in the <0>{0} list which you have muted." msgstr "这个用户包含在你已隐藏的 <0>{0} 列表中。" -#: src/components/NewskieDialog.tsx:53 +#: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." msgstr "此用户最近加入了 Bluesky,点按此处可获取其加入的具体时间。" @@ -5851,6 +5935,10 @@ msgstr "讨论串首选项" msgid "Thread Preferences" msgstr "讨论串首选项" +#: src/components/WhoCanReply.tsx:109 +msgid "Thread settings updated" +msgstr "" + #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "讨论串模式" @@ -5879,7 +5967,7 @@ msgstr "在隐藏词汇选项之间切换。" msgid "Toggle dropdown" msgstr "切换下拉式菜单" -#: src/screens/Moderation/index.tsx:332 +#: src/screens/Moderation/index.tsx:336 msgid "Toggle to enable or disable adult content" msgstr "切换以启用或禁用成人内容" @@ -5894,8 +5982,8 @@ msgstr "转换" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: 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 msgid "Translate" @@ -5906,6 +5994,10 @@ msgctxt "action" msgid "Try again" msgstr "重试" +#: src/screens/Onboarding/state.ts:99 +msgid "TV" +msgstr "" + #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" msgstr "两步验证" @@ -5935,7 +6027,7 @@ msgstr "取消隐藏列表" msgid "Unable to contact your service. Please check your Internet connection." msgstr "无法连接到服务,请检查互联网连接。" -#: src/screens/StarterPack/StarterPackScreen.tsx:513 +#: src/screens/StarterPack/StarterPackScreen.tsx:520 msgid "Unable to delete" msgstr "" @@ -5994,7 +6086,7 @@ msgstr "取消关注 {0}" msgid "Unfollow Account" msgstr "取消关注账户" -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Unlike this feed" msgstr "取消喜欢这个资讯源" @@ -6025,12 +6117,12 @@ msgstr "取消静音对话" msgid "Unmute thread" msgstr "取消隐藏讨论串" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "取消固定" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 msgid "Unpin from home" msgstr "从主页取消固定" @@ -6196,7 +6288,7 @@ msgstr "用户名或电子邮箱" msgid "Users" msgstr "用户" -#: src/view/com/threadgate/WhoCanReply.tsx:274 +#: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" msgstr "关注 <0/> 的用户" @@ -6207,7 +6299,7 @@ msgstr "关注 <0/> 的用户" msgid "Users I follow" msgstr "我关注的用户" -#: src/view/com/modals/Threadgate.tsx:109 +#: src/components/dialogs/ThreadgateEditor.tsx:132 msgid "Users in \"{0}\"" msgstr "\"{0}\"中的用户" @@ -6253,6 +6345,7 @@ msgid "Version {appVersion} {bundleInfo}" msgstr "版本 {appVersion} {bundleInfo}" #: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:88 msgid "Video Games" msgstr "电子游戏" @@ -6304,7 +6397,7 @@ msgstr "查看头像" msgid "View the labeling service provided by @{0}" msgstr "查看 @{0} 提供的标记服务。" -#: src/view/screens/ProfileFeed.tsx:583 +#: src/view/screens/ProfileFeed.tsx:585 msgid "View users who like this feed" msgstr "查看这个资讯源被谁喜欢" @@ -6360,11 +6453,11 @@ msgstr "不建议你添加会出现在许多帖文中的常见词汇,这可能 msgid "We were unable to load your birth date preferences. Please try again." msgstr "我们无法加载你的生日首选项,请重试。" -#: src/screens/Moderation/index.tsx:385 +#: src/screens/Moderation/index.tsx:409 msgid "We were unable to load your configured labelers at this time." msgstr "我们暂时无法记载你已配置的标记者。" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:143 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "我们无法连接到互联网,请重试以继续设置你的账户。如果仍继续失败,你可以选择跳过这段流程。" @@ -6372,7 +6465,7 @@ msgstr "我们无法连接到互联网,请重试以继续设置你的账户。 msgid "We will let you know when your account is ready." msgstr "我们会在你的账户准备好时通知你。" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:148 msgid "We'll use this to help customize your experience." msgstr "我们将使用这些信息来帮助定制你的体验。" @@ -6413,7 +6506,11 @@ msgstr "很抱歉!你目前只能订阅 20 个标记者,你已达到 20 个 msgid "Welcome back!" msgstr "欢迎回来!" -#: src/screens/Onboarding/StepInterests/index.tsx:135 +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" msgstr "你感兴趣的是什么?" @@ -6440,17 +6537,15 @@ msgstr "你想在算法资讯源中看到哪些语言?" msgid "Who can message you?" msgstr "谁可以给你发送私信?" -#: src/view/com/modals/Threadgate.tsx:69 -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Who can reply" msgstr "谁可以回复" -#: src/view/com/threadgate/WhoCanReply.tsx:206 +#: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" msgstr "谁可以回复对话框" -#: src/view/com/threadgate/WhoCanReply.tsx:210 +#: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" msgstr "谁可以回复?" @@ -6506,6 +6601,7 @@ msgid "Write your reply" msgstr "撰写你的回复" #: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:100 msgid "Writers" msgstr "作家" @@ -6524,7 +6620,7 @@ msgstr "启用" msgid "Yes, deactivate" msgstr "是的,请停用" -#: src/screens/StarterPack/StarterPackScreen.tsx:525 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Yes, delete this starter pack" msgstr "" @@ -6540,6 +6636,10 @@ msgstr "昨天,{time}" msgid "you" msgstr "" +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + #: src/screens/SignupQueued.tsx:136 msgid "You are in line." msgstr "轮到你了。" @@ -6661,6 +6761,10 @@ msgstr "你还没有隐藏任何账户。要隐藏账户,请转到其个人资 msgid "You have reached the end" msgstr "你已经到末尾了" +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +msgid "You haven't created a starter pack yet!" +msgstr "" + #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "你还没有隐藏任何词或标签" @@ -6685,15 +6789,15 @@ msgstr "" msgid "You must be 13 years of age or older to sign up." msgstr "你必须年满13岁及以上才能注册。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:62 +#: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." msgstr "" @@ -6745,7 +6849,7 @@ msgstr "" msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/zh-TW/messages.po b/src/locale/locales/zh-TW/messages.po index de52968b1f..afef16ed57 100644 --- a/src/locale/locales/zh-TW/messages.po +++ b/src/locale/locales/zh-TW/messages.po @@ -55,7 +55,7 @@ msgstr "{0, plural, one {喜歡(# 個喜歡)} other {喜歡(# 個喜歡) msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {喜歡} other {喜歡}}" -#: src/components/FeedCard.tsx:215 +#: src/components/FeedCard.tsx:216 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{0, plural,one {# 個用戶已喜歡} other {# 個用戶已喜歡}}" @@ -76,7 +76,11 @@ msgstr "{0, plural, one {轉貼} other {轉貼}}" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {撤回喜歡(# 個喜歡)} other {撤回喜歡(# 個喜歡)}}" -#: src/screens/StarterPack/StarterPackScreen.tsx:343 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +msgid "{0} joined this week" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:350 msgid "{0} people have used this starter pack!" msgstr "" @@ -116,7 +120,7 @@ msgstr "{diff, plural, one {月} other {月}}" msgid "{diffSeconds, plural, one {second} other {seconds}}" msgstr "{diffSeconds, plural, one {秒} other {秒}}" -#: src/screens/StarterPack/Wizard/index.tsx:182 +#: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" msgstr "" @@ -139,7 +143,7 @@ msgstr "無法傳送訊息給 {handle}" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:286 #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:299 -#: src/view/screens/ProfileFeed.tsx:586 +#: src/view/screens/ProfileFeed.tsx:588 msgid "{likeCount, plural, one {Liked by # user} other {Liked by # users}}" msgstr "{likeCount, plural, one {# 個用戶已喜歡} other {# 個用戶已喜歡}}" @@ -147,11 +151,11 @@ msgstr "{likeCount, plural, one {# 個用戶已喜歡} other {# 個用戶已喜 msgid "{numUnreadNotifications} unread" msgstr "{numUnreadNotifications} 個未讀通知" -#: src/components/NewskieDialog.tsx:92 +#: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" msgstr "{profileName} 在 {0} 前加入了 Bluesky" -#: src/components/NewskieDialog.tsx:87 +#: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" msgstr "" @@ -159,17 +163,27 @@ 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 {顯示所有回覆} one {顯示至少 # 個喜歡的回覆} other {顯示至少 # 個喜歡的回覆}}" -#: src/view/com/threadgate/WhoCanReply.tsx:290 +#: src/components/WhoCanReply.tsx:295 msgid "<0/> members" msgstr "<0/> 個成員" #: src/screens/StarterPack/Wizard/index.tsx:485 -msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +#~ 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 "" + +#: 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 "" +#~ 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 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -179,7 +193,11 @@ msgstr "<0>{0} {1, plural, one {個跟隨者} other {個跟隨者}}" msgid "<0>{0} {1, plural, one {following} other {following}}" msgstr "<0>{0} {1, plural, one {個跟隨中} other {個跟隨中}}" -#: src/screens/StarterPack/Wizard/index.tsx:478 +#: src/screens/StarterPack/Wizard/index.tsx:507 +msgid "<0>{0} and<1> <2>{1} are included in your starter pack" +msgstr "" + +#: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" msgstr "" @@ -187,6 +205,10 @@ msgstr "" msgid "<0>Not Applicable. This warning is only available for posts with media attached." msgstr "<0>不適用。 此警告只適用於附帶媒體的貼文。" +#: src/screens/StarterPack/Wizard/index.tsx:457 +msgid "<0>You and<1> <2>{0} are included in your starter pack" +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠無效的帳號代碼" @@ -273,11 +295,11 @@ msgstr "已取消靜音帳號" msgid "Add" msgstr "新增" -#: src/screens/StarterPack/Wizard/index.tsx:539 +#: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" msgstr "" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:56 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" msgstr "" @@ -320,14 +342,14 @@ msgid "Add muted words and tags" msgstr "新增靜音文字及標籤" #: src/screens/StarterPack/Wizard/index.tsx:197 -msgid "Add people to your starter pack that you think others will enjoy following" -msgstr "" +#~ msgid "Add people to your starter pack that you think others will enjoy following" +#~ msgstr "" #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "新增推薦的動態源" -#: src/screens/StarterPack/Wizard/index.tsx:464 +#: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" msgstr "" @@ -339,7 +361,7 @@ msgstr "新增預設的「Following」動態源,它只會顯示您跟隨的人 msgid "Add the following DNS record to your domain:" msgstr "將以下 DNS 記錄新增到您的網域:" -#: src/components/FeedCard.tsx:300 +#: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" msgstr "將此新增至您的動態源" @@ -370,16 +392,20 @@ msgstr "調整回覆貼文在您的動態中顯示所需的最低喜歡數量。 msgid "Adult Content" msgstr "成人內容" +#: src/screens/Moderation/index.tsx:356 +msgid "Adult content can only be enabled via the Web at <0>bsky.app." +msgstr "" + #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "成人內容已停用。" -#: src/screens/Moderation/index.tsx:375 +#: src/screens/Moderation/index.tsx:399 #: src/view/screens/Settings/index.tsx:686 msgid "Advanced" msgstr "進階設定" -#: src/screens/StarterPack/StarterPackScreen.tsx:271 +#: src/screens/StarterPack/StarterPackScreen.tsx:273 msgid "All accounts have been followed!" msgstr "" @@ -439,20 +465,20 @@ msgstr "一封電子郵件已發送至先前填寫的電子郵件地址 {0}。 msgid "An error occured" msgstr "發生錯誤" -#: src/components/StarterPack/ProfileStarterPacks.tsx:313 +#: 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 "" +#~ msgid "An error occurred while saving the image." +#~ msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:76 -#: src/components/StarterPack/ShareDialog.tsx:91 +#: src/components/StarterPack/QrCodeDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:275 msgid "An error occurred while trying to follow all" msgstr "" @@ -469,16 +495,17 @@ msgstr "問題不在上述選項" msgid "An issue occurred, please try again." msgstr "出現問題,請再試一次。" -#: src/screens/Onboarding/StepInterests/index.tsx:194 +#: src/screens/Onboarding/StepInterests/index.tsx:199 msgid "an unknown error occurred" msgstr "出現未知錯誤" +#: src/components/WhoCanReply.tsx:316 #: src/view/com/notifications/FeedItem.tsx:280 -#: src/view/com/threadgate/WhoCanReply.tsx:311 msgid "and" msgstr "和" #: src/screens/Onboarding/index.tsx:29 +#: src/screens/Onboarding/state.ts:79 msgid "Animals" msgstr "動物" @@ -546,7 +573,7 @@ msgstr "外觀" msgid "Apply default recommended feeds" msgstr "使用預設推薦的動態源" -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -566,7 +593,7 @@ msgstr "您確定要離開此對話嗎?您的訊息將為您刪除,但不會 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "您確定要從您的動態中移除 {0} 嗎?" -#: src/components/FeedCard.tsx:317 +#: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" msgstr "您確定要將此從您的動態源中移除嗎?" @@ -583,6 +610,7 @@ msgid "Are you writing in <0>{0}?" msgstr "您正在使用 <0>{0} 書寫嗎?" #: src/screens/Onboarding/index.tsx:23 +#: src/screens/Onboarding/state.ts:80 msgid "Art" msgstr "藝術" @@ -609,7 +637,7 @@ msgstr "至少 3 個字元" #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 #: src/screens/Signup/index.tsx:231 -#: src/screens/StarterPack/Wizard/index.tsx:312 +#: src/screens/StarterPack/Wizard/index.tsx:299 #: src/view/com/util/ViewHeader.tsx:91 msgid "Back" msgstr "返回" @@ -662,7 +690,7 @@ msgstr "封鎖這些帳號?" msgid "Blocked" msgstr "已被封鎖" -#: src/screens/Moderation/index.tsx:267 +#: src/screens/Moderation/index.tsx:270 msgid "Blocked accounts" msgstr "已封鎖帳號" @@ -708,11 +736,11 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky 是一個開放的網路,您可以自行挑選託管服務供應商。自定義託管服務現已為開發人員推出測試版。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:280 +#: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" -#: src/screens/Moderation/index.tsx:533 +#: 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 的官方程式將不會向未登入的使用者顯示您的個人檔案和貼文。但其他應用程式可能不會遵循這個要求,這不會使您的帳號變成非公開的。" @@ -725,6 +753,7 @@ msgid "Blur images and filter from feeds" msgstr "模糊圖片並從動態中過濾" #: src/screens/Onboarding/index.tsx:30 +#: src/screens/Onboarding/state.ts:81 msgid "Books" msgstr "書籍" @@ -914,13 +943,21 @@ msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "在下方輸入寄送至您電子郵件地址的驗證碼:" #: src/view/com/modals/Threadgate.tsx:75 -msgid "Choose \"Everybody\" or \"Nobody\"" -msgstr "選擇「所有人」或「沒有人」" +#~ msgid "Choose \"Everybody\" or \"Nobody\"" +#~ msgstr "選擇「所有人」或「沒有人」" -#: src/components/StarterPack/ProfileStarterPacks.tsx:288 +#: src/screens/StarterPack/Wizard/index.tsx:191 +msgid "Choose Feeds" +msgstr "" + +#: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" msgstr "" +#: src/screens/StarterPack/Wizard/index.tsx:187 +msgid "Choose People" +msgstr "" + #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "選擇服務" @@ -933,6 +970,11 @@ msgstr "選擇提供您自定義動態的演算法。" msgid "Choose this color as your avatar" msgstr "選擇這個顏色作為您的頭像" +#: src/components/dialogs/ThreadgateEditor.tsx:91 +#: src/components/dialogs/ThreadgateEditor.tsx:95 +msgid "Choose who can reply" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:114 msgid "Choose your password" msgstr "選擇您的密碼" @@ -997,18 +1039,18 @@ msgstr "達達的馬蹄🐴是美麗的錯誤🐴" #: src/components/dialogs/GifSelect.ios.tsx:250 #: src/components/dialogs/GifSelect.tsx:268 #: src/components/dms/dialogs/SearchablePeopleList.tsx:261 -#: src/components/NewskieDialog.tsx:120 -#: src/components/NewskieDialog.tsx:127 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:121 -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:127 +#: src/components/NewskieDialog.tsx:146 +#: src/components/NewskieDialog.tsx:153 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:123 +#: 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:189 msgid "Close" msgstr "關閉" -#: src/components/Dialog/index.web.tsx:113 -#: src/components/Dialog/index.web.tsx:251 +#: src/components/Dialog/index.web.tsx:116 +#: src/components/Dialog/index.web.tsx:254 msgid "Close active dialog" msgstr "關閉打開的對話框" @@ -1075,10 +1117,12 @@ msgid "Collapses list of users for a given notification" msgstr "折疊指定通知的用戶清單" #: src/screens/Onboarding/index.tsx:38 +#: src/screens/Onboarding/state.ts:82 msgid "Comedy" msgstr "喜劇" #: src/screens/Onboarding/index.tsx:24 +#: src/screens/Onboarding/state.ts:83 msgid "Comics" msgstr "漫畫" @@ -1136,11 +1180,11 @@ msgstr "確認內容語言設定" msgid "Confirm delete account" msgstr "確認刪除帳號" -#: src/screens/Moderation/index.tsx:301 +#: src/screens/Moderation/index.tsx:304 msgid "Confirm your age:" msgstr "確認您的年齡:" -#: src/screens/Moderation/index.tsx:292 +#: src/screens/Moderation/index.tsx:295 msgid "Confirm your birthdate" msgstr "確認您的出生日期" @@ -1166,7 +1210,7 @@ msgstr "聯繫支援" msgid "Content Blocked" msgstr "已封鎖內容" -#: src/screens/Moderation/index.tsx:285 +#: src/screens/Moderation/index.tsx:288 msgid "Content filters" msgstr "內容過濾" @@ -1195,7 +1239,7 @@ msgstr "內容警告" msgid "Context menu backdrop, click to close the menu." msgstr "彈出式選單背景,點擊以關閉選單。" -#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Onboarding/StepInterests/index.tsx:258 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "繼續" @@ -1208,7 +1252,7 @@ msgstr "以 {0} 繼續 (目前已登入)" msgid "Continue thread..." msgstr "繼續載入討論串…" -#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 #: src/screens/Signup/index.tsx:251 msgid "Continue to next step" @@ -1248,7 +1292,7 @@ msgstr "已複製!" msgid "Copies app password" msgstr "複製應用程式專用密碼" -#: src/components/StarterPack/QrCodeDialog.tsx:180 +#: src/components/StarterPack/QrCodeDialog.tsx:174 #: src/view/com/modals/AddAppPasswords.tsx:213 msgid "Copy" msgstr "複製" @@ -1262,7 +1306,11 @@ msgstr "複製{0}" msgid "Copy code" msgstr "複製程式碼" -#: src/components/StarterPack/ShareDialog.tsx:143 +#: src/components/StarterPack/ShareDialog.tsx:123 +msgid "Copy link" +msgstr "" + +#: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" msgstr "" @@ -1285,7 +1333,7 @@ msgstr "複製訊息文字" msgid "Copy post text" msgstr "複製貼文文字" -#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" msgstr "" @@ -1298,7 +1346,7 @@ msgstr "著作權政策" msgid "Could not leave chat" msgstr "無法離開對話" -#: src/view/screens/ProfileFeed.tsx:102 +#: src/view/screens/ProfileFeed.tsx:103 msgid "Could not load feed" msgstr "無法載入動態" @@ -1310,7 +1358,7 @@ msgstr "無法載入列表" msgid "Could not mute chat" msgstr "無法靜音對話" -#: src/components/StarterPack/ProfileStarterPacks.tsx:270 +#: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" msgstr "" @@ -1323,17 +1371,17 @@ msgstr "建立新帳號" msgid "Create a new Bluesky account" msgstr "建立新的 Bluesky 帳號" -#: src/components/StarterPack/QrCodeDialog.tsx:157 +#: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 -#: src/components/StarterPack/ProfileStarterPacks.tsx:257 +#: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" msgstr "" -#: src/components/StarterPack/ProfileStarterPacks.tsx:244 +#: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" msgstr "" @@ -1364,8 +1412,8 @@ msgid "Create new account" msgstr "建立新帳號" #: src/components/StarterPack/ShareDialog.tsx:158 -msgid "Create QR code" -msgstr "" +#~ msgid "Create QR code" +#~ msgstr "" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1376,6 +1424,7 @@ msgid "Created {0}" msgstr "{0} 已建立" #: src/screens/Onboarding/index.tsx:26 +#: src/screens/Onboarding/state.ts:84 msgid "Culture" msgstr "文化" @@ -1432,9 +1481,9 @@ msgid "Debug panel" msgstr "偵錯面板" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:449 -#: src/screens/StarterPack/StarterPackScreen.tsx:528 -#: src/screens/StarterPack/StarterPackScreen.tsx:608 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 +#: src/screens/StarterPack/StarterPackScreen.tsx:535 +#: src/screens/StarterPack/StarterPackScreen.tsx:615 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1491,12 +1540,12 @@ msgstr "刪除我的帳號…" msgid "Delete post" msgstr "刪除貼文" -#: src/screens/StarterPack/StarterPackScreen.tsx:443 -#: src/screens/StarterPack/StarterPackScreen.tsx:599 +#: src/screens/StarterPack/StarterPackScreen.tsx:450 +#: src/screens/StarterPack/StarterPackScreen.tsx:606 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:494 +#: src/screens/StarterPack/StarterPackScreen.tsx:501 msgid "Delete starter pack?" msgstr "" @@ -1560,7 +1609,7 @@ msgstr "關閉觸覺回饋" #: src/lib/moderation/useLabelBehaviorDescription.ts:68 #: src/screens/Messages/Settings.tsx:140 #: src/screens/Messages/Settings.tsx:143 -#: src/screens/Moderation/index.tsx:341 +#: src/screens/Moderation/index.tsx:346 msgid "Disabled" msgstr "停用" @@ -1572,8 +1621,8 @@ msgstr "捨棄" msgid "Discard draft?" msgstr "捨棄草稿?" -#: src/screens/Moderation/index.tsx:518 -#: src/screens/Moderation/index.tsx:522 +#: src/screens/Moderation/index.tsx:542 +#: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" msgstr "阻撓應用程式向未登入用戶顯示我的帳號" @@ -1624,6 +1673,7 @@ msgstr "網域已驗證!" #: src/components/dialogs/BirthDateSettings.tsx:119 #: src/components/dialogs/BirthDateSettings.tsx:125 +#: src/components/dialogs/ThreadgateEditor.tsx:88 #: src/components/forms/DateField/index.tsx:77 #: src/components/forms/DateField/index.tsx:83 #: src/screens/Onboarding/StepProfile/index.tsx:322 @@ -1643,8 +1693,6 @@ msgstr "完成" #: src/view/com/modals/EditImage.tsx:334 #: src/view/com/modals/ListAddRemoveUsers.tsx:144 #: src/view/com/modals/SelfLabel.tsx:158 -#: src/view/com/modals/Threadgate.tsx:133 -#: src/view/com/modals/Threadgate.tsx:136 #: src/view/com/modals/UserAddRemoveLists.tsx:108 #: src/view/com/modals/UserAddRemoveLists.tsx:111 #: src/view/screens/PreferencesThreads.tsx:162 @@ -1656,7 +1704,7 @@ msgstr "完成" msgid "Done{extraText}" msgstr "完成{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:295 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 msgid "Download Bluesky" msgstr "" @@ -1714,9 +1762,9 @@ msgctxt "action" msgid "Edit" msgstr "編輯" -#: src/screens/StarterPack/StarterPackScreen.tsx:438 -#: src/screens/StarterPack/Wizard/index.tsx:522 -#: src/screens/StarterPack/Wizard/index.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/Wizard/index.tsx:551 +#: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" @@ -1727,7 +1775,7 @@ msgstr "編輯" msgid "Edit avatar" msgstr "編輯頭像" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" msgstr "" @@ -1755,7 +1803,7 @@ msgstr "編輯我的動態源" msgid "Edit my profile" msgstr "編輯我的個人檔案" -#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:113 +#: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" msgstr "" @@ -1769,7 +1817,7 @@ msgstr "編輯個人檔案" msgid "Edit Profile" msgstr "編輯個人檔案" -#: src/screens/StarterPack/StarterPackScreen.tsx:430 +#: src/screens/StarterPack/StarterPackScreen.tsx:437 msgid "Edit starter pack" msgstr "" @@ -1777,8 +1825,7 @@ msgstr "" msgid "Edit User List" msgstr "編輯用戶列表" -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" msgstr "編輯「誰可以回覆」" @@ -1795,9 +1842,14 @@ msgid "Edit your starter pack" msgstr "" #: src/screens/Onboarding/index.tsx:31 +#: src/screens/Onboarding/state.ts:86 msgid "Education" msgstr "教育" +#: src/components/dialogs/ThreadgateEditor.tsx:98 +msgid "Either choose \"Everybody\" or \"Nobody\"" +msgstr "" + #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" @@ -1846,7 +1898,7 @@ msgstr "將這則貼文嵌入到您的網站。只需複製以下程式碼片段 msgid "Enable {0} only" msgstr "僅啟用 {0}" -#: src/screens/Moderation/index.tsx:329 +#: src/screens/Moderation/index.tsx:333 msgid "Enable adult content" msgstr "顯示成人內容" @@ -1869,7 +1921,7 @@ msgstr "僅啟用此來源" #: src/screens/Messages/Settings.tsx:131 #: src/screens/Messages/Settings.tsx:134 -#: src/screens/Moderation/index.tsx:339 +#: src/screens/Moderation/index.tsx:344 msgid "Enabled" msgstr "啟用" @@ -1935,19 +1987,18 @@ msgstr "儲存檔案時發生錯誤" msgid "Error receiving captcha response." msgstr "Captcha 給出了錯誤的回應。" -#: src/screens/Onboarding/StepInterests/index.tsx:192 +#: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "錯誤:" -#: src/view/com/modals/Threadgate.tsx:79 +#: src/components/dialogs/ThreadgateEditor.tsx:102 msgid "Everybody" msgstr "所有人" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 -#: src/view/com/threadgate/WhoCanReply.tsx:64 -#: src/view/com/threadgate/WhoCanReply.tsx:121 -#: src/view/com/threadgate/WhoCanReply.tsx:235 +#: src/components/WhoCanReply.tsx:69 +#: src/components/WhoCanReply.tsx:240 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:44 msgid "Everybody can reply" msgstr "所有人都可以回覆" @@ -2042,8 +2093,8 @@ msgstr "外部媒體設定" msgid "Failed to create app password." msgstr "建立應用程式專用密碼失敗。" -#: src/screens/StarterPack/Wizard/index.tsx:241 -#: src/screens/StarterPack/Wizard/index.tsx:249 +#: src/screens/StarterPack/Wizard/index.tsx:230 +#: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" msgstr "" @@ -2059,7 +2110,7 @@ msgstr "無法刪除訊息" msgid "Failed to delete post, please try again" msgstr "無法刪除貼文,請重試" -#: src/screens/StarterPack/StarterPackScreen.tsx:562 +#: src/screens/StarterPack/StarterPackScreen.tsx:569 msgid "Failed to delete starter pack" msgstr "" @@ -2086,7 +2137,7 @@ msgstr "無法載入建議的動態源" msgid "Failed to load suggested follows" msgstr "無法載入建議的跟隨者" -#: src/view/com/lightbox/Lightbox.tsx:84 +#: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" msgstr "無法儲存圖片:{0}" @@ -2103,7 +2154,7 @@ msgstr "無法提交申訴,請重試。" msgid "Failed to toggle thread mute, please try again" msgstr "無法將討論串設為靜音,請重試" -#: src/components/FeedCard.tsx:280 +#: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" msgstr "無法更新動態" @@ -2125,7 +2176,7 @@ msgstr "{0} 建立的動態源" #~ msgid "Feed offline" #~ msgstr "動態源已離線" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" msgstr "" @@ -2135,10 +2186,9 @@ msgid "Feedback" msgstr "意見回饋" #: src/Navigation.tsx:320 -#: src/screens/StarterPack/Wizard/index.tsx:201 #: src/view/screens/Feeds.tsx:445 #: src/view/screens/Feeds.tsx:550 -#: src/view/screens/Profile.tsx:220 +#: src/view/screens/Profile.tsx:213 #: src/view/screens/Search/Search.tsx:375 #: src/view/shell/desktop/LeftNav.tsx:373 #: src/view/shell/Drawer.tsx:493 @@ -2150,7 +2200,7 @@ msgstr "動態源" msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "動態源是一種自訂演算法,使用者只需掌握一點開發技巧即可輕鬆構建。更多資訊請<0/>。" -#: src/components/FeedCard.tsx:277 +#: src/components/FeedCard.tsx:282 msgid "Feeds updated!" msgstr "動態已更新!" @@ -2188,7 +2238,7 @@ msgstr "對「Following」動態源中的內容進行微調,以下選項只對 msgid "Fine-tune the discussion threads." msgstr "微調討論串。" -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" msgstr "" @@ -2236,8 +2286,8 @@ msgstr "跟隨 {name}" msgid "Follow Account" msgstr "跟隨帳號" -#: src/screens/StarterPack/StarterPackScreen.tsx:308 -#: src/screens/StarterPack/StarterPackScreen.tsx:315 +#: src/screens/StarterPack/StarterPackScreen.tsx:317 +#: src/screens/StarterPack/StarterPackScreen.tsx:324 msgid "Follow all" msgstr "" @@ -2269,7 +2319,7 @@ msgstr "已被你跟隨的 <0>{0} 和 <1>{1} 跟隨" msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" msgstr "已被你跟隨的 <0>{0}, <1>{1} 和{2, plural, one {其他 # 人跟隨} other {其他 # 人跟隨}}" -#: src/view/com/modals/Threadgate.tsx:101 +#: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" msgstr "已跟隨的用戶" @@ -2333,6 +2383,7 @@ msgid "Follows You" msgstr "跟隨您" #: src/screens/Onboarding/index.tsx:40 +#: src/screens/Onboarding/state.ts:87 msgid "Food" msgstr "食物" @@ -2374,7 +2425,7 @@ msgstr "來自 <0/>" msgid "Gallery" msgstr "相簿" -#: src/components/StarterPack/ProfileStarterPacks.tsx:277 +#: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" msgstr "" @@ -2404,7 +2455,7 @@ msgstr "明顯違反法律或服務條款" #: src/view/com/auth/LoggedOut.tsx:78 #: src/view/com/auth/LoggedOut.tsx:79 #: src/view/screens/NotFound.tsx:55 -#: src/view/screens/ProfileFeed.tsx:111 +#: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 #: src/view/shell/desktop/LeftNav.tsx:133 msgid "Go back" @@ -2413,9 +2464,9 @@ msgstr "返回" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:621 +#: src/screens/StarterPack/StarterPackScreen.tsx:628 #: src/view/screens/NotFound.tsx:54 -#: src/view/screens/ProfileFeed.tsx:116 +#: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "返回" @@ -2429,7 +2480,7 @@ msgstr "返回" msgid "Go back to previous step" msgstr "返回上一步" -#: src/screens/StarterPack/Wizard/index.tsx:313 +#: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" msgstr "" @@ -2553,7 +2604,7 @@ msgstr "抱歉,動態源的伺服器給出了錯誤的回應。請向該動態 msgid "Hmm, we're having trouble finding this feed. It may have been deleted." msgstr "抱歉,我們無法找到這個動態源,它可能已被刪除。" -#: src/screens/Moderation/index.tsx:59 +#: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." msgstr "抱歉,看起來我們在載入這些資料時遇到了問題,請參閱下方詳情。如果問題持續存在,請聯繫我們。" @@ -2644,7 +2695,7 @@ msgstr "圖片" msgid "Image alt text" msgstr "圖片替代文字" -#: src/components/StarterPack/ShareDialog.tsx:88 +#: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" msgstr "" @@ -2737,7 +2788,7 @@ msgstr "邀請碼:{0} 個可用" msgid "Invite codes: 1 available" msgstr "邀請碼:1 個可用" -#: src/components/StarterPack/ShareDialog.tsx:109 +#: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" msgstr "" @@ -2749,7 +2800,7 @@ msgstr "" msgid "Invites, but personal" msgstr "" -#: src/screens/StarterPack/Wizard/index.tsx:473 +#: 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 "" @@ -2757,8 +2808,8 @@ msgstr "" msgid "Jobs" msgstr "工作" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:194 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 msgid "Join Bluesky" msgstr "" @@ -2767,6 +2818,7 @@ msgid "Join the conversation" msgstr "" #: src/screens/Onboarding/index.tsx:21 +#: src/screens/Onboarding/state.ts:89 msgid "Journalism" msgstr "新聞學" @@ -2778,7 +2830,7 @@ msgstr "由 {0} 標記。" msgid "Labeled by the author." msgstr "由作者標記。" -#: src/view/screens/Profile.tsx:214 +#: src/view/screens/Profile.tsx:207 msgid "Labels" msgstr "標記" @@ -2830,7 +2882,7 @@ msgstr "詳細瞭解套用於此內容的內容管理。" msgid "Learn more about this warning" msgstr "瞭解有關此警告的更多資訊" -#: src/screens/Moderation/index.tsx:549 +#: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." msgstr "瞭解有關 Bluesky 上公開內容的更多資訊。" @@ -2871,7 +2923,7 @@ msgstr "個人在排在您前面。" msgid "Legacy storage cleared, you need to restart the app now." msgstr "遺留資料已清除,您需要立即重新啟動應用程式。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:293 +#: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" msgstr "" @@ -2889,7 +2941,7 @@ msgid "Light" msgstr "亮色" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "對這個動態源按喜歡" @@ -2913,7 +2965,7 @@ msgstr "對您的自訂動態源表示喜歡" msgid "liked your post" msgstr "已喜歡您的貼文" -#: src/view/screens/Profile.tsx:219 +#: src/view/screens/Profile.tsx:212 msgid "Likes" msgstr "喜歡" @@ -2959,8 +3011,8 @@ msgid "List unmuted" msgstr "已解除靜音的列表" #: src/Navigation.tsx:122 +#: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/screens/Profile.tsx:222 #: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 @@ -2989,7 +3041,7 @@ msgstr "載入新的通知" #: src/screens/Profile/Sections/Feed.tsx:86 #: src/view/com/feeds/FeedPage.tsx:136 -#: src/view/screens/ProfileFeed.tsx:493 +#: src/view/screens/ProfileFeed.tsx:494 #: src/view/screens/ProfileList.tsx:749 msgid "Load new posts" msgstr "載入新的貼文" @@ -3014,7 +3066,7 @@ msgstr "登入或註冊" msgid "Log out" msgstr "登出" -#: src/screens/Moderation/index.tsx:442 +#: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" msgstr "登出可見性" @@ -3042,7 +3094,7 @@ msgstr "看起來您已取消釘選所有動態源。但不用擔心,您可以 msgid "Looks like you're missing a following feed. <0>Click here to add one." msgstr "您看起來需要「Following」動態源,<0>點選這裡來新增。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:252 +#: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" msgstr "" @@ -3060,15 +3112,15 @@ msgid "Mark as read" msgstr "標記為已讀" #: src/view/screens/AccessibilitySettings.tsx:102 -#: src/view/screens/Profile.tsx:218 +#: src/view/screens/Profile.tsx:211 msgid "Media" msgstr "媒體" -#: src/view/com/threadgate/WhoCanReply.tsx:270 +#: src/components/WhoCanReply.tsx:275 msgid "mentioned users" msgstr "被提及的用戶" -#: src/view/com/modals/Threadgate.tsx:96 +#: src/components/dialogs/ThreadgateEditor.tsx:119 msgid "Mentioned users" msgstr "被提及的用戶" @@ -3115,7 +3167,7 @@ msgid "Misleading Account" msgstr "誤導性帳號" #: src/Navigation.tsx:127 -#: src/screens/Moderation/index.tsx:104 +#: src/screens/Moderation/index.tsx:105 #: src/view/screens/Settings/index.tsx:561 msgid "Moderation" msgstr "內容管理" @@ -3148,7 +3200,7 @@ msgstr "已建立內容管理列表" msgid "Moderation list updated" msgstr "內容管理列表已更新" -#: src/screens/Moderation/index.tsx:243 +#: src/screens/Moderation/index.tsx:246 msgid "Moderation lists" msgstr "內容管理列表" @@ -3165,7 +3217,7 @@ msgstr "內容管理設定" msgid "Moderation states" msgstr "內容管理狀態" -#: src/screens/Moderation/index.tsx:215 +#: src/screens/Moderation/index.tsx:218 msgid "Moderation tools" msgstr "內容管理工具" @@ -3174,7 +3226,7 @@ msgstr "內容管理工具" msgid "Moderator has chosen to set a general warning on the content." msgstr "內容管理者已將此內容標記為普通警告。" -#: src/view/com/post-thread/PostThreadItem.tsx:567 +#: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" msgstr "更多" @@ -3190,6 +3242,10 @@ msgstr "更多選項" msgid "Most-liked replies first" msgstr "最多喜歡數優先" +#: src/screens/Onboarding/state.ts:90 +msgid "Movies" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "靜音" @@ -3254,7 +3310,7 @@ msgstr "靜音文字和標籤" msgid "Muted" msgstr "已靜音" -#: src/screens/Moderation/index.tsx:255 +#: src/screens/Moderation/index.tsx:258 msgid "Muted accounts" msgstr "已靜音帳號" @@ -3271,7 +3327,7 @@ msgstr "已靜音的帳號將不會在您的通知或動態中顯示,靜音資 msgid "Muted by \"{0}\"" msgstr "被「{0}」靜音" -#: src/screens/Moderation/index.tsx:231 +#: src/screens/Moderation/index.tsx:234 msgid "Muted words & tags" msgstr "靜音文字和標籤" @@ -3317,6 +3373,7 @@ msgid "Name or Description Violates Community Standards" msgstr "名稱或描述違反社群標準" #: src/screens/Onboarding/index.tsx:22 +#: src/screens/Onboarding/state.ts:91 msgid "Nature" msgstr "自然" @@ -3380,8 +3437,8 @@ msgstr "新貼文" #: src/view/screens/Feeds.tsx:580 #: src/view/screens/Notifications.tsx:193 -#: src/view/screens/Profile.tsx:485 -#: src/view/screens/ProfileFeed.tsx:427 +#: src/view/screens/Profile.tsx:478 +#: src/view/screens/ProfileFeed.tsx:428 #: src/view/screens/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 #: src/view/shell/desktop/LeftNav.tsx:277 @@ -3393,7 +3450,7 @@ msgctxt "action" msgid "New Post" msgstr "新貼文" -#: src/components/NewskieDialog.tsx:71 +#: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" msgstr "新用戶資訊對話框" @@ -3406,6 +3463,7 @@ msgid "Newest replies first" msgstr "最新回覆優先" #: src/screens/Onboarding/index.tsx:20 +#: src/screens/Onboarding/state.ts:92 msgid "News" msgstr "新聞" @@ -3416,10 +3474,10 @@ msgstr "新聞" #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 #: src/screens/Signup/index.tsx:258 -#: src/screens/StarterPack/Wizard/index.tsx:191 -#: src/screens/StarterPack/Wizard/index.tsx:195 -#: src/screens/StarterPack/Wizard/index.tsx:372 -#: src/screens/StarterPack/Wizard/index.tsx:379 +#: src/screens/StarterPack/Wizard/index.tsx:184 +#: src/screens/StarterPack/Wizard/index.tsx:188 +#: src/screens/StarterPack/Wizard/index.tsx:359 +#: src/screens/StarterPack/Wizard/index.tsx:366 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3438,7 +3496,7 @@ msgstr "下一張圖片" msgid "No" msgstr "關" -#: src/view/screens/ProfileFeed.tsx:560 +#: src/view/screens/ProfileFeed.tsx:562 #: src/view/screens/ProfileList.tsx:823 msgid "No description" msgstr "沒有描述" @@ -3452,7 +3510,7 @@ msgstr "無 DNS 控制台" msgid "No featured GIFs found. There may be an issue with Tenor." msgstr "未找到精選 GIF,Tenor 可能發生問題。" -#: src/screens/StarterPack/Wizard/StepFeeds.tsx:105 +#: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." msgstr "" @@ -3521,11 +3579,11 @@ msgstr "未找到「{search}」的搜尋結果。" msgid "No thanks" msgstr "不,謝謝" -#: src/view/com/modals/Threadgate.tsx:85 +#: src/components/dialogs/ThreadgateEditor.tsx:108 msgid "Nobody" msgstr "沒有人" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:48 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:46 msgid "Nobody can reply" msgstr "沒有人可以回覆" @@ -3534,7 +3592,7 @@ msgstr "沒有人可以回覆" msgid "Nobody has liked this yet. Maybe you should be the first!" msgstr "還沒有人按喜歡,也許您應該成為第一個!" -#: src/screens/StarterPack/Wizard/StepProfiles.tsx:93 +#: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." msgstr "" @@ -3543,7 +3601,7 @@ msgid "Non-sexual Nudity" msgstr "非色情內容裸體" #: src/Navigation.tsx:117 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "未找到" @@ -3558,7 +3616,7 @@ msgstr "暫時不需要" msgid "Note about sharing" msgstr "關於分享的注意事項" -#: src/screens/Moderation/index.tsx:540 +#: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." msgstr "注意:Bluesky 是一個開放且公開的網路。此設定僅限制您在 Bluesky 應用程式和網站上的內容可見性,其他應用程式可能不會遵循這個規則。您的內容仍可能由其他應用程式和網站顯示給未登入的使用者。" @@ -3610,7 +3668,7 @@ msgstr "顯示" msgid "Oh no!" msgstr "糟糕!" -#: src/screens/Onboarding/StepInterests/index.tsx:133 +#: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." msgstr "糟糕!發生了一些錯誤。" @@ -3646,7 +3704,7 @@ msgstr "至少有一張圖片缺失了替代文字。" msgid "Only .jpg and .png files are supported" msgstr "僅支援 .jpg 或 .png 格式的圖片" -#: src/view/com/threadgate/WhoCanReply.tsx:239 +#: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" msgstr "只有{0}可以回覆" @@ -3659,10 +3717,10 @@ msgid "Oops, something went wrong!" msgstr "糟糕,發生了錯誤!" #: src/components/Lists.tsx:191 -#: src/components/StarterPack/ProfileStarterPacks.tsx:302 -#: src/components/StarterPack/ProfileStarterPacks.tsx:311 +#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:313 #: src/view/screens/AppPasswords.tsx:69 -#: src/view/screens/Profile.tsx:111 +#: src/view/screens/Profile.tsx:108 msgid "Oops!" msgstr "糟糕!" @@ -3688,7 +3746,7 @@ msgstr "開啟對話選項" msgid "Open emoji picker" msgstr "開啟表情符號選擇器" -#: src/view/screens/ProfileFeed.tsx:295 +#: src/view/screens/ProfileFeed.tsx:296 msgid "Open feed options menu" msgstr "開啟動態選項選單" @@ -3700,7 +3758,7 @@ msgstr "在內建瀏覽器中開啟連結" msgid "Open message options" msgstr "開啟訊息選項" -#: src/screens/Moderation/index.tsx:227 +#: src/screens/Moderation/index.tsx:230 msgid "Open muted words and tags settings" msgstr "開啟靜音文字和標籤設定" @@ -3712,7 +3770,7 @@ msgstr "開啟導覽" msgid "Open post options menu" msgstr "開啟貼文選項選單" -#: src/screens/StarterPack/StarterPackScreen.tsx:416 +#: src/screens/StarterPack/StarterPackScreen.tsx:423 msgid "Open starter pack menu" msgstr "" @@ -3729,6 +3787,10 @@ msgstr "開啟系統日誌" msgid "Opens {numItems} options" msgstr "開啟 {numItems} 個選項" +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 +msgid "Opens a dialog to choose who can reply to this thread" +msgstr "" + #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" msgstr "開啟無障礙設定" @@ -3858,7 +3920,7 @@ msgstr "{0} 選項,共 {numItems} 個" msgid "Optionally provide additional information below:" msgstr "在以下提供額外訊息(可選):" -#: src/view/com/modals/Threadgate.tsx:92 +#: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" msgstr "或者組合這些選項:" @@ -3918,7 +3980,6 @@ msgstr "密碼已更新!" msgid "Pause" msgstr "暫停" -#: src/screens/StarterPack/Wizard/index.tsx:194 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "用戶" @@ -3931,32 +3992,37 @@ msgstr "被 @{0} 跟隨的人" msgid "People following @{0}" msgstr "跟隨 @{0} 的人" -#: src/view/com/lightbox/Lightbox.tsx:67 +#: src/view/com/lightbox/Lightbox.tsx:69 msgid "Permission to access camera roll is required." msgstr "需要相簿權限。" -#: src/view/com/lightbox/Lightbox.tsx:73 +#: src/view/com/lightbox/Lightbox.tsx:75 msgid "Permission to access camera roll was denied. Please enable it in your system settings." msgstr "相簿權限已遭拒絕,請在系統設定中啟用。" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:52 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 +#: src/screens/Onboarding/state.ts:93 msgid "Pets" msgstr "寵物" +#: src/screens/Onboarding/state.ts:94 +msgid "Photography" +msgstr "" + #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." msgstr "適合成年人的圖像。" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 #: src/view/screens/ProfileList.tsx:617 msgid "Pin to home" msgstr "釘選到首頁" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 msgid "Pin to Home" msgstr "釘選到首頁" @@ -4047,6 +4113,7 @@ msgid "Please wait for your link card to finish loading" msgstr "請等待您的連結預覽載入完畢" #: src/screens/Onboarding/index.tsx:34 +#: src/screens/Onboarding/state.ts:95 msgid "Politics" msgstr "政治" @@ -4110,7 +4177,7 @@ msgstr "找不到貼文" msgid "posts" msgstr "貼文" -#: src/view/screens/Profile.tsx:216 +#: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "貼文" @@ -4179,7 +4246,7 @@ msgid "Processing..." msgstr "處理中…" #: src/view/screens/DebugMod.tsx:894 -#: src/view/screens/Profile.tsx:353 +#: src/view/screens/Profile.tsx:346 msgid "profile" msgstr "個人檔案" @@ -4219,15 +4286,15 @@ msgstr "發佈貼文" msgid "Publish reply" msgstr "發佈回覆" -#: src/components/StarterPack/QrCodeDialog.tsx:131 +#: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:109 +#: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:110 +#: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" msgstr "" @@ -4267,7 +4334,9 @@ msgid "Reload conversations" msgstr "重新載入對話" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:325 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:95 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 #: src/view/com/modals/ListAddRemoveUsers.tsx:268 #: src/view/com/modals/SelfLabel.tsx:84 @@ -4276,7 +4345,7 @@ msgstr "重新載入對話" msgid "Remove" msgstr "刪除" -#: src/components/StarterPack/Wizard/WizardListCard.tsx:55 +#: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" msgstr "" @@ -4308,13 +4377,13 @@ msgstr "刪除動態源?" #: src/view/com/feeds/FeedSourceCard.tsx:188 #: src/view/com/feeds/FeedSourceCard.tsx:266 -#: src/view/screens/ProfileFeed.tsx:331 -#: src/view/screens/ProfileFeed.tsx:337 +#: src/view/screens/ProfileFeed.tsx:332 +#: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" msgstr "從我的動態源中刪除" -#: src/components/FeedCard.tsx:315 +#: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "從我的動態源中刪除?" @@ -4362,7 +4431,7 @@ msgid "Removed from my feeds" msgstr "已從我的動態源中刪除" #: src/view/com/posts/FeedShutdownMsg.tsx:44 -#: src/view/screens/ProfileFeed.tsx:191 +#: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" msgstr "從您的動態中刪除" @@ -4380,19 +4449,19 @@ msgstr "刪除已轉貼貼文" msgid "Replace with Discover" msgstr "用「Discover」動態源取代" -#: src/view/screens/Profile.tsx:217 +#: src/view/screens/Profile.tsx:210 msgid "Replies" msgstr "回覆" -#: src/view/com/threadgate/WhoCanReply.tsx:66 +#: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" msgstr "回覆已被停用" #: src/view/com/threadgate/WhoCanReply.tsx:123 -msgid "Replies on this thread are disabled" -msgstr "此討論串的回覆已停用" +#~ msgid "Replies on this thread are disabled" +#~ msgstr "此討論串的回覆已停用" -#: src/view/com/threadgate/WhoCanReply.tsx:237 +#: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "此討論串的回覆已停用。" @@ -4437,8 +4506,8 @@ msgstr "檢舉對話" msgid "Report dialog" msgstr "檢舉對話框" -#: src/view/screens/ProfileFeed.tsx:348 -#: src/view/screens/ProfileFeed.tsx:350 +#: src/view/screens/ProfileFeed.tsx:349 +#: src/view/screens/ProfileFeed.tsx:351 msgid "Report feed" msgstr "檢舉動態源" @@ -4455,8 +4524,8 @@ msgstr "檢舉訊息" msgid "Report post" msgstr "檢舉貼文" -#: src/screens/StarterPack/StarterPackScreen.tsx:469 -#: src/screens/StarterPack/StarterPackScreen.tsx:472 +#: src/screens/StarterPack/StarterPackScreen.tsx:476 +#: src/screens/StarterPack/StarterPackScreen.tsx:479 msgid "Report starter pack" msgstr "" @@ -4502,7 +4571,7 @@ msgstr "轉貼" msgid "Repost" msgstr "轉貼" -#: src/screens/StarterPack/StarterPackScreen.tsx:411 +#: src/screens/StarterPack/StarterPackScreen.tsx:418 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4598,12 +4667,12 @@ msgstr "重試上次出錯的操作" #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 -#: src/components/StarterPack/ProfileStarterPacks.tsx:316 +#: src/components/StarterPack/ProfileStarterPacks.tsx:318 #: src/screens/Login/LoginForm.tsx:291 #: src/screens/Login/LoginForm.tsx:298 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:226 -#: src/screens/Onboarding/StepInterests/index.tsx:229 +#: src/screens/Onboarding/StepInterests/index.tsx:231 +#: src/screens/Onboarding/StepInterests/index.tsx:234 #: src/screens/Signup/index.tsx:245 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 @@ -4611,7 +4680,7 @@ msgid "Retry" msgstr "重試" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:622 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "返回上一頁" @@ -4621,12 +4690,13 @@ msgid "Returns to home page" msgstr "返回首頁" #: src/view/screens/NotFound.tsx:58 -#: src/view/screens/ProfileFeed.tsx:112 +#: src/view/screens/ProfileFeed.tsx:113 msgid "Returns to previous page" msgstr "返回上一頁" #: src/components/dialogs/BirthDateSettings.tsx:125 -#: src/components/StarterPack/QrCodeDialog.tsx:190 +#: src/components/dialogs/ThreadgateEditor.tsx:88 +#: src/components/StarterPack/QrCodeDialog.tsx:184 #: src/view/com/composer/GifAltText.tsx:162 #: src/view/com/composer/GifAltText.tsx:168 #: src/view/com/modals/ChangeHandle.tsx:168 @@ -4635,7 +4705,7 @@ msgstr "返回上一頁" msgid "Save" msgstr "儲存" -#: src/view/com/lightbox/Lightbox.tsx:133 +#: src/view/com/lightbox/Lightbox.tsx:135 #: src/view/com/modals/CreateOrEditList.tsx:334 msgctxt "action" msgid "Save" @@ -4657,8 +4727,8 @@ msgstr "儲存更改" msgid "Save handle change" msgstr "儲存帳號代碼更改" -#: src/components/StarterPack/ShareDialog.tsx:163 -#: src/components/StarterPack/ShareDialog.tsx:170 +#: src/components/StarterPack/ShareDialog.tsx:150 +#: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" msgstr "" @@ -4666,12 +4736,12 @@ msgstr "" msgid "Save image crop" msgstr "儲存圖片裁剪" -#: src/components/StarterPack/QrCodeDialog.tsx:184 +#: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" msgstr "" -#: src/view/screens/ProfileFeed.tsx:332 -#: src/view/screens/ProfileFeed.tsx:338 +#: src/view/screens/ProfileFeed.tsx:333 +#: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" msgstr "儲存到我的動態源" @@ -4679,11 +4749,11 @@ msgstr "儲存到我的動態源" msgid "Saved Feeds" msgstr "已儲存之動態源" -#: src/view/com/lightbox/Lightbox.tsx:82 +#: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" msgstr "儲存至裝置相簿" -#: src/view/screens/ProfileFeed.tsx:200 +#: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" msgstr "儲存到您的動態源" @@ -4701,13 +4771,14 @@ msgid "Saves image crop settings" msgstr "儲存圖片裁剪設定" #: src/components/dms/ChatEmptyPill.tsx:33 -#: src/components/NewskieDialog.tsx:82 +#: src/components/NewskieDialog.tsx:105 #: src/view/com/notifications/FeedItem.tsx:372 #: src/view/com/notifications/FeedItem.tsx:397 msgid "Say hello!" msgstr "說句「你好!👋」" #: src/screens/Onboarding/index.tsx:33 +#: src/screens/Onboarding/state.ts:96 msgid "Science" msgstr "科學" @@ -4749,7 +4820,7 @@ msgstr "搜尋所有由 @{authorHandle} 發佈並具有標籤 {displayTag} 的 msgid "Search for all posts with tag {displayTag}" msgstr "搜尋所有具有標籤 {displayTag} 的貼文" -#: src/screens/StarterPack/Wizard/index.tsx:467 +#: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." msgstr "" @@ -4866,7 +4937,7 @@ msgstr "選擇應用程式中的預設語言。" msgid "Select your date of birth" msgstr "選擇您的出生日期" -#: src/screens/Onboarding/StepInterests/index.tsx:201 +#: src/screens/Onboarding/StepInterests/index.tsx:206 msgid "Select your interests from the options below" msgstr "從下面選擇您感興趣的選項" @@ -4935,7 +5006,7 @@ msgstr "發送包含帳號刪除確認碼的電子郵件" msgid "Server address" msgstr "伺服器地址" -#: src/screens/Moderation/index.tsx:304 +#: src/screens/Moderation/index.tsx:307 msgid "Set birthdate" msgstr "設定生日" @@ -5023,14 +5094,14 @@ msgstr "性行為或性暗示裸露。" msgid "Sexually Suggestive" msgstr "性暗示" -#: src/view/com/lightbox/Lightbox.tsx:142 +#: src/view/com/lightbox/Lightbox.tsx:144 msgctxt "action" msgid "Share" msgstr "分享" -#: src/components/StarterPack/QrCodeDialog.tsx:180 -#: src/screens/StarterPack/StarterPackScreen.tsx:303 -#: src/screens/StarterPack/StarterPackScreen.tsx:458 +#: src/components/StarterPack/QrCodeDialog.tsx:174 +#: src/screens/StarterPack/StarterPackScreen.tsx:312 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5054,30 +5125,36 @@ msgstr "分享一個趣聞!📰" msgid "Share anyway" msgstr "仍然分享" -#: src/view/screens/ProfileFeed.tsx:358 -#: src/view/screens/ProfileFeed.tsx:360 +#: src/view/screens/ProfileFeed.tsx:359 +#: src/view/screens/ProfileFeed.tsx:361 msgid "Share feed" msgstr "分享動態源" -#: src/screens/StarterPack/StarterPackScreen.tsx:462 +#: src/components/StarterPack/ShareDialog.tsx:123 +#: src/components/StarterPack/ShareDialog.tsx:130 +#: src/screens/StarterPack/StarterPackScreen.tsx:469 msgid "Share link" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:143 #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 msgid "Share Link" msgstr "分享連結" -#: src/components/StarterPack/ShareDialog.tsx:100 +#: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:296 +#: src/components/StarterPack/ShareDialog.tsx:134 +#: src/components/StarterPack/ShareDialog.tsx:145 +msgid "Share QR code" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:305 msgid "Share this starter pack" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:112 +#: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." msgstr "" @@ -5127,7 +5204,7 @@ msgstr "顯示隱藏回覆" msgid "Show less like this" msgstr "減少顯示此類內容" -#: src/view/com/post-thread/PostThreadItem.tsx:533 +#: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 #: src/view/com/posts/FeedItem.tsx:396 msgid "Show More" @@ -5255,33 +5332,33 @@ msgstr "以 @{0} 身分登入" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:277 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:284 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:240 -#: src/screens/StarterPack/Wizard/index.tsx:202 +#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "跳過" -#: src/screens/Onboarding/StepInterests/index.tsx:237 +#: src/screens/Onboarding/StepInterests/index.tsx:242 msgid "Skip this flow" msgstr "跳過此流程" #: src/screens/Onboarding/index.tsx:37 +#: src/screens/Onboarding/state.ts:85 msgid "Software Dev" msgstr "軟體開發" -#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:49 -#: src/view/com/threadgate/WhoCanReply.tsx:67 -#: src/view/com/threadgate/WhoCanReply.tsx:124 +#: src/components/WhoCanReply.tsx:72 +#: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "僅部分人可以回覆" #: src/screens/StarterPack/Wizard/index.tsx:203 -msgid "Some subtitle" -msgstr "" +#~ msgid "Some subtitle" +#~ msgstr "" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -5293,7 +5370,7 @@ msgid "Something went wrong, please try again" msgstr "發生了一些問題,請重試" #: src/components/ReportDialog/index.tsx:59 -#: src/screens/Moderation/index.tsx:114 +#: src/screens/Moderation/index.tsx:115 #: src/screens/Profile/Sections/Labels.tsx:87 msgid "Something went wrong, please try again." msgstr "發生了一些問題,請重試。" @@ -5325,6 +5402,7 @@ msgid "Spam; excessive mentions or replies" msgstr "垃圾訊息、過多的提及或回覆" #: src/screens/Onboarding/index.tsx:27 +#: src/screens/Onboarding/state.ts:97 msgid "Sports" msgstr "運動" @@ -5346,7 +5424,7 @@ msgstr "開始對話" #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 -#: src/screens/StarterPack/Wizard/index.tsx:190 +#: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" @@ -5354,14 +5432,18 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:579 +#: src/screens/StarterPack/StarterPackScreen.tsx:586 msgid "Starter pack is invalid" msgstr "" -#: src/view/screens/Profile.tsx:221 +#: src/view/screens/Profile.tsx:214 msgid "Starter Packs" msgstr "" +#: src/components/StarterPack/ProfileStarterPacks.tsx:238 +msgid "Starter packs let you easily share your favorite feeds and people with your friends." +msgstr "" + #: src/view/screens/Settings/index.tsx:963 msgid "Status Page" msgstr "服務運作狀態頁面" @@ -5462,6 +5544,7 @@ msgid "Tap to view fully" msgstr "點擊查看完整內容" #: src/screens/Onboarding/index.tsx:36 +#: src/screens/Onboarding/state.ts:98 msgid "Tech" msgstr "科技" @@ -5514,10 +5597,10 @@ msgstr "其中包含以下內容:" msgid "That handle is already taken." msgstr "這個帳號代碼已被使用。" -#: src/screens/StarterPack/StarterPackScreen.tsx:100 -#: src/screens/StarterPack/StarterPackScreen.tsx:101 -#: src/screens/StarterPack/Wizard/index.tsx:105 -#: src/screens/StarterPack/Wizard/index.tsx:113 +#: src/screens/StarterPack/StarterPackScreen.tsx:102 +#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/Wizard/index.tsx:106 +#: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." msgstr "" @@ -5534,7 +5617,7 @@ msgstr "社群準則已移動到 <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "版權政策已移動到 <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -5563,7 +5646,7 @@ msgstr "這則貼文可能已被刪除。" msgid "The Privacy Policy has been moved to <0/>" msgstr "隱私政策已移動到 <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:589 +#: src/screens/StarterPack/StarterPackScreen.tsx:596 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -5580,7 +5663,7 @@ 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:542 +#: src/view/screens/ProfileFeed.tsx:544 msgid "There was an an issue contacting the server, please check your internet connection and try again." msgstr "連線至伺服器時出現問題,請檢查您的網路連線並重試。" @@ -5590,7 +5673,7 @@ msgstr "刪除動態源時出現問題,請檢查您的網路連線並重試。 #: src/view/com/posts/FeedShutdownMsg.tsx:52 #: src/view/com/posts/FeedShutdownMsg.tsx:70 -#: src/view/screens/ProfileFeed.tsx:205 +#: src/view/screens/ProfileFeed.tsx:206 msgid "There was an an issue updating your feeds, please check your internet connection and try again." msgstr "更新動態時出現問題,請檢查您的網路連線並重試。" @@ -5599,7 +5682,7 @@ msgstr "更新動態時出現問題,請檢查您的網路連線並重試。" msgid "There was an issue connecting to Tenor." msgstr "連線到 Tenor 時出現問題。" -#: src/view/screens/ProfileFeed.tsx:233 +#: src/view/screens/ProfileFeed.tsx:234 #: src/view/screens/ProfileList.tsx:303 #: src/view/screens/ProfileList.tsx:322 #: src/view/screens/SavedFeeds.tsx:237 @@ -5653,6 +5736,7 @@ msgstr "取得應用程式專用密碼時發生問題" msgid "There was an issue! {0}" msgstr "發生問題!{0}" +#: src/components/WhoCanReply.tsx:116 #: src/view/screens/ProfileList.tsx:335 #: src/view/screens/ProfileList.tsx:349 #: src/view/screens/ProfileList.tsx:363 @@ -5731,7 +5815,7 @@ msgstr "此動態源由於目前使用人數眾多而暫時無法使用。請稍 msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "這個動態源是空的!您或許需要先跟隨更多的人或檢查您的語言設定。" -#: src/view/screens/ProfileFeed.tsx:472 +#: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." msgstr "這裡是空的。" @@ -5830,7 +5914,7 @@ msgstr "此用戶包含在您已封鎖的 <0>{0} 列表中。" msgid "This user is included in the <0>{0} list which you have muted." msgstr "此用戶包含在您已靜音的 <0>{0} 列表中。" -#: src/components/NewskieDialog.tsx:53 +#: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." msgstr "該用戶是新來帳號,請按此了解更多有關他們何時加入的資訊。" @@ -5851,6 +5935,10 @@ msgstr "討論串偏好" msgid "Thread Preferences" msgstr "討論串偏好" +#: src/components/WhoCanReply.tsx:109 +msgid "Thread settings updated" +msgstr "" + #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "樹狀顯示模式" @@ -5879,7 +5967,7 @@ msgstr "在靜音文字選項之間切換。" msgid "Toggle dropdown" msgstr "切換下拉式選單" -#: src/screens/Moderation/index.tsx:332 +#: src/screens/Moderation/index.tsx:336 msgid "Toggle to enable or disable adult content" msgstr "切換以啟用或停用成人內容" @@ -5894,8 +5982,8 @@ msgstr "轉換" #: src/components/dms/MessageMenu.tsx:103 #: src/components/dms/MessageMenu.tsx:105 -#: src/view/com/post-thread/PostThreadItem.tsx:681 -#: src/view/com/post-thread/PostThreadItem.tsx:683 +#: 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 msgid "Translate" @@ -5906,6 +5994,10 @@ msgctxt "action" msgid "Try again" msgstr "重試" +#: src/screens/Onboarding/state.ts:99 +msgid "TV" +msgstr "" + #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" msgstr "雙重驗證" @@ -5935,7 +6027,7 @@ msgstr "取消靜音列表" msgid "Unable to contact your service. Please check your Internet connection." msgstr "無法連線到服務,請檢查您的網路連線。" -#: src/screens/StarterPack/StarterPackScreen.tsx:513 +#: src/screens/StarterPack/StarterPackScreen.tsx:520 msgid "Unable to delete" msgstr "" @@ -5994,7 +6086,7 @@ msgstr "取消跟隨 {0}" msgid "Unfollow Account" msgstr "取消跟隨" -#: src/view/screens/ProfileFeed.tsx:571 +#: src/view/screens/ProfileFeed.tsx:573 msgid "Unlike this feed" msgstr "取消喜歡這個動態源" @@ -6025,12 +6117,12 @@ msgstr "取消靜音對話" msgid "Unmute thread" msgstr "取消靜音討論串" -#: src/view/screens/ProfileFeed.tsx:290 +#: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 msgid "Unpin" msgstr "取消釘選" -#: src/view/screens/ProfileFeed.tsx:287 +#: src/view/screens/ProfileFeed.tsx:288 msgid "Unpin from home" msgstr "自首頁取消釘選" @@ -6196,7 +6288,7 @@ msgstr "帳號代碼或電子郵件地址" msgid "Users" msgstr "用戶" -#: src/view/com/threadgate/WhoCanReply.tsx:274 +#: src/components/WhoCanReply.tsx:279 msgid "users followed by <0/>" msgstr "被 <0/> 跟隨的用戶" @@ -6207,7 +6299,7 @@ msgstr "被 <0/> 跟隨的用戶" msgid "Users I follow" msgstr "我跟隨的用戶" -#: src/view/com/modals/Threadgate.tsx:109 +#: src/components/dialogs/ThreadgateEditor.tsx:132 msgid "Users in \"{0}\"" msgstr "「{0}」中的用戶" @@ -6253,6 +6345,7 @@ msgid "Version {appVersion} {bundleInfo}" msgstr "版本 {appVersion} {bundleInfo}" #: src/screens/Onboarding/index.tsx:39 +#: src/screens/Onboarding/state.ts:88 msgid "Video Games" msgstr "電子遊戲" @@ -6304,7 +6397,7 @@ msgstr "查看頭像" msgid "View the labeling service provided by @{0}" msgstr "查看由 @{0} 提供的標記服務" -#: src/view/screens/ProfileFeed.tsx:583 +#: src/view/screens/ProfileFeed.tsx:585 msgid "View users who like this feed" msgstr "查看喜歡此動態源的用戶" @@ -6360,11 +6453,11 @@ msgstr "我們建議避免新增在許多貼文中常用的文字,因為這可 msgid "We were unable to load your birth date preferences. Please try again." msgstr "我們無法載入您的出生日期偏好,請再試一次。" -#: src/screens/Moderation/index.tsx:385 +#: src/screens/Moderation/index.tsx:409 msgid "We were unable to load your configured labelers at this time." msgstr "我們目前無法載入您已設定的標記者。" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:143 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "我們無法連線到網際網路,請重試以繼續設定您的帳號。如果仍繼續失敗,您可以選擇跳過此流程。" @@ -6372,7 +6465,7 @@ msgstr "我們無法連線到網際網路,請重試以繼續設定您的帳號 msgid "We will let you know when your account is ready." msgstr "我們會在您的帳號準備好時通知您。" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:148 msgid "We'll use this to help customize your experience." msgstr "我們將使用這些資訊來協助訂製您的體驗。" @@ -6413,7 +6506,11 @@ msgstr "抱歉!您只能訂閱二十個標記者,您已達到二十個的限 msgid "Welcome back!" msgstr "歡迎回來!" -#: src/screens/Onboarding/StepInterests/index.tsx:135 +#: src/components/NewskieDialog.tsx:103 +msgid "Welcome, friend!" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" msgstr "您感興趣的是什麼?" @@ -6440,17 +6537,15 @@ msgstr "您想在演算法動態源中看到哪些語言?" msgid "Who can message you?" msgstr "誰可以傳送訊息給您?" -#: src/view/com/modals/Threadgate.tsx:69 -#: src/view/com/threadgate/WhoCanReply.tsx:73 -#: src/view/com/threadgate/WhoCanReply.tsx:130 +#: src/components/WhoCanReply.tsx:127 msgid "Who can reply" msgstr "誰可以回覆" -#: src/view/com/threadgate/WhoCanReply.tsx:206 +#: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" msgstr "「誰可以回覆」對話窗" -#: src/view/com/threadgate/WhoCanReply.tsx:210 +#: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" msgstr "誰可以回覆?" @@ -6506,6 +6601,7 @@ msgid "Write your reply" msgstr "撰寫您的回覆" #: src/screens/Onboarding/index.tsx:25 +#: src/screens/Onboarding/state.ts:100 msgid "Writers" msgstr "作家" @@ -6524,7 +6620,7 @@ msgstr "開" msgid "Yes, deactivate" msgstr "確定並停用" -#: src/screens/StarterPack/StarterPackScreen.tsx:525 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Yes, delete this starter pack" msgstr "" @@ -6540,6 +6636,10 @@ msgstr "昨天,{time}" msgid "you" msgstr "" +#: src/components/NewskieDialog.tsx:43 +msgid "You" +msgstr "" + #: src/screens/SignupQueued.tsx:136 msgid "You are in line." msgstr "你正處於隊列之中。" @@ -6661,6 +6761,10 @@ msgstr "您還沒有靜音任何帳號。要靜音帳號,請前往其個人檔 msgid "You have reached the end" msgstr "已經到底部啦!" +#: src/components/StarterPack/ProfileStarterPacks.tsx:235 +msgid "You haven't created a starter pack yet!" +msgstr "" + #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" msgstr "您還沒有隱藏任何文字或標籤" @@ -6685,15 +6789,15 @@ msgstr "" msgid "You must be 13 years of age or older to sign up." msgstr "您必須年滿 13 歲才能註冊。" -#: src/components/StarterPack/ProfileStarterPacks.tsx:304 +#: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." msgstr "" -#: src/components/StarterPack/QrCodeDialog.tsx:62 +#: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" msgstr "" -#: src/components/StarterPack/ShareDialog.tsx:70 +#: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." msgstr "" @@ -6745,7 +6849,7 @@ msgstr "" msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:256 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 msgid "You'll stay updated with these feeds" msgstr "" From da4dfeb9cf6506ade2a9619921de128458c4d0d2 Mon Sep 17 00:00:00 2001 From: dan Date: Thu, 27 Jun 2024 01:07:56 +0100 Subject: [PATCH 042/153] [Starter Packs] Posts tab (#4660) * [Starter Packs] Posts tab * oops --- src/components/StarterPack/Main/PostsList.tsx | 51 +++++++++++++++++++ src/screens/StarterPack/StarterPackScreen.tsx | 28 +++++++--- src/state/preferences/feed-tuners.tsx | 31 +++++++++-- src/state/queries/post-feed.ts | 2 + 4 files changed, 103 insertions(+), 9 deletions(-) create mode 100644 src/components/StarterPack/Main/PostsList.tsx diff --git a/src/components/StarterPack/Main/PostsList.tsx b/src/components/StarterPack/Main/PostsList.tsx new file mode 100644 index 0000000000..c19c6bc63e --- /dev/null +++ b/src/components/StarterPack/Main/PostsList.tsx @@ -0,0 +1,51 @@ +import React, {useCallback} from 'react' +import {View} from 'react-native' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {FeedDescriptor} from '#/state/queries/post-feed' +import {isNative} from 'platform/detection' +import {Feed} from 'view/com/posts/Feed' +import {EmptyState} from 'view/com/util/EmptyState' +import {ListRef} from 'view/com/util/List' +import {SectionRef} from '#/screens/Profile/Sections/types' + +interface ProfilesListProps { + listUri: string + headerHeight: number + scrollElRef: ListRef +} + +export const PostsList = React.forwardRef( + function PostsListImpl({listUri, headerHeight, scrollElRef}, ref) { + const feed: FeedDescriptor = `list|${listUri}|as_following` + const {_} = useLingui() + + const onScrollToTop = useCallback(() => { + scrollElRef.current?.scrollToOffset({ + animated: isNative, + offset: -headerHeight, + }) + }, [scrollElRef, headerHeight]) + + React.useImperativeHandle(ref, () => ({ + scrollToTop: onScrollToTop, + })) + + const renderPostsEmpty = useCallback(() => { + return + }, [_]) + + return ( + + + + ) + }, +) diff --git a/src/screens/StarterPack/StarterPackScreen.tsx b/src/screens/StarterPack/StarterPackScreen.tsx index d89bda1371..bdf6f9dbee 100644 --- a/src/screens/StarterPack/StarterPackScreen.tsx +++ b/src/screens/StarterPack/StarterPackScreen.tsx @@ -55,6 +55,7 @@ import * as Prompt from '#/components/Prompt' import {ReportDialog, useReportDialogControl} from '#/components/ReportDialog' import {RichText} from '#/components/RichText' import {FeedsList} from '#/components/StarterPack/Main/FeedsList' +import {PostsList} from '#/components/StarterPack/Main/PostsList' import {ProfilesList} from '#/components/StarterPack/Main/ProfilesList' import {QrCodeDialog} from '#/components/StarterPack/QrCodeDialog' import {ShareDialog} from '#/components/StarterPack/ShareDialog' @@ -132,9 +133,14 @@ function StarterPackScreenInner({ > moderationOpts: ModerationOpts }) { + const showPeopleTab = Boolean(starterPack.list) + const showFeedsTab = Boolean(starterPack.feeds?.length) + const showPostsTab = Boolean(starterPack.list) + const tabs = [ - ...(starterPack.list ? ['People'] : []), - ...(starterPack.feeds?.length ? ['Feeds'] : []), + ...(showPeopleTab ? ['People'] : []), + ...(showFeedsTab ? ['Feeds'] : []), + ...(showPostsTab ? ['Posts'] : []), ] const qrCodeDialogControl = useDialogControl() @@ -180,10 +186,9 @@ function StarterPackScreenInner({ onOpenShareDialog={onOpenShareDialog} /> )}> - {starterPack.list != null + {showPeopleTab ? ({headerHeight, scrollElRef}) => ( ) : null} - {starterPack.feeds != null + {showFeedsTab ? ({headerHeight, scrollElRef}) => ( ) : null} + {showPostsTab + ? ({headerHeight, scrollElRef}) => ( + + ) + : null} diff --git a/src/state/preferences/feed-tuners.tsx b/src/state/preferences/feed-tuners.tsx index ac129d1722..ca0fefe915 100644 --- a/src/state/preferences/feed-tuners.tsx +++ b/src/state/preferences/feed-tuners.tsx @@ -19,7 +19,34 @@ export function useFeedTuners(feedDesc: FeedDescriptor) { ] } if (feedDesc.startsWith('list')) { - return [FeedTuner.dedupReposts] + const feedTuners = [] + + if (feedDesc.endsWith('|as_following')) { + // Same as Following tuners below, copypaste for now. + if (preferences?.feedViewPrefs.hideReposts) { + feedTuners.push(FeedTuner.removeReposts) + } else { + feedTuners.push(FeedTuner.dedupReposts) + } + if (preferences?.feedViewPrefs.hideReplies) { + feedTuners.push(FeedTuner.removeReplies) + } else { + feedTuners.push( + FeedTuner.thresholdRepliesOnly({ + userDid: currentAccount?.did || '', + minLikes: preferences?.feedViewPrefs.hideRepliesByLikeCount || 0, + followedOnly: + !!preferences?.feedViewPrefs.hideRepliesByUnfollowed, + }), + ) + } + if (preferences?.feedViewPrefs.hideQuotePosts) { + feedTuners.push(FeedTuner.removeQuotePosts) + } + } else { + feedTuners.push(FeedTuner.dedupReposts) + } + return feedTuners } if (feedDesc === 'following') { const feedTuners = [] @@ -29,7 +56,6 @@ export function useFeedTuners(feedDesc: FeedDescriptor) { } else { feedTuners.push(FeedTuner.dedupReposts) } - if (preferences?.feedViewPrefs.hideReplies) { feedTuners.push(FeedTuner.removeReplies) } else { @@ -41,7 +67,6 @@ export function useFeedTuners(feedDesc: FeedDescriptor) { }), ) } - if (preferences?.feedViewPrefs.hideQuotePosts) { feedTuners.push(FeedTuner.removeQuotePosts) } diff --git a/src/state/queries/post-feed.ts b/src/state/queries/post-feed.ts index 4e44c1c695..912548e517 100644 --- a/src/state/queries/post-feed.ts +++ b/src/state/queries/post-feed.ts @@ -49,6 +49,7 @@ type AuthorFilter = | 'posts_with_media' type FeedUri = string type ListUri = string +type ListFilter = 'as_following' // Applies current Following settings. Currently client-side. export type FeedDescriptor = | 'following' @@ -56,6 +57,7 @@ export type FeedDescriptor = | `feedgen|${FeedUri}` | `likes|${ActorDid}` | `list|${ListUri}` + | `list|${ListUri}|${ListFilter}` export interface FeedParams { disableTuner?: boolean mergeFeedEnabled?: boolean From 878b0476dd94e187504f503438ca8914a48ac630 Mon Sep 17 00:00:00 2001 From: Hailey Date: Wed, 26 Jun 2024 17:24:33 -0700 Subject: [PATCH 043/153] Better starterpack embed (#4659) --- src/lib/link-meta/link-meta.ts | 8 +- src/lib/link-meta/resolve-short-link.ts | 23 ++++++ src/lib/strings/starter-pack.ts | 4 + src/lib/strings/url-helpers.ts | 11 +++ src/view/com/composer/useExternalLinkFetch.ts | 13 ++++ .../util/post-embeds/ExternalLinkEmbed.tsx | 76 ++++++++++++------- 6 files changed, 103 insertions(+), 32 deletions(-) create mode 100644 src/lib/link-meta/resolve-short-link.ts diff --git a/src/lib/link-meta/link-meta.ts b/src/lib/link-meta/link-meta.ts index fa951432e8..6416df2b72 100644 --- a/src/lib/link-meta/link-meta.ts +++ b/src/lib/link-meta/link-meta.ts @@ -1,8 +1,10 @@ import {BskyAgent} from '@atproto/api' -import {isBskyAppUrl} from '../strings/url-helpers' -import {extractBskyMeta} from './bsky' + import {LINK_META_PROXY} from 'lib/constants' import {getGiphyMetaUri} from 'lib/strings/embed-player' +import {parseStarterPackUri} from 'lib/strings/starter-pack' +import {isBskyAppUrl} from '../strings/url-helpers' +import {extractBskyMeta} from './bsky' export enum LikelyType { HTML, @@ -28,7 +30,7 @@ export async function getLinkMeta( url: string, timeout = 15e3, ): Promise { - if (isBskyAppUrl(url)) { + if (isBskyAppUrl(url) && !parseStarterPackUri(url)) { return extractBskyMeta(agent, url) } diff --git a/src/lib/link-meta/resolve-short-link.ts b/src/lib/link-meta/resolve-short-link.ts new file mode 100644 index 0000000000..3a3e2ab463 --- /dev/null +++ b/src/lib/link-meta/resolve-short-link.ts @@ -0,0 +1,23 @@ +import {logger} from '#/logger' +import {startUriToStarterPackUri} from 'lib/strings/starter-pack' + +export async function resolveShortLink(shortLink: string) { + const controller = new AbortController() + const to = setTimeout(() => controller.abort(), 2e3) + + try { + const res = await fetch(shortLink, { + method: 'GET', + signal: controller.signal, + }) + if (res.status !== 200) { + return shortLink + } + return startUriToStarterPackUri(res.url) + } catch (e: unknown) { + logger.error('Failed to resolve short link', {safeMessage: e}) + return null + } finally { + clearTimeout(to) + } +} diff --git a/src/lib/strings/starter-pack.ts b/src/lib/strings/starter-pack.ts index 489d0b9231..01b5a65870 100644 --- a/src/lib/strings/starter-pack.ts +++ b/src/lib/strings/starter-pack.ts @@ -99,3 +99,7 @@ export function createStarterPackUri({ }): string | null { return new AtUri(`at://${did}/app.bsky.graph.starterpack/${rkey}`).toString() } + +export function startUriToStarterPackUri(uri: string) { + return uri.replace('/start/', '/starter-pack/') +} diff --git a/src/lib/strings/url-helpers.ts b/src/lib/strings/url-helpers.ts index 4c75f47add..b88b77f735 100644 --- a/src/lib/strings/url-helpers.ts +++ b/src/lib/strings/url-helpers.ts @@ -2,6 +2,7 @@ import {AtUri} from '@atproto/api' import psl from 'psl' import TLDs from 'tlds' +import {logger} from '#/logger' import {BSKY_SERVICE} from 'lib/constants' import {isInvalidHandle} from 'lib/strings/handles' @@ -285,3 +286,13 @@ export function createBskyAppAbsoluteUrl(path: string): string { const sanitizedPath = path.replace(BSKY_APP_HOST, '').replace(/^\/+/, '') return `${BSKY_APP_HOST.replace(/\/$/, '')}/${sanitizedPath}` } + +export function isShortLink(url: string): boolean { + try { + const urlp = new URL(url) + return urlp.host === 'go.bsky.app' + } catch (e) { + logger.error('Failed to parse possible short link', {safeMessage: e}) + return false + } +} diff --git a/src/view/com/composer/useExternalLinkFetch.ts b/src/view/com/composer/useExternalLinkFetch.ts index 2e0297a475..743535a5e0 100644 --- a/src/view/com/composer/useExternalLinkFetch.ts +++ b/src/view/com/composer/useExternalLinkFetch.ts @@ -12,11 +12,13 @@ import { getPostAsQuote, } from 'lib/link-meta/bsky' import {getLinkMeta} from 'lib/link-meta/link-meta' +import {resolveShortLink} from 'lib/link-meta/resolve-short-link' import {downloadAndResize} from 'lib/media/manip' import { isBskyCustomFeedUrl, isBskyListUrl, isBskyPostUrl, + isShortLink, } from 'lib/strings/url-helpers' import {ImageModel} from 'state/models/media/image' import {ComposerOpts} from 'state/shell/composer' @@ -94,6 +96,17 @@ export function useExternalLinkFetch({ setExtLink(undefined) }, ) + } else if (isShortLink(extLink.uri)) { + if (isShortLink(extLink.uri)) { + resolveShortLink(extLink.uri).then(res => { + if (res && res !== extLink.uri) { + setExtLink({ + uri: res, + isLoading: true, + }) + } + }) + } } else { getLinkMeta(agent, extLink.uri).then(meta => { if (aborted) { diff --git a/src/view/com/util/post-embeds/ExternalLinkEmbed.tsx b/src/view/com/util/post-embeds/ExternalLinkEmbed.tsx index 3b2a12c24b..f5f220c629 100644 --- a/src/view/com/util/post-embeds/ExternalLinkEmbed.tsx +++ b/src/view/com/util/post-embeds/ExternalLinkEmbed.tsx @@ -2,11 +2,17 @@ import React, {useCallback} from 'react' import {StyleProp, View, ViewStyle} from 'react-native' import {Image} from 'expo-image' import {AppBskyEmbedExternal} from '@atproto/api' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' import {usePalette} from 'lib/hooks/usePalette' import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' import {shareUrl} from 'lib/sharing' import {parseEmbedPlayerFromUrl} from 'lib/strings/embed-player' +import { + getStarterPackOgCard, + parseStarterPackUri, +} from 'lib/strings/starter-pack' import {toNiceDomain} from 'lib/strings/url-helpers' import {isNative} from 'platform/detection' import {useExternalEmbedsPrefs} from 'state/preferences' @@ -28,10 +34,16 @@ export const ExternalLinkEmbed = ({ style?: StyleProp hideAlt?: boolean }) => { + const {_} = useLingui() const pal = usePalette('default') const {isMobile} = useWebMediaQueries() const externalEmbedPrefs = useExternalEmbedsPrefs() + const starterPackParsed = parseStarterPackUri(link.uri) + const imageUri = starterPackParsed + ? getStarterPackOgCard(starterPackParsed.name, starterPackParsed.rkey) + : link.thumb + const embedPlayerParams = React.useMemo(() => { const params = parseEmbedPlayerFromUrl(link.uri) @@ -47,15 +59,19 @@ export const ExternalLinkEmbed = ({ return ( - {link.thumb && !embedPlayerParams ? ( + {imageUri && !embedPlayerParams ? ( ) : undefined} {embedPlayerParams?.isGif ? ( @@ -63,35 +79,37 @@ export const ExternalLinkEmbed = ({ ) : embedPlayerParams ? ( ) : undefined} - - - {toNiceDomain(link.uri)} - - - {!embedPlayerParams?.isGif && !embedPlayerParams?.dimensions && ( - - {link.title || link.uri} - - )} - {link.description ? ( + {!starterPackParsed ? ( + - {link.description} + type="sm" + numberOfLines={1} + style={[pal.textLight, {marginVertical: 2}]}> + {toNiceDomain(link.uri)} - ) : undefined} - + + {!embedPlayerParams?.isGif && !embedPlayerParams?.dimensions && ( + + {link.title || link.uri} + + )} + {link.description ? ( + + {link.description} + + ) : undefined} + + ) : null} ) From 5641a4393c15c666bb95306d722d1ebf805df8ba Mon Sep 17 00:00:00 2001 From: Hailey Date: Wed, 26 Jun 2024 18:57:57 -0700 Subject: [PATCH 044/153] update follows when pressing follow all (#4663) --- src/screens/Onboarding/util.ts | 12 ++++++++++++ src/screens/StarterPack/StarterPackScreen.tsx | 14 ++++++++++---- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/src/screens/Onboarding/util.ts b/src/screens/Onboarding/util.ts index f3c800d053..b9ecc4b987 100644 --- a/src/screens/Onboarding/util.ts +++ b/src/screens/Onboarding/util.ts @@ -3,6 +3,7 @@ import { AppBskyGraphGetFollows, BskyAgent, } from '@atproto/api' +import {TID} from '@atproto/common-web' import {until} from '#/lib/async/until' @@ -20,9 +21,11 @@ export async function bulkWriteFollows(agent: BskyAgent, dids: string[]) { createdAt: new Date().toISOString(), } }) + const followWrites = followRecords.map(r => ({ $type: 'com.atproto.repo.applyWrites#create', collection: 'app.bsky.graph.follow', + rkey: TID.nextStr(), value: r, })) @@ -31,6 +34,15 @@ export async function bulkWriteFollows(agent: BskyAgent, dids: string[]) { writes: followWrites, }) await whenFollowsIndexed(agent, session.did, res => !!res.data.follows.length) + + const followUris = new Map() + for (const r of followWrites) { + followUris.set( + r.value.subject, + `at://${session.did}/app.bsky.graph.follow/${r.rkey}`, + ) + } + return followUris } async function whenFollowsIndexed( diff --git a/src/screens/StarterPack/StarterPackScreen.tsx b/src/screens/StarterPack/StarterPackScreen.tsx index bdf6f9dbee..7c5cfd0b7e 100644 --- a/src/screens/StarterPack/StarterPackScreen.tsx +++ b/src/screens/StarterPack/StarterPackScreen.tsx @@ -23,14 +23,16 @@ import { import {cleanError} from '#/lib/strings/errors' import {logger} from '#/logger' import {useDeleteStarterPackMutation} from '#/state/queries/starter-packs' +import {batchedUpdates} from 'lib/batchedUpdates' import {HITSLOP_20} from 'lib/constants' import {makeProfileLink, makeStarterPackLink} from 'lib/routes/links' import {CommonNavigatorParams, NavigationProp} from 'lib/routes/types' import {logEvent} from 'lib/statsig/statsig' import {getStarterPackOgCard} from 'lib/strings/starter-pack' import {isWeb} from 'platform/detection' +import {updateProfileShadow} from 'state/cache/profile-shadow' import {useModerationOpts} from 'state/preferences/moderation-opts' -import {RQKEY, useListMembersQuery} from 'state/queries/list-members' +import {useListMembersQuery} from 'state/queries/list-members' import {useResolveDidQuery} from 'state/queries/resolve-uri' import {useShortenLink} from 'state/queries/shorten-link' import {useStarterPackQuery} from 'state/queries/starter-packs' @@ -275,10 +277,14 @@ function Header({ .filter(li => !li.subject.viewer?.following) .map(li => li.subject.did) - await bulkWriteFollows(agent, dids) + const followUris = await bulkWriteFollows(agent, dids) - await queryClient.refetchQueries({ - queryKey: RQKEY(starterPack.list.uri), + batchedUpdates(() => { + for (let did of dids) { + updateProfileShadow(queryClient, did, { + followingUri: followUris.get(did), + }) + } }) logEvent('starterPack:followAll', { From 0ab6d540937adbc315444c96ba11c85ffa757d51 Mon Sep 17 00:00:00 2001 From: Hailey Date: Wed, 26 Jun 2024 19:00:35 -0700 Subject: [PATCH 045/153] Add some events to landing screen (#4664) --- src/lib/statsig/events.ts | 6 ++++++ src/screens/StarterPack/StarterPackLandingScreen.tsx | 4 ++++ src/screens/StarterPack/StarterPackScreen.tsx | 6 ++++++ 3 files changed, 16 insertions(+) diff --git a/src/lib/statsig/events.ts b/src/lib/statsig/events.ts index 07ed8c0ca7..3efc11a51f 100644 --- a/src/lib/statsig/events.ts +++ b/src/lib/statsig/events.ts @@ -188,6 +188,12 @@ export type LogEvents = { profilesCount: number feedsCount: number } + 'starterPack:ctaPress': { + starterPack: string + } + 'starterPack:opened': { + starterPack: string + } 'test:all:always': {} 'test:all:sometimes': {} diff --git a/src/screens/StarterPack/StarterPackLandingScreen.tsx b/src/screens/StarterPack/StarterPackLandingScreen.tsx index 2b450494b8..df13885e88 100644 --- a/src/screens/StarterPack/StarterPackLandingScreen.tsx +++ b/src/screens/StarterPack/StarterPackLandingScreen.tsx @@ -14,6 +14,7 @@ import {useLingui} from '@lingui/react' import {JOINED_THIS_WEEK} from '#/lib/constants' import {isAndroidWeb} from 'lib/browser' import {useWebMediaQueries} from 'lib/hooks/useWebMediaQueries' +import {logEvent} from 'lib/statsig/statsig' import {createStarterPackGooglePlayUri} from 'lib/strings/starter-pack' import {isWeb} from 'platform/detection' import {useModerationOpts} from 'state/preferences/moderation-opts' @@ -128,6 +129,9 @@ function LandingScreenLoaded({ } else { onContinue() } + logEvent('starterPack:ctaPress', { + starterPack: starterPack.uri, + }) } const onJoinWithoutPress = () => { diff --git a/src/screens/StarterPack/StarterPackScreen.tsx b/src/screens/StarterPack/StarterPackScreen.tsx index 7c5cfd0b7e..aa0e75a233 100644 --- a/src/screens/StarterPack/StarterPackScreen.tsx +++ b/src/screens/StarterPack/StarterPackScreen.tsx @@ -152,6 +152,12 @@ function StarterPackScreenInner({ const [link, setLink] = React.useState() const [imageLoaded, setImageLoaded] = React.useState(false) + React.useEffect(() => { + logEvent('starterPack:opened', { + starterPack: starterPack.uri, + }) + }, [starterPack.uri]) + const onOpenShareDialog = React.useCallback(() => { const rkey = new AtUri(starterPack.uri).rkey shortenLink(makeStarterPackLink(starterPack.creator.did, rkey)).then( From f6b138f709bcf52248e3f0c5a1ef67abe96bef9c Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 26 Jun 2024 19:03:52 -0700 Subject: [PATCH 046/153] Run intl extract --- src/locale/locales/ca/messages.po | 87 ++++++++++++---------- src/locale/locales/de/messages.po | 87 ++++++++++++---------- src/locale/locales/en/messages.po | 87 ++++++++++++---------- src/locale/locales/es/messages.po | 87 ++++++++++++---------- src/locale/locales/fi/messages.po | 87 ++++++++++++---------- src/locale/locales/fr/messages.po | 87 ++++++++++++---------- src/locale/locales/ga/messages.po | 87 ++++++++++++---------- src/locale/locales/hi/messages.po | 87 ++++++++++++---------- src/locale/locales/id/messages.po | 87 ++++++++++++---------- src/locale/locales/it/messages.po | 87 ++++++++++++---------- src/locale/locales/ja/messages.po | 87 ++++++++++++---------- src/locale/locales/ko/messages.po | 107 ++++++++++++++------------- src/locale/locales/pt-BR/messages.po | 87 ++++++++++++---------- src/locale/locales/tr/messages.po | 87 ++++++++++++---------- src/locale/locales/uk/messages.po | 87 ++++++++++++---------- src/locale/locales/zh-CN/messages.po | 107 ++++++++++++++------------- src/locale/locales/zh-TW/messages.po | 107 ++++++++++++++------------- 17 files changed, 812 insertions(+), 727 deletions(-) diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po index 05a7705e8b..fca5b6e89b 100644 --- a/src/locale/locales/ca/messages.po +++ b/src/locale/locales/ca/messages.po @@ -103,11 +103,11 @@ 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:218 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:350 +#: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" msgstr "" @@ -520,7 +520,7 @@ msgstr "El contingut per a adults està deshabilitat." msgid "Advanced" msgstr "Avançat" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "" @@ -602,7 +602,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "Hi ha hagut un error intentant esborrar el missatge. Torna-ho a provar." -#: src/screens/StarterPack/StarterPackScreen.tsx:275 +#: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" msgstr "" @@ -721,7 +721,7 @@ msgstr "Aparença" msgid "Apply default recommended feeds" msgstr "Aplica els canals recomanats per defecte" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -1808,9 +1808,9 @@ msgid "Debug panel" msgstr "Panell de depuració" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:456 -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:484 +#: src/screens/StarterPack/StarterPackScreen.tsx:563 +#: src/screens/StarterPack/StarterPackScreen.tsx:643 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1875,12 +1875,12 @@ msgstr "Elimina el meu compte…" msgid "Delete post" msgstr "Elimina la publicació" -#: src/screens/StarterPack/StarterPackScreen.tsx:450 -#: src/screens/StarterPack/StarterPackScreen.tsx:606 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:501 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" msgstr "" @@ -2067,7 +2067,7 @@ msgstr "Fet{extraText}" #~ msgid "Double tap to sign in" #~ msgstr "Fes doble toc per a iniciar la sessió" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" msgstr "" @@ -2128,7 +2128,7 @@ msgstr "p. ex.Usuaris que sempre responen amb anuncis" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cada codi funciona un cop. Rebràs més codis d'invitació periòdicament." -#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/StarterPackScreen.tsx:473 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 @@ -2193,7 +2193,7 @@ msgstr "Edita el perfil" #~ msgid "Edit Saved Feeds" #~ msgstr "Edita els meus canals guardats" -#: src/screens/StarterPack/StarterPackScreen.tsx:437 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" msgstr "" @@ -2519,7 +2519,7 @@ msgstr "No s'ha pogut esborrar el missatge" msgid "Failed to delete post, please try again" msgstr "No s'ha pogut esborrar la publicació, torna-ho a provar" -#: src/screens/StarterPack/StarterPackScreen.tsx:569 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" msgstr "" @@ -2736,8 +2736,8 @@ msgstr "Segueix a {name}" msgid "Follow Account" msgstr "Segueix el compte" -#: src/screens/StarterPack/StarterPackScreen.tsx:317 -#: src/screens/StarterPack/StarterPackScreen.tsx:324 +#: src/screens/StarterPack/StarterPackScreen.tsx:345 +#: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" msgstr "" @@ -2942,7 +2942,7 @@ msgstr "Ves enrere" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:628 +#: src/screens/StarterPack/StarterPackScreen.tsx:656 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -3360,8 +3360,8 @@ msgstr "" msgid "Jobs" msgstr "Feines" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" msgstr "" @@ -4042,6 +4042,10 @@ msgstr "El nom o la descripció infringeixen els estàndards comunitaris" msgid "Nature" msgstr "Natura" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 +msgid "Navigate to starter pack" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 #: src/view/com/modals/ChangePassword.tsx:169 @@ -4486,7 +4490,7 @@ msgstr "Obre la navegació" msgid "Open post options menu" msgstr "Obre el menú de les opcions de publicació" -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" msgstr "" @@ -5382,8 +5386,8 @@ msgstr "Informa del missatge" msgid "Report post" msgstr "Informa de la publicació" -#: src/screens/StarterPack/StarterPackScreen.tsx:476 -#: src/screens/StarterPack/StarterPackScreen.tsx:479 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" msgstr "" @@ -5429,7 +5433,7 @@ msgstr "Republica" msgid "Repost" msgstr "Republica" -#: src/screens/StarterPack/StarterPackScreen.tsx:418 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5566,7 +5570,7 @@ msgstr "Torna-ho a provar" #~ msgstr "Torna-ho a provar" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:622 +#: src/screens/StarterPack/StarterPackScreen.tsx:650 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Torna a la pàgina anterior" @@ -6110,8 +6114,8 @@ msgid "Sexually Suggestive" msgstr "Suggerent sexualment" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:312 -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:340 +#: src/screens/StarterPack/StarterPackScreen.tsx:493 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -6147,7 +6151,7 @@ msgstr "Comparteix el canal" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:469 +#: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" msgstr "" @@ -6165,7 +6169,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:305 +#: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" msgstr "" @@ -6405,8 +6409,8 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "Tanca la sessió de Bluesky de {0}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" msgstr "" @@ -6529,7 +6533,7 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" msgstr "" @@ -6723,8 +6727,8 @@ msgstr "Això conté els següents:" msgid "That handle is already taken." msgstr "Aquest identificador ja està agafat." -#: src/screens/StarterPack/StarterPackScreen.tsx:102 -#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6747,7 +6751,7 @@ msgstr "Les directrius de la comunitat han estat traslladades a <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "La política de drets d'autoria ha estat traslladada a <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6776,7 +6780,7 @@ msgstr "És possible que la publicació s'hagi esborrat." msgid "The Privacy Policy has been moved to <0/>" msgstr "La política de privacitat ha estat traslladada a <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6986,6 +6990,7 @@ msgstr "Aquest canal està rebent moltes visites actualment i està temporalment msgid "This feed is empty! You may need to follow more users or tune your language settings." 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/ProfileList.tsx:729 msgid "This feed is empty." @@ -7234,7 +7239,7 @@ msgstr "Deixa de silenciar la llista" msgid "Unable to contact your service. Please check your Internet connection." msgstr "No es pot contactar amb el teu servei. Comprova la teva connexió a internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:520 +#: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" msgstr "" @@ -7906,7 +7911,7 @@ msgstr "Sí" msgid "Yes, deactivate" msgstr "Sí, desactiva'l" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" msgstr "" @@ -8163,15 +8168,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po index 7ca4767d63..8ec1e27422 100644 --- a/src/locale/locales/de/messages.po +++ b/src/locale/locales/de/messages.po @@ -88,11 +88,11 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:350 +#: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" msgstr "" @@ -487,7 +487,7 @@ msgstr "" msgid "Advanced" msgstr "Erweitert" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "" @@ -569,7 +569,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:275 +#: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" msgstr "" @@ -681,7 +681,7 @@ msgstr "Erscheinungsbild" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -1736,9 +1736,9 @@ msgid "Debug panel" msgstr "Debug-Panel" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:456 -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:484 +#: src/screens/StarterPack/StarterPackScreen.tsx:563 +#: src/screens/StarterPack/StarterPackScreen.tsx:643 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1799,12 +1799,12 @@ msgstr "Mein Konto Löschen…" msgid "Delete post" msgstr "Beitrag löschen" -#: src/screens/StarterPack/StarterPackScreen.tsx:450 -#: src/screens/StarterPack/StarterPackScreen.tsx:606 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:501 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" msgstr "" @@ -1979,7 +1979,7 @@ msgstr "Erledigt{extraText}" #~ msgid "Double tap to sign in" #~ msgstr "Doppeltippen zum Anmelden" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" msgstr "" @@ -2040,7 +2040,7 @@ msgstr "z.B. Nutzer, die wiederholt mit Werbung antworten." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Jeder Code funktioniert einmal. Du erhältst regelmäßig neue Einladungscodes." -#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/StarterPackScreen.tsx:473 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 @@ -2105,7 +2105,7 @@ msgstr "Profil bearbeiten" #~ msgid "Edit Saved Feeds" #~ msgstr "Gespeicherte Feeds bearbeiten" -#: src/screens/StarterPack/StarterPackScreen.tsx:437 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" msgstr "" @@ -2415,7 +2415,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "Beitrag konnte nicht gelöscht werden, bitte versuche es erneut" -#: src/screens/StarterPack/StarterPackScreen.tsx:569 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" msgstr "" @@ -2624,8 +2624,8 @@ msgstr "" msgid "Follow Account" msgstr "Accounts folgen" -#: src/screens/StarterPack/StarterPackScreen.tsx:317 -#: src/screens/StarterPack/StarterPackScreen.tsx:324 +#: src/screens/StarterPack/StarterPackScreen.tsx:345 +#: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" msgstr "" @@ -2826,7 +2826,7 @@ msgstr "Gehe zurück" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:628 +#: src/screens/StarterPack/StarterPackScreen.tsx:656 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -3208,8 +3208,8 @@ msgstr "" msgid "Jobs" msgstr "Jobs" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" msgstr "" @@ -3854,6 +3854,10 @@ msgstr "" msgid "Nature" msgstr "Natur" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 +msgid "Navigate to starter pack" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 #: src/view/com/modals/ChangePassword.tsx:169 @@ -4294,7 +4298,7 @@ msgstr "Navigation öffnen" msgid "Open post options menu" msgstr "Beitragsoptionsmenü öffnen" -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" msgstr "" @@ -5153,8 +5157,8 @@ msgstr "" msgid "Report post" msgstr "Beitrag melden" -#: src/screens/StarterPack/StarterPackScreen.tsx:476 -#: src/screens/StarterPack/StarterPackScreen.tsx:479 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" msgstr "" @@ -5200,7 +5204,7 @@ msgstr "Repost" msgid "Repost" msgstr "Erneut veröffentlichen" -#: src/screens/StarterPack/StarterPackScreen.tsx:418 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5325,7 +5329,7 @@ msgstr "Wiederholen" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:622 +#: src/screens/StarterPack/StarterPackScreen.tsx:650 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Zurück zur vorherigen Seite" @@ -5833,8 +5837,8 @@ msgid "Sexually Suggestive" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:312 -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:340 +#: src/screens/StarterPack/StarterPackScreen.tsx:493 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5870,7 +5874,7 @@ msgstr "Feed teilen" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:469 +#: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" msgstr "" @@ -5888,7 +5892,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:305 +#: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" msgstr "" @@ -6128,8 +6132,8 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "Meldet {0} von Bluesky ab" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" msgstr "" @@ -6236,7 +6240,7 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" msgstr "" @@ -6422,8 +6426,8 @@ msgstr "" msgid "That handle is already taken." msgstr "Dieser Handle ist bereits besetzt." -#: src/screens/StarterPack/StarterPackScreen.tsx:102 -#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6446,7 +6450,7 @@ msgstr "Die Community-Richtlinien wurden nach <0/> verschoben" msgid "The Copyright Policy has been moved to <0/>" msgstr "Die Copyright-Richtlinie wurde nach <0/> verschoben" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6475,7 +6479,7 @@ msgstr "Möglicherweise wurde der Post gelöscht." msgid "The Privacy Policy has been moved to <0/>" msgstr "Die Datenschutzerklärung wurde nach <0/> verschoben" -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6674,6 +6678,7 @@ msgstr "Dieser Feed wird derzeit stark frequentiert und ist vorübergehend nicht msgid "This feed is empty! You may need to follow more users or tune your language settings." 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/ProfileList.tsx:729 msgid "This feed is empty." @@ -6910,7 +6915,7 @@ msgstr "Stummschaltung von Liste aufheben" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Es ist uns nicht gelungen, deinen Dienst zu kontaktieren. Bitte überprüfe deine Internetverbindung." -#: src/screens/StarterPack/StarterPackScreen.tsx:520 +#: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" msgstr "" @@ -7563,7 +7568,7 @@ msgstr "Ja" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" msgstr "" @@ -7816,15 +7821,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po index ee061331f8..1e8573999f 100644 --- a/src/locale/locales/en/messages.po +++ b/src/locale/locales/en/messages.po @@ -88,11 +88,11 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:350 +#: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" msgstr "" @@ -466,7 +466,7 @@ msgstr "" msgid "Advanced" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "" @@ -548,7 +548,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:275 +#: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" msgstr "" @@ -647,7 +647,7 @@ msgstr "" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -1647,9 +1647,9 @@ msgid "Debug panel" msgstr "" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:456 -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:484 +#: src/screens/StarterPack/StarterPackScreen.tsx:563 +#: src/screens/StarterPack/StarterPackScreen.tsx:643 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1710,12 +1710,12 @@ msgstr "" msgid "Delete post" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:450 -#: src/screens/StarterPack/StarterPackScreen.tsx:606 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:501 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" msgstr "" @@ -1882,7 +1882,7 @@ msgstr "" msgid "Done{extraText}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" msgstr "" @@ -1939,7 +1939,7 @@ msgstr "" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/StarterPackScreen.tsx:473 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 @@ -2004,7 +2004,7 @@ msgstr "" #~ msgid "Edit Saved Feeds" #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:437 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" msgstr "" @@ -2310,7 +2310,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:569 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" msgstr "" @@ -2519,8 +2519,8 @@ msgstr "" msgid "Follow Account" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:317 -#: src/screens/StarterPack/StarterPackScreen.tsx:324 +#: src/screens/StarterPack/StarterPackScreen.tsx:345 +#: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" msgstr "" @@ -2713,7 +2713,7 @@ msgstr "" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:628 +#: src/screens/StarterPack/StarterPackScreen.tsx:656 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -3078,8 +3078,8 @@ msgstr "" msgid "Jobs" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" msgstr "" @@ -3686,6 +3686,10 @@ msgstr "" msgid "Nature" msgstr "" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 +msgid "Navigate to starter pack" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 #: src/view/com/modals/ChangePassword.tsx:169 @@ -4105,7 +4109,7 @@ msgstr "" msgid "Open post options menu" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" msgstr "" @@ -4915,8 +4919,8 @@ msgstr "" msgid "Report post" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:476 -#: src/screens/StarterPack/StarterPackScreen.tsx:479 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" msgstr "" @@ -4962,7 +4966,7 @@ msgstr "" msgid "Repost" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:418 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5079,7 +5083,7 @@ msgstr "" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:622 +#: src/screens/StarterPack/StarterPackScreen.tsx:650 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "" @@ -5531,8 +5535,8 @@ msgid "Sexually Suggestive" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:312 -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:340 +#: src/screens/StarterPack/StarterPackScreen.tsx:493 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5568,7 +5572,7 @@ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:469 +#: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" msgstr "" @@ -5586,7 +5590,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:305 +#: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" msgstr "" @@ -5804,8 +5808,8 @@ msgstr "" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" msgstr "" @@ -5908,7 +5912,7 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" msgstr "" @@ -6090,8 +6094,8 @@ msgstr "" msgid "That handle is already taken." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:102 -#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6114,7 +6118,7 @@ msgstr "" msgid "The Copyright Policy has been moved to <0/>" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6143,7 +6147,7 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6338,6 +6342,7 @@ msgstr "" msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "" +#: src/components/StarterPack/Main/PostsList.tsx:36 #: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." @@ -6562,7 +6567,7 @@ msgstr "" msgid "Unable to contact your service. Please check your Internet connection." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:520 +#: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" msgstr "" @@ -7187,7 +7192,7 @@ msgstr "" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" msgstr "" @@ -7424,15 +7429,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/es/messages.po b/src/locale/locales/es/messages.po index 08c43aa7e4..a566231f9e 100644 --- a/src/locale/locales/es/messages.po +++ b/src/locale/locales/es/messages.po @@ -88,11 +88,11 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:350 +#: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" msgstr "" @@ -442,7 +442,7 @@ msgstr "El contenido adulto esta desactivado." msgid "Advanced" msgstr "Avanzado" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "" @@ -524,7 +524,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "Ocurrió un error al intentar eliminar el mensaje. Intenta de nuevo." -#: src/screens/StarterPack/StarterPackScreen.tsx:275 +#: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" msgstr "" @@ -623,7 +623,7 @@ msgstr "Aparencia" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -1579,9 +1579,9 @@ msgid "Debug panel" msgstr "" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:456 -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:484 +#: src/screens/StarterPack/StarterPackScreen.tsx:563 +#: src/screens/StarterPack/StarterPackScreen.tsx:643 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1642,12 +1642,12 @@ msgstr "" msgid "Delete post" msgstr "Borrar una post" -#: src/screens/StarterPack/StarterPackScreen.tsx:450 -#: src/screens/StarterPack/StarterPackScreen.tsx:606 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:501 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" msgstr "" @@ -1806,7 +1806,7 @@ msgstr "" msgid "Done{extraText}" msgstr "Listo{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" msgstr "" @@ -1863,7 +1863,7 @@ msgstr "p. ej. Usuarios que constantemente responden con publicidad." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cada código funciona una vez. Recibirás más códigos de invitación periódicamente." -#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/StarterPackScreen.tsx:473 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 @@ -1928,7 +1928,7 @@ msgstr "Editar el perfil" #~ msgid "Edit Saved Feeds" #~ msgstr "Editar mis noticias guardadas" -#: src/screens/StarterPack/StarterPackScreen.tsx:437 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" msgstr "" @@ -2234,7 +2234,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:569 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" msgstr "" @@ -2422,8 +2422,8 @@ msgstr "" msgid "Follow Account" msgstr "Seguir cuenta" -#: src/screens/StarterPack/StarterPackScreen.tsx:317 -#: src/screens/StarterPack/StarterPackScreen.tsx:324 +#: src/screens/StarterPack/StarterPackScreen.tsx:345 +#: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" msgstr "" @@ -2612,7 +2612,7 @@ msgstr "Volver" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:628 +#: src/screens/StarterPack/StarterPackScreen.tsx:656 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -2972,8 +2972,8 @@ msgstr "" msgid "Jobs" msgstr "Tareas" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" msgstr "" @@ -3580,6 +3580,10 @@ msgstr "" msgid "Nature" msgstr "" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 +msgid "Navigate to starter pack" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 #: src/view/com/modals/ChangePassword.tsx:169 @@ -3989,7 +3993,7 @@ msgstr "Abrir navegación" msgid "Open post options menu" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" msgstr "" @@ -4785,8 +4789,8 @@ msgstr "" msgid "Report post" msgstr "Informe de la post" -#: src/screens/StarterPack/StarterPackScreen.tsx:476 -#: src/screens/StarterPack/StarterPackScreen.tsx:479 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" msgstr "" @@ -4832,7 +4836,7 @@ msgstr "" msgid "Repost" msgstr "Volver a publicar" -#: src/screens/StarterPack/StarterPackScreen.tsx:418 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4945,7 +4949,7 @@ msgstr "Intentar de nuevo" #~ msgstr "Intentar de nuevo" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:622 +#: src/screens/StarterPack/StarterPackScreen.tsx:650 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "" @@ -5393,8 +5397,8 @@ msgid "Sexually Suggestive" msgstr "Sexualmente sugestivo" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:312 -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:340 +#: src/screens/StarterPack/StarterPackScreen.tsx:493 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5430,7 +5434,7 @@ msgstr "Compartir feed" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:469 +#: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" msgstr "" @@ -5448,7 +5452,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:305 +#: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" msgstr "" @@ -5666,8 +5670,8 @@ msgstr "Sesión iniciada como @{0}" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" msgstr "" @@ -5770,7 +5774,7 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" msgstr "" @@ -5948,8 +5952,8 @@ msgstr "" msgid "That handle is already taken." msgstr "Este nombre de usuario ya está en uso." -#: src/screens/StarterPack/StarterPackScreen.tsx:102 -#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -5972,7 +5976,7 @@ msgstr "Las Directrices Comunitarias se ha trasladado a <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "La Política de derechos de autor se han trasladado a <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6001,7 +6005,7 @@ msgstr "Es posible que se haya borrado el post." msgid "The Privacy Policy has been moved to <0/>" msgstr "La Política de privacidad se ha trasladado a <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6196,6 +6200,7 @@ msgstr "Este feed está recibiendo mucho tráfico y no está disponible temporal msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "" +#: src/components/StarterPack/Main/PostsList.tsx:36 #: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." @@ -6420,7 +6425,7 @@ msgstr "Demutear lista" msgid "Unable to contact your service. Please check your Internet connection." msgstr "No se puede contactar con tu proveedor. Comprueba tu conexión a Internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:520 +#: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" msgstr "" @@ -7037,7 +7042,7 @@ msgstr "Sí" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" msgstr "" @@ -7274,15 +7279,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/fi/messages.po b/src/locale/locales/fi/messages.po index 401d3eca34..43c3b8bd2f 100644 --- a/src/locale/locales/fi/messages.po +++ b/src/locale/locales/fi/messages.po @@ -88,11 +88,11 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:350 +#: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" msgstr "" @@ -458,7 +458,7 @@ msgstr "Aikuissisältö on estetty" msgid "Advanced" msgstr "Edistyneemmät" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "" @@ -540,7 +540,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:275 +#: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" msgstr "" @@ -639,7 +639,7 @@ msgstr "Ulkonäkö" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -1631,9 +1631,9 @@ msgid "Debug panel" msgstr "Vianetsintäpaneeli" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:456 -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:484 +#: src/screens/StarterPack/StarterPackScreen.tsx:563 +#: src/screens/StarterPack/StarterPackScreen.tsx:643 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1694,12 +1694,12 @@ msgstr "Poista käyttäjätilini…" msgid "Delete post" msgstr "Poista viesti" -#: src/screens/StarterPack/StarterPackScreen.tsx:450 -#: src/screens/StarterPack/StarterPackScreen.tsx:606 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:501 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" msgstr "" @@ -1858,7 +1858,7 @@ msgstr "Valmis" msgid "Done{extraText}" msgstr "Valmis{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" msgstr "" @@ -1915,7 +1915,7 @@ msgstr "esim. Käyttäjät, jotka vastaavat toistuvasti mainoksilla." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Jokainen koodi toimii vain kerran. Saat lisää kutsukoodeja säännöllisin väliajoin." -#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/StarterPackScreen.tsx:473 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 @@ -1980,7 +1980,7 @@ msgstr "Muokkaa profiilia" #~ msgid "Edit Saved Feeds" #~ msgstr "Muokkaa tallennettuja syötteitä" -#: src/screens/StarterPack/StarterPackScreen.tsx:437 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" msgstr "" @@ -2286,7 +2286,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "Viestin poistaminen epäonnistui, yritä uudelleen" -#: src/screens/StarterPack/StarterPackScreen.tsx:569 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" msgstr "" @@ -2487,8 +2487,8 @@ msgstr "" msgid "Follow Account" msgstr "Seuraa käyttäjää" -#: src/screens/StarterPack/StarterPackScreen.tsx:317 -#: src/screens/StarterPack/StarterPackScreen.tsx:324 +#: src/screens/StarterPack/StarterPackScreen.tsx:345 +#: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" msgstr "" @@ -2681,7 +2681,7 @@ msgstr "Palaa takaisin" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:628 +#: src/screens/StarterPack/StarterPackScreen.tsx:656 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -3046,8 +3046,8 @@ msgstr "" msgid "Jobs" msgstr "Työpaikat" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" msgstr "" @@ -3654,6 +3654,10 @@ msgstr "Nimi tai kuvaus rikkoo yhteisön sääntöjä" msgid "Nature" msgstr "Luonto" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 +msgid "Navigate to starter pack" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 #: src/view/com/modals/ChangePassword.tsx:169 @@ -4073,7 +4077,7 @@ msgstr "Avaa navigointi" msgid "Open post options menu" msgstr "Avaa viestin asetusvalikko" -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" msgstr "" @@ -4877,8 +4881,8 @@ msgstr "" msgid "Report post" msgstr "Ilmianna viesti" -#: src/screens/StarterPack/StarterPackScreen.tsx:476 -#: src/screens/StarterPack/StarterPackScreen.tsx:479 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" msgstr "" @@ -4924,7 +4928,7 @@ msgstr "Uudelleenjulkaise" msgid "Repost" msgstr "Uudelleenjulkaise" -#: src/screens/StarterPack/StarterPackScreen.tsx:418 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5037,7 +5041,7 @@ msgstr "Yritä uudelleen" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:622 +#: src/screens/StarterPack/StarterPackScreen.tsx:650 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Palaa edelliselle sivulle" @@ -5485,8 +5489,8 @@ msgid "Sexually Suggestive" msgstr "Seksuaalisesti vihjaileva" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:312 -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:340 +#: src/screens/StarterPack/StarterPackScreen.tsx:493 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5522,7 +5526,7 @@ msgstr "Jaa syöte" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:469 +#: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" msgstr "" @@ -5540,7 +5544,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:305 +#: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" msgstr "" @@ -5758,8 +5762,8 @@ msgstr "Kirjautunut sisään käyttäjätunnuksella @{0}" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" msgstr "" @@ -5862,7 +5866,7 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" msgstr "" @@ -6044,8 +6048,8 @@ msgstr "Se sisältää seuraavaa:" msgid "That handle is already taken." msgstr "Tuo käyttätunnus on jo käytössä." -#: src/screens/StarterPack/StarterPackScreen.tsx:102 -#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6068,7 +6072,7 @@ msgstr "Yhteisöohjeet on siirretty kohtaan <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "Tekijänoikeuskäytäntö on siirretty kohtaan <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6097,7 +6101,7 @@ msgstr "Viesti saattaa olla poistettu." msgid "The Privacy Policy has been moved to <0/>" msgstr "Tietosuojakäytäntö on siirretty kohtaan <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6292,6 +6296,7 @@ msgstr "Tämä syöte saa tällä hetkellä paljon liikennettä ja on tilapäise msgid "This feed is empty! You may need to follow more users or tune your language settings." 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/ProfileList.tsx:729 msgid "This feed is empty." @@ -6516,7 +6521,7 @@ msgstr "Poista listan hiljennys" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Yhteys palveluusi ei onnistu. Tarkista internet-yhteytesi." -#: src/screens/StarterPack/StarterPackScreen.tsx:520 +#: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" msgstr "" @@ -7141,7 +7146,7 @@ msgstr "Kyllä" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" msgstr "" @@ -7378,15 +7383,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index c2d20a3996..a43130f601 100644 --- a/src/locale/locales/fr/messages.po +++ b/src/locale/locales/fr/messages.po @@ -76,11 +76,11 @@ 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:218 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" msgstr "{0} personnes se sont inscrites cette semaine" -#: src/screens/StarterPack/StarterPackScreen.tsx:350 +#: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" msgstr "{0} personnes ont utilisé ce kit de démarrage !" @@ -401,7 +401,7 @@ msgstr "Le contenu pour adultes est désactivé." msgid "Advanced" msgstr "Avancé" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "Tous les comptes ont été suivis !" @@ -474,7 +474,7 @@ msgstr "Une erreur s’est produite lors de la génération de votre kit de dém msgid "An error occurred while saving the QR code!" msgstr "Une erreur s’est produite lors de l’enregistrement du code QR !" -#: src/screens/StarterPack/StarterPackScreen.tsx:275 +#: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" msgstr "Une erreur s’est produite en essayant de suivre tous les comptes" @@ -569,7 +569,7 @@ msgstr "Affichage" msgid "Apply default recommended feeds" msgstr "Utiliser les fils d’actu recommandés par défaut" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" msgstr "Êtes-vous sûr de vouloir supprimer ce kit de démarrage ?" @@ -1477,9 +1477,9 @@ msgid "Debug panel" msgstr "Panneau de débug" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:456 -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:484 +#: src/screens/StarterPack/StarterPackScreen.tsx:563 +#: src/screens/StarterPack/StarterPackScreen.tsx:643 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1536,12 +1536,12 @@ msgstr "Supprimer mon compte…" msgid "Delete post" msgstr "Supprimer le post" -#: src/screens/StarterPack/StarterPackScreen.tsx:450 -#: src/screens/StarterPack/StarterPackScreen.tsx:606 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" msgstr "Supprimer le kit de démarrage" -#: src/screens/StarterPack/StarterPackScreen.tsx:501 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" msgstr "Supprimer le kit de démarrage ?" @@ -1700,7 +1700,7 @@ msgstr "Terminer" msgid "Done{extraText}" msgstr "Terminé{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" msgstr "Télécharger Bluesky" @@ -1753,7 +1753,7 @@ msgstr "ex. Les comptes qui répondent toujours avec des pubs." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Chaque code ne fonctionne qu’une seule fois. Vous recevrez régulièrement d’autres codes d’invitation." -#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/StarterPackScreen.tsx:473 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 @@ -1813,7 +1813,7 @@ msgstr "Modifier le profil" msgid "Edit Profile" msgstr "Modifier le profil" -#: src/screens/StarterPack/StarterPackScreen.tsx:437 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" msgstr "Modifier le kit de démarrage" @@ -2106,7 +2106,7 @@ msgstr "Échec de la suppression du message" msgid "Failed to delete post, please try again" msgstr "Échec de la suppression du post, veuillez réessayer" -#: src/screens/StarterPack/StarterPackScreen.tsx:569 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" msgstr "Échec de la suppression du kit de démarrage" @@ -2278,8 +2278,8 @@ msgstr "Suivre {name}" msgid "Follow Account" msgstr "Suivre le compte" -#: src/screens/StarterPack/StarterPackScreen.tsx:317 -#: src/screens/StarterPack/StarterPackScreen.tsx:324 +#: src/screens/StarterPack/StarterPackScreen.tsx:345 +#: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" msgstr "Suivre tous" @@ -2456,7 +2456,7 @@ msgstr "Retour" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:628 +#: src/screens/StarterPack/StarterPackScreen.tsx:656 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -2800,8 +2800,8 @@ msgstr "Il n’y a que vous pour l’instant ! Ajoutez d’autres personnes à msgid "Jobs" msgstr "Emplois" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" msgstr "Rejoignez Bluesky" @@ -3369,6 +3369,10 @@ msgstr "Nom ou description qui viole les normes communautaires" msgid "Nature" msgstr "Nature" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 +msgid "Navigate to starter pack" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 #: src/view/com/modals/ChangePassword.tsx:169 @@ -3762,7 +3766,7 @@ msgstr "Navigation ouverte" msgid "Open post options menu" msgstr "Ouvrir le menu d’options du post" -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" msgstr "Ouvrir le menu du kit de démarrage" @@ -4516,8 +4520,8 @@ msgstr "Signaler le message" msgid "Report post" msgstr "Signaler le post" -#: src/screens/StarterPack/StarterPackScreen.tsx:476 -#: src/screens/StarterPack/StarterPackScreen.tsx:479 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" msgstr "Signaler le kit de démarrage" @@ -4563,7 +4567,7 @@ msgstr "Republier" msgid "Repost" msgstr "Republier" -#: src/screens/StarterPack/StarterPackScreen.tsx:418 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4672,7 +4676,7 @@ msgid "Retry" msgstr "Réessayer" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:622 +#: src/screens/StarterPack/StarterPackScreen.tsx:650 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Retourne à la page précédente" @@ -5087,8 +5091,8 @@ msgid "Sexually Suggestive" msgstr "Sexuellement suggestif" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:312 -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:340 +#: src/screens/StarterPack/StarterPackScreen.tsx:493 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5124,7 +5128,7 @@ msgstr "Partager le fil d’actu" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:469 +#: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" msgstr "Partager le lien" @@ -5142,7 +5146,7 @@ msgstr "Dialogue pour le partage d’un lien" msgid "Share QR code" msgstr "Partager le code QR" -#: src/screens/StarterPack/StarterPackScreen.tsx:305 +#: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" msgstr "Partagez ce kit de démarrage" @@ -5324,8 +5328,8 @@ msgstr "Connecté en tant que @{0}" msgid "signed up with your starter pack" msgstr "s’est inscrit·e avec votre kit de démarrage" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" msgstr "S’inscrire sans kit de démarrage" @@ -5420,7 +5424,7 @@ msgstr "Kit de démarrage" msgid "Starter pack by {0}" msgstr "Kit de démarrage par {0}" -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" msgstr "Le kit de démarrage n’est pas valide" @@ -5585,8 +5589,8 @@ msgstr "Qui contient les éléments suivants :" msgid "That handle is already taken." msgstr "Ce pseudo est déjà occupé." -#: src/screens/StarterPack/StarterPackScreen.tsx:102 -#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -5605,7 +5609,7 @@ msgstr "Les lignes directrices communautaires ont été déplacées vers <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "Notre politique de droits d’auteur a été déplacée vers <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 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." @@ -5634,7 +5638,7 @@ msgstr "Ce post a peut-être été supprimé." msgid "The Privacy Policy has been moved to <0/>" msgstr "Notre politique de confidentialité a été déplacée vers <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Le kit de démarrage que vous essayez de consulter n’est pas valide. Vous pouvez supprimer ce kit de démarrage à la place." @@ -5803,6 +5807,7 @@ msgstr "Ce fil d’actu reçoit actuellement un trafic important, il est tempora msgid "This feed is empty! You may need to follow more users or tune your language settings." 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/ProfileList.tsx:729 msgid "This feed is empty." @@ -6015,7 +6020,7 @@ msgstr "Réafficher cette liste" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Impossible de contacter votre service. Veuillez vérifier votre connexion Internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:520 +#: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" msgstr "Impossible de supprimer" @@ -6608,7 +6613,7 @@ msgstr "Oui" msgid "Yes, deactivate" msgstr "Oui, désactiver" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" msgstr "Oui, supprimer ce kit de démarrage" @@ -6829,15 +6834,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:229 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" msgstr "Vous suivrez ces personnes et {0} autres" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" msgstr "Vous suivrez ces personnes immédiatement" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" msgstr "Vous resterez informé grâce à ces fils d’actu" diff --git a/src/locale/locales/ga/messages.po b/src/locale/locales/ga/messages.po index ae275e8992..35a0ac4bc1 100644 --- a/src/locale/locales/ga/messages.po +++ b/src/locale/locales/ga/messages.po @@ -89,11 +89,11 @@ 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:218 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:350 +#: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" msgstr "" @@ -468,7 +468,7 @@ msgstr "Tá ábhar do dhaoine fásta curtha ar ceal." msgid "Advanced" msgstr "Ardleibhéal" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "" @@ -550,7 +550,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "Tharla earráid agus an teachtaireacht á scriosadh. Bain triail eile as." -#: src/screens/StarterPack/StarterPackScreen.tsx:275 +#: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" msgstr "" @@ -649,7 +649,7 @@ msgstr "Cuma" msgid "Apply default recommended feeds" msgstr "Bain úsáid as fothaí réamhshocraithe a moladh" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -1649,9 +1649,9 @@ msgid "Debug panel" msgstr "Painéal dífhabhtaithe" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:456 -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:484 +#: src/screens/StarterPack/StarterPackScreen.tsx:563 +#: src/screens/StarterPack/StarterPackScreen.tsx:643 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1712,12 +1712,12 @@ msgstr "Scrios mo chuntas…" msgid "Delete post" msgstr "Scrios an phostáil" -#: src/screens/StarterPack/StarterPackScreen.tsx:450 -#: src/screens/StarterPack/StarterPackScreen.tsx:606 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:501 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" msgstr "" @@ -1884,7 +1884,7 @@ msgstr "Déanta" msgid "Done{extraText}" msgstr "Déanta{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" msgstr "" @@ -1941,7 +1941,7 @@ msgstr "m.sh. Úsáideoirí a fhreagraíonn le fógraí" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Oibríonn gach cód uair amháin. Gheobhaidh tú tuilleadh cód go tráthrialta." -#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/StarterPackScreen.tsx:473 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 @@ -2005,7 +2005,7 @@ msgstr "Athraigh an Phróifíl" #~ msgid "Edit Saved Feeds" #~ msgstr "Athraigh na fothaí sábháilte" -#: src/screens/StarterPack/StarterPackScreen.tsx:437 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" msgstr "" @@ -2311,7 +2311,7 @@ msgstr "Teip ar theachtaireacht a scriosadh" msgid "Failed to delete post, please try again" msgstr "Teip ar scriosadh na postála. Déan iarracht eile." -#: src/screens/StarterPack/StarterPackScreen.tsx:569 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" msgstr "" @@ -2521,8 +2521,8 @@ msgstr "Lean {name}" msgid "Follow Account" msgstr "Lean an cuntas seo" -#: src/screens/StarterPack/StarterPackScreen.tsx:317 -#: src/screens/StarterPack/StarterPackScreen.tsx:324 +#: src/screens/StarterPack/StarterPackScreen.tsx:345 +#: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" msgstr "" @@ -2715,7 +2715,7 @@ msgstr "Ar ais" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:628 +#: src/screens/StarterPack/StarterPackScreen.tsx:656 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -3079,8 +3079,8 @@ msgstr "" msgid "Jobs" msgstr "Jabanna" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" msgstr "" @@ -3687,6 +3687,10 @@ msgstr "Sáraíonn an tAinm nó an Cur Síos Caighdeáin an Phobail" msgid "Nature" msgstr "Nádúr" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 +msgid "Navigate to starter pack" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 #: src/view/com/modals/ChangePassword.tsx:169 @@ -4106,7 +4110,7 @@ msgstr "Oscail an nascleanúint" msgid "Open post options menu" msgstr "Oscail roghchlár na bpostálacha" -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" msgstr "" @@ -4916,8 +4920,8 @@ msgstr "Tuairiscigh an teachtaireacht seo" msgid "Report post" msgstr "Déan gearán faoi phostáil" -#: src/screens/StarterPack/StarterPackScreen.tsx:476 -#: src/screens/StarterPack/StarterPackScreen.tsx:479 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" msgstr "" @@ -4963,7 +4967,7 @@ msgstr "Athphostáil" msgid "Repost" msgstr "Athphostáil" -#: src/screens/StarterPack/StarterPackScreen.tsx:418 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5081,7 +5085,7 @@ msgstr "Bain triail eile as" #~ msgstr "Bain triail eile as" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:622 +#: src/screens/StarterPack/StarterPackScreen.tsx:650 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Fill ar an leathanach roimhe seo" @@ -5532,8 +5536,8 @@ msgid "Sexually Suggestive" msgstr "Graosta" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:312 -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:340 +#: src/screens/StarterPack/StarterPackScreen.tsx:493 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5569,7 +5573,7 @@ msgstr "Comhroinn an fotha" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:469 +#: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" msgstr "" @@ -5587,7 +5591,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:305 +#: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" msgstr "" @@ -5805,8 +5809,8 @@ msgstr "Logáilte isteach mar @{0}" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" msgstr "" @@ -5909,7 +5913,7 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" msgstr "" @@ -6090,8 +6094,8 @@ msgstr "Ina bhfuil an méid seo a leanas:" msgid "That handle is already taken." msgstr "Tá an leasainm sin in úsáid cheana féin." -#: src/screens/StarterPack/StarterPackScreen.tsx:102 -#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6114,7 +6118,7 @@ msgstr "Bogadh Treoirlínte an Phobail go dtí <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "Bogadh an Polasaí Cóipchirt go dtí <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6143,7 +6147,7 @@ msgstr "Is féidir gur scriosadh an phostáil seo." msgid "The Privacy Policy has been moved to <0/>" msgstr "Bogadh Polasaí na Príobháideachta go dtí <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6338,6 +6342,7 @@ msgstr "Tá ráchairt an-mhór ar an bhfotha seo faoi láthair. Níl sé ar fái msgid "This feed is empty! You may need to follow more users or tune your language settings." 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/ProfileList.tsx:729 msgid "This feed is empty." @@ -6563,7 +6568,7 @@ msgstr "Ná coinnigh an liosta sin i bhfolach níos mó" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Ní féidir teagmháil a dhéanamh le do sheirbhís. Seiceáil do cheangal leis an idirlíon, le do thoil." -#: src/screens/StarterPack/StarterPackScreen.tsx:520 +#: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" msgstr "" @@ -7190,7 +7195,7 @@ msgstr "Tá" msgid "Yes, deactivate" msgstr "Tá, díghníomhaigh" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" msgstr "" @@ -7428,15 +7433,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po index ce3ab3c98d..64bd15602e 100644 --- a/src/locale/locales/hi/messages.po +++ b/src/locale/locales/hi/messages.po @@ -92,11 +92,11 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:350 +#: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" msgstr "" @@ -509,7 +509,7 @@ msgstr "" msgid "Advanced" msgstr "विकसित" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "" @@ -591,7 +591,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:275 +#: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" msgstr "" @@ -707,7 +707,7 @@ msgstr "दिखावट" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -1794,9 +1794,9 @@ msgid "Debug panel" msgstr "" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:456 -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:484 +#: src/screens/StarterPack/StarterPackScreen.tsx:563 +#: src/screens/StarterPack/StarterPackScreen.tsx:643 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1861,12 +1861,12 @@ msgstr "" msgid "Delete post" msgstr "पोस्ट को हटाएं" -#: src/screens/StarterPack/StarterPackScreen.tsx:450 -#: src/screens/StarterPack/StarterPackScreen.tsx:606 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:501 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" msgstr "" @@ -2049,7 +2049,7 @@ msgstr "खत्म {extraText}" #~ msgid "Double tap to sign in" #~ msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" msgstr "" @@ -2110,7 +2110,7 @@ msgstr "" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "प्रत्येक कोड एक बार काम करता है। आपको समय-समय पर अधिक आमंत्रण कोड प्राप्त होंगे।" -#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/StarterPackScreen.tsx:473 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 @@ -2175,7 +2175,7 @@ msgstr "मेरी प्रोफ़ाइल संपादित करे #~ msgid "Edit Saved Feeds" #~ msgstr "एडिट सेव्ड फीड" -#: src/screens/StarterPack/StarterPackScreen.tsx:437 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" msgstr "" @@ -2497,7 +2497,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:569 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" msgstr "" @@ -2722,8 +2722,8 @@ msgstr "" msgid "Follow Account" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:317 -#: src/screens/StarterPack/StarterPackScreen.tsx:324 +#: src/screens/StarterPack/StarterPackScreen.tsx:345 +#: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" msgstr "" @@ -2924,7 +2924,7 @@ msgstr "वापस जाओ" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:628 +#: src/screens/StarterPack/StarterPackScreen.tsx:656 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -3337,8 +3337,8 @@ msgstr "" msgid "Jobs" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" msgstr "" @@ -4008,6 +4008,10 @@ msgstr "" msgid "Nature" msgstr "" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 +msgid "Navigate to starter pack" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 #: src/view/com/modals/ChangePassword.tsx:169 @@ -4448,7 +4452,7 @@ msgstr "ओपन नेविगेशन" msgid "Open post options menu" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" msgstr "" @@ -5335,8 +5339,8 @@ msgstr "" msgid "Report post" msgstr "रिपोर्ट पोस्ट" -#: src/screens/StarterPack/StarterPackScreen.tsx:476 -#: src/screens/StarterPack/StarterPackScreen.tsx:479 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" msgstr "" @@ -5382,7 +5386,7 @@ msgstr "" msgid "Repost" msgstr "पुन: पोस्ट" -#: src/screens/StarterPack/StarterPackScreen.tsx:418 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5511,7 +5515,7 @@ msgstr "फिर से कोशिश करो" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:622 +#: src/screens/StarterPack/StarterPackScreen.tsx:650 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "" @@ -6055,8 +6059,8 @@ msgid "Sexually Suggestive" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:312 -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:340 +#: src/screens/StarterPack/StarterPackScreen.tsx:493 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -6092,7 +6096,7 @@ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:469 +#: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" msgstr "" @@ -6110,7 +6114,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:305 +#: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" msgstr "" @@ -6350,8 +6354,8 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" msgstr "" @@ -6474,7 +6478,7 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" msgstr "" @@ -6668,8 +6672,8 @@ msgstr "" msgid "That handle is already taken." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:102 -#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6692,7 +6696,7 @@ msgstr "सामुदायिक दिशानिर्देशों क msgid "The Copyright Policy has been moved to <0/>" msgstr "कॉपीराइट नीति को <0/> पर स्थानांतरित कर दिया गया है" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6721,7 +6725,7 @@ msgstr "हो सकता है कि यह पोस्ट हटा द msgid "The Privacy Policy has been moved to <0/>" msgstr "गोपनीयता नीति को <0/> पर स्थानांतरित किया गया है" -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6924,6 +6928,7 @@ msgstr "" msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "" +#: src/components/StarterPack/Main/PostsList.tsx:36 #: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." @@ -7164,7 +7169,7 @@ msgstr "" msgid "Unable to contact your service. Please check your Internet connection." msgstr "आपकी सेवा से संपर्क करने में असमर्थ। कृपया अपने इंटरनेट कनेक्शन की जांच करें।।" -#: src/screens/StarterPack/StarterPackScreen.tsx:520 +#: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" msgstr "" @@ -7837,7 +7842,7 @@ msgstr "हाँ" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" msgstr "" @@ -8098,15 +8103,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po index f4accd066e..42d374de88 100644 --- a/src/locale/locales/id/messages.po +++ b/src/locale/locales/id/messages.po @@ -93,11 +93,11 @@ 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:218 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:350 +#: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" msgstr "" @@ -471,7 +471,7 @@ msgstr "Konten dewasa dinonaktifkan." msgid "Advanced" msgstr "Lanjutan" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "" @@ -553,7 +553,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:275 +#: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" msgstr "" @@ -652,7 +652,7 @@ msgstr "Tampilan" msgid "Apply default recommended feeds" msgstr "Tambahkan feed yang direkomendasikan secara default" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -1652,9 +1652,9 @@ msgid "Debug panel" msgstr "Panel awakutu" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:456 -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:484 +#: src/screens/StarterPack/StarterPackScreen.tsx:563 +#: src/screens/StarterPack/StarterPackScreen.tsx:643 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1715,12 +1715,12 @@ msgstr "Hapus Akun Saya…" msgid "Delete post" msgstr "Hapus postingan" -#: src/screens/StarterPack/StarterPackScreen.tsx:450 -#: src/screens/StarterPack/StarterPackScreen.tsx:606 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:501 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" msgstr "" @@ -1887,7 +1887,7 @@ msgstr "Selesai" msgid "Done{extraText}" msgstr "Selesai{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" msgstr "" @@ -1944,7 +1944,7 @@ msgstr "contoh: Pengguna yang membalas dengan iklan secara berulang." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Tiap kode hanya berlaku sekali. Anda akan mendapatkan tambahan kode undangan secara berkala." -#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/StarterPackScreen.tsx:473 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 @@ -2009,7 +2009,7 @@ msgstr "Edit Profil" #~ msgid "Edit Saved Feeds" #~ msgstr "Edit Feed Tersimpan" -#: src/screens/StarterPack/StarterPackScreen.tsx:437 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" msgstr "" @@ -2315,7 +2315,7 @@ msgstr "Gagal menghapus pesan" msgid "Failed to delete post, please try again" msgstr "Gagal menghapus postingan, silakan coba lagi" -#: src/screens/StarterPack/StarterPackScreen.tsx:569 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" msgstr "" @@ -2524,8 +2524,8 @@ msgstr "" msgid "Follow Account" msgstr "Ikuti Akun" -#: src/screens/StarterPack/StarterPackScreen.tsx:317 -#: src/screens/StarterPack/StarterPackScreen.tsx:324 +#: src/screens/StarterPack/StarterPackScreen.tsx:345 +#: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" msgstr "" @@ -2718,7 +2718,7 @@ msgstr "Kembali" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:628 +#: src/screens/StarterPack/StarterPackScreen.tsx:656 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -3083,8 +3083,8 @@ msgstr "" msgid "Jobs" msgstr "Karir" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" msgstr "" @@ -3691,6 +3691,10 @@ msgstr "Nama atau Deskripsi Melanggar Standar Komunitas" msgid "Nature" msgstr "Alam" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 +msgid "Navigate to starter pack" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 #: src/view/com/modals/ChangePassword.tsx:169 @@ -4110,7 +4114,7 @@ msgstr "Buka navigasi" msgid "Open post options menu" msgstr "Buka menu opsi postingan" -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" msgstr "" @@ -4920,8 +4924,8 @@ msgstr "Laporkan pesan" msgid "Report post" msgstr "Laporkan postingan" -#: src/screens/StarterPack/StarterPackScreen.tsx:476 -#: src/screens/StarterPack/StarterPackScreen.tsx:479 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" msgstr "" @@ -4967,7 +4971,7 @@ msgstr "Posting ulang" msgid "Repost" msgstr "Posting ulang" -#: src/screens/StarterPack/StarterPackScreen.tsx:418 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5084,7 +5088,7 @@ msgstr "Ulangi" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:622 +#: src/screens/StarterPack/StarterPackScreen.tsx:650 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Kembali ke halaman sebelumnya" @@ -5536,8 +5540,8 @@ msgid "Sexually Suggestive" msgstr "Bermuatan Seksual" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:312 -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:340 +#: src/screens/StarterPack/StarterPackScreen.tsx:493 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5573,7 +5577,7 @@ msgstr "Bagikan feed" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:469 +#: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" msgstr "" @@ -5591,7 +5595,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:305 +#: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" msgstr "" @@ -5809,8 +5813,8 @@ msgstr "Masuk sebagai @{0}" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" msgstr "" @@ -5913,7 +5917,7 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" msgstr "" @@ -6095,8 +6099,8 @@ msgstr "Berisi hal berikut:" msgid "That handle is already taken." msgstr "Handle telah terpakai." -#: src/screens/StarterPack/StarterPackScreen.tsx:102 -#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6119,7 +6123,7 @@ msgstr "Panduan Komunitas telah dipindahkan ke <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "Kebijakan Hak Cipta telah dipindahkan ke <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6148,7 +6152,7 @@ msgstr "Postingan mungkin telah dihapus." msgid "The Privacy Policy has been moved to <0/>" msgstr "Kebijakan Privasi telah dipindahkan ke <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6343,6 +6347,7 @@ msgstr "Feed ini sedang menerima terlalu banyak trafik dan sementara tidak terse msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "Feed ini kosong! Anda mungkin perlu mengikuti lebih banyak pengguna atau menyesuaikan pengaturan bahasa Anda." +#: src/components/StarterPack/Main/PostsList.tsx:36 #: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." @@ -6567,7 +6572,7 @@ msgstr "Bunyikan daftar" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Tidak dapat terhubung ke layanan. Mohon periksa koneksi internet Anda." -#: src/screens/StarterPack/StarterPackScreen.tsx:520 +#: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" msgstr "" @@ -7192,7 +7197,7 @@ msgstr "Ya" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" msgstr "" @@ -7429,15 +7434,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po index 87de3885d2..4d253dbfe1 100644 --- a/src/locale/locales/it/messages.po +++ b/src/locale/locales/it/messages.po @@ -90,11 +90,11 @@ msgstr "" #~ msgid "{0} {purposeLabel} List" #~ msgstr "Lista {purposeLabel} {0}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:350 +#: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" msgstr "" @@ -482,7 +482,7 @@ msgstr "Il contenuto per adulti è disattivato." msgid "Advanced" msgstr "Avanzato" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "" @@ -562,7 +562,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "È avvenuto un errore durante la cancellazione del messaggio. Riprovare un altra volta" -#: src/screens/StarterPack/StarterPackScreen.tsx:275 +#: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" msgstr "" @@ -675,7 +675,7 @@ msgstr "Aspetto" msgid "Apply default recommended feeds" msgstr "Applica i feed raccomandati predefiniti" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -1718,9 +1718,9 @@ msgid "Debug panel" msgstr "Pannello per il debug" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:456 -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:484 +#: src/screens/StarterPack/StarterPackScreen.tsx:563 +#: src/screens/StarterPack/StarterPackScreen.tsx:643 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1783,12 +1783,12 @@ msgstr "Cancellare Account…" msgid "Delete post" msgstr "Elimina il post" -#: src/screens/StarterPack/StarterPackScreen.tsx:450 -#: src/screens/StarterPack/StarterPackScreen.tsx:606 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:501 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" msgstr "" @@ -1962,7 +1962,7 @@ msgstr "Fatto{extraText}" #~ msgid "Double tap to sign in" #~ msgstr "Usa il doppio tocco per accedere" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" msgstr "" @@ -2022,7 +2022,7 @@ msgstr "e.g. Utenti che rispondono ripetutamente con annunci." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Ogni codice funziona per un solo uso. Riceverai periodicamente più codici di invito." -#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/StarterPackScreen.tsx:473 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 @@ -2087,7 +2087,7 @@ msgstr "Modifica il Profilo" #~ msgid "Edit Saved Feeds" #~ msgstr "Modifica i feed memorizzati" -#: src/screens/StarterPack/StarterPackScreen.tsx:437 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" msgstr "" @@ -2404,7 +2404,7 @@ msgstr "Errore nel cancellare il messaggio" msgid "Failed to delete post, please try again" msgstr "Non possiamo eliminare il post, riprova di nuovo" -#: src/screens/StarterPack/StarterPackScreen.tsx:569 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" msgstr "" @@ -2605,8 +2605,8 @@ msgstr "" msgid "Follow Account" msgstr "Segui l'Account" -#: src/screens/StarterPack/StarterPackScreen.tsx:317 -#: src/screens/StarterPack/StarterPackScreen.tsx:324 +#: src/screens/StarterPack/StarterPackScreen.tsx:345 +#: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" msgstr "" @@ -2807,7 +2807,7 @@ msgstr "Torna indietro" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:628 +#: src/screens/StarterPack/StarterPackScreen.tsx:656 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -3203,8 +3203,8 @@ msgstr "" msgid "Jobs" msgstr "Lavori" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" msgstr "" @@ -3846,6 +3846,10 @@ msgstr "Il Nome o la Descrizione Viola gli Standard della Comunità" msgid "Nature" msgstr "Natura" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 +msgid "Navigate to starter pack" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 #: src/view/com/modals/ChangePassword.tsx:169 @@ -4265,7 +4269,7 @@ msgstr "Apri la navigazione" msgid "Open post options menu" msgstr "Apri il menu delle opzioni del post" -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" msgstr "" @@ -5115,8 +5119,8 @@ msgstr "Segnala il messaggio" msgid "Report post" msgstr "Segnala il post" -#: src/screens/StarterPack/StarterPackScreen.tsx:476 -#: src/screens/StarterPack/StarterPackScreen.tsx:479 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" msgstr "" @@ -5162,7 +5166,7 @@ msgstr "Ripubblicare" msgid "Repost" msgstr "Ripubblicare" -#: src/screens/StarterPack/StarterPackScreen.tsx:418 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5292,7 +5296,7 @@ msgstr "Riprova" #~ msgstr "Riprova." #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:622 +#: src/screens/StarterPack/StarterPackScreen.tsx:650 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Ritorna alla pagina precedente" @@ -5793,8 +5797,8 @@ msgid "Sexually Suggestive" msgstr "Sessualmente suggestivo" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:312 -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:340 +#: src/screens/StarterPack/StarterPackScreen.tsx:493 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5830,7 +5834,7 @@ msgstr "Condividi il feed" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:469 +#: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" msgstr "" @@ -5848,7 +5852,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:305 +#: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" msgstr "" @@ -6079,8 +6083,8 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "{0} esce da Bluesky" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" msgstr "" @@ -6194,7 +6198,7 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" msgstr "" @@ -6380,8 +6384,8 @@ msgstr "Che contiene il seguente:" msgid "That handle is already taken." msgstr "Questo handle è già stato preso." -#: src/screens/StarterPack/StarterPackScreen.tsx:102 -#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6403,7 +6407,7 @@ msgstr "Le Linee guida della community sono state spostate a<0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "La politica sul copyright è stata spostata a <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6432,7 +6436,7 @@ msgstr "Il post potrebbe essere stato cancellato." msgid "The Privacy Policy has been moved to <0/>" msgstr "La politica sulla privacy è stata spostata a <0/><0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6635,6 +6639,7 @@ msgstr "Questo canale al momento sta ricevendo molte visite ed è temporaneament msgid "This feed is empty! You may need to follow more users or tune your language settings." 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/ProfileList.tsx:729 msgid "This feed is empty." @@ -6871,7 +6876,7 @@ msgstr "Riattiva questa lista" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Impossibile contattare il servizio. Per favore controlla la tua connessione Internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:520 +#: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" msgstr "" @@ -7517,7 +7522,7 @@ msgstr "Si" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" msgstr "" @@ -7764,15 +7769,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po index f77107cb20..775d8697c0 100644 --- a/src/locale/locales/ja/messages.po +++ b/src/locale/locales/ja/messages.po @@ -76,11 +76,11 @@ msgstr "{0, plural, other {リポスト}}" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, other {いいねを外す(#個のいいね)}}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" msgstr "今週、{0}人が参加しました" -#: src/screens/StarterPack/StarterPackScreen.tsx:350 +#: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" msgstr "{0}人がこのスターターパックを使用しました!" @@ -393,7 +393,7 @@ msgstr "成人向けコンテンツは無効になっています。" msgid "Advanced" msgstr "高度な設定" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "すべてのアカウントをフォローしました!" @@ -462,7 +462,7 @@ msgstr "スターターパックの生成中にエラーが発生しました。 msgid "An error occurred while saving the QR code!" msgstr "QRコードの保存中にエラーが発生しました!" -#: src/screens/StarterPack/StarterPackScreen.tsx:275 +#: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" msgstr "すべてフォローしようとしたらエラーが発生しました" @@ -557,7 +557,7 @@ msgstr "背景" msgid "Apply default recommended feeds" msgstr "デフォルトのおすすめフィードを追加" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" msgstr "このスターターパックを本当に削除したいですか?" @@ -1457,9 +1457,9 @@ msgid "Debug panel" msgstr "デバッグパネル" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:456 -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:484 +#: src/screens/StarterPack/StarterPackScreen.tsx:563 +#: src/screens/StarterPack/StarterPackScreen.tsx:643 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1516,12 +1516,12 @@ msgstr "アカウントを削除…" msgid "Delete post" msgstr "投稿を削除" -#: src/screens/StarterPack/StarterPackScreen.tsx:450 -#: src/screens/StarterPack/StarterPackScreen.tsx:606 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" msgstr "スターターパックを削除" -#: src/screens/StarterPack/StarterPackScreen.tsx:501 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" msgstr "スターターパックを削除しますか?" @@ -1680,7 +1680,7 @@ msgstr "完了" msgid "Done{extraText}" msgstr "完了{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" msgstr "Blueskyをダウンロード" @@ -1733,7 +1733,7 @@ msgstr "例:返信として広告を繰り返し送ってくるユーザー。 msgid "Each code works once. You'll receive more invite codes periodically." msgstr "それぞれのコードは一回限り有効です。定期的に追加の招待コードをお送りします。" -#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/StarterPackScreen.tsx:473 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 @@ -1793,7 +1793,7 @@ msgstr "プロフィールを編集" msgid "Edit Profile" msgstr "プロフィールを編集" -#: src/screens/StarterPack/StarterPackScreen.tsx:437 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" msgstr "スターターパックを編集" @@ -2086,7 +2086,7 @@ msgstr "メッセージの削除に失敗しました" msgid "Failed to delete post, please try again" msgstr "投稿の削除に失敗しました。もう一度お試しください。" -#: src/screens/StarterPack/StarterPackScreen.tsx:569 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" msgstr "スターターパックの削除に失敗しました" @@ -2258,8 +2258,8 @@ msgstr "{name}をフォロー" msgid "Follow Account" msgstr "アカウントをフォロー" -#: src/screens/StarterPack/StarterPackScreen.tsx:317 -#: src/screens/StarterPack/StarterPackScreen.tsx:324 +#: src/screens/StarterPack/StarterPackScreen.tsx:345 +#: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" msgstr "すべてフォロー" @@ -2436,7 +2436,7 @@ msgstr "戻る" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:628 +#: src/screens/StarterPack/StarterPackScreen.tsx:656 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -2780,8 +2780,8 @@ msgstr "今はあなただけ!上で検索してスターターパックによ msgid "Jobs" msgstr "仕事" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" msgstr "Blueskyに参加" @@ -3349,6 +3349,10 @@ msgstr "名前または説明がコミュニティ基準に違反" msgid "Nature" msgstr "自然" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 +msgid "Navigate to starter pack" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 #: src/view/com/modals/ChangePassword.tsx:169 @@ -3742,7 +3746,7 @@ msgstr "ナビゲーションを開く" msgid "Open post options menu" msgstr "投稿のオプションを開く" -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" msgstr "スターターパックのメニューを開く" @@ -4492,8 +4496,8 @@ msgstr "メッセージを報告" msgid "Report post" msgstr "投稿を報告" -#: src/screens/StarterPack/StarterPackScreen.tsx:476 -#: src/screens/StarterPack/StarterPackScreen.tsx:479 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" msgstr "スタータパックを報告" @@ -4539,7 +4543,7 @@ msgstr "リポスト" msgid "Repost" msgstr "リポスト" -#: src/screens/StarterPack/StarterPackScreen.tsx:418 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4648,7 +4652,7 @@ msgid "Retry" msgstr "再試行" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:622 +#: src/screens/StarterPack/StarterPackScreen.tsx:650 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "前のページに戻る" @@ -5063,8 +5067,8 @@ msgid "Sexually Suggestive" msgstr "性的にきわどい" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:312 -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:340 +#: src/screens/StarterPack/StarterPackScreen.tsx:493 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5100,7 +5104,7 @@ msgstr "フィードを共有" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:469 +#: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" msgstr "リンクを共有" @@ -5118,7 +5122,7 @@ msgstr "リンク共有のダイアログ" msgid "Share QR code" msgstr "QRコードを共有" -#: src/screens/StarterPack/StarterPackScreen.tsx:305 +#: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" msgstr "このスターターパックを共有" @@ -5300,8 +5304,8 @@ msgstr "@{0}でサインイン" msgid "signed up with your starter pack" msgstr "あなたのスターターパックでサインアップ" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" msgstr "スターターパックを使わずにサインアップ" @@ -5396,7 +5400,7 @@ msgstr "スターターパック" msgid "Starter pack by {0}" msgstr "{0}によるスターターパック" -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" msgstr "スターターパックが無効です" @@ -5561,8 +5565,8 @@ msgstr "その内容は以下の通りです:" msgid "That handle is already taken." msgstr "そのハンドルはすでに使用されています。" -#: src/screens/StarterPack/StarterPackScreen.tsx:102 -#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -5581,7 +5585,7 @@ msgstr "コミュニティーガイドラインは<0/>に移動しました" msgid "The Copyright Policy has been moved to <0/>" msgstr "著作権ポリシーは<0/>に移動しました" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "アプリのほうがより良い体験をすることができます。今すぐBlueskyをダウンロードして、中断したところから再開しましょう。" @@ -5610,7 +5614,7 @@ msgstr "投稿が削除された可能性があります。" msgid "The Privacy Policy has been moved to <0/>" msgstr "プライバシーポリシーは<0/>に移動しました" -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "見ようとしたスターターパックが無効です。代わりにスターターパックを削除してください。" @@ -5779,6 +5783,7 @@ msgstr "現在このフィードにはアクセスが集中しており、一時 msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "このフィードは空です!もっと多くのユーザーをフォローするか、言語の設定を調整する必要があるかもしれません。" +#: src/components/StarterPack/Main/PostsList.tsx:36 #: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." @@ -5991,7 +5996,7 @@ msgstr "リストでのミュートを解除" msgid "Unable to contact your service. Please check your Internet connection." msgstr "あなたのサービスに接続できません。インターネットの接続を確認してください。" -#: src/screens/StarterPack/StarterPackScreen.tsx:520 +#: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" msgstr "削除できません" @@ -6584,7 +6589,7 @@ msgstr "はい" msgid "Yes, deactivate" msgstr "はい、無効化します" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" msgstr "はい、このスターターパックを削除します" @@ -6805,15 +6810,15 @@ msgstr "アカウントの作成を完了するとおすすめのユーザーや msgid "You'll follow the suggested users once you finish creating your account!" msgstr "アカウントの作成を完了するとおすすめのユーザーをフォローします!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" msgstr "これらのユーザーや他{0}をフォローします" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" msgstr "これらのユーザーをすぐにフォローします" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" msgstr "これらのフィードの更新を受け取ります" diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po index 136e902454..4a46016618 100644 --- a/src/locale/locales/ko/messages.po +++ b/src/locale/locales/ko/messages.po @@ -76,11 +76,11 @@ msgstr "재게시" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "좋아요 취소 ({0, plural, other {#}}개)" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:350 +#: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" msgstr "" @@ -401,7 +401,7 @@ msgstr "성인 콘텐츠가 비활성화되어 있습니다." msgid "Advanced" msgstr "고급" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "모든 계정을 팔로우했습니다" @@ -474,7 +474,7 @@ msgstr "" msgid "An error occurred while saving the QR code!" msgstr "QR 코드를 저장하는 동안 오류가 발생했습니다" -#: src/screens/StarterPack/StarterPackScreen.tsx:275 +#: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" msgstr "모두 팔로우하려고 하는 동안 오류가 발생했습니다" @@ -569,7 +569,7 @@ msgstr "모양" msgid "Apply default recommended feeds" msgstr "기본 추천 피드 적용하기" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" msgstr "이 스타터 팩을 삭제하시겠습니까?" @@ -1477,9 +1477,9 @@ msgid "Debug panel" msgstr "디버그 패널" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:456 -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:484 +#: src/screens/StarterPack/StarterPackScreen.tsx:563 +#: src/screens/StarterPack/StarterPackScreen.tsx:643 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1536,12 +1536,12 @@ msgstr "내 계정 삭제…" msgid "Delete post" msgstr "게시물 삭제" -#: src/screens/StarterPack/StarterPackScreen.tsx:450 -#: src/screens/StarterPack/StarterPackScreen.tsx:606 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" msgstr "스타터 팩 삭제" -#: src/screens/StarterPack/StarterPackScreen.tsx:501 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" msgstr "스타터 팩을 삭제하시겠습니까?" @@ -1700,7 +1700,7 @@ msgstr "완료" msgid "Done{extraText}" msgstr "완료{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" msgstr "Bluesky 다운로드" @@ -1753,12 +1753,7 @@ msgstr "예: 반복적으로 광고 답글을 다는 계정." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "각 코드는 한 번만 사용할 수 있습니다. 주기적으로 더 많은 초대 코드를 받게 됩니다." -#: src/view/com/lists/ListMembers.tsx:149 -msgctxt "action" -msgid "Edit" -msgstr "편집" - -#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/StarterPackScreen.tsx:473 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 @@ -1766,6 +1761,11 @@ msgstr "편집" msgid "Edit" msgstr "편집" +#: src/view/com/lists/ListMembers.tsx:149 +msgctxt "action" +msgid "Edit" +msgstr "편집" + #: src/view/com/util/UserAvatar.tsx:325 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" @@ -1813,7 +1813,7 @@ msgstr "프로필 편집" msgid "Edit Profile" msgstr "프로필 편집" -#: src/screens/StarterPack/StarterPackScreen.tsx:437 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" msgstr "스타터 팩 편집" @@ -2106,7 +2106,7 @@ msgstr "메시지를 삭제하지 못했습니다" msgid "Failed to delete post, please try again" msgstr "게시물을 삭제하지 못했습니다. 다시 시도해 주세요" -#: src/screens/StarterPack/StarterPackScreen.tsx:569 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" msgstr "스타터 팩을 삭제하지 못했습니다" @@ -2278,8 +2278,8 @@ msgstr "{name} 님을 팔로우" msgid "Follow Account" msgstr "계정 팔로우" -#: src/screens/StarterPack/StarterPackScreen.tsx:317 -#: src/screens/StarterPack/StarterPackScreen.tsx:324 +#: src/screens/StarterPack/StarterPackScreen.tsx:345 +#: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" msgstr "모두 팔로우" @@ -2456,7 +2456,7 @@ msgstr "뒤로" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:628 +#: src/screens/StarterPack/StarterPackScreen.tsx:656 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -2800,8 +2800,8 @@ msgstr "" msgid "Jobs" msgstr "채용" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" msgstr "Bluesky 가입하기" @@ -3369,6 +3369,10 @@ msgstr "이름 또는 설명이 커뮤니티 기준을 위반함" msgid "Nature" msgstr "자연" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 +msgid "Navigate to starter pack" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 #: src/view/com/modals/ChangePassword.tsx:169 @@ -3762,7 +3766,7 @@ msgstr "내비게이션 열기" msgid "Open post options menu" msgstr "게시물 옵션 메뉴 열기" -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" msgstr "스타터 팩 메뉴 열기" @@ -4516,8 +4520,8 @@ msgstr "메시지 신고" msgid "Report post" msgstr "게시물 신고" -#: src/screens/StarterPack/StarterPackScreen.tsx:476 -#: src/screens/StarterPack/StarterPackScreen.tsx:479 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" msgstr "스타터 팩 신고" @@ -4563,7 +4567,7 @@ msgstr "재게시" msgid "Repost" msgstr "재게시" -#: src/screens/StarterPack/StarterPackScreen.tsx:418 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4672,7 +4676,7 @@ msgid "Retry" msgstr "다시 시도" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:622 +#: src/screens/StarterPack/StarterPackScreen.tsx:650 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "이전 페이지로 돌아갑니다" @@ -5086,14 +5090,9 @@ msgstr "성행위 또는 선정적인 노출." msgid "Sexually Suggestive" msgstr "외설적" -#: src/view/com/lightbox/Lightbox.tsx:144 -msgctxt "action" -msgid "Share" -msgstr "공유" - #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:312 -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:340 +#: src/screens/StarterPack/StarterPackScreen.tsx:493 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5103,6 +5102,11 @@ msgstr "공유" msgid "Share" msgstr "공유" +#: src/view/com/lightbox/Lightbox.tsx:144 +msgctxt "action" +msgid "Share" +msgstr "공유" + #: src/components/dms/ChatEmptyPill.tsx:37 msgid "Share a cool story!" msgstr "멋진 이야기를 전하세요!" @@ -5124,7 +5128,7 @@ msgstr "피드 공유" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:469 +#: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" msgstr "링크 공유" @@ -5142,7 +5146,7 @@ msgstr "링크 공유 대화 상자" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:305 +#: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" msgstr "이 스타터 팩 공유하기" @@ -5324,8 +5328,8 @@ msgstr "@{0}(으)로 로그인했습니다" msgid "signed up with your starter pack" msgstr "(이)가 내 스타터 팩으로 가입했습니다" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" msgstr "스타터 팩 없이 가입하기" @@ -5424,7 +5428,7 @@ msgstr "스타터 팩" msgid "Starter pack by {0}" msgstr "{0} 님의 스타터 팩" -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" msgstr "스타터 팩이 유효하지 않음" @@ -5589,8 +5593,8 @@ msgstr "텍스트 파일 내용:" msgid "That handle is already taken." msgstr "이 핸들은 이미 사용 중입니다." -#: src/screens/StarterPack/StarterPackScreen.tsx:102 -#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -5609,7 +5613,7 @@ msgstr "커뮤니티 가이드라인을 <0/>(으)로 이동했습니다" msgid "The Copyright Policy has been moved to <0/>" msgstr "저작권 정책을 <0/>(으)로 이동했습니다" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -5638,7 +5642,7 @@ msgstr "게시물이 삭제되었을 수 있습니다." msgid "The Privacy Policy has been moved to <0/>" msgstr "개인정보 처리방침을 <0/>(으)로 이동했습니다" -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "이 스타터 팩은 유효하지 않습니다. 대신 이 스타터 팩을 삭제할 수 있습니다." @@ -5807,6 +5811,7 @@ msgstr "이 피드는 현재 트래픽이 많아 일시적으로 사용할 수 msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "이 피드는 비어 있습니다. 더 많은 사용자를 팔로우하거나 언어 설정을 조정해 보세요." +#: src/components/StarterPack/Main/PostsList.tsx:36 #: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." @@ -6019,7 +6024,7 @@ msgstr "리스트 언뮤트" msgid "Unable to contact your service. Please check your Internet connection." msgstr "서비스에 연결할 수 없습니다. 인터넷 연결을 확인하세요." -#: src/screens/StarterPack/StarterPackScreen.tsx:520 +#: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" msgstr "삭제할 수 없음" @@ -6612,7 +6617,7 @@ msgstr "예" msgid "Yes, deactivate" msgstr "비활성화" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" msgstr "" @@ -6833,15 +6838,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/pt-BR/messages.po b/src/locale/locales/pt-BR/messages.po index bfc0eafbb9..72b7b200be 100644 --- a/src/locale/locales/pt-BR/messages.po +++ b/src/locale/locales/pt-BR/messages.po @@ -88,11 +88,11 @@ 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:218 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:350 +#: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" msgstr "" @@ -466,7 +466,7 @@ msgstr "O conteúdo adulto está desabilitado." msgid "Advanced" msgstr "Avançado" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "" @@ -548,7 +548,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "Ocorreu um erro ao tentar deletar esta mensagem. Por favor, tente novamente." -#: src/screens/StarterPack/StarterPackScreen.tsx:275 +#: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" msgstr "" @@ -647,7 +647,7 @@ msgstr "Aparência" msgid "Apply default recommended feeds" msgstr "Utilizar feeds recomendados" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -1647,9 +1647,9 @@ msgid "Debug panel" msgstr "Painel de depuração" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:456 -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:484 +#: src/screens/StarterPack/StarterPackScreen.tsx:563 +#: src/screens/StarterPack/StarterPackScreen.tsx:643 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1710,12 +1710,12 @@ msgstr "Excluir minha conta…" msgid "Delete post" msgstr "Excluir post" -#: src/screens/StarterPack/StarterPackScreen.tsx:450 -#: src/screens/StarterPack/StarterPackScreen.tsx:606 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:501 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" msgstr "" @@ -1882,7 +1882,7 @@ msgstr "Feito" msgid "Done{extraText}" msgstr "Feito{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" msgstr "" @@ -1939,7 +1939,7 @@ msgstr "ex. Perfis que enchem o saco." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cada convite só funciona uma vez. Você receberá mais convites periodicamente." -#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/StarterPackScreen.tsx:473 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 @@ -2004,7 +2004,7 @@ msgstr "Editar Perfil" #~ msgid "Edit Saved Feeds" #~ msgstr "Editar Feeds Salvos" -#: src/screens/StarterPack/StarterPackScreen.tsx:437 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" msgstr "" @@ -2310,7 +2310,7 @@ msgstr "Não foi possível excluir esta mensagem" msgid "Failed to delete post, please try again" msgstr "Não foi possível excluir o post, por favor tente novamente." -#: src/screens/StarterPack/StarterPackScreen.tsx:569 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" msgstr "" @@ -2519,8 +2519,8 @@ msgstr "" msgid "Follow Account" msgstr "Seguir Conta" -#: src/screens/StarterPack/StarterPackScreen.tsx:317 -#: src/screens/StarterPack/StarterPackScreen.tsx:324 +#: src/screens/StarterPack/StarterPackScreen.tsx:345 +#: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" msgstr "" @@ -2713,7 +2713,7 @@ msgstr "Voltar" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:628 +#: src/screens/StarterPack/StarterPackScreen.tsx:656 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -3078,8 +3078,8 @@ msgstr "" msgid "Jobs" msgstr "Carreiras" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" msgstr "" @@ -3686,6 +3686,10 @@ msgstr "Nome ou Descrição Viola os Padrões da Comunidade" msgid "Nature" msgstr "Natureza" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 +msgid "Navigate to starter pack" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 #: src/view/com/modals/ChangePassword.tsx:169 @@ -4105,7 +4109,7 @@ msgstr "Abrir navegação" msgid "Open post options menu" msgstr "Abrir opções do post" -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" msgstr "" @@ -4915,8 +4919,8 @@ msgstr "Denunciar mensagem" msgid "Report post" msgstr "Denunciar post" -#: src/screens/StarterPack/StarterPackScreen.tsx:476 -#: src/screens/StarterPack/StarterPackScreen.tsx:479 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" msgstr "" @@ -4962,7 +4966,7 @@ msgstr "Repostar" msgid "Repost" msgstr "Repostar" -#: src/screens/StarterPack/StarterPackScreen.tsx:418 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5079,7 +5083,7 @@ msgstr "Tente novamente" #~ msgstr "Tentar novamente." #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:622 +#: src/screens/StarterPack/StarterPackScreen.tsx:650 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Voltar para página anterior" @@ -5531,8 +5535,8 @@ msgid "Sexually Suggestive" msgstr "Sexualmente Sugestivo" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:312 -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:340 +#: src/screens/StarterPack/StarterPackScreen.tsx:493 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5568,7 +5572,7 @@ msgstr "Compartilhar feed" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:469 +#: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" msgstr "" @@ -5586,7 +5590,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:305 +#: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" msgstr "" @@ -5804,8 +5808,8 @@ msgstr "autenticado como @{0}" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" msgstr "" @@ -5908,7 +5912,7 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" msgstr "" @@ -6090,8 +6094,8 @@ msgstr "Contém o seguinte:" msgid "That handle is already taken." msgstr "Este identificador de usuário já está sendo usado." -#: src/screens/StarterPack/StarterPackScreen.tsx:102 -#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6114,7 +6118,7 @@ msgstr "As Diretrizes da Comunidade foram movidas para <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "A Política de Direitos Autorais foi movida para <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6143,7 +6147,7 @@ msgstr "O post pode ter sido excluído." msgid "The Privacy Policy has been moved to <0/>" msgstr "A Política de Privacidade foi movida para <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6338,6 +6342,7 @@ msgstr "Este feed está recebendo muito tráfego e está temporariamente indispo msgid "This feed is empty! You may need to follow more users or tune your language settings." 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/ProfileList.tsx:729 msgid "This feed is empty." @@ -6562,7 +6567,7 @@ msgstr "Dessilenciar lista" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Não foi possível entrar em contato com seu serviço. Por favor, verifique sua conexão à internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:520 +#: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" msgstr "" @@ -7187,7 +7192,7 @@ msgstr "Sim" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" msgstr "" @@ -7424,15 +7429,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/tr/messages.po b/src/locale/locales/tr/messages.po index 0f53e003c4..c084dd1295 100644 --- a/src/locale/locales/tr/messages.po +++ b/src/locale/locales/tr/messages.po @@ -92,11 +92,11 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:350 +#: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" msgstr "" @@ -503,7 +503,7 @@ msgstr "" msgid "Advanced" msgstr "Gelişmiş" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "" @@ -585,7 +585,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:275 +#: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" msgstr "" @@ -696,7 +696,7 @@ msgstr "Görünüm" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -1774,9 +1774,9 @@ msgid "Debug panel" msgstr "Hata ayıklama paneli" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:456 -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:484 +#: src/screens/StarterPack/StarterPackScreen.tsx:563 +#: src/screens/StarterPack/StarterPackScreen.tsx:643 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1837,12 +1837,12 @@ msgstr "Hesabımı Sil…" msgid "Delete post" msgstr "Gönderiyi sil" -#: src/screens/StarterPack/StarterPackScreen.tsx:450 -#: src/screens/StarterPack/StarterPackScreen.tsx:606 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:501 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" msgstr "" @@ -2025,7 +2025,7 @@ msgstr "Tamam{extraText}" #~ msgid "Double tap to sign in" #~ msgstr "Oturum açmak için çift dokunun" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" msgstr "" @@ -2082,7 +2082,7 @@ msgstr "örn: Reklamlarla tekrar tekrar yanıt veren kullanıcılar." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Her kod bir kez çalışır. Düzenli aralıklarla daha fazla davet kodu alacaksınız." -#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/StarterPackScreen.tsx:473 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 @@ -2147,7 +2147,7 @@ msgstr "Profil Düzenle" #~ msgid "Edit Saved Feeds" #~ msgstr "Kayıtlı Beslemeleri Düzenle" -#: src/screens/StarterPack/StarterPackScreen.tsx:437 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" msgstr "" @@ -2469,7 +2469,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "Gönderi silinemedi, lütfen tekrar deneyin" -#: src/screens/StarterPack/StarterPackScreen.tsx:569 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" msgstr "" @@ -2686,8 +2686,8 @@ msgstr "" msgid "Follow Account" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:317 -#: src/screens/StarterPack/StarterPackScreen.tsx:324 +#: src/screens/StarterPack/StarterPackScreen.tsx:345 +#: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" msgstr "" @@ -2888,7 +2888,7 @@ msgstr "Geri git" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:628 +#: src/screens/StarterPack/StarterPackScreen.tsx:656 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -3295,8 +3295,8 @@ msgstr "" msgid "Jobs" msgstr "İşler" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" msgstr "" @@ -3945,6 +3945,10 @@ msgstr "" msgid "Nature" msgstr "Doğa" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 +msgid "Navigate to starter pack" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 #: src/view/com/modals/ChangePassword.tsx:169 @@ -4369,7 +4373,7 @@ msgstr "Navigasyonu aç" msgid "Open post options menu" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" msgstr "" @@ -5248,8 +5252,8 @@ msgstr "" msgid "Report post" msgstr "Gönderiyi raporla" -#: src/screens/StarterPack/StarterPackScreen.tsx:476 -#: src/screens/StarterPack/StarterPackScreen.tsx:479 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" msgstr "" @@ -5295,7 +5299,7 @@ msgstr "Yeniden gönder" msgid "Repost" msgstr "Yeniden gönder" -#: src/screens/StarterPack/StarterPackScreen.tsx:418 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5424,7 +5428,7 @@ msgstr "Tekrar dene" #~ msgstr "Tekrar dene." #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:622 +#: src/screens/StarterPack/StarterPackScreen.tsx:650 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Önceki sayfaya dön" @@ -5948,8 +5952,8 @@ msgid "Sexually Suggestive" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:312 -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:340 +#: src/screens/StarterPack/StarterPackScreen.tsx:493 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5985,7 +5989,7 @@ msgstr "Beslemeyi paylaş" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:469 +#: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" msgstr "" @@ -6003,7 +6007,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:305 +#: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" msgstr "" @@ -6243,8 +6247,8 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "{0} adresini Bluesky'den çıkarır" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" msgstr "" @@ -6363,7 +6367,7 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" msgstr "" @@ -6553,8 +6557,8 @@ msgstr "" msgid "That handle is already taken." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:102 -#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6577,7 +6581,7 @@ msgstr "Topluluk Kuralları <0/> konumuna taşındı" msgid "The Copyright Policy has been moved to <0/>" msgstr "Telif Hakkı Politikası <0/> konumuna taşındı" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6606,7 +6610,7 @@ msgstr "Gönderi silinmiş olabilir." msgid "The Privacy Policy has been moved to <0/>" msgstr "Gizlilik Politikası <0/> konumuna taşındı" -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6805,6 +6809,7 @@ msgstr "Bu besleme şu anda yüksek trafik alıyor ve geçici olarak kullanılam msgid "This feed is empty! You may need to follow more users or tune your language settings." 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/ProfileList.tsx:729 msgid "This feed is empty." @@ -7041,7 +7046,7 @@ msgstr "Listeyi sessizden çıkar" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Hizmetinize ulaşılamıyor. Lütfen internet bağlantınızı kontrol edin." -#: src/screens/StarterPack/StarterPackScreen.tsx:520 +#: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" msgstr "" @@ -7706,7 +7711,7 @@ msgstr "Evet" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" msgstr "" @@ -7959,15 +7964,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/uk/messages.po b/src/locale/locales/uk/messages.po index cb8d52ca2c..b1dcdfb99f 100644 --- a/src/locale/locales/uk/messages.po +++ b/src/locale/locales/uk/messages.po @@ -93,11 +93,11 @@ msgstr "" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:350 +#: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" msgstr "" @@ -471,7 +471,7 @@ msgstr "Контент для дорослих вимкнено." msgid "Advanced" msgstr "Розширені" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "" @@ -553,7 +553,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:275 +#: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" msgstr "" @@ -652,7 +652,7 @@ msgstr "Оформлення" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -1652,9 +1652,9 @@ msgid "Debug panel" msgstr "Панель налагодження" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:456 -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:484 +#: src/screens/StarterPack/StarterPackScreen.tsx:563 +#: src/screens/StarterPack/StarterPackScreen.tsx:643 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1715,12 +1715,12 @@ msgstr "Видалити мій обліковий запис..." msgid "Delete post" msgstr "Видалити пост" -#: src/screens/StarterPack/StarterPackScreen.tsx:450 -#: src/screens/StarterPack/StarterPackScreen.tsx:606 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:501 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" msgstr "" @@ -1887,7 +1887,7 @@ msgstr "Готово" msgid "Done{extraText}" msgstr "Готово{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" msgstr "" @@ -1944,7 +1944,7 @@ msgstr "напр. Користувачі, що неодноразово відп msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Кожен код запрошення працює лише один раз. Час від часу ви будете отримувати нові коди." -#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/StarterPackScreen.tsx:473 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 @@ -2009,7 +2009,7 @@ msgstr "Редагувати профіль" #~ msgid "Edit Saved Feeds" #~ msgstr "Редагувати збережені стрічки" -#: src/screens/StarterPack/StarterPackScreen.tsx:437 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" msgstr "" @@ -2315,7 +2315,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "Не вдалося видалити пост, спробуйте ще раз" -#: src/screens/StarterPack/StarterPackScreen.tsx:569 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" msgstr "" @@ -2524,8 +2524,8 @@ msgstr "" msgid "Follow Account" msgstr "Підписатися на обліковий запис" -#: src/screens/StarterPack/StarterPackScreen.tsx:317 -#: src/screens/StarterPack/StarterPackScreen.tsx:324 +#: src/screens/StarterPack/StarterPackScreen.tsx:345 +#: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" msgstr "" @@ -2718,7 +2718,7 @@ msgstr "Назад" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:628 +#: src/screens/StarterPack/StarterPackScreen.tsx:656 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -3083,8 +3083,8 @@ msgstr "" msgid "Jobs" msgstr "Вакансії" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" msgstr "" @@ -3691,6 +3691,10 @@ msgstr "Ім'я чи Опис порушують стандарти спільн msgid "Nature" msgstr "Природа" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 +msgid "Navigate to starter pack" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 #: src/view/com/modals/ChangePassword.tsx:169 @@ -4110,7 +4114,7 @@ msgstr "Відкрити навігацію" msgid "Open post options menu" msgstr "Відкрити меню налаштувань посту" -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" msgstr "" @@ -4920,8 +4924,8 @@ msgstr "" msgid "Report post" msgstr "Поскаржитись на пост" -#: src/screens/StarterPack/StarterPackScreen.tsx:476 -#: src/screens/StarterPack/StarterPackScreen.tsx:479 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" msgstr "" @@ -4967,7 +4971,7 @@ msgstr "Репост" msgid "Repost" msgstr "Репостити" -#: src/screens/StarterPack/StarterPackScreen.tsx:418 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5084,7 +5088,7 @@ msgstr "Повторити спробу" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:622 +#: src/screens/StarterPack/StarterPackScreen.tsx:650 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Повернутися до попередньої сторінки" @@ -5536,8 +5540,8 @@ msgid "Sexually Suggestive" msgstr "З сексуальним підтекстом" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:312 -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:340 +#: src/screens/StarterPack/StarterPackScreen.tsx:493 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5573,7 +5577,7 @@ msgstr "Поширити стрічку" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:469 +#: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" msgstr "" @@ -5591,7 +5595,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:305 +#: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" msgstr "" @@ -5809,8 +5813,8 @@ msgstr "Ви увійшли як @{0}" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" msgstr "" @@ -5913,7 +5917,7 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" msgstr "" @@ -6095,8 +6099,8 @@ msgstr "Що містить наступне:" msgid "That handle is already taken." msgstr "Цей псевдонім вже зайнятий." -#: src/screens/StarterPack/StarterPackScreen.tsx:102 -#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6119,7 +6123,7 @@ msgstr "Правила Спільноти переміщено до <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "Політику захисту авторського права переміщено до <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6148,7 +6152,7 @@ msgstr "Можливо цей пост було видалено." msgid "The Privacy Policy has been moved to <0/>" msgstr "Політика конфіденційності була переміщена до <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6343,6 +6347,7 @@ msgstr "Ця стрічка зараз отримує забагато запи msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "Ця стрічка порожня! Можливо, вам треба підписатися на більшу кількість користувачів або змінити ваші налаштування мови." +#: src/components/StarterPack/Main/PostsList.tsx:36 #: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." @@ -6567,7 +6572,7 @@ msgstr "Перестати ігнорувати" msgid "Unable to contact your service. Please check your Internet connection." msgstr "Не вдалося зв'язатися з вашим хостинг-провайдером. Перевірте ваше підключення до Інтернету." -#: src/screens/StarterPack/StarterPackScreen.tsx:520 +#: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" msgstr "" @@ -7192,7 +7197,7 @@ msgstr "Так" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" msgstr "" @@ -7429,15 +7434,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po index 431390bc0f..71120c8d4f 100644 --- a/src/locale/locales/zh-CN/messages.po +++ b/src/locale/locales/zh-CN/messages.po @@ -76,11 +76,11 @@ msgstr "{0, plural, one {转发} other {转发}}" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {取消喜欢 (# 个喜欢)} other {取消喜欢 (# 个喜欢)}}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:350 +#: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" msgstr "" @@ -405,7 +405,7 @@ msgstr "成人内容显示已被禁用。" msgid "Advanced" msgstr "详细设置" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "" @@ -478,7 +478,7 @@ msgstr "" msgid "An error occurred while saving the QR code!" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:275 +#: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" msgstr "" @@ -573,7 +573,7 @@ msgstr "外观" msgid "Apply default recommended feeds" msgstr "使用默认推荐的资讯源" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -1481,9 +1481,9 @@ msgid "Debug panel" msgstr "调试面板" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:456 -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:484 +#: src/screens/StarterPack/StarterPackScreen.tsx:563 +#: src/screens/StarterPack/StarterPackScreen.tsx:643 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1540,12 +1540,12 @@ msgstr "删除我的账户…" msgid "Delete post" msgstr "删除帖文" -#: src/screens/StarterPack/StarterPackScreen.tsx:450 -#: src/screens/StarterPack/StarterPackScreen.tsx:606 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:501 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" msgstr "" @@ -1704,7 +1704,7 @@ msgstr "完成" msgid "Done{extraText}" msgstr "完成{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" msgstr "" @@ -1757,12 +1757,7 @@ msgstr "例如:散布广告内容的用户。" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "每个邀请码仅可使用一次。你将不定期获得新的邀请码。" -#: src/view/com/lists/ListMembers.tsx:149 -msgctxt "action" -msgid "Edit" -msgstr "编辑" - -#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/StarterPackScreen.tsx:473 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 @@ -1770,6 +1765,11 @@ msgstr "编辑" msgid "Edit" msgstr "编辑" +#: src/view/com/lists/ListMembers.tsx:149 +msgctxt "action" +msgid "Edit" +msgstr "编辑" + #: src/view/com/util/UserAvatar.tsx:325 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" @@ -1817,7 +1817,7 @@ msgstr "编辑个人资料" msgid "Edit Profile" msgstr "编辑个人资料" -#: src/screens/StarterPack/StarterPackScreen.tsx:437 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" msgstr "" @@ -2110,7 +2110,7 @@ msgstr "无法删除私信" msgid "Failed to delete post, please try again" msgstr "无法删除帖文,请重试" -#: src/screens/StarterPack/StarterPackScreen.tsx:569 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" msgstr "" @@ -2286,8 +2286,8 @@ msgstr "关注 {name}" msgid "Follow Account" msgstr "关注账户" -#: src/screens/StarterPack/StarterPackScreen.tsx:317 -#: src/screens/StarterPack/StarterPackScreen.tsx:324 +#: src/screens/StarterPack/StarterPackScreen.tsx:345 +#: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" msgstr "" @@ -2464,7 +2464,7 @@ msgstr "返回" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:628 +#: src/screens/StarterPack/StarterPackScreen.tsx:656 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -2808,8 +2808,8 @@ msgstr "" msgid "Jobs" msgstr "工作" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" msgstr "" @@ -3377,6 +3377,10 @@ msgstr "名称或描述违反了社群准则" msgid "Nature" msgstr "自然" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 +msgid "Navigate to starter pack" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 #: src/view/com/modals/ChangePassword.tsx:169 @@ -3770,7 +3774,7 @@ msgstr "打开导航" msgid "Open post options menu" msgstr "开启帖文选项菜单" -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" msgstr "" @@ -4524,8 +4528,8 @@ msgstr "举报私信" msgid "Report post" msgstr "举报帖文" -#: src/screens/StarterPack/StarterPackScreen.tsx:476 -#: src/screens/StarterPack/StarterPackScreen.tsx:479 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" msgstr "" @@ -4571,7 +4575,7 @@ msgstr "转发" msgid "Repost" msgstr "转发" -#: src/screens/StarterPack/StarterPackScreen.tsx:418 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4680,7 +4684,7 @@ msgid "Retry" msgstr "重试" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:622 +#: src/screens/StarterPack/StarterPackScreen.tsx:650 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "回到上一页" @@ -5094,14 +5098,9 @@ msgstr "性行为或性暗示裸露。" msgid "Sexually Suggestive" msgstr "性暗示" -#: src/view/com/lightbox/Lightbox.tsx:144 -msgctxt "action" -msgid "Share" -msgstr "分享" - #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:312 -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:340 +#: src/screens/StarterPack/StarterPackScreen.tsx:493 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5111,6 +5110,11 @@ msgstr "分享" msgid "Share" msgstr "分享" +#: src/view/com/lightbox/Lightbox.tsx:144 +msgctxt "action" +msgid "Share" +msgstr "分享" + #: src/components/dms/ChatEmptyPill.tsx:37 msgid "Share a cool story!" msgstr "分享一个很酷的事!" @@ -5132,7 +5136,7 @@ msgstr "分享资讯源" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:469 +#: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" msgstr "" @@ -5150,7 +5154,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:305 +#: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" msgstr "" @@ -5332,8 +5336,8 @@ msgstr "以 @{0} 身份登录" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" msgstr "" @@ -5432,7 +5436,7 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" msgstr "" @@ -5597,8 +5601,8 @@ msgstr "其中包含以下内容:" msgid "That handle is already taken." msgstr "该用户识别符已被占用。" -#: src/screens/StarterPack/StarterPackScreen.tsx:102 -#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -5617,7 +5621,7 @@ msgstr "社群准则已迁移至 <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "版权许可已迁移至 <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -5646,7 +5650,7 @@ msgstr "这条帖文可能已被删除。" msgid "The Privacy Policy has been moved to <0/>" msgstr "隐私政策已迁移至 <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -5815,6 +5819,7 @@ msgstr "该资讯源当前使用人数较多,服务暂时不可用。请稍后 msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "这个资讯源是空的!你或许需要先关注更多的用户,或检查你的语言设置。" +#: src/components/StarterPack/Main/PostsList.tsx:36 #: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." @@ -6027,7 +6032,7 @@ msgstr "取消隐藏列表" msgid "Unable to contact your service. Please check your Internet connection." msgstr "无法连接到服务,请检查互联网连接。" -#: src/screens/StarterPack/StarterPackScreen.tsx:520 +#: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" msgstr "" @@ -6620,7 +6625,7 @@ msgstr "启用" msgid "Yes, deactivate" msgstr "是的,请停用" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" msgstr "" @@ -6841,15 +6846,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" msgstr "" diff --git a/src/locale/locales/zh-TW/messages.po b/src/locale/locales/zh-TW/messages.po index afef16ed57..ffa61c95c6 100644 --- a/src/locale/locales/zh-TW/messages.po +++ b/src/locale/locales/zh-TW/messages.po @@ -76,11 +76,11 @@ msgstr "{0, plural, one {轉貼} other {轉貼}}" msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {撤回喜歡(# 個喜歡)} other {撤回喜歡(# 個喜歡)}}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:218 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:350 +#: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" msgstr "" @@ -405,7 +405,7 @@ msgstr "成人內容已停用。" msgid "Advanced" msgstr "進階設定" -#: src/screens/StarterPack/StarterPackScreen.tsx:273 +#: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "" @@ -478,7 +478,7 @@ msgstr "" msgid "An error occurred while saving the QR code!" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:275 +#: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" msgstr "" @@ -573,7 +573,7 @@ msgstr "外觀" msgid "Apply default recommended feeds" msgstr "使用預設推薦的動態源" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -1481,9 +1481,9 @@ msgid "Debug panel" msgstr "偵錯面板" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:456 -#: src/screens/StarterPack/StarterPackScreen.tsx:535 -#: src/screens/StarterPack/StarterPackScreen.tsx:615 +#: src/screens/StarterPack/StarterPackScreen.tsx:484 +#: src/screens/StarterPack/StarterPackScreen.tsx:563 +#: src/screens/StarterPack/StarterPackScreen.tsx:643 #: src/view/com/util/forms/PostDropdownBtn.tsx:433 #: src/view/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 @@ -1540,12 +1540,12 @@ msgstr "刪除我的帳號…" msgid "Delete post" msgstr "刪除貼文" -#: src/screens/StarterPack/StarterPackScreen.tsx:450 -#: src/screens/StarterPack/StarterPackScreen.tsx:606 +#: src/screens/StarterPack/StarterPackScreen.tsx:478 +#: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:501 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" msgstr "" @@ -1704,7 +1704,7 @@ msgstr "完成" msgid "Done{extraText}" msgstr "完成{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:314 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" msgstr "" @@ -1757,12 +1757,7 @@ msgstr "例如:多次張貼廣告的用戶。" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "每個邀請碼僅能使用一次。您將定期收到更多的邀請碼。" -#: src/view/com/lists/ListMembers.tsx:149 -msgctxt "action" -msgid "Edit" -msgstr "編輯" - -#: src/screens/StarterPack/StarterPackScreen.tsx:445 +#: src/screens/StarterPack/StarterPackScreen.tsx:473 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 #: src/view/screens/Feeds.tsx:385 @@ -1770,6 +1765,11 @@ msgstr "編輯" msgid "Edit" msgstr "編輯" +#: src/view/com/lists/ListMembers.tsx:149 +msgctxt "action" +msgid "Edit" +msgstr "編輯" + #: src/view/com/util/UserAvatar.tsx:325 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" @@ -1817,7 +1817,7 @@ msgstr "編輯個人檔案" msgid "Edit Profile" msgstr "編輯個人檔案" -#: src/screens/StarterPack/StarterPackScreen.tsx:437 +#: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" msgstr "" @@ -2110,7 +2110,7 @@ msgstr "無法刪除訊息" msgid "Failed to delete post, please try again" msgstr "無法刪除貼文,請重試" -#: src/screens/StarterPack/StarterPackScreen.tsx:569 +#: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" msgstr "" @@ -2286,8 +2286,8 @@ msgstr "跟隨 {name}" msgid "Follow Account" msgstr "跟隨帳號" -#: src/screens/StarterPack/StarterPackScreen.tsx:317 -#: src/screens/StarterPack/StarterPackScreen.tsx:324 +#: src/screens/StarterPack/StarterPackScreen.tsx:345 +#: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" msgstr "" @@ -2464,7 +2464,7 @@ msgstr "返回" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:628 +#: src/screens/StarterPack/StarterPackScreen.tsx:656 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -2808,8 +2808,8 @@ msgstr "" msgid "Jobs" msgstr "工作" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:196 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:202 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" msgstr "" @@ -3377,6 +3377,10 @@ msgstr "名稱或描述違反社群標準" msgid "Nature" msgstr "自然" +#: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 +msgid "Navigate to starter pack" +msgstr "" + #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 #: src/view/com/modals/ChangePassword.tsx:169 @@ -3770,7 +3774,7 @@ msgstr "開啟導覽" msgid "Open post options menu" msgstr "開啟貼文選項選單" -#: src/screens/StarterPack/StarterPackScreen.tsx:423 +#: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" msgstr "" @@ -4524,8 +4528,8 @@ msgstr "檢舉訊息" msgid "Report post" msgstr "檢舉貼文" -#: src/screens/StarterPack/StarterPackScreen.tsx:476 -#: src/screens/StarterPack/StarterPackScreen.tsx:479 +#: src/screens/StarterPack/StarterPackScreen.tsx:504 +#: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" msgstr "" @@ -4571,7 +4575,7 @@ msgstr "轉貼" msgid "Repost" msgstr "轉貼" -#: src/screens/StarterPack/StarterPackScreen.tsx:418 +#: src/screens/StarterPack/StarterPackScreen.tsx:446 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4680,7 +4684,7 @@ msgid "Retry" msgstr "重試" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:622 +#: src/screens/StarterPack/StarterPackScreen.tsx:650 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "返回上一頁" @@ -5094,14 +5098,9 @@ msgstr "性行為或性暗示裸露。" msgid "Sexually Suggestive" msgstr "性暗示" -#: src/view/com/lightbox/Lightbox.tsx:144 -msgctxt "action" -msgid "Share" -msgstr "分享" - #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:312 -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:340 +#: src/screens/StarterPack/StarterPackScreen.tsx:493 #: src/view/com/profile/ProfileMenu.tsx:219 #: src/view/com/profile/ProfileMenu.tsx:228 #: src/view/com/util/forms/PostDropdownBtn.tsx:307 @@ -5111,6 +5110,11 @@ msgstr "分享" msgid "Share" msgstr "分享" +#: src/view/com/lightbox/Lightbox.tsx:144 +msgctxt "action" +msgid "Share" +msgstr "分享" + #: src/components/dms/ChatEmptyPill.tsx:37 msgid "Share a cool story!" msgstr "分享一個有趣的故事!" @@ -5132,7 +5136,7 @@ msgstr "分享動態源" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:469 +#: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" msgstr "" @@ -5150,7 +5154,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:305 +#: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" msgstr "" @@ -5332,8 +5336,8 @@ msgstr "以 @{0} 身分登入" msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:296 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:303 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" msgstr "" @@ -5432,7 +5436,7 @@ msgstr "" msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:586 +#: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" msgstr "" @@ -5597,8 +5601,8 @@ msgstr "其中包含以下內容:" msgid "That handle is already taken." msgstr "這個帳號代碼已被使用。" -#: src/screens/StarterPack/StarterPackScreen.tsx:102 -#: src/screens/StarterPack/StarterPackScreen.tsx:103 +#: src/screens/StarterPack/StarterPackScreen.tsx:105 +#: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -5617,7 +5621,7 @@ msgstr "社群準則已移動到 <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "版權政策已移動到 <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:317 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -5646,7 +5650,7 @@ msgstr "這則貼文可能已被刪除。" msgid "The Privacy Policy has been moved to <0/>" msgstr "隱私政策已移動到 <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:596 +#: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -5815,6 +5819,7 @@ msgstr "此動態源由於目前使用人數眾多而暫時無法使用。請稍 msgid "This feed is empty! You may need to follow more users or tune your language settings." msgstr "這個動態源是空的!您或許需要先跟隨更多的人或檢查您的語言設定。" +#: src/components/StarterPack/Main/PostsList.tsx:36 #: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." @@ -6027,7 +6032,7 @@ msgstr "取消靜音列表" msgid "Unable to contact your service. Please check your Internet connection." msgstr "無法連線到服務,請檢查您的網路連線。" -#: src/screens/StarterPack/StarterPackScreen.tsx:520 +#: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" msgstr "" @@ -6620,7 +6625,7 @@ msgstr "開" msgid "Yes, deactivate" msgstr "確定並停用" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" msgstr "" @@ -6841,15 +6846,15 @@ msgstr "" msgid "You'll follow the suggested users once you finish creating your account!" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:229 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:267 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" msgstr "" From 49396451ec8c877aebd27299a98c1b9e5b1e6cd4 Mon Sep 17 00:00:00 2001 From: devin ivy Date: Thu, 27 Jun 2024 13:02:29 -0400 Subject: [PATCH 047/153] bskyogcard: support emoji, more languages, long starter pack names (#4668) --- .../workflows/build-and-push-ogcard-aws.yaml | 4 +- .gitignore | 3 + Dockerfile.bskyogcard | 2 +- bskyogcard/package.json | 8 +- bskyogcard/scripts/install-fonts.ts | 40 ++ .../src/assets/{ => fonts}/Inter-Bold.ttf | Bin bskyogcard/src/components/StarterPack.tsx | 5 +- bskyogcard/src/context.ts | 20 +- bskyogcard/src/logger.ts | 1 + bskyogcard/src/routes/starter-pack.tsx | 6 + bskyogcard/src/util.ts | 37 ++ bskyogcard/yarn.lock | 450 ++++++++++++------ 12 files changed, 413 insertions(+), 163 deletions(-) create mode 100644 bskyogcard/scripts/install-fonts.ts rename bskyogcard/src/assets/{ => fonts}/Inter-Bold.ttf (100%) create mode 100644 bskyogcard/src/util.ts diff --git a/.github/workflows/build-and-push-ogcard-aws.yaml b/.github/workflows/build-and-push-ogcard-aws.yaml index 5d6ff041d3..8fb680a90d 100644 --- a/.github/workflows/build-and-push-ogcard-aws.yaml +++ b/.github/workflows/build-and-push-ogcard-aws.yaml @@ -1,8 +1,6 @@ name: build-and-push-ogcard-aws on: - push: - branches: - - divy/bskycard + workflow_dispatch: env: REGISTRY: ${{ secrets.AWS_ECR_REGISTRY_USEAST2_PACKAGES_REGISTRY }} diff --git a/.gitignore b/.gitignore index b546152cc2..7233b35472 100644 --- a/.gitignore +++ b/.gitignore @@ -115,3 +115,6 @@ src/locale/locales/**/*.js *.apk *.aab *.ipa + +# ogcard assets +bskyogcard/src/assets/fonts/noto-* diff --git a/Dockerfile.bskyogcard b/Dockerfile.bskyogcard index aa68add595..a01f68937a 100644 --- a/Dockerfile.bskyogcard +++ b/Dockerfile.bskyogcard @@ -10,7 +10,7 @@ RUN yarn install --frozen-lockfile COPY ./bskyogcard ./ # build then prune dev deps -RUN yarn build +RUN yarn install-fonts && yarn build RUN yarn install --production --ignore-scripts --prefer-offline # Uses assets from build stage to reduce build size diff --git a/bskyogcard/package.json b/bskyogcard/package.json index 3be1337fc3..176f9d8c49 100644 --- a/bskyogcard/package.json +++ b/bskyogcard/package.json @@ -5,7 +5,9 @@ "main": "src/index.ts", "scripts": { "start": "node --loader ts-node/esm ./src/bin.ts", - "build": "tsc && cp -r src/assets dist/assets" + "dev": "node --watch-path ./src --loader ts-node/esm ./src/bin.ts", + "build": "tsc && cp -r src/assets dist/", + "install-fonts": "node --loader ts-node/esm scripts/install-fonts.ts" }, "dependencies": { "@atproto/api": "0.12.19-next.0", @@ -15,10 +17,12 @@ "http-terminator": "^3.2.0", "pino": "^9.2.0", "react": "^18.3.1", - "satori": "^0.10.13" + "satori": "^0.10.13", + "twemoji": "^14.0.2" }, "devDependencies": { "@types/node": "^20.14.3", + "ts-node": "^10.9.2", "typescript": "^5.4.5" } } diff --git a/bskyogcard/scripts/install-fonts.ts b/bskyogcard/scripts/install-fonts.ts new file mode 100644 index 0000000000..5c58fb7b9e --- /dev/null +++ b/bskyogcard/scripts/install-fonts.ts @@ -0,0 +1,40 @@ +import {writeFile} from 'node:fs/promises' +import * as path from 'node:path' +import {fileURLToPath} from 'node:url' + +const __DIRNAME = path.dirname(fileURLToPath(import.meta.url)) + +const FONTS = [ + 'https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-jp@5.0/japanese-700-normal.ttf', + 'https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-tc@5.0/chinese-traditional-700-normal.ttf', + 'https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-sc@5.0/chinese-simplified-700-normal.ttf', + 'https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-hk@5.0/chinese-hongkong-700-normal.ttf', + 'https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-kr@5.0/korean-700-normal.ttf', + 'https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-thai@5.0/thai-700-normal.ttf', + 'https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-arabic@5.0/arabic-700-normal.ttf', + 'https://cdn.jsdelivr.net/fontsource/fonts/noto-sans-hebrew@5.0/hebrew-700-normal.ttf', +] + +async function main() { + await Promise.all( + FONTS.map(async urlStr => { + const url = new URL(urlStr) + const res = await fetch(url) + const font = await res.arrayBuffer() + const filename = url.pathname + .split('/') + .slice(-2) + .join('/') + .replace(/@[\d.]+\//, '-') + if (!res.ok) { + throw new Error(`HTTP ${res.status}: fetching failed for ${filename}`) + } + await writeFile( + path.join(__DIRNAME, '..', 'src', 'assets', 'fonts', filename), + Buffer.from(font), + ) + }), + ) +} + +main() diff --git a/bskyogcard/src/assets/Inter-Bold.ttf b/bskyogcard/src/assets/fonts/Inter-Bold.ttf similarity index 100% rename from bskyogcard/src/assets/Inter-Bold.ttf rename to bskyogcard/src/assets/fonts/Inter-Bold.ttf diff --git a/bskyogcard/src/components/StarterPack.tsx b/bskyogcard/src/components/StarterPack.tsx index f73442190c..29bb8f32ab 100644 --- a/bskyogcard/src/components/StarterPack.tsx +++ b/bskyogcard/src/components/StarterPack.tsx @@ -43,6 +43,7 @@ export function StarterPack(props: { } else { imagesAcross.push(...imagesExceptCreator.slice(0, 7)) } + const isLongTitle = record ? record.name.length > 30 : false return (
{record?.name || 'Starter Pack'}
diff --git a/bskyogcard/src/context.ts b/bskyogcard/src/context.ts index f92651cafb..0c972c94de 100644 --- a/bskyogcard/src/context.ts +++ b/bskyogcard/src/context.ts @@ -1,8 +1,8 @@ -import {readFileSync} from 'node:fs' +import {readdirSync, readFileSync} from 'node:fs' +import * as path from 'node:path' +import {fileURLToPath} from 'node:url' import {AtpAgent} from '@atproto/api' -import * as path from 'path' -import {fileURLToPath} from 'url' import {Config} from './config.js' @@ -28,12 +28,14 @@ export class AppContext { static async fromConfig(cfg: Config, overrides?: Partial) { const appviewAgent = new AtpAgent({service: cfg.service.appviewUrl}) - const fonts = [ - { - name: 'Inter', - data: readFileSync(path.join(__DIRNAME, 'assets', 'Inter-Bold.ttf')), - }, - ] + const fontDirectory = path.join(__DIRNAME, 'assets', 'fonts') + const fontFiles = readdirSync(fontDirectory) + const fonts = fontFiles.map(file => { + return { + name: path.basename(file, path.extname(file)), + data: readFileSync(path.join(fontDirectory, file)), + } + }) return new AppContext({ cfg, appviewAgent, diff --git a/bskyogcard/src/logger.ts b/bskyogcard/src/logger.ts index 04b5d90469..3202065134 100644 --- a/bskyogcard/src/logger.ts +++ b/bskyogcard/src/logger.ts @@ -1,3 +1,4 @@ import {subsystemLogger} from '@atproto/common' export const httpLogger = subsystemLogger('bskyogcard') +export const renderLogger = subsystemLogger('bskyogcard:render') diff --git a/bskyogcard/src/routes/starter-pack.tsx b/bskyogcard/src/routes/starter-pack.tsx index cb3a553272..06cd6977c0 100644 --- a/bskyogcard/src/routes/starter-pack.tsx +++ b/bskyogcard/src/routes/starter-pack.tsx @@ -13,6 +13,7 @@ import { } from '../components/StarterPack.js' import {AppContext} from '../context.js' import {httpLogger} from '../logger.js' +import {loadEmojiAsSvg} from '../util.js' import {handler, originVerifyMiddleware} from './util.js' export default function (ctx: AppContext, app: Express) { @@ -65,6 +66,11 @@ export default function (ctx: AppContext, app: Express) { fonts: ctx.fonts, height: STARTERPACK_HEIGHT, width: STARTERPACK_WIDTH, + loadAdditionalAsset: async (code, text) => { + if (code === 'emoji') { + return await loadEmojiAsSvg(text) + } + }, }, ) const output = await resvg.renderAsync(svg) diff --git a/bskyogcard/src/util.ts b/bskyogcard/src/util.ts new file mode 100644 index 0000000000..2b86ded066 --- /dev/null +++ b/bskyogcard/src/util.ts @@ -0,0 +1,37 @@ +import twemoji from 'twemoji' + +import {renderLogger} from './logger.js' + +const U200D = String.fromCharCode(0x200d) +const UFE0F_REGEXP = /\uFE0F/g + +export async function loadEmojiAsSvg(chars: string) { + const cached = emojiCache.get(chars) + if (cached) return cached + const iconCode = twemoji.convert.toCodePoint( + chars.indexOf(U200D) < 0 ? chars.replace(UFE0F_REGEXP, '') : chars, + ) + const res = await fetch(getEmojiUrl(iconCode)) + const body = await res.arrayBuffer() + if (!res.ok) { + renderLogger.warn( + {status: res.status, err: Buffer.from(body).toString()}, + 'could not fetch emoji', + ) + return + } + const svg = + 'data:image/svg+xml;base64,' + Buffer.from(body).toString('base64') + emojiCache.set(chars, svg) + return svg +} + +const emojiCache = new Map() + +function getEmojiUrl(code: string) { + return ( + 'https://cdnjs.cloudflare.com/ajax/libs/twemoji/14.0.2/svg/' + + code.toLowerCase() + + '.svg' + ) +} diff --git a/bskyogcard/yarn.lock b/bskyogcard/yarn.lock index 0403efb84e..484aee9ee8 100644 --- a/bskyogcard/yarn.lock +++ b/bskyogcard/yarn.lock @@ -4,7 +4,7 @@ "@atproto/api@0.12.19-next.0": version "0.12.19-next.0" - resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.12.19-next.0.tgz#9592476cbdba8482d0fd8d65e20275c95d6d5fd4" + resolved "https://registry.npmjs.org/@atproto/api/-/api-0.12.19-next.0.tgz" integrity sha512-wyWr4uIabTgDTBY99y3QyrFxcIx1Mh4DkURgSv8sd/b+w0lfrZAJh0Gg9BXdg/iIjcf/M2lCTL04r0vASfkMVg== dependencies: "@atproto/common-web" "^0.3.0" @@ -16,7 +16,7 @@ "@atproto/common-web@^0.3.0": version "0.3.0" - resolved "https://registry.yarnpkg.com/@atproto/common-web/-/common-web-0.3.0.tgz#36da8c2c31d8cf8a140c3c8f03223319bf4430bb" + resolved "https://registry.npmjs.org/@atproto/common-web/-/common-web-0.3.0.tgz" integrity sha512-67VnV6JJyX+ZWyjV7xFQMypAgDmjVaR9ZCuU/QW+mqlqI7fex2uL4Fv+7/jHadgzhuJHVd6OHOvNn0wR5WZYtA== dependencies: graphemer "^1.4.0" @@ -26,7 +26,7 @@ "@atproto/common@^0.4.0": version "0.4.0" - resolved "https://registry.yarnpkg.com/@atproto/common/-/common-0.4.0.tgz#d77696c7eb545426df727837d9ee333b429fe7ef" + resolved "https://registry.npmjs.org/@atproto/common/-/common-0.4.0.tgz" integrity sha512-yOXuPlCjT/OK9j+neIGYn9wkxx/AlxQSucysAF0xgwu0Ji8jAtKBf9Jv6R5ObYAjAD/kVUvEYumle+Yq/R9/7g== dependencies: "@atproto/common-web" "^0.3.0" @@ -38,7 +38,7 @@ "@atproto/lexicon@^0.4.0": version "0.4.0" - resolved "https://registry.yarnpkg.com/@atproto/lexicon/-/lexicon-0.4.0.tgz#63e8829945d80c25524882caa8ed27b1151cc576" + resolved "https://registry.npmjs.org/@atproto/lexicon/-/lexicon-0.4.0.tgz" integrity sha512-RvCBKdSI4M8qWm5uTNz1z3R2yIvIhmOsMuleOj8YR6BwRD+QbtUBy3l+xQ7iXf4M5fdfJFxaUNa6Ty0iRwdKqQ== dependencies: "@atproto/common-web" "^0.3.0" @@ -49,12 +49,12 @@ "@atproto/syntax@^0.3.0": version "0.3.0" - resolved "https://registry.yarnpkg.com/@atproto/syntax/-/syntax-0.3.0.tgz#fafa2dbea9add37253005cb663e7373e05e618b3" + resolved "https://registry.npmjs.org/@atproto/syntax/-/syntax-0.3.0.tgz" integrity sha512-Weq0ZBxffGHDXHl9U7BQc2BFJi/e23AL+k+i5+D9hUq/bzT4yjGsrCejkjq0xt82xXDjmhhvQSZ0LqxyZ5woxA== "@atproto/xrpc@^0.5.0": version "0.5.0" - resolved "https://registry.yarnpkg.com/@atproto/xrpc/-/xrpc-0.5.0.tgz#dacbfd8f7b13f0ab5bd56f8fdd4b460e132a6032" + resolved "https://registry.npmjs.org/@atproto/xrpc/-/xrpc-0.5.0.tgz" integrity sha512-swu+wyOLvYW4l3n+VAuJbHcPcES+tin2Lsrp8Bw5aIXIICiuFn1YMFlwK9JwVUzTH21Py1s1nHEjr4CJeElJog== dependencies: "@atproto/lexicon" "^0.4.0" @@ -62,7 +62,7 @@ "@cbor-extract/cbor-extract-darwin-arm64@2.2.0": version "2.2.0" - resolved "https://registry.yarnpkg.com/@cbor-extract/cbor-extract-darwin-arm64/-/cbor-extract-darwin-arm64-2.2.0.tgz#8d65cb861a99622e1b4a268e2d522d2ec6137338" + resolved "https://registry.npmjs.org/@cbor-extract/cbor-extract-darwin-arm64/-/cbor-extract-darwin-arm64-2.2.0.tgz" integrity sha512-P7swiOAdF7aSi0H+tHtHtr6zrpF3aAq/W9FXx5HektRvLTM2O89xCyXF3pk7pLc7QpaY7AoaE8UowVf9QBdh3w== "@cbor-extract/cbor-extract-darwin-x64@2.2.0": @@ -90,14 +90,39 @@ resolved "https://registry.yarnpkg.com/@cbor-extract/cbor-extract-win32-x64/-/cbor-extract-win32-x64-2.2.0.tgz#4b3f07af047f984c082de34b116e765cb9af975f" integrity sha512-l2M+Z8DO2vbvADOBNLbbh9y5ST1RY5sqkWOg/58GkUPBYou/cuNZ68SGQ644f1CvZ8kcOxyZtw06+dxWHIoN/w== +"@cspotcode/source-map-support@^0.8.0": + version "0.8.1" + resolved "https://registry.yarnpkg.com/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz#00629c35a688e05a88b1cda684fb9d5e73f000a1" + integrity sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw== + dependencies: + "@jridgewell/trace-mapping" "0.3.9" + "@ipld/dag-cbor@^7.0.3": version "7.0.3" - resolved "https://registry.yarnpkg.com/@ipld/dag-cbor/-/dag-cbor-7.0.3.tgz#aa31b28afb11a807c3d627828a344e5521ac4a1e" + resolved "https://registry.npmjs.org/@ipld/dag-cbor/-/dag-cbor-7.0.3.tgz" integrity sha512-1VVh2huHsuohdXC1bGJNE8WR72slZ9XE2T3wbBBq31dm7ZBatmKLLxrB+XAqafxfRFjv08RZmj/W/ZqaM13AuA== dependencies: cborg "^1.6.0" multiformats "^9.5.4" +"@jridgewell/resolve-uri@^3.0.3": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== + +"@jridgewell/sourcemap-codec@^1.4.10": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + +"@jridgewell/trace-mapping@0.3.9": + version "0.3.9" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz#6534fd5933a53ba7cbf3a17615e273a0d1273ff9" + integrity sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ== + dependencies: + "@jridgewell/resolve-uri" "^3.0.3" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@resvg/resvg-js-android-arm-eabi@2.6.2": version "2.6.2" resolved "https://registry.yarnpkg.com/@resvg/resvg-js-android-arm-eabi/-/resvg-js-android-arm-eabi-2.6.2.tgz#e761e0b688127db64879f455178c92468a9aeabe" @@ -110,7 +135,7 @@ "@resvg/resvg-js-darwin-arm64@2.6.2": version "2.6.2" - resolved "https://registry.yarnpkg.com/@resvg/resvg-js-darwin-arm64/-/resvg-js-darwin-arm64-2.6.2.tgz#49bd3faeda5c49f53302d970e6e79d006de18e7d" + resolved "https://registry.npmjs.org/@resvg/resvg-js-darwin-arm64/-/resvg-js-darwin-arm64-2.6.2.tgz" integrity sha512-nmok2LnAd6nLUKI16aEB9ydMC6Lidiiq2m1nEBDR1LaaP7FGs4AJ90qDraxX+CWlVuRlvNjyYJTNv8qFjtL9+A== "@resvg/resvg-js-darwin-x64@2.6.2": @@ -160,7 +185,7 @@ "@resvg/resvg-js@^2.6.2": version "2.6.2" - resolved "https://registry.yarnpkg.com/@resvg/resvg-js/-/resvg-js-2.6.2.tgz#3e92a907d88d879256c585347c5b21a7f3bb5b46" + resolved "https://registry.npmjs.org/@resvg/resvg-js/-/resvg-js-2.6.2.tgz" integrity sha512-xBaJish5OeGmniDj9cW5PRa/PtmuVU3ziqrbr5xJj901ZDN4TosrVaNZpEiLZAxdfnhAe7uQ7QFWfjPe9d9K2Q== optionalDependencies: "@resvg/resvg-js-android-arm-eabi" "2.6.2" @@ -178,57 +203,94 @@ "@shuding/opentype.js@1.4.0-beta.0": version "1.4.0-beta.0" - resolved "https://registry.yarnpkg.com/@shuding/opentype.js/-/opentype.js-1.4.0-beta.0.tgz#5d1e7e9e056f546aad41df1c5043f8f85d39e24b" + resolved "https://registry.npmjs.org/@shuding/opentype.js/-/opentype.js-1.4.0-beta.0.tgz" integrity sha512-3NgmNyH3l/Hv6EvsWJbsvpcpUba6R8IREQ83nH83cyakCw7uM1arZKNfHwv1Wz6jgqrF/j4x5ELvR6PnK9nTcA== dependencies: fflate "^0.7.3" string.prototype.codepointat "^0.2.1" +"@tsconfig/node10@^1.0.7": + version "1.0.11" + resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.11.tgz#6ee46400685f130e278128c7b38b7e031ff5b2f2" + integrity sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw== + +"@tsconfig/node12@^1.0.7": + version "1.0.11" + resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" + integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== + +"@tsconfig/node14@^1.0.0": + version "1.0.3" + resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" + integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== + +"@tsconfig/node16@^1.0.2": + version "1.0.4" + resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" + integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== + "@types/node@^20.14.3": version "20.14.3" - resolved "https://registry.yarnpkg.com/@types/node/-/node-20.14.3.tgz#7a9a5d009b0861e7f337166dc435dbfd758db92d" + resolved "https://registry.npmjs.org/@types/node/-/node-20.14.3.tgz" integrity sha512-Nuzqa6WAxeGnve6SXqiPAM9rA++VQs+iLZ1DDd56y0gdvygSZlQvZuvdFPR3yLqkVxPu4WrO02iDEyH1g+wazw== dependencies: undici-types "~5.26.4" abort-controller@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/abort-controller/-/abort-controller-3.0.0.tgz#eaf54d53b62bae4138e809ca225c8439a6efb392" + resolved "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz" integrity sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg== dependencies: event-target-shim "^5.0.0" accepts@~1.3.8: version "1.3.8" - resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.8.tgz#0bf0be125b67014adcb0b0921e62db7bffe16b2e" + resolved "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz" integrity sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw== dependencies: mime-types "~2.1.34" negotiator "0.6.3" +acorn-walk@^8.1.1: + version "8.3.3" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.3.tgz#9caeac29eefaa0c41e3d4c65137de4d6f34df43e" + integrity sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw== + dependencies: + acorn "^8.11.0" + +acorn@^8.11.0, acorn@^8.4.1: + version "8.12.0" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.0.tgz#1627bfa2e058148036133b8d9b51a700663c294c" + integrity sha512-RTvkC4w+KNXrM39/lWCUaG0IbRkWdCv7W/IOW9oU6SawyxulvkQy5HQPVTKxEjczcUvapcrw3cFx/60VN/NRNw== + +arg@^4.1.0: + version "4.1.3" + resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" + integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== + array-flatten@1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" + resolved "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz" integrity sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg== atomic-sleep@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/atomic-sleep/-/atomic-sleep-1.0.0.tgz#eb85b77a601fc932cfe432c5acd364a9e2c9075b" + resolved "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz" integrity sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ== base64-js@0.0.8: version "0.0.8" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-0.0.8.tgz#1101e9544f4a76b1bc3b26d452ca96d7a35e7978" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz" integrity sha512-3XSA2cR/h/73EzlXXdU6YNycmYI7+kicTxks4eJg2g39biHR84slg2+des+p7iHYhbRg/udIS4TD53WabcOUkw== base64-js@^1.3.1: version "1.5.1" - resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz" integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== body-parser@1.20.2: version "1.20.2" - resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.20.2.tgz#6feb0e21c4724d06de7ff38da36dad4f57a747fd" + resolved "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz" integrity sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA== dependencies: bytes "3.1.2" @@ -246,12 +308,12 @@ body-parser@1.20.2: boolean@^3.1.4: version "3.2.0" - resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.2.0.tgz#9e5294af4e98314494cbb17979fa54ca159f116b" + resolved "https://registry.npmjs.org/boolean/-/boolean-3.2.0.tgz" integrity sha512-d0II/GO9uf9lfUHH2BQsjxzRJZBdsjgsBiW4BvhWk/3qoKwQFjIDVN19PfX8F2D/r9PCMTtLWjYVCFrpeYUzsw== buffer@^6.0.3: version "6.0.3" - resolved "https://registry.yarnpkg.com/buffer/-/buffer-6.0.3.tgz#2ace578459cc8fbe2a70aaa8f52ee63b6a74c6c6" + resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz" integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA== dependencies: base64-js "^1.3.1" @@ -259,12 +321,12 @@ buffer@^6.0.3: bytes@3.1.2: version "3.1.2" - resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.2.tgz#8b0beeb98605adf1b128fa4386403c009e0221a5" + resolved "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz" integrity sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg== call-bind@^1.0.7: version "1.0.7" - resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" + resolved "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz" integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== dependencies: es-define-property "^1.0.0" @@ -275,12 +337,12 @@ call-bind@^1.0.7: camelize@^1.0.0: version "1.0.1" - resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.1.tgz#89b7e16884056331a35d6b5ad064332c91daa6c3" + resolved "https://registry.npmjs.org/camelize/-/camelize-1.0.1.tgz" integrity sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ== cbor-extract@^2.2.0: version "2.2.0" - resolved "https://registry.yarnpkg.com/cbor-extract/-/cbor-extract-2.2.0.tgz#cee78e630cbeae3918d1e2e58e0cebaf3a3be840" + resolved "https://registry.npmjs.org/cbor-extract/-/cbor-extract-2.2.0.tgz" integrity sha512-Ig1zM66BjLfTXpNgKpvBePq271BPOvu8MR0Jl080yG7Jsl+wAZunfrwiwA+9ruzm/WEdIV5QF/bjDZTqyAIVHA== dependencies: node-gyp-build-optional-packages "5.1.1" @@ -294,61 +356,66 @@ cbor-extract@^2.2.0: cbor-x@^1.5.1: version "1.5.9" - resolved "https://registry.yarnpkg.com/cbor-x/-/cbor-x-1.5.9.tgz#ed6b2afcd7884bdd697674bfb7332c1473a13ecf" + resolved "https://registry.npmjs.org/cbor-x/-/cbor-x-1.5.9.tgz" integrity sha512-OEI5rEu3MeR0WWNUXuIGkxmbXVhABP+VtgAXzm48c9ulkrsvxshjjk94XSOGphyAKeNGLPfAxxzEtgQ6rEVpYQ== optionalDependencies: cbor-extract "^2.2.0" cborg@^1.6.0: version "1.10.2" - resolved "https://registry.yarnpkg.com/cborg/-/cborg-1.10.2.tgz#83cd581b55b3574c816f82696307c7512db759a1" + resolved "https://registry.npmjs.org/cborg/-/cborg-1.10.2.tgz" integrity sha512-b3tFPA9pUr2zCUiCfRd2+wok2/LBSNUMKOuRRok+WlvvAgEt/PlbgPTsZUcwCOs53IJvLgTp0eotwtosE6njug== color-name@^1.1.4: version "1.1.4" - resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== content-disposition@0.5.4: version "0.5.4" - resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.4.tgz#8b82b4efac82512a02bb0b1dcec9d2c5e8eb5bfe" + resolved "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz" integrity sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ== dependencies: safe-buffer "5.2.1" content-type@~1.0.4, content-type@~1.0.5: version "1.0.5" - resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.5.tgz#8b773162656d1d1086784c8f23a54ce6d73d7918" + resolved "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz" integrity sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA== cookie-signature@1.0.6: version "1.0.6" - resolved "https://registry.yarnpkg.com/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c" + resolved "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz" integrity sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ== cookie@0.6.0: version "0.6.0" - resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.6.0.tgz#2798b04b071b0ecbff0dbb62a505a8efa4e19051" + resolved "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz" integrity sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw== +create-require@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" + integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== + css-background-parser@^0.1.0: version "0.1.0" - resolved "https://registry.yarnpkg.com/css-background-parser/-/css-background-parser-0.1.0.tgz#48a17f7fe6d4d4f1bca3177ddf16c5617950741b" + resolved "https://registry.npmjs.org/css-background-parser/-/css-background-parser-0.1.0.tgz" integrity sha512-2EZLisiZQ+7m4wwur/qiYJRniHX4K5Tc9w93MT3AS0WS1u5kaZ4FKXlOTBhOjc+CgEgPiGY+fX1yWD8UwpEqUA== css-box-shadow@1.0.0-3: version "1.0.0-3" - resolved "https://registry.yarnpkg.com/css-box-shadow/-/css-box-shadow-1.0.0-3.tgz#9eaeb7140947bf5d649fc49a19e4bbaa5f602713" + resolved "https://registry.npmjs.org/css-box-shadow/-/css-box-shadow-1.0.0-3.tgz" integrity sha512-9jaqR6e7Ohds+aWwmhe6wILJ99xYQbfmK9QQB9CcMjDbTxPZjwEmUQpU91OG05Xgm8BahT5fW+svbsQGjS/zPg== css-color-keywords@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/css-color-keywords/-/css-color-keywords-1.0.0.tgz#fea2616dc676b2962686b3af8dbdbe180b244e05" + resolved "https://registry.npmjs.org/css-color-keywords/-/css-color-keywords-1.0.0.tgz" integrity sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg== css-to-react-native@^3.0.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/css-to-react-native/-/css-to-react-native-3.2.0.tgz#cdd8099f71024e149e4f6fe17a7d46ecd55f1e32" + resolved "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz" integrity sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ== dependencies: camelize "^1.0.0" @@ -357,14 +424,14 @@ css-to-react-native@^3.0.0: debug@2.6.9: version "2.6.9" - resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== dependencies: ms "2.0.0" define-data-property@^1.1.4: version "1.1.4" - resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + resolved "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz" integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== dependencies: es-define-property "^1.0.0" @@ -373,74 +440,79 @@ define-data-property@^1.1.4: delay@^5.0.0: version "5.0.0" - resolved "https://registry.yarnpkg.com/delay/-/delay-5.0.0.tgz#137045ef1b96e5071060dd5be60bf9334436bd1d" + resolved "https://registry.npmjs.org/delay/-/delay-5.0.0.tgz" integrity sha512-ReEBKkIfe4ya47wlPYf/gu5ib6yUG0/Aez0JQZQz94kiWtRQvZIQbTiehsnwHvLSWJnQdhVeqYue7Id1dKr0qw== depd@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" + resolved "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz" integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== destroy@1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.2.0.tgz#4803735509ad8be552934c67df614f94e66fa015" + resolved "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz" integrity sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg== detect-libc@^2.0.1: version "2.0.3" - resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-2.0.3.tgz#f0cd503b40f9939b894697d19ad50895e30cf700" + resolved "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz" integrity sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw== +diff@^4.0.1: + version "4.0.2" + resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" + integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== + ee-first@1.1.1: version "1.1.1" - resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" + resolved "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" integrity sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow== emoji-regex@^10.2.1: version "10.3.0" - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-10.3.0.tgz#76998b9268409eb3dae3de989254d456e70cfe23" + resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz" integrity sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw== encodeurl@~1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59" + resolved "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz" integrity sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w== es-define-property@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" + resolved "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz" integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== dependencies: get-intrinsic "^1.2.4" es-errors@^1.3.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + resolved "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz" integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== escape-html@^1.0.3, escape-html@~1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" + resolved "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz" integrity sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow== etag@~1.8.1: version "1.8.1" - resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" + resolved "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz" integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg== event-target-shim@^5.0.0: version "5.0.1" - resolved "https://registry.yarnpkg.com/event-target-shim/-/event-target-shim-5.0.1.tgz#5d4d3ebdf9583d63a5333ce2deb7480ab2b05789" + resolved "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz" integrity sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ== events@^3.3.0: version "3.3.0" - resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" + resolved "https://registry.npmjs.org/events/-/events-3.3.0.tgz" integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== express@^4.19.2: version "4.19.2" - resolved "https://registry.yarnpkg.com/express/-/express-4.19.2.tgz#e25437827a3aa7f2a827bc8171bbbb664a356465" + resolved "https://registry.npmjs.org/express/-/express-4.19.2.tgz" integrity sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q== dependencies: accepts "~1.3.8" @@ -477,24 +549,24 @@ express@^4.19.2: fast-printf@^1.6.9: version "1.6.9" - resolved "https://registry.yarnpkg.com/fast-printf/-/fast-printf-1.6.9.tgz#212f56570d2dc8ccdd057ee93d50dd414d07d676" + resolved "https://registry.npmjs.org/fast-printf/-/fast-printf-1.6.9.tgz" integrity sha512-FChq8hbz65WMj4rstcQsFB0O7Cy++nmbNfLYnD9cYv2cRn8EG6k/MGn9kO/tjO66t09DLDugj3yL+V2o6Qftrg== dependencies: boolean "^3.1.4" fast-redact@^3.1.1: version "3.5.0" - resolved "https://registry.yarnpkg.com/fast-redact/-/fast-redact-3.5.0.tgz#e9ea02f7e57d0cd8438180083e93077e496285e4" + resolved "https://registry.npmjs.org/fast-redact/-/fast-redact-3.5.0.tgz" integrity sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A== fflate@^0.7.3: version "0.7.4" - resolved "https://registry.yarnpkg.com/fflate/-/fflate-0.7.4.tgz#61587e5d958fdabb5a9368a302c25363f4f69f50" + resolved "https://registry.npmjs.org/fflate/-/fflate-0.7.4.tgz" integrity sha512-5u2V/CDW15QM1XbbgS+0DfPxVB+jUKhWEKuuFuHncbk3tEEqzmoXL+2KyOFuKGqOnmdIy0/davWF1CkuwtibCw== finalhandler@1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.2.0.tgz#7d23fe5731b207b4640e4fcd00aec1f9207a7b32" + resolved "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz" integrity sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg== dependencies: debug "2.6.9" @@ -507,22 +579,31 @@ finalhandler@1.2.0: forwarded@0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/forwarded/-/forwarded-0.2.0.tgz#2269936428aad4c15c7ebe9779a84bf0b2a81811" + resolved "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz" integrity sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow== fresh@0.5.2: version "0.5.2" - resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7" + resolved "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz" integrity sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q== +fs-extra@^8.0.1: + version "8.1.0" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" + integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== + dependencies: + graceful-fs "^4.2.0" + jsonfile "^4.0.0" + universalify "^0.1.0" + function-bind@^1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz" integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== get-intrinsic@^1.1.3, get-intrinsic@^1.2.4: version "1.2.4" - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" + resolved "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz" integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== dependencies: es-errors "^1.3.0" @@ -533,48 +614,53 @@ get-intrinsic@^1.1.3, get-intrinsic@^1.2.4: gopd@^1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + resolved "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz" integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== dependencies: get-intrinsic "^1.1.3" +graceful-fs@^4.1.6, graceful-fs@^4.2.0: + version "4.2.11" + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" + integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== + graphemer@^1.4.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + resolved "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz" integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== has-property-descriptors@^1.0.2: version "1.0.2" - resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + resolved "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz" integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== dependencies: es-define-property "^1.0.0" has-proto@^1.0.1: version "1.0.3" - resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" + resolved "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz" integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== has-symbols@^1.0.3: version "1.0.3" - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + resolved "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz" integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== hasown@^2.0.0: version "2.0.2" - resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz" integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== dependencies: function-bind "^1.1.2" hex-rgb@^4.1.0: version "4.3.0" - resolved "https://registry.yarnpkg.com/hex-rgb/-/hex-rgb-4.3.0.tgz#af5e974e83bb2fefe44d55182b004ec818c07776" + resolved "https://registry.npmjs.org/hex-rgb/-/hex-rgb-4.3.0.tgz" integrity sha512-Ox1pJVrDCyGHMG9CFg1tmrRUMRPRsAWYc/PinY0XzJU4K7y7vjNoLKIQ7BR5UJMCxNN8EM1MNDmHWA/B3aZUuw== http-errors@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.0.tgz#b7774a1486ef73cf7667ac9ae0858c012c57b9d3" + resolved "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz" integrity sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ== dependencies: depd "2.0.0" @@ -585,7 +671,7 @@ http-errors@2.0.0: http-terminator@^3.2.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/http-terminator/-/http-terminator-3.2.0.tgz#bc158d2694b733ca4fbf22a35065a81a609fb3e9" + resolved "https://registry.npmjs.org/http-terminator/-/http-terminator-3.2.0.tgz" integrity sha512-JLjck1EzPaWjsmIf8bziM3p9fgR1Y3JoUKAkyYEbZmFrIvJM6I8vVJfBGWlEtV9IWOvzNnaTtjuwZeBY2kwB4g== dependencies: delay "^5.0.0" @@ -595,39 +681,55 @@ http-terminator@^3.2.0: iconv-lite@0.4.24: version "0.4.24" - resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" + resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" ieee754@^1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.2.1.tgz#8eb7a10a63fff25d15a57b001586d177d1b0d352" + resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz" integrity sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA== inherits@2.0.4: version "2.0.4" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== ipaddr.js@1.9.1: version "1.9.1" - resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3" + resolved "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz" integrity sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g== iso-datestring-validator@^2.2.2: version "2.2.2" - resolved "https://registry.yarnpkg.com/iso-datestring-validator/-/iso-datestring-validator-2.2.2.tgz#2daa80d2900b7a954f9f731d42f96ee0c19a6895" + resolved "https://registry.npmjs.org/iso-datestring-validator/-/iso-datestring-validator-2.2.2.tgz" integrity sha512-yLEMkBbLZTlVQqOnQ4FiMujR6T4DEcCb1xizmvXS+OxuhwcbtynoosRzdMA69zZCShCNAbi+gJ71FxZBBXx1SA== "js-tokens@^3.0.0 || ^4.0.0": version "4.0.0" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg== + optionalDependencies: + graceful-fs "^4.1.6" + +jsonfile@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-5.0.0.tgz#e6b718f73da420d612823996fdf14a03f6ff6922" + integrity sha512-NQRZ5CRo74MhMMC3/3r5g2k4fjodJ/wh8MxjFbCViWKFjxrnudWSY5vomh+23ZaXzAS7J3fBZIR2dV6WbmfM0w== + dependencies: + universalify "^0.1.2" + optionalDependencies: + graceful-fs "^4.1.6" + linebreak@^1.1.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/linebreak/-/linebreak-1.1.0.tgz#831cf378d98bced381d8ab118f852bd50d81e46b" + resolved "https://registry.npmjs.org/linebreak/-/linebreak-1.1.0.tgz" integrity sha512-MHp03UImeVhB7XZtjd0E4n6+3xr5Dq/9xI/5FptGk5FrbDR3zagPa2DS6U8ks/3HjbKWG9Q1M2ufOzxV2qLYSQ== dependencies: base64-js "0.0.8" @@ -635,114 +737,119 @@ linebreak@^1.1.0: loose-envify@^1.1.0: version "1.4.0" - resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + resolved "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz" integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== dependencies: js-tokens "^3.0.0 || ^4.0.0" +make-error@^1.1.1: + version "1.3.6" + resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" + integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== + media-typer@0.3.0: version "0.3.0" - resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" + resolved "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz" integrity sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ== merge-descriptors@1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" + resolved "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz" integrity sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w== methods@~1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" + resolved "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz" integrity sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w== mime-db@1.52.0: version "1.52.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70" + resolved "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz" integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg== mime-types@~2.1.24, mime-types@~2.1.34: version "2.1.35" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.35.tgz#381a871b62a734450660ae3deee44813f70d959a" + resolved "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz" integrity sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw== dependencies: mime-db "1.52.0" mime@1.6.0: version "1.6.0" - resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" + resolved "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz" integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== ms@2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz" integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A== ms@2.1.3: version "2.1.3" - resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz" integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== multiformats@^9.4.2, multiformats@^9.5.4, multiformats@^9.9.0: version "9.9.0" - resolved "https://registry.yarnpkg.com/multiformats/-/multiformats-9.9.0.tgz#c68354e7d21037a8f1f8833c8ccd68618e8f1d37" + resolved "https://registry.npmjs.org/multiformats/-/multiformats-9.9.0.tgz" integrity sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg== negotiator@0.6.3: version "0.6.3" - resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.3.tgz#58e323a72fedc0d6f9cd4d31fe49f51479590ccd" + resolved "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz" integrity sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg== node-gyp-build-optional-packages@5.1.1: version "5.1.1" - resolved "https://registry.yarnpkg.com/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.1.1.tgz#52b143b9dd77b7669073cbfe39e3f4118bfc603c" + resolved "https://registry.npmjs.org/node-gyp-build-optional-packages/-/node-gyp-build-optional-packages-5.1.1.tgz" integrity sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw== dependencies: detect-libc "^2.0.1" object-inspect@^1.13.1: version "1.13.1" - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" + resolved "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz" integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== on-exit-leak-free@^2.1.0: version "2.1.2" - resolved "https://registry.yarnpkg.com/on-exit-leak-free/-/on-exit-leak-free-2.1.2.tgz#fed195c9ebddb7d9e4c3842f93f281ac8dadd3b8" + resolved "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-2.1.2.tgz" integrity sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA== on-finished@2.4.1: version "2.4.1" - resolved "https://registry.yarnpkg.com/on-finished/-/on-finished-2.4.1.tgz#58c8c44116e54845ad57f14ab10b03533184ac3f" + resolved "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz" integrity sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg== dependencies: ee-first "1.1.1" p-finally@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz" integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== p-timeout@^3.0.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" + resolved "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz" integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== dependencies: p-finally "^1.0.0" p-wait-for@^3.2.0: version "3.2.0" - resolved "https://registry.yarnpkg.com/p-wait-for/-/p-wait-for-3.2.0.tgz#640429bcabf3b0dd9f492c31539c5718cb6a3f1f" + resolved "https://registry.npmjs.org/p-wait-for/-/p-wait-for-3.2.0.tgz" integrity sha512-wpgERjNkLrBiFmkMEjuZJEWKKDrNfHCKA1OhyN1wg1FrLkULbviEy6py1AyJUgZ72YWFbZ38FIpnqvVqAlDUwA== dependencies: p-timeout "^3.0.0" pako@^0.2.5: version "0.2.9" - resolved "https://registry.yarnpkg.com/pako/-/pako-0.2.9.tgz#f3f7522f4ef782348da8161bad9ecfd51bf83a75" + resolved "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz" integrity sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA== parse-css-color@^0.2.1: version "0.2.1" - resolved "https://registry.yarnpkg.com/parse-css-color/-/parse-css-color-0.2.1.tgz#b687a583f2e42e66ffdfce80a570706966e807c9" + resolved "https://registry.npmjs.org/parse-css-color/-/parse-css-color-0.2.1.tgz" integrity sha512-bwS/GGIFV3b6KS4uwpzCFj4w297Yl3uqnSgIPsoQkx7GMLROXfMnWvxfNkL0oh8HVhZA4hvJoEoEIqonfJ3BWg== dependencies: color-name "^1.1.4" @@ -750,17 +857,17 @@ parse-css-color@^0.2.1: parseurl@~1.3.3: version "1.3.3" - resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" + resolved "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz" integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== path-to-regexp@0.1.7: version "0.1.7" - resolved "https://registry.yarnpkg.com/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c" + resolved "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz" integrity sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ== pino-abstract-transport@^1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/pino-abstract-transport/-/pino-abstract-transport-1.2.0.tgz#97f9f2631931e242da531b5c66d3079c12c9d1b5" + resolved "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-1.2.0.tgz" integrity sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q== dependencies: readable-stream "^4.0.0" @@ -768,17 +875,17 @@ pino-abstract-transport@^1.2.0: pino-std-serializers@^6.0.0: version "6.2.2" - resolved "https://registry.yarnpkg.com/pino-std-serializers/-/pino-std-serializers-6.2.2.tgz#d9a9b5f2b9a402486a5fc4db0a737570a860aab3" + resolved "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-6.2.2.tgz" integrity sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA== pino-std-serializers@^7.0.0: version "7.0.0" - resolved "https://registry.yarnpkg.com/pino-std-serializers/-/pino-std-serializers-7.0.0.tgz#7c625038b13718dbbd84ab446bd673dc52259e3b" + resolved "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-7.0.0.tgz" integrity sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA== pino@^8.15.0: version "8.21.0" - resolved "https://registry.yarnpkg.com/pino/-/pino-8.21.0.tgz#e1207f3675a2722940d62da79a7a55a98409f00d" + resolved "https://registry.npmjs.org/pino/-/pino-8.21.0.tgz" integrity sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q== dependencies: atomic-sleep "^1.0.0" @@ -795,7 +902,7 @@ pino@^8.15.0: pino@^9.2.0: version "9.2.0" - resolved "https://registry.yarnpkg.com/pino/-/pino-9.2.0.tgz#e77a9516f3a3e5550d9b76d9f65ac6118ef02bdd" + resolved "https://registry.npmjs.org/pino/-/pino-9.2.0.tgz" integrity sha512-g3/hpwfujK5a4oVbaefoJxezLzsDgLcNJeITvC6yrfwYeT9la+edCK42j5QpEQSQCZgTKapXvnQIdgZwvRaZug== dependencies: atomic-sleep "^1.0.0" @@ -812,22 +919,22 @@ pino@^9.2.0: postcss-value-parser@^4.0.2, postcss-value-parser@^4.2.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz" integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== process-warning@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/process-warning/-/process-warning-3.0.0.tgz#96e5b88884187a1dce6f5c3166d611132058710b" + resolved "https://registry.npmjs.org/process-warning/-/process-warning-3.0.0.tgz" integrity sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ== process@^0.11.10: version "0.11.10" - resolved "https://registry.yarnpkg.com/process/-/process-0.11.10.tgz#7332300e840161bda3e69a1d1d91a7d4bc16f182" + resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz" integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A== proxy-addr@~2.0.7: version "2.0.7" - resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.7.tgz#f19fe69ceab311eeb94b42e70e8c2070f9ba1025" + resolved "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz" integrity sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg== dependencies: forwarded "0.2.0" @@ -835,24 +942,24 @@ proxy-addr@~2.0.7: qs@6.11.0: version "6.11.0" - resolved "https://registry.yarnpkg.com/qs/-/qs-6.11.0.tgz#fd0d963446f7a65e1367e01abd85429453f0c37a" + resolved "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz" integrity sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q== dependencies: side-channel "^1.0.4" quick-format-unescaped@^4.0.3: version "4.0.4" - resolved "https://registry.yarnpkg.com/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz#93ef6dd8d3453cbc7970dd614fad4c5954d6b5a7" + resolved "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz" integrity sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg== range-parser@~1.2.1: version "1.2.1" - resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031" + resolved "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz" integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg== raw-body@2.5.2: version "2.5.2" - resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.5.2.tgz#99febd83b90e08975087e8f1f9419a149366b68a" + resolved "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz" integrity sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA== dependencies: bytes "3.1.2" @@ -862,14 +969,14 @@ raw-body@2.5.2: react@^18.3.1: version "18.3.1" - resolved "https://registry.yarnpkg.com/react/-/react-18.3.1.tgz#49ab892009c53933625bd16b2533fc754cab2891" + resolved "https://registry.npmjs.org/react/-/react-18.3.1.tgz" integrity sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ== dependencies: loose-envify "^1.1.0" readable-stream@^4.0.0: version "4.5.2" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-4.5.2.tgz#9e7fc4c45099baeed934bff6eb97ba6cf2729e09" + resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-4.5.2.tgz" integrity sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g== dependencies: abort-controller "^3.0.0" @@ -880,12 +987,12 @@ readable-stream@^4.0.0: real-require@^0.2.0: version "0.2.0" - resolved "https://registry.yarnpkg.com/real-require/-/real-require-0.2.0.tgz#209632dea1810be2ae063a6ac084fee7e33fba78" + resolved "https://registry.npmjs.org/real-require/-/real-require-0.2.0.tgz" integrity sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg== roarr@^7.0.4: version "7.21.1" - resolved "https://registry.yarnpkg.com/roarr/-/roarr-7.21.1.tgz#fd6452ca822a65f736c35e5372f04ee9f2ca3851" + resolved "https://registry.npmjs.org/roarr/-/roarr-7.21.1.tgz" integrity sha512-3niqt5bXFY1InKU8HKWqqYTYjtrBaxBMnXELXCXUYgtNYGUtZM5rB46HIC430AyacL95iEniGf7RgqsesykLmQ== dependencies: fast-printf "^1.6.9" @@ -894,22 +1001,22 @@ roarr@^7.0.4: safe-buffer@5.2.1, safe-buffer@~5.2.0: version "5.2.1" - resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz" integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== safe-stable-stringify@^2.3.1, safe-stable-stringify@^2.4.3: version "2.4.3" - resolved "https://registry.yarnpkg.com/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz#138c84b6f6edb3db5f8ef3ef7115b8f55ccbf886" + resolved "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.4.3.tgz" integrity sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g== "safer-buffer@>= 2.1.2 < 3": version "2.1.2" - resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" + resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== satori@^0.10.13: version "0.10.13" - resolved "https://registry.yarnpkg.com/satori/-/satori-0.10.13.tgz#658a9920f55268d2002819387a80a0b6d4bdc262" + resolved "https://registry.npmjs.org/satori/-/satori-0.10.13.tgz" integrity sha512-klCwkVYMQ/ZN5inJLHzrUmGwoRfsdP7idB5hfpJ1jfiJk1ErDitK8Hkc6Kll1+Ox2WtqEuGecSZLnmup3CGzvQ== dependencies: "@shuding/opentype.js" "1.4.0-beta.0" @@ -925,12 +1032,12 @@ satori@^0.10.13: semver-compare@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" + resolved "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz" integrity sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow== send@0.18.0: version "0.18.0" - resolved "https://registry.yarnpkg.com/send/-/send-0.18.0.tgz#670167cc654b05f5aa4a767f9113bb371bc706be" + resolved "https://registry.npmjs.org/send/-/send-0.18.0.tgz" integrity sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg== dependencies: debug "2.6.9" @@ -949,7 +1056,7 @@ send@0.18.0: serve-static@1.15.0: version "1.15.0" - resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.15.0.tgz#faaef08cffe0a1a62f60cad0c4e513cff0ac9540" + resolved "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz" integrity sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g== dependencies: encodeurl "~1.0.2" @@ -959,7 +1066,7 @@ serve-static@1.15.0: set-function-length@^1.2.1: version "1.2.2" - resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + resolved "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz" integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== dependencies: define-data-property "^1.1.4" @@ -971,12 +1078,12 @@ set-function-length@^1.2.1: setprototypeof@1.2.0: version "1.2.0" - resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.2.0.tgz#66c9a24a73f9fc28cbe66b09fed3d33dcaf1b424" + resolved "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz" integrity sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw== side-channel@^1.0.4: version "1.0.6" - resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" + resolved "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz" integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== dependencies: call-bind "^1.0.7" @@ -986,77 +1093,111 @@ side-channel@^1.0.4: sonic-boom@^3.7.0: version "3.8.1" - resolved "https://registry.yarnpkg.com/sonic-boom/-/sonic-boom-3.8.1.tgz#d5ba8c4e26d6176c9a1d14d549d9ff579a163422" + resolved "https://registry.npmjs.org/sonic-boom/-/sonic-boom-3.8.1.tgz" integrity sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg== dependencies: atomic-sleep "^1.0.0" sonic-boom@^4.0.1: version "4.0.1" - resolved "https://registry.yarnpkg.com/sonic-boom/-/sonic-boom-4.0.1.tgz#515b7cef2c9290cb362c4536388ddeece07aed30" + resolved "https://registry.npmjs.org/sonic-boom/-/sonic-boom-4.0.1.tgz" integrity sha512-hTSD/6JMLyT4r9zeof6UtuBDpjJ9sO08/nmS5djaA9eozT9oOlNdpXSnzcgj4FTqpk3nkLrs61l4gip9r1HCrQ== dependencies: atomic-sleep "^1.0.0" split2@^4.0.0: version "4.2.0" - resolved "https://registry.yarnpkg.com/split2/-/split2-4.2.0.tgz#c9c5920904d148bab0b9f67145f245a86aadbfa4" + resolved "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz" integrity sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg== statuses@2.0.1: version "2.0.1" - resolved "https://registry.yarnpkg.com/statuses/-/statuses-2.0.1.tgz#55cb000ccf1d48728bd23c685a063998cf1a1b63" + resolved "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz" integrity sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ== string.prototype.codepointat@^0.2.1: version "0.2.1" - resolved "https://registry.yarnpkg.com/string.prototype.codepointat/-/string.prototype.codepointat-0.2.1.tgz#004ad44c8afc727527b108cd462b4d971cd469bc" + resolved "https://registry.npmjs.org/string.prototype.codepointat/-/string.prototype.codepointat-0.2.1.tgz" integrity sha512-2cBVCj6I4IOvEnjgO/hWqXjqBGsY+zwPmHl12Srk9IXSZ56Jwwmy+66XO5Iut/oQVR7t5ihYdLB0GMa4alEUcg== string_decoder@^1.3.0: version "1.3.0" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e" + resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz" integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA== dependencies: safe-buffer "~5.2.0" thread-stream@^2.6.0: version "2.7.0" - resolved "https://registry.yarnpkg.com/thread-stream/-/thread-stream-2.7.0.tgz#d8a8e1b3fd538a6cca8ce69dbe5d3d097b601e11" + resolved "https://registry.npmjs.org/thread-stream/-/thread-stream-2.7.0.tgz" integrity sha512-qQiRWsU/wvNolI6tbbCKd9iKaTnCXsTwVxhhKM6nctPdujTyztjlbUkUTUymidWcMnZ5pWR0ej4a0tjsW021vw== dependencies: real-require "^0.2.0" thread-stream@^3.0.0: version "3.1.0" - resolved "https://registry.yarnpkg.com/thread-stream/-/thread-stream-3.1.0.tgz#4b2ef252a7c215064507d4ef70c05a5e2d34c4f1" + resolved "https://registry.npmjs.org/thread-stream/-/thread-stream-3.1.0.tgz" integrity sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A== dependencies: real-require "^0.2.0" tiny-inflate@^1.0.0: version "1.0.3" - resolved "https://registry.yarnpkg.com/tiny-inflate/-/tiny-inflate-1.0.3.tgz#122715494913a1805166aaf7c93467933eea26c4" + resolved "https://registry.npmjs.org/tiny-inflate/-/tiny-inflate-1.0.3.tgz" integrity sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw== tlds@^1.234.0: version "1.252.0" - resolved "https://registry.yarnpkg.com/tlds/-/tlds-1.252.0.tgz#71d9617f4ef4cc7347843bee72428e71b8b0f419" + resolved "https://registry.npmjs.org/tlds/-/tlds-1.252.0.tgz" integrity sha512-GA16+8HXvqtfEnw/DTcwB0UU354QE1n3+wh08oFjr6Znl7ZLAeUgYzCcK+/CCrOyE0vnHR8/pu3XXG3vDijXpQ== toidentifier@1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.1.tgz#3be34321a88a820ed1bd80dfaa33e479fbb8dd35" + resolved "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz" integrity sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA== +ts-node@^10.9.2: + version "10.9.2" + resolved "https://registry.yarnpkg.com/ts-node/-/ts-node-10.9.2.tgz#70f021c9e185bccdca820e26dc413805c101c71f" + integrity sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ== + dependencies: + "@cspotcode/source-map-support" "^0.8.0" + "@tsconfig/node10" "^1.0.7" + "@tsconfig/node12" "^1.0.7" + "@tsconfig/node14" "^1.0.0" + "@tsconfig/node16" "^1.0.2" + acorn "^8.4.1" + acorn-walk "^8.1.1" + arg "^4.1.0" + create-require "^1.1.0" + diff "^4.0.1" + make-error "^1.1.1" + v8-compile-cache-lib "^3.0.1" + yn "3.1.1" + +twemoji-parser@14.0.0: + version "14.0.0" + resolved "https://registry.yarnpkg.com/twemoji-parser/-/twemoji-parser-14.0.0.tgz#13dabcb6d3a261d9efbf58a1666b182033bf2b62" + integrity sha512-9DUOTGLOWs0pFWnh1p6NF+C3CkQ96PWmEFwhOVmT3WbecRC+68AIqpsnJXygfkFcp4aXbOp8Dwbhh/HQgvoRxA== + +twemoji@^14.0.2: + version "14.0.2" + resolved "https://registry.yarnpkg.com/twemoji/-/twemoji-14.0.2.tgz#c53adb01dab22bf4870f648ca8cc347ce99ee37e" + integrity sha512-BzOoXIe1QVdmsUmZ54xbEH+8AgtOKUiG53zO5vVP2iUu6h5u9lN15NcuS6te4OY96qx0H7JK9vjjl9WQbkTRuA== + dependencies: + fs-extra "^8.0.1" + jsonfile "^5.0.0" + twemoji-parser "14.0.0" + universalify "^0.1.2" + type-fest@^2.3.3: version "2.19.0" - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-2.19.0.tgz#88068015bb33036a598b952e55e9311a60fd3a9b" + resolved "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz" integrity sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA== type-is@~1.6.18: version "1.6.18" - resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131" + resolved "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz" integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g== dependencies: media-typer "0.3.0" @@ -1064,50 +1205,65 @@ type-is@~1.6.18: typescript@^5.4.5: version "5.4.5" - resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.5.tgz#42ccef2c571fdbd0f6718b1d1f5e6e5ef006f611" + resolved "https://registry.npmjs.org/typescript/-/typescript-5.4.5.tgz" integrity sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ== uint8arrays@3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/uint8arrays/-/uint8arrays-3.0.0.tgz#260869efb8422418b6f04e3fac73a3908175c63b" + resolved "https://registry.npmjs.org/uint8arrays/-/uint8arrays-3.0.0.tgz" integrity sha512-HRCx0q6O9Bfbp+HHSfQQKD7wU70+lydKVt4EghkdOvlK/NlrF90z+eXV34mUd48rNvVJXwkrMSPpCATkct8fJA== dependencies: multiformats "^9.4.2" undici-types@~5.26.4: version "5.26.5" - resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" + resolved "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz" integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== unicode-trie@^2.0.0: version "2.0.0" - resolved "https://registry.yarnpkg.com/unicode-trie/-/unicode-trie-2.0.0.tgz#8fd8845696e2e14a8b67d78fa9e0dd2cad62fec8" + resolved "https://registry.npmjs.org/unicode-trie/-/unicode-trie-2.0.0.tgz" integrity sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ== dependencies: pako "^0.2.5" tiny-inflate "^1.0.0" +universalify@^0.1.0, universalify@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + unpipe@1.0.0, unpipe@~1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" + resolved "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" integrity sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ== utils-merge@1.0.1: version "1.0.1" - resolved "https://registry.yarnpkg.com/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713" + resolved "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz" integrity sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA== +v8-compile-cache-lib@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz#6336e8d71965cb3d35a1bbb7868445a7c05264bf" + integrity sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg== + vary@~1.1.2: version "1.1.2" - resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" + resolved "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz" integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg== +yn@3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" + integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== + yoga-wasm-web@^0.3.3: version "0.3.3" - resolved "https://registry.yarnpkg.com/yoga-wasm-web/-/yoga-wasm-web-0.3.3.tgz#eb8e9fcb18e5e651994732f19a220cb885d932ba" + resolved "https://registry.npmjs.org/yoga-wasm-web/-/yoga-wasm-web-0.3.3.tgz" integrity sha512-N+d4UJSJbt/R3wqY7Coqs5pcV0aUj2j9IaQ3rNj9bVCLld8tTGKRa2USARjnvZJWVx1NDmQev8EknoczaOQDOA== zod@^3.21.4: version "3.23.8" - resolved "https://registry.yarnpkg.com/zod/-/zod-3.23.8.tgz#e37b957b5d52079769fb8097099b592f0ef4067d" + resolved "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz" integrity sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g== From 58102377fd3c9142925a99546ca5efe8906fbdf4 Mon Sep 17 00:00:00 2001 From: dan Date: Thu, 27 Jun 2024 18:36:06 +0100 Subject: [PATCH 048/153] Fix pasting images on web (#4670) --- .../com/composer/text-input/TextInput.web.tsx | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/view/com/composer/text-input/TextInput.web.tsx b/src/view/com/composer/text-input/TextInput.web.tsx index a91524974e..3c4aaf7388 100644 --- a/src/view/com/composer/text-input/TextInput.web.tsx +++ b/src/view/com/composer/text-input/TextInput.web.tsx @@ -152,23 +152,22 @@ export const TextInput = React.forwardRef(function TextInputImpl( }, handlePaste: (view, event) => { const clipboardData = event.clipboardData + let preventDefault = false if (clipboardData) { if (clipboardData.types.includes('text/html')) { // Rich-text formatting is pasted, try retrieving plain text const text = clipboardData.getData('text/plain') - // `pasteText` will invoke this handler again, but `clipboardData` will be null. view.pasteText(text) - + preventDefault = true + } + getImageFromUri(clipboardData.items, (uri: string) => { + textInputWebEmitter.emit('photo-pasted', uri) + }) + if (preventDefault) { // Return `true` to prevent ProseMirror's default paste behavior. return true - } else { - // Otherwise, try retrieving images from the clipboard - - getImageFromUri(clipboardData.items, (uri: string) => { - textInputWebEmitter.emit('photo-pasted', uri) - }) } } }, From d26928a5d85d1cb7b5a9f52abbf1f2b753deb12f Mon Sep 17 00:00:00 2001 From: dan Date: Thu, 27 Jun 2024 18:39:36 +0100 Subject: [PATCH 049/153] Remove reposts from the Replies tab (#4669) --- src/state/preferences/feed-tuners.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/state/preferences/feed-tuners.tsx b/src/state/preferences/feed-tuners.tsx index ca0fefe915..7d44515138 100644 --- a/src/state/preferences/feed-tuners.tsx +++ b/src/state/preferences/feed-tuners.tsx @@ -12,6 +12,12 @@ export function useFeedTuners(feedDesc: FeedDescriptor) { const {currentAccount} = useSession() return useMemo(() => { + if (feedDesc.startsWith('author')) { + if (feedDesc.endsWith('|posts_with_replies')) { + // TODO: Do this on the server instead. + return [FeedTuner.removeReposts] + } + } if (feedDesc.startsWith('feedgen')) { return [ FeedTuner.dedupReposts, From fff3ae8f359f496de3165d9d15c7135fc4269916 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 27 Jun 2024 13:27:37 -0500 Subject: [PATCH 050/153] Refactor `ProfileCard` to be composable (#4622) * Break up new profile card for easier re-use * Break things up a bit more * Add round variant support and other button props * Handle blocks * Add Outer export * Tweak space --- src/components/ProfileCard.tsx | 315 ++++++++++++++++++++++++++------- 1 file changed, 253 insertions(+), 62 deletions(-) diff --git a/src/components/ProfileCard.tsx b/src/components/ProfileCard.tsx index a0d222854b..a6ca7627b2 100644 --- a/src/components/ProfileCard.tsx +++ b/src/components/ProfileCard.tsx @@ -1,20 +1,32 @@ import React from 'react' -import {View} from 'react-native' -import {AppBskyActorDefs, moderateProfile, ModerationOpts} from '@atproto/api' +import {GestureResponderEvent, View} from 'react-native' +import { + AppBskyActorDefs, + moderateProfile, + ModerationOpts, + RichText as RichTextApi, +} from '@atproto/api' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' -import {createSanitizedDisplayName} from 'lib/moderation/create-sanitized-display-name' +import {sanitizeDisplayName} from '#/lib/strings/display-names' +import {useProfileFollowMutationQueue} from '#/state/queries/profile' import {sanitizeHandle} from 'lib/strings/handles' import {useProfileShadow} from 'state/cache/profile-shadow' import {useSession} from 'state/session' -import {FollowButton} from 'view/com/profile/FollowButton' +import * as Toast from '#/view/com/util/Toast' import {ProfileCardPills} from 'view/com/profile/ProfileCard' import {UserAvatar} from 'view/com/util/UserAvatar' import {atoms as a, useTheme} from '#/alf' -import {Link} from '#/components/Link' +import {Button, ButtonIcon, ButtonProps, ButtonText} from '#/components/Button' +import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check' +import {PlusLarge_Stroke2_Corner0_Rounded as Plus} from '#/components/icons/Plus' +import {Link as InternalLink, LinkProps} from '#/components/Link' +import {RichText} from '#/components/RichText' import {Text} from '#/components/Typography' export function Default({ - profile: profileUnshadowed, + profile, moderationOpts, logContext = 'ProfileCard', }: { @@ -22,70 +34,249 @@ export function Default({ moderationOpts: ModerationOpts logContext?: 'ProfileCard' | 'StarterPackProfilesList' }) { - const t = useTheme() - const {currentAccount, hasSession} = useSession() - - const profile = useProfileShadow(profileUnshadowed) - const name = createSanitizedDisplayName(profile) - const handle = `@${sanitizeHandle(profile.handle)}` - const moderation = moderateProfile(profile, moderationOpts) - return ( - - - - - - {name} - - - {handle} - - - {hasSession && profile.did !== currentAccount?.did && ( - - - - )} - - - - - {profile.description && ( - - {profile.description} - - )} - + + + ) } -function Wrapper({did, children}: {did: string; children: React.ReactNode}) { +export function Card({ + profile, + moderationOpts, + logContext = 'ProfileCard', +}: { + profile: AppBskyActorDefs.ProfileViewDetailed + moderationOpts: ModerationOpts + logContext?: 'ProfileCard' | 'StarterPackProfilesList' +}) { + const moderation = moderateProfile(profile, moderationOpts) + return ( - +
+ + + +
+ + + + + + ) +} + +export function Outer({ + children, +}: { + children: React.ReactElement | React.ReactElement[] +}) { + return {children} +} + +export function Header({ + children, +}: { + children: React.ReactElement | React.ReactElement[] +}) { + return {children} +} + +export function Link({did, children}: {did: string} & Omit) { + return ( + - {children} - + {children} + + ) +} + +export function Avatar({ + profile, + moderationOpts, +}: { + profile: AppBskyActorDefs.ProfileViewDetailed + moderationOpts: ModerationOpts +}) { + const moderation = moderateProfile(profile, moderationOpts) + + return ( + + ) +} + +export function NameAndHandle({ + profile, + moderationOpts, +}: { + profile: AppBskyActorDefs.ProfileViewDetailed + moderationOpts: ModerationOpts +}) { + const t = useTheme() + const moderation = moderateProfile(profile, moderationOpts) + const name = sanitizeDisplayName( + profile.displayName || sanitizeHandle(profile.handle), + moderation.ui('displayName'), + ) + const handle = sanitizeHandle(profile.handle, '@') + + return ( + + + {name} + + + {handle} + + + ) +} + +export function Description({ + profile: profileUnshadowed, +}: { + profile: AppBskyActorDefs.ProfileViewDetailed +}) { + const profile = useProfileShadow(profileUnshadowed) + const {description} = profile + const rt = React.useMemo(() => { + if (!description) return + const rt = new RichTextApi({text: description || ''}) + rt.detectFacetsWithoutResolution() + return rt + }, [description]) + if (!rt) return null + if ( + profile.viewer && + (profile.viewer.blockedBy || + profile.viewer.blocking || + profile.viewer.blockingByList) + ) + return null + return ( + + + + ) +} + +export type FollowButtonProps = { + profile: AppBskyActorDefs.ProfileViewBasic + logContext: 'ProfileCard' | 'StarterPackProfilesList' +} & Partial + +export function FollowButton(props: FollowButtonProps) { + const {currentAccount, hasSession} = useSession() + const isMe = props.profile.did === currentAccount?.did + return hasSession && !isMe ? : null +} + +export function FollowButtonInner({ + profile: profileUnshadowed, + logContext, + ...rest +}: FollowButtonProps) { + const {_} = useLingui() + const profile = useProfileShadow(profileUnshadowed) + const [queueFollow, queueUnfollow] = useProfileFollowMutationQueue( + profile, + logContext, + ) + const isRound = Boolean(rest.shape && rest.shape === 'round') + + const onPressFollow = async (e: GestureResponderEvent) => { + e.preventDefault() + e.stopPropagation() + try { + await queueFollow() + } catch (e: any) { + if (e?.name !== 'AbortError') { + Toast.show(_(msg`An issue occurred, please try again.`)) + } + } + } + + const onPressUnfollow = async (e: GestureResponderEvent) => { + e.preventDefault() + e.stopPropagation() + try { + await queueUnfollow() + } catch (e: any) { + if (e?.name !== 'AbortError') { + Toast.show(_(msg`An issue occurred, please try again.`)) + } + } + } + + const unfollowLabel = _( + msg({ + message: 'Following', + comment: 'User is following this account, click to unfollow', + }), + ) + const followLabel = _( + msg({ + message: 'Follow', + comment: 'User is not following this account, click to follow', + }), + ) + + if (!profile.viewer) return null + if ( + profile.viewer.blockedBy || + profile.viewer.blocking || + profile.viewer.blockingByList + ) + return null + + return ( + + {profile.viewer.following ? ( + + ) : ( + + )} + ) } From d5ca95233e3f8dd545fddb54a1f182d5a2e354f8 Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 27 Jun 2024 11:31:24 -0700 Subject: [PATCH 051/153] offer a json response for grabbing short links (#4671) --- bskylink/src/routes/redirect.ts | 20 ++++++++++++++--- bskylink/tests/index.ts | 39 +++++++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+), 3 deletions(-) diff --git a/bskylink/src/routes/redirect.ts b/bskylink/src/routes/redirect.ts index 7791ea815e..276aae1ca1 100644 --- a/bskylink/src/routes/redirect.ts +++ b/bskylink/src/routes/redirect.ts @@ -11,6 +11,7 @@ export default function (ctx: AppContext, app: Express) { '/:linkId', handler(async (req, res) => { const linkId = req.params.linkId + const contentType = req.accepts(['html', 'json']) assert( typeof linkId === 'string', 'express guarantees id parameter is a string', @@ -21,9 +22,19 @@ export default function (ctx: AppContext, app: Express) { .where('id', '=', linkId) .executeTakeFirst() if (!found) { - // potentially broken or mistyped link— send user to the app - res.setHeader('Location', `https://${ctx.cfg.service.appHostname}`) + // potentially broken or mistyped link res.setHeader('Cache-Control', 'no-store') + if (contentType === 'json') { + return res + .status(404) + .json({ + error: 'NotFound', + message: 'Link not found', + }) + .end() + } + // send the user to the app + res.setHeader('Location', `https://${ctx.cfg.service.appHostname}`) return res.status(302).end() } // build url from original url in order to preserve query params @@ -32,8 +43,11 @@ export default function (ctx: AppContext, app: Express) { `https://${ctx.cfg.service.appHostname}`, ) url.pathname = found.path - res.setHeader('Location', url.href) res.setHeader('Cache-Control', `max-age=${(7 * DAY) / SECOND}`) + if (contentType === 'json') { + return res.json({url: url.href}).end() + } + res.setHeader('Location', url.href) return res.status(301).end() }), ) diff --git a/bskylink/tests/index.ts b/bskylink/tests/index.ts index 51449c21be..c5604c7a12 100644 --- a/bskylink/tests/index.ts +++ b/bskylink/tests/index.ts @@ -56,6 +56,26 @@ describe('link service', async () => { ) }) + it('returns json object with url when requested', async () => { + const link = await getLink('/start/did:example:carol/zzz/') + const [status, json] = await getJsonRedirect(link) + assert.strictEqual(status, 200) + assert(json.url) + const url = new URL(json.url) + assert.strictEqual(url.pathname, '/start/did:example:carol/zzz') + }) + + it('returns 404 for unknown link when requesting json', async () => { + const [status, json] = await getJsonRedirect( + 'https://test.bsky.link/unknown', + ) + assert(json.error) + assert(json.message) + assert.strictEqual(status, 404) + assert.strictEqual(json.error, 'NotFound') + assert.strictEqual(json.message, 'Link not found') + }) + async function getRedirect(link: string): Promise<[number, string]> { const url = new URL(link) const base = new URL(baseUrl) @@ -70,6 +90,25 @@ describe('link service', async () => { return [res.status, res.headers.get('location') ?? ''] } + async function getJsonRedirect( + link: string, + ): Promise<[number, {url?: string; error?: string; message?: string}]> { + const url = new URL(link) + const base = new URL(baseUrl) + url.protocol = base.protocol + url.host = base.host + const res = await fetch(url, { + redirect: 'manual', + headers: {accept: 'application/json,text/html'}, + }) + assert( + res.headers.get('content-type')?.startsWith('application/json'), + 'content type was not json', + ) + const json = await res.json() + return [res.status, json] + } + async function getLink(path: string): Promise { const res = await fetch(new URL('/link', baseUrl), { method: 'post', From 030c8e268e161bebe360e3ad97b1c18bd8425ca8 Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 27 Jun 2024 16:25:21 -0700 Subject: [PATCH 052/153] Bump 1.88.0 (#4688) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f3e2e0c662..61d3eea77d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bsky.app", - "version": "1.87.0", + "version": "1.88.0", "private": true, "engines": { "node": ">=18" From 91c4aa7c2dc598dd5e2c828e44c0d2c94cf0967d Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 27 Jun 2024 19:35:20 -0700 Subject: [PATCH 053/153] Handle pressing all go.bsky.app links in-app w/ resolution (#4680) --- src/Navigation.tsx | 12 ++- src/lib/link-meta/resolve-short-link.ts | 10 ++- src/lib/routes/types.ts | 2 + src/lib/strings/url-helpers.ts | 17 +++- src/routes.ts | 1 + .../StarterPack/StarterPackLandingScreen.tsx | 37 +++++++-- src/screens/StarterPack/StarterPackScreen.tsx | 80 +++++++++++++++++-- src/state/queries/resolve-short-link.ts | 24 ++++++ src/state/shell/logged-out.tsx | 20 +++++ 9 files changed, 186 insertions(+), 17 deletions(-) create mode 100644 src/state/queries/resolve-short-link.ts diff --git a/src/Navigation.tsx b/src/Navigation.tsx index 5cb4f4105f..4ecf3fff8c 100644 --- a/src/Navigation.tsx +++ b/src/Navigation.tsx @@ -43,7 +43,10 @@ import HashtagScreen from '#/screens/Hashtag' import {ModerationScreen} from '#/screens/Moderation' import {ProfileKnownFollowersScreen} from '#/screens/Profile/KnownFollowers' import {ProfileLabelerLikedByScreen} from '#/screens/Profile/ProfileLabelerLikedBy' -import {StarterPackScreen} from '#/screens/StarterPack/StarterPackScreen' +import { + StarterPackScreen, + StarterPackScreenShort, +} from '#/screens/StarterPack/StarterPackScreen' import {Wizard} from '#/screens/StarterPack/Wizard' import {init as initAnalytics} from './lib/analytics/analytics' import {useWebScrollRestoration} from './lib/hooks/useWebScrollRestoration' @@ -322,7 +325,12 @@ function commonScreens(Stack: typeof HomeTab, unreadCountLabel?: string) { StarterPackScreen} - options={{title: title(msg`Starter Pack`), requireAuth: true}} + options={{title: title(msg`Starter Pack`)}} + /> + StarterPackScreenShort} + options={{title: title(msg`Starter Pack`)}} /> } @@ -112,9 +117,6 @@ function LandingScreenLoaded({ const listItemsCount = starterPack.list?.listItemCount ?? 0 const onContinue = () => { - setActiveStarterPack({ - uri: starterPack.uri, - }) setScreenState(LoggedOutScreenState.S_CreateAccount) } @@ -166,6 +168,31 @@ function LandingScreenLoaded({ paddingTop: 100, }, ]}> + { + setActiveStarterPack(undefined) + }} + accessibilityLabel={_(msg`Back`)} + accessibilityHint={_(msg`Go back to previous screen`)}> + + diff --git a/src/screens/StarterPack/StarterPackScreen.tsx b/src/screens/StarterPack/StarterPackScreen.tsx index aa0e75a233..679b3f2cbc 100644 --- a/src/screens/StarterPack/StarterPackScreen.tsx +++ b/src/screens/StarterPack/StarterPackScreen.tsx @@ -28,15 +28,20 @@ import {HITSLOP_20} from 'lib/constants' import {makeProfileLink, makeStarterPackLink} from 'lib/routes/links' import {CommonNavigatorParams, NavigationProp} from 'lib/routes/types' import {logEvent} from 'lib/statsig/statsig' -import {getStarterPackOgCard} from 'lib/strings/starter-pack' +import { + createStarterPackUri, + getStarterPackOgCard, +} from 'lib/strings/starter-pack' import {isWeb} from 'platform/detection' import {updateProfileShadow} from 'state/cache/profile-shadow' import {useModerationOpts} from 'state/preferences/moderation-opts' import {useListMembersQuery} from 'state/queries/list-members' +import {useResolvedStarterPackShortLink} from 'state/queries/resolve-short-link' import {useResolveDidQuery} from 'state/queries/resolve-uri' import {useShortenLink} from 'state/queries/shorten-link' import {useStarterPackQuery} from 'state/queries/starter-packs' import {useAgent, useSession} from 'state/session' +import {useSetActiveStarterPack} from 'state/shell/starter-pack' import * as Toast from '#/view/com/util/Toast' import {PagerWithHeader} from 'view/com/pager/PagerWithHeader' import {ProfileSubpageHeader} from 'view/com/profile/ProfileSubpageHeader' @@ -67,12 +72,77 @@ type StarterPackScreeProps = NativeStackScreenProps< CommonNavigatorParams, 'StarterPack' > +type StarterPackScreenShortProps = NativeStackScreenProps< + CommonNavigatorParams, + 'StarterPackShort' +> export function StarterPackScreen({route}: StarterPackScreeProps) { + return +} + +export function StarterPackScreenShort({route}: StarterPackScreenShortProps) { + const {_} = useLingui() + const { + data: resolvedStarterPack, + isLoading, + isError, + } = useResolvedStarterPackShortLink({ + code: route.params.code, + }) + + if (isLoading || isError || !resolvedStarterPack) { + return ( + + ) + } + return +} + +export function StarterPackAuthCheck({ + routeParams, +}: { + routeParams: StarterPackScreeProps['route']['params'] +}) { + const navigation = useNavigation() + const setActiveStarterPack = useSetActiveStarterPack() + const {currentAccount} = useSession() + + React.useEffect(() => { + if (currentAccount) return + + const uri = createStarterPackUri({ + did: routeParams.name, + rkey: routeParams.rkey, + }) + + if (!uri) return + setActiveStarterPack({ + uri, + }) + + navigation.goBack() + }, [routeParams, currentAccount, navigation, setActiveStarterPack]) + + if (!currentAccount) return null + + return +} + +export function StarterPackScreenInner({ + routeParams, +}: { + routeParams: StarterPackScreeProps['route']['params'] +}) { + const {name, rkey} = routeParams const {_} = useLingui() const {currentAccount} = useSession() - const {name, rkey} = route.params const moderationOpts = useModerationOpts() const { data: did, @@ -113,16 +183,16 @@ export function StarterPackScreen({route}: StarterPackScreeProps) { } return ( - ) } -function StarterPackScreenInner({ +function StarterPackScreenLoaded({ starterPack, routeParams, listMembersQuery, diff --git a/src/state/queries/resolve-short-link.ts b/src/state/queries/resolve-short-link.ts new file mode 100644 index 0000000000..a10bc12c17 --- /dev/null +++ b/src/state/queries/resolve-short-link.ts @@ -0,0 +1,24 @@ +import {useQuery} from '@tanstack/react-query' + +import {resolveShortLink} from 'lib/link-meta/resolve-short-link' +import {parseStarterPackUri} from 'lib/strings/starter-pack' +import {STALE} from 'state/queries/index' + +const ROOT_URI = 'https://go.bsky.app/' + +const RQKEY_ROOT = 'resolved-short-link' +export const RQKEY = (code: string) => [RQKEY_ROOT, code] + +export function useResolvedStarterPackShortLink({code}: {code: string}) { + return useQuery({ + queryKey: RQKEY(code), + queryFn: async () => { + const uri = `${ROOT_URI}${code}` + const res = await resolveShortLink(uri) + return parseStarterPackUri(res) + }, + retry: 1, + enabled: Boolean(code), + staleTime: STALE.HOURS.ONE, + }) +} diff --git a/src/state/shell/logged-out.tsx b/src/state/shell/logged-out.tsx index dc78d03d5d..2c577fdd2a 100644 --- a/src/state/shell/logged-out.tsx +++ b/src/state/shell/logged-out.tsx @@ -50,6 +50,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { const activeStarterPack = useActiveStarterPack() const {hasSession} = useSession() const shouldShowStarterPack = Boolean(activeStarterPack?.uri) && !hasSession + const [state, setState] = React.useState({ showLoggedOut: shouldShowStarterPack, requestedAccountSwitchTo: shouldShowStarterPack @@ -59,6 +60,25 @@ export function Provider({children}: React.PropsWithChildren<{}>) { : undefined, }) + const [prevActiveStarterPack, setPrevActiveStarterPack] = + React.useState(activeStarterPack) + if (activeStarterPack?.uri !== prevActiveStarterPack?.uri) { + setPrevActiveStarterPack(activeStarterPack) + if (activeStarterPack) { + setState(s => ({ + ...s, + showLoggedOut: true, + requestedAccountSwitchTo: 'starterpack', + })) + } else { + setState(s => ({ + ...s, + showLoggedOut: false, + requestedAccountSwitchTo: undefined, + })) + } + } + const controls = React.useMemo( () => ({ setShowLoggedOut(show) { From 8ebf9cc4b10a620d7698c1b0d0b316729c02dc13 Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 27 Jun 2024 21:44:26 -0700 Subject: [PATCH 054/153] Handle pushing to starterpack screen when unauthed (#4692) --- src/screens/Signup/StepInfo/index.tsx | 16 +- src/screens/Signup/index.tsx | 63 +++---- src/screens/Signup/state.ts | 2 - src/screens/StarterPack/StarterPackScreen.tsx | 154 ++++++++++-------- src/state/queries/starter-packs.ts | 20 ++- src/state/shell/logged-out.tsx | 20 --- 6 files changed, 143 insertions(+), 132 deletions(-) diff --git a/src/screens/Signup/StepInfo/index.tsx b/src/screens/Signup/StepInfo/index.tsx index 4104b79b35..ea10d4365e 100644 --- a/src/screens/Signup/StepInfo/index.tsx +++ b/src/screens/Signup/StepInfo/index.tsx @@ -1,5 +1,5 @@ -import React from 'react' -import {View} from 'react-native' +import React, {useEffect} from 'react' +import {LayoutAnimation, View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -27,10 +27,18 @@ function sanitizeDate(date: Date): Date { return date } -export function StepInfo() { +export function StepInfo({ + isLoadingStarterPack, +}: { + isLoadingStarterPack: boolean +}) { const {_} = useLingui() const {state, dispatch} = useSignupContext() + useEffect(() => { + LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut) + }, [state.isLoading, isLoadingStarterPack]) + return ( @@ -46,7 +54,7 @@ export function StepInfo() { } /> - {state.isLoading ? ( + {state.isLoading || isLoadingStarterPack ? ( diff --git a/src/screens/Signup/index.tsx b/src/screens/Signup/index.tsx index 3203d443cc..2ccb388465 100644 --- a/src/screens/Signup/index.tsx +++ b/src/screens/Signup/index.tsx @@ -1,10 +1,6 @@ import React from 'react' import {View} from 'react-native' -import Animated, { - FadeIn, - FadeOut, - LayoutAnimationConfig, -} from 'react-native-reanimated' +import {LayoutAnimationConfig} from 'react-native-reanimated' import {AppBskyGraphStarterpack} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -47,9 +43,15 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { const agent = useAgent() const activeStarterPack = useActiveStarterPack() - const {data: starterPack} = useStarterPackQuery({ + const { + data: starterPack, + isFetching: isFetchingStarterPack, + isError: isErrorStarterPack, + } = useStarterPackQuery({ uri: activeStarterPack?.uri, }) + const showStarterPackCard = + activeStarterPack?.uri && !isFetchingStarterPack && starterPack const { data: serviceInfo, @@ -155,30 +157,27 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { description={_(msg`We're so excited to have you join us!`)} scrollable> - {state.activeStep === SignupStep.INFO && - starterPack && + {showStarterPackCard && AppBskyGraphStarterpack.isRecord(starterPack.record) ? ( - - - - {starterPack.record.name} - - - {starterPack.feeds?.length ? ( - - You'll follow the suggested users and feeds once you - finish creating your account! - - ) : ( - - You'll follow the suggested users once you finish creating - your account! - - )} - - - + + + {starterPack.record.name} + + + {starterPack.feeds?.length ? ( + + You'll follow the suggested users and feeds once you finish + creating your account! + + ) : ( + + You'll follow the suggested users once you finish creating + your account! + + )} + + ) : null} void}) { {state.activeStep === SignupStep.INFO ? ( - + ) : state.activeStep === SignupStep.HANDLE ? ( ) : ( diff --git a/src/screens/Signup/state.ts b/src/screens/Signup/state.ts index 87700cb88e..70b74a9304 100644 --- a/src/screens/Signup/state.ts +++ b/src/screens/Signup/state.ts @@ -116,8 +116,6 @@ export function reducer(s: SignupState, a: SignupAction): SignupState { break } case 'setServiceDescription': { - LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut) - next.serviceDescription = a.value next.userDomain = a.value?.availableUserDomains[0] ?? '' next.isLoading = false diff --git a/src/screens/StarterPack/StarterPackScreen.tsx b/src/screens/StarterPack/StarterPackScreen.tsx index 679b3f2cbc..12b36f43c6 100644 --- a/src/screens/StarterPack/StarterPackScreen.tsx +++ b/src/screens/StarterPack/StarterPackScreen.tsx @@ -28,10 +28,7 @@ import {HITSLOP_20} from 'lib/constants' import {makeProfileLink, makeStarterPackLink} from 'lib/routes/links' import {CommonNavigatorParams, NavigationProp} from 'lib/routes/types' import {logEvent} from 'lib/statsig/statsig' -import { - createStarterPackUri, - getStarterPackOgCard, -} from 'lib/strings/starter-pack' +import {getStarterPackOgCard} from 'lib/strings/starter-pack' import {isWeb} from 'platform/detection' import {updateProfileShadow} from 'state/cache/profile-shadow' import {useModerationOpts} from 'state/preferences/moderation-opts' @@ -41,6 +38,7 @@ import {useResolveDidQuery} from 'state/queries/resolve-uri' import {useShortenLink} from 'state/queries/shorten-link' import {useStarterPackQuery} from 'state/queries/starter-packs' import {useAgent, useSession} from 'state/session' +import {useLoggedOutViewControls} from 'state/shell/logged-out' import {useSetActiveStarterPack} from 'state/shell/starter-pack' import * as Toast from '#/view/com/util/Toast' import {PagerWithHeader} from 'view/com/pager/PagerWithHeader' @@ -78,7 +76,7 @@ type StarterPackScreenShortProps = NativeStackScreenProps< > export function StarterPackScreen({route}: StarterPackScreeProps) { - return + return } export function StarterPackScreenShort({route}: StarterPackScreenShortProps) { @@ -101,37 +99,7 @@ export function StarterPackScreenShort({route}: StarterPackScreenShortProps) { /> ) } - return -} - -export function StarterPackAuthCheck({ - routeParams, -}: { - routeParams: StarterPackScreeProps['route']['params'] -}) { - const navigation = useNavigation() - const setActiveStarterPack = useSetActiveStarterPack() - const {currentAccount} = useSession() - - React.useEffect(() => { - if (currentAccount) return - - const uri = createStarterPackUri({ - did: routeParams.name, - rkey: routeParams.rkey, - }) - - if (!uri) return - setActiveStarterPack({ - uri, - }) - - navigation.goBack() - }, [routeParams, currentAccount, navigation, setActiveStarterPack]) - - if (!currentAccount) return null - - return + return } export function StarterPackScreenInner({ @@ -330,9 +298,11 @@ function Header({ }) { const {_} = useLingui() const t = useTheme() - const {currentAccount} = useSession() + const {currentAccount, hasSession} = useSession() const agent = useAgent() const queryClient = useQueryClient() + const setActiveStarterPack = useSetActiveStarterPack() + const {requestSwitchToAccount} = useLoggedOutViewControls() const [isProcessing, setIsProcessing] = React.useState(false) @@ -340,6 +310,29 @@ function Header({ const isOwn = creator?.did === currentAccount?.did const joinedAllTimeCount = starterPack.joinedAllTimeCount ?? 0 + const navigation = useNavigation() + + React.useEffect(() => { + const onFocus = () => { + if (hasSession) return + setActiveStarterPack({ + uri: starterPack.uri, + }) + } + const onBeforeRemove = () => { + if (hasSession) return + setActiveStarterPack(undefined) + } + + navigation.addListener('focus', onFocus) + navigation.addListener('beforeRemove', onBeforeRemove) + + return () => { + navigation.removeListener('focus', onFocus) + navigation.removeListener('beforeRemove', onBeforeRemove) + } + }, [hasSession, navigation, setActiveStarterPack, starterPack.uri]) + const onFollowAll = async () => { if (!starterPack.list) return @@ -397,45 +390,64 @@ function Header({ avatar={undefined} creator={creator} avatarType="starter-pack"> - - {isOwn ? ( - - ) : ( - - )} - - + {hasSession ? ( + + {isOwn ? ( + + ) : ( + + )} + + + ) : null} - {richText || joinedAllTimeCount >= 25 ? ( + {!hasSession || richText || joinedAllTimeCount >= 25 ? ( {richText ? ( ) : null} + {!hasSession ? ( + + ) : null} {joinedAllTimeCount >= 25 ? ( { - if (did?.startsWith('https://') || did?.startsWith('at://')) { - const parsed = parseStarterPackUri(did) +const RQKEY = ({ + uri, + did, + rkey, +}: { + uri?: string + did?: string + rkey?: string +}) => { + if (uri?.startsWith('https://') || uri?.startsWith('at://')) { + const parsed = parseStarterPackUri(uri) return [RQKEY_ROOT, parsed?.name, parsed?.rkey] } else { return [RQKEY_ROOT, did, rkey] @@ -50,7 +59,7 @@ export function useStarterPackQuery({ const agent = useAgent() return useQuery({ - queryKey: RQKEY(did, rkey), + queryKey: RQKEY(uri ? {uri} : {did, rkey}), queryFn: async () => { if (!uri) { uri = `at://${did}/app.bsky.graph.starterpack/${rkey}` @@ -64,6 +73,7 @@ export function useStarterPackQuery({ return res.data.starterPack }, enabled: Boolean(uri) || Boolean(did && rkey), + staleTime: STALE.MINUTES.FIVE, }) } @@ -76,7 +86,7 @@ export async function invalidateStarterPack({ did: string rkey: string }) { - await queryClient.invalidateQueries({queryKey: RQKEY(did, rkey)}) + await queryClient.invalidateQueries({queryKey: RQKEY({did, rkey})}) } interface UseCreateStarterPackMutationParams { diff --git a/src/state/shell/logged-out.tsx b/src/state/shell/logged-out.tsx index 2c577fdd2a..dc78d03d5d 100644 --- a/src/state/shell/logged-out.tsx +++ b/src/state/shell/logged-out.tsx @@ -50,7 +50,6 @@ export function Provider({children}: React.PropsWithChildren<{}>) { const activeStarterPack = useActiveStarterPack() const {hasSession} = useSession() const shouldShowStarterPack = Boolean(activeStarterPack?.uri) && !hasSession - const [state, setState] = React.useState({ showLoggedOut: shouldShowStarterPack, requestedAccountSwitchTo: shouldShowStarterPack @@ -60,25 +59,6 @@ export function Provider({children}: React.PropsWithChildren<{}>) { : undefined, }) - const [prevActiveStarterPack, setPrevActiveStarterPack] = - React.useState(activeStarterPack) - if (activeStarterPack?.uri !== prevActiveStarterPack?.uri) { - setPrevActiveStarterPack(activeStarterPack) - if (activeStarterPack) { - setState(s => ({ - ...s, - showLoggedOut: true, - requestedAccountSwitchTo: 'starterpack', - })) - } else { - setState(s => ({ - ...s, - showLoggedOut: false, - requestedAccountSwitchTo: undefined, - })) - } - } - const controls = React.useMemo( () => ({ setShowLoggedOut(show) { From 58a97db5b8e9c62d68c4ce6398d1213469ee38b2 Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 27 Jun 2024 22:01:02 -0700 Subject: [PATCH 055/153] Revert animation change in signup (#4693) --- src/screens/Signup/StepInfo/index.tsx | 8 ++--- src/screens/Signup/index.tsx | 44 +++++++++++++++------------ src/screens/Signup/state.ts | 2 ++ 3 files changed, 28 insertions(+), 26 deletions(-) diff --git a/src/screens/Signup/StepInfo/index.tsx b/src/screens/Signup/StepInfo/index.tsx index ea10d4365e..691e23a537 100644 --- a/src/screens/Signup/StepInfo/index.tsx +++ b/src/screens/Signup/StepInfo/index.tsx @@ -1,5 +1,5 @@ -import React, {useEffect} from 'react' -import {LayoutAnimation, View} from 'react-native' +import React from 'react' +import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -35,10 +35,6 @@ export function StepInfo({ const {_} = useLingui() const {state, dispatch} = useSignupContext() - useEffect(() => { - LayoutAnimation.configureNext(LayoutAnimation.Presets.easeInEaseOut) - }, [state.isLoading, isLoadingStarterPack]) - return ( diff --git a/src/screens/Signup/index.tsx b/src/screens/Signup/index.tsx index 2ccb388465..8d1546fbc1 100644 --- a/src/screens/Signup/index.tsx +++ b/src/screens/Signup/index.tsx @@ -1,6 +1,6 @@ import React from 'react' import {View} from 'react-native' -import {LayoutAnimationConfig} from 'react-native-reanimated' +import Animated, {FadeIn, LayoutAnimationConfig} from 'react-native-reanimated' import {AppBskyGraphStarterpack} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' @@ -50,6 +50,8 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { } = useStarterPackQuery({ uri: activeStarterPack?.uri, }) + + const [isFetchedAtMount] = React.useState(starterPack != null) const showStarterPackCard = activeStarterPack?.uri && !isFetchingStarterPack && starterPack @@ -159,25 +161,27 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { {showStarterPackCard && AppBskyGraphStarterpack.isRecord(starterPack.record) ? ( - - - {starterPack.record.name} - - - {starterPack.feeds?.length ? ( - - You'll follow the suggested users and feeds once you finish - creating your account! - - ) : ( - - You'll follow the suggested users once you finish creating - your account! - - )} - - + + + + {starterPack.record.name} + + + {starterPack.feeds?.length ? ( + + You'll follow the suggested users and feeds once you + finish creating your account! + + ) : ( + + You'll follow the suggested users once you finish creating + your account! + + )} + + + ) : null} Date: Fri, 28 Jun 2024 08:27:54 -0500 Subject: [PATCH 056/153] FeedCard & ListCard cleanups (#4644) * Extract ListCard from FeedCard * Export FeedCard.Action and optionally include in ListCard * Remove list dual usage from most of FeedCard * Update usages of FeedCard and ListCard * Add back list purpose logic * Make Action comp easier to use, clarify list purpose * Rename Action to SaveButton --- src/components/FeedCard.tsx | 100 ++++---------- src/components/ListCard.tsx | 129 ++++++++++++++++++ src/components/StarterPack/Main/FeedsList.tsx | 2 +- .../StarterPack/StarterPackLandingScreen.tsx | 2 +- src/view/com/feeds/ProfileFeedgens.tsx | 2 +- src/view/com/lists/ProfileLists.tsx | 4 +- src/view/screens/Feeds.tsx | 52 ++++--- src/view/screens/Search/Explore.tsx | 2 +- src/view/screens/Search/Search.tsx | 2 +- 9 files changed, 198 insertions(+), 97 deletions(-) create mode 100644 src/components/ListCard.tsx diff --git a/src/components/FeedCard.tsx b/src/components/FeedCard.tsx index e0fc7ef54b..b1200d9c4e 100644 --- a/src/components/FeedCard.tsx +++ b/src/components/FeedCard.tsx @@ -18,7 +18,7 @@ import { useRemoveFeedMutation, } from '#/state/queries/preferences' import {sanitizeHandle} from 'lib/strings/handles' -import {precacheFeedFromGeneratorView, precacheList} from 'state/queries/feed' +import {precacheFeedFromGeneratorView} from 'state/queries/feed' import {useSession} from 'state/session' import {UserAvatar} from '#/view/com/util/UserAvatar' import * as Toast from 'view/com/util/Toast' @@ -33,45 +33,31 @@ import * as Prompt from '#/components/Prompt' import {RichText} from '#/components/RichText' import {Text} from '#/components/Typography' -type Props = - | { - type: 'feed' - view: AppBskyFeedDefs.GeneratorView - } - | { - type: 'list' - view: AppBskyGraphDefs.ListView - } +type Props = { + view: AppBskyFeedDefs.GeneratorView +} export function Default(props: Props) { - const {type, view} = props - const displayName = type === 'feed' ? view.displayName : view.name - const purpose = type === 'list' ? view.purpose : undefined + const {view} = props return ( - +
- - + +
- {type === 'feed' && } +
) } export function Link({ - type, view, - label, children, + ...props }: Props & Omit) { const queryClient = useQueryClient() @@ -79,17 +65,12 @@ export function Link({ return createProfileFeedHref({feed: view}) }, [view]) + React.useEffect(() => { + precacheFeedFromGeneratorView(queryClient, view) + }, [view, queryClient]) + return ( - { - if (type === 'feed') { - precacheFeedFromGeneratorView(queryClient, view) - } else { - precacheList(queryClient, view) - } - }}> + {children} ) @@ -132,13 +113,9 @@ export function AvatarPlaceholder({size = 40}: Omit) { export function TitleAndByline({ title, creator, - type, - purpose, }: { title: string creator?: AppBskyActorDefs.ProfileViewBasic - type: 'feed' | 'list' - purpose?: AppBskyGraphDefs.ListView['purpose'] }) { const t = useTheme() @@ -151,15 +128,7 @@ export function TitleAndByline({ - {type === 'list' && purpose === 'app.bsky.graph.defs#curatelist' ? ( - List by {sanitizeHandle(creator.handle, '@')} - ) : type === 'list' && purpose === 'app.bsky.graph.defs#modlist' ? ( - - Moderation list by {sanitizeHandle(creator.handle, '@')} - - ) : ( - Feed by {sanitizeHandle(creator.handle, '@')} - )} + Feed by {sanitizeHandle(creator.handle, '@')} )}
@@ -221,34 +190,24 @@ export function Likes({count}: {count: number}) { ) } -export function Action({ - uri, +export function SaveButton({ + view, pin, - type, - purpose, }: { - uri: string + view: AppBskyFeedDefs.GeneratorView | AppBskyGraphDefs.ListView pin?: boolean - type: 'feed' | 'list' - purpose?: AppBskyGraphDefs.ListView['purpose'] }) { const {hasSession} = useSession() - if ( - !hasSession || - (type === 'list' && purpose !== 'app.bsky.graph.defs#curatelist') - ) - return null - return + if (!hasSession) return null + return } -function ActionInner({ - uri, +function SaveButtonInner({ + view, pin, - type, }: { - uri: string + view: AppBskyFeedDefs.GeneratorView | AppBskyGraphDefs.ListView pin?: boolean - type: 'feed' | 'list' }) { const {_} = useLingui() const {data: preferences} = usePreferencesQuery() @@ -256,6 +215,10 @@ function ActionInner({ useAddSavedFeedsMutation() const {isPending: isRemovePending, mutateAsync: removeFeed} = useRemoveFeedMutation() + + const uri = view.uri + const type = view.uri.includes('app.bsky.feed.generator') ? 'feed' : 'list' + const savedFeedConfig = React.useMemo(() => { return preferences?.savedFeeds?.find(feed => feed.value === uri) }, [preferences?.savedFeeds, uri]) @@ -332,12 +295,9 @@ function ActionInner({ export function createProfileFeedHref({ feed, }: { - feed: AppBskyFeedDefs.GeneratorView | AppBskyGraphDefs.ListView + feed: AppBskyFeedDefs.GeneratorView }) { const urip = new AtUri(feed.uri) - const type = urip.collection === 'app.bsky.feed.generator' ? 'feed' : 'list' const handleOrDid = feed.creator.handle || feed.creator.did - return `/profile/${handleOrDid}/${type === 'feed' ? 'feed' : 'lists'}/${ - urip.rkey - }` + return `/profile/${handleOrDid}/feed/${urip.rkey}` } diff --git a/src/components/ListCard.tsx b/src/components/ListCard.tsx new file mode 100644 index 0000000000..c0e0d0e255 --- /dev/null +++ b/src/components/ListCard.tsx @@ -0,0 +1,129 @@ +import React from 'react' +import {View} from 'react-native' +import {AppBskyActorDefs, AppBskyGraphDefs, AtUri} from '@atproto/api' +import {Trans} from '@lingui/macro' +import {useQueryClient} from '@tanstack/react-query' + +import {sanitizeHandle} from 'lib/strings/handles' +import {precacheList} from 'state/queries/feed' +import {useTheme} from '#/alf' +import {atoms as a} from '#/alf' +import { + Avatar, + Description, + Header, + Outer, + SaveButton, +} from '#/components/FeedCard' +import {Link as InternalLink, LinkProps} from '#/components/Link' +import {Text} from '#/components/Typography' + +/* + * This component is based on `FeedCard` and is tightly coupled with that + * component. Please refer to `FeedCard` for more context. + */ + +export { + Avatar, + AvatarPlaceholder, + Description, + Header, + Outer, + SaveButton, + TitleAndBylinePlaceholder, +} from '#/components/FeedCard' + +const CURATELIST = 'app.bsky.graph.defs#curatelist' +const MODLIST = 'app.bsky.graph.defs#modlist' + +type Props = { + view: AppBskyGraphDefs.ListView + showPinButton?: boolean +} + +export function Default(props: Props) { + const {view, showPinButton} = props + return ( + + +
+ + + {showPinButton && view.purpose === CURATELIST && ( + + )} +
+ +
+ + ) +} + +export function Link({ + view, + children, + ...props +}: Props & Omit) { + const queryClient = useQueryClient() + + const href = React.useMemo(() => { + return createProfileListHref({list: view}) + }, [view]) + + React.useEffect(() => { + precacheList(queryClient, view) + }, [view, queryClient]) + + return ( + + {children} + + ) +} + +export function TitleAndByline({ + title, + creator, + purpose = CURATELIST, +}: { + title: string + creator?: AppBskyActorDefs.ProfileViewBasic + purpose?: AppBskyGraphDefs.ListView['purpose'] +}) { + const t = useTheme() + + return ( + + + {title} + + {creator && ( + + {purpose === MODLIST ? ( + + Moderation list by {sanitizeHandle(creator.handle, '@')} + + ) : ( + List by {sanitizeHandle(creator.handle, '@')} + )} + + )} + + ) +} + +export function createProfileListHref({ + list, +}: { + list: AppBskyGraphDefs.ListView +}) { + const urip = new AtUri(list.uri) + const handleOrDid = list.creator.handle || list.creator.did + return `/profile/${handleOrDid}/lists/${urip.rkey}` +} diff --git a/src/components/StarterPack/Main/FeedsList.tsx b/src/components/StarterPack/Main/FeedsList.tsx index e350a422cf..7d7cd2047c 100644 --- a/src/components/StarterPack/Main/FeedsList.tsx +++ b/src/components/StarterPack/Main/FeedsList.tsx @@ -45,7 +45,7 @@ export const FeedsList = React.forwardRef( (isWeb || index !== 0) && a.border_t, t.atoms.border_contrast_low, ]}> - +
) } diff --git a/src/screens/StarterPack/StarterPackLandingScreen.tsx b/src/screens/StarterPack/StarterPackLandingScreen.tsx index 12420333de..d34af1f6fc 100644 --- a/src/screens/StarterPack/StarterPackLandingScreen.tsx +++ b/src/screens/StarterPack/StarterPackLandingScreen.tsx @@ -316,7 +316,7 @@ function LandingScreenLoaded({ t.atoms.border_contrast_low, ]} key={feed.uri}> - +
))}
diff --git a/src/view/com/feeds/ProfileFeedgens.tsx b/src/view/com/feeds/ProfileFeedgens.tsx index ec1a55e22e..831ab4d1dd 100644 --- a/src/view/com/feeds/ProfileFeedgens.tsx +++ b/src/view/com/feeds/ProfileFeedgens.tsx @@ -163,7 +163,7 @@ export const ProfileFeedgens = React.forwardRef< a.px_lg, a.py_lg, ]}> - +
) } diff --git a/src/view/com/lists/ProfileLists.tsx b/src/view/com/lists/ProfileLists.tsx index 62c944efcb..dc385d4361 100644 --- a/src/view/com/lists/ProfileLists.tsx +++ b/src/view/com/lists/ProfileLists.tsx @@ -18,7 +18,7 @@ import {useAnalytics} from 'lib/analytics/analytics' import {FeedLoadingPlaceholder} from '#/view/com/util/LoadingPlaceholder' import {EmptyState} from 'view/com/util/EmptyState' import {atoms as a, useTheme} from '#/alf' -import * as FeedCard from '#/components/FeedCard' +import * as ListCard from '#/components/ListCard' import {ErrorMessage} from '../util/error/ErrorMessage' import {List, ListRef} from '../util/List' import {LoadMoreRetryBtn} from '../util/LoadMoreRetryBtn' @@ -172,7 +172,7 @@ export const ProfileLists = React.forwardRef( a.px_lg, a.py_lg, ]}> - +
) }, diff --git a/src/view/screens/Feeds.tsx b/src/view/screens/Feeds.tsx index 2e5b485136..82de30d5c5 100644 --- a/src/view/screens/Feeds.tsx +++ b/src/view/screens/Feeds.tsx @@ -41,6 +41,7 @@ import hairlineWidth = StyleSheet.hairlineWidth import {Divider} from '#/components/Divider' import * as FeedCard from '#/components/FeedCard' import {ChevronRight_Stroke2_Corner0_Rounded as ChevronRight} from '#/components/icons/Chevron' +import * as ListCard from '#/components/ListCard' type Props = NativeStackScreenProps @@ -495,7 +496,7 @@ export function FeedsScreen(_props: Props) { } else if (item.type === 'popularFeed') { return ( - + ) @@ -627,7 +628,7 @@ function FollowingFeed() { fill={t.palette.white} />
- +
) @@ -639,34 +640,45 @@ function SavedFeed({ savedFeed: SavedFeedItem & {type: 'feed' | 'list'} }) { const t = useTheme() - const {view: feed} = savedFeed - const displayName = - savedFeed.type === 'feed' ? savedFeed.view.displayName : savedFeed.view.name - return ( - + const commonStyle = [ + a.flex_1, + a.px_lg, + a.py_md, + a.border_b, + t.atoms.border_contrast_low, + ] + + return savedFeed.type === 'feed' ? ( + {({hovered, pressed}) => ( + style={[commonStyle, (hovered || pressed) && t.atoms.bg_contrast_25]}> - - + + )} + ) : ( + + {({hovered, pressed}) => ( + + + + + + + + + )} + ) } diff --git a/src/view/screens/Search/Explore.tsx b/src/view/screens/Search/Explore.tsx index 8f6f6d4ba7..85e8ffa4ec 100644 --- a/src/view/screens/Search/Explore.tsx +++ b/src/view/screens/Search/Explore.tsx @@ -505,7 +505,7 @@ export function Explore() { a.px_lg, a.py_lg, ]}> - +
) } diff --git a/src/view/screens/Search/Search.tsx b/src/view/screens/Search/Search.tsx index 76ffba935f..0eef5cbd66 100644 --- a/src/view/screens/Search/Search.tsx +++ b/src/view/screens/Search/Search.tsx @@ -306,7 +306,7 @@ let SearchScreenFeedsResults = ({ a.px_lg, a.py_lg, ]}> - +
)} keyExtractor={item => item.uri} From a9fe87b842b9e7cfca6f5acbf73aff555ce6eeee Mon Sep 17 00:00:00 2001 From: dan Date: Mon, 1 Jul 2024 18:45:15 +0100 Subject: [PATCH 057/153] Add dismiss backdrop to native dropdowns (#4711) --- src/view/com/util/forms/NativeDropdown.tsx | 167 ++++++++++++--------- 1 file changed, 100 insertions(+), 67 deletions(-) diff --git a/src/view/com/util/forms/NativeDropdown.tsx b/src/view/com/util/forms/NativeDropdown.tsx index 0a47569f27..c8e5fb2daf 100644 --- a/src/view/com/util/forms/NativeDropdown.tsx +++ b/src/view/com/util/forms/NativeDropdown.tsx @@ -1,13 +1,15 @@ import React from 'react' +import {Platform, Pressable, StyleSheet, View, ViewStyle} from 'react-native' +import {IconProp} from '@fortawesome/fontawesome-svg-core' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import * as DropdownMenu from 'zeego/dropdown-menu' -import {Pressable, StyleSheet, Platform, View, ViewStyle} from 'react-native' -import {IconProp} from '@fortawesome/fontawesome-svg-core' import {MenuItemCommonProps} from 'zeego/lib/typescript/menu' -import {usePalette} from 'lib/hooks/usePalette' -import {isWeb} from 'platform/detection' -import {useTheme} from 'lib/ThemeContext' + import {HITSLOP_10} from 'lib/constants' +import {usePalette} from 'lib/hooks/usePalette' +import {useTheme} from 'lib/ThemeContext' +import {isIOS, isWeb} from 'platform/detection' +import {Portal} from '#/components/Portal' // Custom Dropdown Menu Components // == @@ -169,74 +171,105 @@ export function NativeDropdown({ }: React.PropsWithChildren) { const pal = usePalette('default') const theme = useTheme() + const [isOpen, setIsOpen] = React.useState(false) const dropDownBackgroundColor = theme.colorScheme === 'dark' ? pal.btn : pal.viewLight return ( - - - {children} - - - {items.map((item, index) => { - if (item.label === 'separator') { - return ( - - ) - } - if (index > 1 && items[index - 1].label === 'separator') { - return ( - - + {isIOS && isOpen && ( + + + + )} + + + {children} + + + {items.map((item, index) => { + if (item.label === 'separator') { + return ( + - {item.label} - {item.icon && ( - - - - )} - - + /> + ) + } + if (index > 1 && items[index - 1].label === 'separator') { + return ( + + + {item.label} + {item.icon && ( + + + + )} + + + ) + } + return ( + + {item.label} + {item.icon && ( + + + + )} + ) - } - return ( - - {item.label} - {item.icon && ( - - - - )} - - ) - })} - - + })} + + + + ) +} + +function Backdrop() { + // Not visible but it eats the click outside. + // Only necessary for iOS. + return ( + { + /* noop */ + }} + /> ) } From 0012c6d40f63ad6ee1dd1fe13d5b56b4e9006425 Mon Sep 17 00:00:00 2001 From: Hailey Date: Mon, 1 Jul 2024 15:11:04 -0700 Subject: [PATCH 058/153] Add events to signup for captcha results (#4712) --- src/lib/statsig/events.ts | 6 ++++++ src/screens/Signup/StepCaptcha/index.tsx | 3 +++ src/screens/Signup/index.tsx | 14 +++++++++----- 3 files changed, 18 insertions(+), 5 deletions(-) diff --git a/src/lib/statsig/events.ts b/src/lib/statsig/events.ts index 3efc11a51f..81a2d55e29 100644 --- a/src/lib/statsig/events.ts +++ b/src/lib/statsig/events.ts @@ -31,7 +31,13 @@ export type LogEvents = { 'splash:createAccountPressed': {} 'signup:nextPressed': { activeStep: number + phoneVerificationRequired?: boolean } + 'signup:backPressed': { + activeStep: number + } + 'signup:captchaSuccess': {} + 'signup:captchaFailure': {} 'onboarding:interests:nextPressed': { selectedInterests: string[] selectedInterestsLength: number diff --git a/src/screens/Signup/StepCaptcha/index.tsx b/src/screens/Signup/StepCaptcha/index.tsx index d0fc4e9341..b2a91a641c 100644 --- a/src/screens/Signup/StepCaptcha/index.tsx +++ b/src/screens/Signup/StepCaptcha/index.tsx @@ -6,6 +6,7 @@ import {nanoid} from 'nanoid/non-secure' import {createFullHandle} from '#/lib/strings/handles' import {logger} from '#/logger' +import {logEvent} from 'lib/statsig/statsig' import {ScreenTransition} from '#/screens/Login/ScreenTransition' import {useSignupContext, useSubmitSignup} from '#/screens/Signup/state' import {CaptchaWebView} from '#/screens/Signup/StepCaptcha/CaptchaWebView' @@ -39,6 +40,7 @@ export function StepCaptcha() { const onSuccess = React.useCallback( (code: string) => { setCompleted(true) + logEvent('signup:captchaSuccess', {}) submit(code) }, [submit], @@ -50,6 +52,7 @@ export function StepCaptcha() { type: 'setError', value: _(msg`Error receiving captcha response.`), }) + logEvent('signup:captchaFailure', {}) logger.error('Signup Flow Error', { registrationHandle: state.handle, error, diff --git a/src/screens/Signup/index.tsx b/src/screens/Signup/index.tsx index 8d1546fbc1..f7ca180bff 100644 --- a/src/screens/Signup/index.tsx +++ b/src/screens/Signup/index.tsx @@ -112,6 +112,12 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { } } + logEvent('signup:nextPressed', { + activeStep: state.activeStep, + phoneVerificationRequired: + state.serviceDescription?.phoneVerificationRequired, + }) + // phoneVerificationRequired is actually whether a captcha is required if ( state.activeStep === SignupStep.HANDLE && @@ -120,11 +126,7 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { submit() return } - dispatch({type: 'next'}) - logEvent('signup:nextPressed', { - activeStep: state.activeStep, - }) }, [ _, state.activeStep, @@ -144,11 +146,13 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { registrationHandle: state.handle, }) } - dispatch({type: 'prev'}) } else { onPressBack() } + logEvent('signup:backPressed', { + activeStep: state.activeStep, + }) }, [onPressBack, state.activeStep, state.handle]) return ( From 4bb4452f0858f2f5f8f6ead3012307cdf4b6a67f Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 2 Jul 2024 14:19:03 -0500 Subject: [PATCH 059/153] [D1X] Minimum interest experiment (#4653) * Change up copy * Add min # prompt * Improve style * Add gate * Tweak padding * Translate * Revert string change --------- Co-authored-by: dan --- src/lib/statsig/gates.ts | 1 + .../Onboarding/StepInterests/index.tsx | 70 ++++++++++++++++++- 2 files changed, 69 insertions(+), 2 deletions(-) diff --git a/src/lib/statsig/gates.ts b/src/lib/statsig/gates.ts index 46ef934ef6..b667245dd4 100644 --- a/src/lib/statsig/gates.ts +++ b/src/lib/statsig/gates.ts @@ -2,6 +2,7 @@ export type Gate = // Keep this alphabetic please. | 'debug_show_feedcontext' | 'native_pwi_disabled' + | 'onboarding_minimum_interests' | 'request_notifications_permission_after_onboarding_v2' | 'show_avi_follow_button' | 'show_follow_back_label_v2' diff --git a/src/screens/Onboarding/StepInterests/index.tsx b/src/screens/Onboarding/StepInterests/index.tsx index ded473ff59..ca29b5db9b 100644 --- a/src/screens/Onboarding/StepInterests/index.tsx +++ b/src/screens/Onboarding/StepInterests/index.tsx @@ -6,8 +6,10 @@ import {useQuery} from '@tanstack/react-query' import {useAnalytics} from '#/lib/analytics/analytics' import {logEvent} from '#/lib/statsig/statsig' +import {useGate} from '#/lib/statsig/statsig' import {capitalize} from '#/lib/strings/capitalize' import {logger} from '#/logger' +import {isWeb} from '#/platform/detection' import {useAgent} from '#/state/session' import {useOnboardingDispatch} from '#/state/shell' import { @@ -27,16 +29,23 @@ import * as Toggle from '#/components/forms/Toggle' import {IconCircle} from '#/components/IconCircle' import {ArrowRotateCounterClockwise_Stroke2_Corner0_Rounded as ArrowRotateCounterClockwise} from '#/components/icons/ArrowRotateCounterClockwise' import {ChevronRight_Stroke2_Corner0_Rounded as ChevronRight} from '#/components/icons/Chevron' +import {CircleInfo_Stroke2_Corner0_Rounded as CircleInfo} from '#/components/icons/CircleInfo' import {EmojiSad_Stroke2_Corner0_Rounded as EmojiSad} from '#/components/icons/Emoji' import {Hashtag_Stroke2_Corner0_Rounded as Hashtag} from '#/components/icons/Hashtag' import {Loader} from '#/components/Loader' import {Text} from '#/components/Typography' +const PROMPT_HEIGHT = isWeb ? 42 : 36 +// matches the padding of the OnboardingControls.Portal +const PROMPT_OFFSET = isWeb ? a.pb_2xl.paddingBottom : a.pb_lg.paddingBottom +const MIN_INTERESTS = 3 + export function StepInterests() { const {_} = useLingui() const t = useTheme() const {gtMobile} = useBreakpoints() const {track} = useAnalytics() + const gate = useGate() const interestsDisplayNames = useInterestsDisplayNames() const {state, dispatch} = React.useContext(Context) @@ -134,6 +143,11 @@ export function StepInterests() { track('OnboardingV2:StepInterests:Start') }, [track]) + const isMinimumInterestsEnabled = gate('onboarding_minimum_interests') + const meetsMinimumRequirement = isMinimumInterestsEnabled + ? interests.length >= MIN_INTERESTS + : true + const title = isError ? ( Oh no! Something went wrong. ) : ( @@ -171,8 +185,13 @@ export function StepInterests() { {title} {description} + {isMinimumInterestsEnabled && ( + + Choose 3 or more: + + )} - + {isLoading ? ( ) : isError || !data ? ( @@ -248,7 +267,7 @@ export function StepInterests() { ) : ( )} + + {!meetsMinimumRequirement && ( + + + + + + Choose at least {MIN_INTERESTS - interests.length} more + + + + + )} ) From 63bb8fda2d28e11d7e60808e1e86384d48ec1b47 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 2 Jul 2024 14:43:34 -0700 Subject: [PATCH 060/153] Improve textinput performance in login and account creation (#4673) * Change login form to use uncontrolled inputs * Debounce state updates in account creation to reduce flicker * Refactor state-control of account creation forms to fix perf without relying on debounces * Remove canNext and enforce is13 * Re-add live validation to signup form (#4720) * Update validation in real time * Disable on invalid * Clear server error on typing * Remove unnecessary clearing of error --------- Co-authored-by: Dan Abramov --- src/screens/Login/LoginForm.tsx | 60 ++++--- src/screens/Signup/BackNextButtons.tsx | 73 ++++++++ src/screens/Signup/StepCaptcha/index.tsx | 16 ++ src/screens/Signup/StepHandle.tsx | 218 ++++++++++++++--------- src/screens/Signup/StepInfo/index.tsx | 87 +++++++-- src/screens/Signup/index.tsx | 146 ++------------- src/screens/Signup/state.ts | 26 +-- 7 files changed, 357 insertions(+), 269 deletions(-) create mode 100644 src/screens/Signup/BackNextButtons.tsx diff --git a/src/screens/Login/LoginForm.tsx b/src/screens/Login/LoginForm.tsx index 7cfd38e34f..35b124b611 100644 --- a/src/screens/Login/LoginForm.tsx +++ b/src/screens/Login/LoginForm.tsx @@ -60,12 +60,13 @@ export const LoginForm = ({ const {track} = useAnalytics() const t = useTheme() const [isProcessing, setIsProcessing] = useState(false) + const [isReady, setIsReady] = useState(false) const [isAuthFactorTokenNeeded, setIsAuthFactorTokenNeeded] = useState(false) - const [identifier, setIdentifier] = useState(initialHandle) - const [password, setPassword] = useState('') - const [authFactorToken, setAuthFactorToken] = useState('') - const passwordInputRef = useRef(null) + const identifierValueRef = useRef(initialHandle || '') + const passwordValueRef = useRef('') + const authFactorTokenValueRef = useRef('') + const passwordRef = useRef(null) const {_} = useLingui() const {login} = useSessionApi() const requestNotificationsPermission = useRequestNotificationsPermission() @@ -84,6 +85,10 @@ export const LoginForm = ({ setError('') setIsProcessing(true) + const identifier = identifierValueRef.current.toLowerCase().trim() + const password = passwordValueRef.current + const authFactorToken = authFactorTokenValueRef.current + try { // try to guess the handle if the user just gave their own username let fullIdent = identifier @@ -152,7 +157,22 @@ export const LoginForm = ({ } } - const isReady = !!serviceDescription && !!identifier && !!password + const checkIsReady = () => { + if ( + !!serviceDescription && + !!identifierValueRef.current && + !!passwordValueRef.current + ) { + if (!isReady) { + setIsReady(true) + } + } else { + if (isReady) { + setIsReady(false) + } + } + } + return ( Sign in}> @@ -181,14 +201,15 @@ export const LoginForm = ({ autoComplete="username" returnKeyType="next" textContentType="username" + defaultValue={initialHandle || ''} + onChangeText={v => { + identifierValueRef.current = v + checkIsReady() + }} onSubmitEditing={() => { - passwordInputRef.current?.focus() + passwordRef.current?.focus() }} blurOnSubmit={false} // prevents flickering due to onSubmitEditing going to next field - value={identifier} - onChangeText={str => - setIdentifier((str || '').toLowerCase().trim()) - } editable={!isProcessing} accessibilityHint={_( msg`Input the username or email address you used at signup`, @@ -200,7 +221,7 @@ export const LoginForm = ({ { + passwordValueRef.current = v + checkIsReady() + }} onSubmitEditing={onPressNext} blurOnSubmit={false} // HACK: https://github.com/facebook/react-native/issues/21911#issuecomment-558343069 Keyboard blur behavior is now handled in onSubmitEditing editable={!isProcessing} - accessibilityHint={ - identifier === '' - ? _(msg`Input your password`) - : _(msg`Input the password tied to ${identifier}`) - } + accessibilityHint={_(msg`Input your password`)} /> + {!hideNext && + (showRetry ? ( + + ) : ( + + ))} + + ) +} diff --git a/src/screens/Signup/StepCaptcha/index.tsx b/src/screens/Signup/StepCaptcha/index.tsx index b2a91a641c..bf35764908 100644 --- a/src/screens/Signup/StepCaptcha/index.tsx +++ b/src/screens/Signup/StepCaptcha/index.tsx @@ -12,6 +12,7 @@ import {useSignupContext, useSubmitSignup} from '#/screens/Signup/state' import {CaptchaWebView} from '#/screens/Signup/StepCaptcha/CaptchaWebView' import {atoms as a, useTheme} from '#/alf' import {FormError} from '#/components/forms/FormError' +import {BackNextButtons} from '../BackNextButtons' const CAPTCHA_PATH = '/gate/signup' @@ -61,6 +62,16 @@ export function StepCaptcha() { [_, dispatch, state.handle], ) + const onBackPress = React.useCallback(() => { + logger.error('Signup Flow Error', { + errorMessage: + 'User went back from captcha step. Possibly encountered an error.', + registrationHandle: state.handle, + }) + + dispatch({type: 'prev'}) + }, [dispatch, state.handle]) + return ( @@ -86,6 +97,11 @@ export function StepCaptcha() {
+ ) } diff --git a/src/screens/Signup/StepHandle.tsx b/src/screens/Signup/StepHandle.tsx index 2266f43879..b443e822a4 100644 --- a/src/screens/Signup/StepHandle.tsx +++ b/src/screens/Signup/StepHandle.tsx @@ -1,56 +1,96 @@ -import React from 'react' +import React, {useRef} from 'react' import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {useFocusEffect} from '@react-navigation/native' -import { - createFullHandle, - IsValidHandle, - validateHandle, -} from '#/lib/strings/handles' +import {logEvent} from '#/lib/statsig/statsig' +import {createFullHandle, validateHandle} from '#/lib/strings/handles' +import {useAgent} from '#/state/session' import {ScreenTransition} from '#/screens/Login/ScreenTransition' -import {useSignupContext} from '#/screens/Signup/state' +import {useSignupContext, useSubmitSignup} from '#/screens/Signup/state' import {atoms as a, useTheme} from '#/alf' import * as TextField from '#/components/forms/TextField' import {At_Stroke2_Corner0_Rounded as At} from '#/components/icons/At' import {Check_Stroke2_Corner0_Rounded as Check} from '#/components/icons/Check' import {TimesLarge_Stroke2_Corner0_Rounded as Times} from '#/components/icons/Times' import {Text} from '#/components/Typography' +import {BackNextButtons} from './BackNextButtons' export function StepHandle() { const {_} = useLingui() const t = useTheme() const {state, dispatch} = useSignupContext() + const submit = useSubmitSignup({state, dispatch}) + const agent = useAgent() + const handleValueRef = useRef(state.handle) + const [draftValue, setDraftValue] = React.useState(state.handle) - const [validCheck, setValidCheck] = React.useState({ - handleChars: false, - hyphenStartOrEnd: false, - frontLength: false, - totalLength: true, - overall: false, - }) + const onNextPress = React.useCallback(async () => { + const handle = handleValueRef.current.trim() + dispatch({ + type: 'setHandle', + value: handle, + }) - useFocusEffect( - React.useCallback(() => { - setValidCheck(validateHandle(state.handle, state.userDomain)) - }, [state.handle, state.userDomain]), - ) + const newValidCheck = validateHandle(handle, state.userDomain) + if (!newValidCheck.overall) { + return + } - const onHandleChange = React.useCallback( - (value: string) => { - if (state.error) { - dispatch({type: 'setError', value: ''}) - } + try { + dispatch({type: 'setIsLoading', value: true}) - dispatch({ - type: 'setHandle', - value, + const res = await agent.resolveHandle({ + handle: createFullHandle(handle, state.userDomain), }) - }, - [dispatch, state.error], - ) + if (res.data.did) { + dispatch({ + type: 'setError', + value: _(msg`That handle is already taken.`), + }) + return + } + } catch (e) { + // Don't have to handle + } finally { + dispatch({type: 'setIsLoading', value: false}) + } + + logEvent('signup:nextPressed', { + activeStep: state.activeStep, + phoneVerificationRequired: + state.serviceDescription?.phoneVerificationRequired, + }) + // phoneVerificationRequired is actually whether a captcha is required + if (!state.serviceDescription?.phoneVerificationRequired) { + submit() + return + } + dispatch({type: 'next'}) + }, [ + _, + dispatch, + state.activeStep, + state.serviceDescription?.phoneVerificationRequired, + state.userDomain, + submit, + agent, + ]) + + const onBackPress = React.useCallback(() => { + const handle = handleValueRef.current.trim() + dispatch({ + type: 'setHandle', + value: handle, + }) + dispatch({type: 'prev'}) + logEvent('signup:backPressed', { + activeStep: state.activeStep, + }) + }, [dispatch, state.activeStep]) + + const validCheck = validateHandle(draftValue, state.userDomain) return ( @@ -59,9 +99,17 @@ export function StepHandle() { { + if (state.error) { + dispatch({type: 'setError', value: ''}) + } + + // These need to always be in sync. + handleValueRef.current = val + setDraftValue(val) + }} label={_(msg`Input your user handle`)} - defaultValue={state.handle} + defaultValue={draftValue} autoCapitalize="none" autoCorrect={false} autoFocus @@ -69,59 +117,69 @@ export function StepHandle() { /> - - Your full handle will be{' '} - - @{createFullHandle(state.handle, state.userDomain)} + {draftValue !== '' && ( + + Your full handle will be{' '} + + @{createFullHandle(draftValue, state.userDomain)} + - + )} - - {state.error ? ( - - - {state.error} - - ) : undefined} - {validCheck.hyphenStartOrEnd ? ( - - - - Only contains letters, numbers, and hyphens - - - ) : ( - - - - Doesn't begin or end with a hyphen - - - )} - - - {!validCheck.totalLength ? ( - - No longer than 253 characters - + {draftValue !== '' && ( + + {state.error ? ( + + + {state.error} + + ) : undefined} + {validCheck.hyphenStartOrEnd ? ( + + + + Only contains letters, numbers, and hyphens + + ) : ( - - At least 3 characters - + + + + Doesn't begin or end with a hyphen + + )} + + + {!validCheck.totalLength ? ( + + No longer than 253 characters + + ) : ( + + At least 3 characters + + )} + - + )} + ) } diff --git a/src/screens/Signup/StepInfo/index.tsx b/src/screens/Signup/StepInfo/index.tsx index 691e23a537..47fb4c70ba 100644 --- a/src/screens/Signup/StepInfo/index.tsx +++ b/src/screens/Signup/StepInfo/index.tsx @@ -1,8 +1,10 @@ -import React from 'react' +import React, {useRef} from 'react' import {View} from 'react-native' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' +import * as EmailValidator from 'email-validator' +import {logEvent} from '#/lib/statsig/statsig' import {logger} from '#/logger' import {ScreenTransition} from '#/screens/Login/ScreenTransition' import {is13, is18, useSignupContext} from '#/screens/Signup/state' @@ -16,6 +18,7 @@ import {Envelope_Stroke2_Corner0_Rounded as Envelope} from '#/components/icons/E import {Lock_Stroke2_Corner0_Rounded as Lock} from '#/components/icons/Lock' import {Ticket_Stroke2_Corner0_Rounded as Ticket} from '#/components/icons/Ticket' import {Loader} from '#/components/Loader' +import {BackNextButtons} from '../BackNextButtons' function sanitizeDate(date: Date): Date { if (!date || date.toString() === 'Invalid Date') { @@ -28,13 +31,72 @@ function sanitizeDate(date: Date): Date { } export function StepInfo({ + onPressBack, + isServerError, + refetchServer, isLoadingStarterPack, }: { + onPressBack: () => void + isServerError: boolean + refetchServer: () => void isLoadingStarterPack: boolean }) { const {_} = useLingui() const {state, dispatch} = useSignupContext() + const inviteCodeValueRef = useRef(state.inviteCode) + const emailValueRef = useRef(state.email) + const passwordValueRef = useRef(state.password) + + const onNextPress = React.useCallback(async () => { + const inviteCode = inviteCodeValueRef.current + const email = emailValueRef.current + const password = passwordValueRef.current + + if (!is13(state.dateOfBirth)) { + return + } + + if (state.serviceDescription?.inviteCodeRequired && !inviteCode) { + return dispatch({ + type: 'setError', + value: _(msg`Please enter your invite code.`), + }) + } + if (!email) { + return dispatch({ + type: 'setError', + value: _(msg`Please enter your email.`), + }) + } + if (!EmailValidator.validate(email)) { + return dispatch({ + type: 'setError', + value: _(msg`Your email appears to be invalid.`), + }) + } + if (!password) { + return dispatch({ + type: 'setError', + value: _(msg`Please choose your password.`), + }) + } + + dispatch({type: 'setInviteCode', value: inviteCode}) + dispatch({type: 'setEmail', value: email}) + dispatch({type: 'setPassword', value: password}) + dispatch({type: 'next'}) + logEvent('signup:nextPressed', { + activeStep: state.activeStep, + }) + }, [ + _, + dispatch, + state.activeStep, + state.dateOfBirth, + state.serviceDescription?.inviteCodeRequired, + ]) + return ( @@ -65,10 +127,7 @@ export function StepInfo({ { - dispatch({ - type: 'setInviteCode', - value: value.trim(), - }) + inviteCodeValueRef.current = value.trim() }} label={_(msg`Required for this provider`)} defaultValue={state.inviteCode} @@ -88,10 +147,7 @@ export function StepInfo({ { - dispatch({ - type: 'setEmail', - value: value.trim(), - }) + emailValueRef.current = value.trim() }} label={_(msg`Enter your email address`)} defaultValue={state.email} @@ -110,10 +166,7 @@ export function StepInfo({ { - dispatch({ - type: 'setPassword', - value, - }) + passwordValueRef.current = value }} label={_(msg`Choose your password`)} defaultValue={state.password} @@ -147,6 +200,14 @@ export function StepInfo({ ) : undefined} + ) } diff --git a/src/screens/Signup/index.tsx b/src/screens/Signup/index.tsx index f7ca180bff..da0383884b 100644 --- a/src/screens/Signup/index.tsx +++ b/src/screens/Signup/index.tsx @@ -7,11 +7,7 @@ import {useLingui} from '@lingui/react' import {useAnalytics} from '#/lib/analytics/analytics' import {FEEDBACK_FORM_URL} from '#/lib/constants' -import {logEvent} from '#/lib/statsig/statsig' -import {createFullHandle} from '#/lib/strings/handles' -import {logger} from '#/logger' import {useServiceQuery} from '#/state/queries/service' -import {useAgent} from '#/state/session' import {useStarterPackQuery} from 'state/queries/starter-packs' import {useActiveStarterPack} from 'state/shell/starter-pack' import {LoggedOutLayout} from '#/view/com/util/layouts/LoggedOutLayout' @@ -20,14 +16,12 @@ import { reducer, SignupContext, SignupStep, - useSubmitSignup, } from '#/screens/Signup/state' import {StepCaptcha} from '#/screens/Signup/StepCaptcha' import {StepHandle} from '#/screens/Signup/StepHandle' import {StepInfo} from '#/screens/Signup/StepInfo' import {atoms as a, useBreakpoints, useTheme} from '#/alf' import {AppLanguageDropdown} from '#/components/AppLanguageDropdown' -import {Button, ButtonText} from '#/components/Button' import {Divider} from '#/components/Divider' import {LinearGradientBackground} from '#/components/LinearGradientBackground' import {InlineLinkText} from '#/components/Link' @@ -38,9 +32,7 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { const t = useTheme() const {screen} = useAnalytics() const [state, dispatch] = React.useReducer(reducer, initialState) - const submit = useSubmitSignup({state, dispatch}) const {gtMobile} = useBreakpoints() - const agent = useAgent() const activeStarterPack = useActiveStarterPack() const { @@ -89,72 +81,6 @@ export function Signup({onPressBack}: {onPressBack: () => void}) { } }, [_, serviceInfo, isError]) - const onNextPress = React.useCallback(async () => { - if (state.activeStep === SignupStep.HANDLE) { - try { - dispatch({type: 'setIsLoading', value: true}) - - const res = await agent.resolveHandle({ - handle: createFullHandle(state.handle, state.userDomain), - }) - - if (res.data.did) { - dispatch({ - type: 'setError', - value: _(msg`That handle is already taken.`), - }) - return - } - } catch (e) { - // Don't have to handle - } finally { - dispatch({type: 'setIsLoading', value: false}) - } - } - - logEvent('signup:nextPressed', { - activeStep: state.activeStep, - phoneVerificationRequired: - state.serviceDescription?.phoneVerificationRequired, - }) - - // phoneVerificationRequired is actually whether a captcha is required - if ( - state.activeStep === SignupStep.HANDLE && - !state.serviceDescription?.phoneVerificationRequired - ) { - submit() - return - } - dispatch({type: 'next'}) - }, [ - _, - state.activeStep, - state.handle, - state.serviceDescription?.phoneVerificationRequired, - state.userDomain, - submit, - agent, - ]) - - const onBackPress = React.useCallback(() => { - if (state.activeStep !== SignupStep.INFO) { - if (state.activeStep === SignupStep.CAPTCHA) { - logger.error('Signup Flow Error', { - errorMessage: - 'User went back from captcha step. Possibly encountered an error.', - registrationHandle: state.handle, - }) - } - dispatch({type: 'prev'}) - } else { - onPressBack() - } - logEvent('signup:backPressed', { - activeStep: state.activeStep, - }) - }, [onPressBack, state.activeStep, state.handle]) - return ( void}) { - - - {state.activeStep === SignupStep.INFO ? ( - - ) : state.activeStep === SignupStep.HANDLE ? ( - - ) : ( - - )} - - - - - - {state.activeStep !== SignupStep.CAPTCHA && ( - <> - {isError ? ( - - ) : ( - - )} - + + {state.activeStep === SignupStep.INFO ? ( + + ) : state.activeStep === SignupStep.HANDLE ? ( + + ) : ( + )} - + diff --git a/src/screens/Signup/state.ts b/src/screens/Signup/state.ts index 87700cb88e..826cbf1d31 100644 --- a/src/screens/Signup/state.ts +++ b/src/screens/Signup/state.ts @@ -10,7 +10,7 @@ import * as EmailValidator from 'email-validator' import {DEFAULT_SERVICE} from '#/lib/constants' import {cleanError} from '#/lib/strings/errors' -import {createFullHandle, validateHandle} from '#/lib/strings/handles' +import {createFullHandle} from '#/lib/strings/handles' import {getAge} from '#/lib/strings/time' import {logger} from '#/logger' import {useSessionApi} from '#/state/session' @@ -28,7 +28,6 @@ export enum SignupStep { export type SignupState = { hasPrev: boolean - canNext: boolean activeStep: SignupStep serviceUrl: string @@ -58,12 +57,10 @@ export type SignupAction = | {type: 'setHandle'; value: string} | {type: 'setVerificationCode'; value: string} | {type: 'setError'; value: string} - | {type: 'setCanNext'; value: boolean} | {type: 'setIsLoading'; value: boolean} export const initialState: SignupState = { hasPrev: false, - canNext: false, activeStep: SignupStep.INFO, serviceUrl: DEFAULT_SERVICE, @@ -144,10 +141,6 @@ export function reducer(s: SignupState, a: SignupAction): SignupState { next.handle = a.value break } - case 'setCanNext': { - next.canNext = a.value - break - } case 'setIsLoading': { next.isLoading = a.value break @@ -160,23 +153,6 @@ export function reducer(s: SignupState, a: SignupAction): SignupState { next.hasPrev = next.activeStep !== SignupStep.INFO - switch (next.activeStep) { - case SignupStep.INFO: { - const isValidEmail = EmailValidator.validate(next.email) - next.canNext = - !!(next.email && next.password && next.dateOfBirth) && - (!next.serviceDescription?.inviteCodeRequired || !!next.inviteCode) && - is13(next.dateOfBirth) && - isValidEmail - break - } - case SignupStep.HANDLE: { - next.canNext = - !!next.handle && validateHandle(next.handle, next.userDomain).overall - break - } - } - logger.debug('signup', next) if (s.activeStep !== next.activeStep) { From c13366176845d20775fd1d15d1a15bcfb160b39e Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 2 Jul 2024 17:11:28 -0500 Subject: [PATCH 061/153] Add music interest (#4722) --- src/screens/Onboarding/state.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/screens/Onboarding/state.ts b/src/screens/Onboarding/state.ts index 1e8db8b8ad..c41db5c3b7 100644 --- a/src/screens/Onboarding/state.ts +++ b/src/screens/Onboarding/state.ts @@ -88,6 +88,7 @@ export function useInterestsDisplayNames() { gaming: _(msg`Video Games`), journalism: _(msg`Journalism`), movies: _(msg`Movies`), + music: _(msg`Music`), nature: _(msg`Nature`), news: _(msg`News`), pets: _(msg`Pets`), From 14c2d75d49c492e9625a6e7b139f2e8dbc66668f Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 2 Jul 2024 18:15:20 -0500 Subject: [PATCH 062/153] Unify label pills (#4676) * New label pills * Fix type errors, add default case * Remove negative margin, only works in some places * Fix alignment edge case * Add a bit of padding --------- Co-authored-by: Dan Abramov --- src/components/Pills.tsx | 169 ++++++++++++++++++ src/components/ProfileHoverCard/index.web.tsx | 5 +- src/components/dms/MessagesListHeader.tsx | 2 +- src/components/moderation/ContentHider.tsx | 4 +- src/components/moderation/PostAlerts.tsx | 121 +++---------- .../moderation/ProfileHeaderAlerts.tsx | 103 ++--------- src/screens/Messages/List/ChatListItem.tsx | 2 +- src/view/com/post-thread/PostThreadItem.tsx | 2 +- src/view/com/profile/ProfileCard.tsx | 52 +----- 9 files changed, 226 insertions(+), 234 deletions(-) create mode 100644 src/components/Pills.tsx diff --git a/src/components/Pills.tsx b/src/components/Pills.tsx new file mode 100644 index 0000000000..2fff999373 --- /dev/null +++ b/src/components/Pills.tsx @@ -0,0 +1,169 @@ +import React from 'react' +import {View} from 'react-native' +import {BSKY_LABELER_DID, ModerationCause} from '@atproto/api' +import {Trans} from '@lingui/macro' + +import {useModerationCauseDescription} from '#/lib/moderation/useModerationCauseDescription' +import {UserAvatar} from '#/view/com/util/UserAvatar' +import {atoms as a, useTheme, ViewStyleProp} from '#/alf' +import {Button} from '#/components/Button' +import { + ModerationDetailsDialog, + useModerationDetailsDialogControl, +} from '#/components/moderation/ModerationDetailsDialog' +import {Text} from '#/components/Typography' + +export type CommonProps = { + size?: 'sm' | 'lg' +} + +export function Row({ + children, + style, + size = 'sm', +}: {children: React.ReactNode | React.ReactNode[]} & CommonProps & + ViewStyleProp) { + const styles = React.useMemo(() => { + switch (size) { + case 'lg': + return [{gap: 5}] + case 'sm': + default: + return [{gap: 3}] + } + }, [size]) + return ( + + {children} + + ) +} + +export type LabelProps = { + cause: ModerationCause + disableDetailsDialog?: boolean + noBg?: boolean +} & CommonProps + +export function Label({ + cause, + size = 'sm', + disableDetailsDialog, + noBg, +}: LabelProps) { + const t = useTheme() + const control = useModerationDetailsDialogControl() + const desc = useModerationCauseDescription(cause) + const isLabeler = Boolean(desc.sourceType && desc.sourceDid) + const isBlueskyLabel = + desc.sourceType === 'labeler' && desc.sourceDid === BSKY_LABELER_DID + + const {outer, avi, text} = React.useMemo(() => { + switch (size) { + case 'lg': { + return { + outer: [ + t.atoms.bg_contrast_25, + { + gap: 5, + paddingHorizontal: 5, + paddingVertical: 5, + }, + ], + avi: 16, + text: [a.text_sm], + } + } + case 'sm': + default: { + return { + outer: [ + !noBg && t.atoms.bg_contrast_25, + { + gap: 3, + paddingHorizontal: 3, + paddingVertical: 3, + }, + ], + avi: 12, + text: [a.text_xs], + } + } + } + }, [t, size, noBg]) + + return ( + <> + + + {!disableDetailsDialog && ( + + )} + + ) +} + +export function FollowsYou({size = 'sm'}: CommonProps) { + const t = useTheme() + + const variantStyles = React.useMemo(() => { + switch (size) { + case 'sm': + case 'lg': + default: + return [ + { + paddingHorizontal: 6, + paddingVertical: 3, + borderRadius: 4, + }, + ] + } + }, [size]) + + return ( + + + Follows You + + + ) +} diff --git a/src/components/ProfileHoverCard/index.web.tsx b/src/components/ProfileHoverCard/index.web.tsx index 4db9c4f8e5..84b1d6d241 100644 --- a/src/components/ProfileHoverCard/index.web.tsx +++ b/src/components/ProfileHoverCard/index.web.tsx @@ -29,10 +29,10 @@ import { } from '#/components/KnownFollowers' import {InlineLinkText, Link} from '#/components/Link' import {Loader} from '#/components/Loader' +import * as Pills from '#/components/Pills' import {Portal} from '#/components/Portal' import {RichText} from '#/components/RichText' import {Text} from '#/components/Typography' -import {ProfileLabel} from '../moderation/ProfileHeaderAlerts' import {ProfileHoverCardProps} from './types' const floatingMiddlewares = [ @@ -476,8 +476,9 @@ function Inner({ {isBlockedUser && ( {moderation.ui('profileView').alerts.map(cause => ( - diff --git a/src/components/dms/MessagesListHeader.tsx b/src/components/dms/MessagesListHeader.tsx index 0aeac36286..8bf673d300 100644 --- a/src/components/dms/MessagesListHeader.tsx +++ b/src/components/dms/MessagesListHeader.tsx @@ -214,7 +214,7 @@ function HeaderReady({ ]}> diff --git a/src/components/moderation/ContentHider.tsx b/src/components/moderation/ContentHider.tsx index fd71ec838d..45122a4efe 100644 --- a/src/components/moderation/ContentHider.tsx +++ b/src/components/moderation/ContentHider.tsx @@ -165,9 +165,7 @@ export function ContentHider({ } const styles = StyleSheet.create({ - outer: { - overflow: 'hidden', - }, + outer: {}, cover: { flexDirection: 'row', alignItems: 'center', diff --git a/src/components/moderation/PostAlerts.tsx b/src/components/moderation/PostAlerts.tsx index ec7529a4ff..efbf182193 100644 --- a/src/components/moderation/PostAlerts.tsx +++ b/src/components/moderation/PostAlerts.tsx @@ -1,25 +1,17 @@ import React from 'react' -import {StyleProp, View, ViewStyle} from 'react-native' -import {BSKY_LABELER_DID, ModerationCause, ModerationUI} from '@atproto/api' +import {StyleProp, ViewStyle} from 'react-native' +import {ModerationUI} from '@atproto/api' import {getModerationCauseKey} from '#/lib/moderation' -import {useModerationCauseDescription} from '#/lib/moderation/useModerationCauseDescription' -import {UserAvatar} from '#/view/com/util/UserAvatar' -import {atoms as a, useTheme} from '#/alf' -import {Button} from '#/components/Button' -import { - ModerationDetailsDialog, - useModerationDetailsDialogControl, -} from '#/components/moderation/ModerationDetailsDialog' -import {Text} from '#/components/Typography' +import * as Pills from '#/components/Pills' export function PostAlerts({ modui, - size, + size = 'sm', style, }: { modui: ModerationUI - size?: 'medium' | 'large' + size?: Pills.CommonProps['size'] includeMute?: boolean style?: StyleProp }) { @@ -28,90 +20,23 @@ export function PostAlerts({ } return ( - - - {modui.alerts.map(cause => ( - - ))} - {modui.informs.map(cause => ( - - ))} - - - ) -} - -function PostLabel({ - cause, - size, -}: { - cause: ModerationCause - size?: 'medium' | 'large' -}) { - const control = useModerationDetailsDialogControl() - const desc = useModerationCauseDescription(cause) - const t = useTheme() - - return ( - <> - - - - + + {modui.alerts.map(cause => ( + + ))} + {modui.informs.map(cause => ( + + ))} + ) } diff --git a/src/components/moderation/ProfileHeaderAlerts.tsx b/src/components/moderation/ProfileHeaderAlerts.tsx index 4b48b142d2..94779697fb 100644 --- a/src/components/moderation/ProfileHeaderAlerts.tsx +++ b/src/components/moderation/ProfileHeaderAlerts.tsx @@ -1,25 +1,12 @@ import React from 'react' -import {StyleProp, View, ViewStyle} from 'react-native' -import { - BSKY_LABELER_DID, - ModerationCause, - ModerationDecision, -} from '@atproto/api' +import {StyleProp, ViewStyle} from 'react-native' +import {ModerationDecision} from '@atproto/api' -import {useModerationCauseDescription} from '#/lib/moderation/useModerationCauseDescription' import {getModerationCauseKey} from 'lib/moderation' -import {UserAvatar} from '#/view/com/util/UserAvatar' -import {atoms as a, useTheme} from '#/alf' -import {Button} from '#/components/Button' -import { - ModerationDetailsDialog, - useModerationDetailsDialogControl, -} from '#/components/moderation/ModerationDetailsDialog' -import {Text} from '#/components/Typography' +import * as Pills from '#/components/Pills' export function ProfileHeaderAlerts({ moderation, - style, }: { moderation: ModerationDecision style?: StyleProp @@ -30,73 +17,21 @@ export function ProfileHeaderAlerts({ } return ( - - - {modui.alerts.map(cause => ( - - ))} - {modui.informs.map(cause => ( - - ))} - - - ) -} - -export function ProfileLabel({ - cause, - disableDetailsDialog, -}: { - cause: ModerationCause - disableDetailsDialog?: boolean -}) { - const t = useTheme() - const control = useModerationDetailsDialogControl() - const desc = useModerationCauseDescription(cause) - - return ( - <> - - - {!disableDetailsDialog && ( - - )} - + + {modui.alerts.map(cause => ( + + ))} + {modui.informs.map(cause => ( + + ))} + ) } diff --git a/src/screens/Messages/List/ChatListItem.tsx b/src/screens/Messages/List/ChatListItem.tsx index 8ebf8b00b5..c45cc28d7a 100644 --- a/src/screens/Messages/List/ChatListItem.tsx +++ b/src/screens/Messages/List/ChatListItem.tsx @@ -315,7 +315,7 @@ function ChatListItemReady({ diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 46c6c958e3..0f5350e790 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -313,7 +313,7 @@ let PostThreadItemLoaded = ({ childContainerStyle={styles.contentHiderChild}> diff --git a/src/view/com/profile/ProfileCard.tsx b/src/view/com/profile/ProfileCard.tsx index d7ed0dd6ad..7332d452ad 100644 --- a/src/view/com/profile/ProfileCard.tsx +++ b/src/view/com/profile/ProfileCard.tsx @@ -3,13 +3,11 @@ import {StyleProp, StyleSheet, View, ViewStyle} from 'react-native' import { AppBskyActorDefs, moderateProfile, - ModerationCause, ModerationDecision, } from '@atproto/api' import {Trans} from '@lingui/macro' import {useQueryClient} from '@tanstack/react-query' -import {useModerationCauseDescription} from '#/lib/moderation/useModerationCauseDescription' import {useProfileShadow} from '#/state/cache/profile-shadow' import {Shadow} from '#/state/cache/types' import {useModerationOpts} from '#/state/preferences/moderation-opts' @@ -26,6 +24,8 @@ import {Text} from '../util/text/Text' import {PreviewableUserAvatar} from '../util/UserAvatar' import {FollowButton} from './FollowButton' import hairlineWidth = StyleSheet.hairlineWidth +import {atoms as a} from '#/alf' +import * as Pills from '#/components/Pills' export function ProfileCard({ testID, @@ -137,58 +137,21 @@ export function ProfileCardPills({ followedBy: boolean moderation: ModerationDecision }) { - const pal = usePalette('default') - const modui = moderation.ui('profileList') if (!followedBy && !modui.inform && !modui.alert) { return null } return ( - - {followedBy && ( - - - Follows You - - - )} + + {followedBy && } {modui.alerts.map(alert => ( - + ))} {modui.informs.map(inform => ( - + ))} - - ) -} - -function ProfileCardPillModerationCause({ - cause, - severity, -}: { - cause: ModerationCause - severity: 'alert' | 'inform' -}) { - const pal = usePalette('default') - const {name} = useModerationCauseDescription(cause) - return ( - - - {severity === 'alert' ? '⚠ ' : ''} - {name} - - + ) } @@ -322,6 +285,7 @@ const styles = StyleSheet.create({ paddingBottom: 10, }, pills: { + alignItems: 'flex-start', flexDirection: 'row', flexWrap: 'wrap', columnGap: 6, From cacc4c50687c420e68a569e2b586e087917130ba Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 2 Jul 2024 19:15:04 -0500 Subject: [PATCH 063/153] Remove search from disabled PWI state (#4723) --- src/view/com/auth/LoggedOut.tsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/view/com/auth/LoggedOut.tsx b/src/view/com/auth/LoggedOut.tsx index 29127ec45c..cc71f648e9 100644 --- a/src/view/com/auth/LoggedOut.tsx +++ b/src/view/com/auth/LoggedOut.tsx @@ -17,6 +17,7 @@ import { } from '#/state/shell/logged-out' import {useSetMinimalShellMode} from '#/state/shell/minimal-mode' import {NavigationProp} from 'lib/routes/types' +import {useGate} from 'lib/statsig/statsig' import {ErrorBoundary} from '#/view/com/util/ErrorBoundary' import {Text} from '#/view/com/util/text/Text' import {Login} from '#/screens/Login' @@ -52,6 +53,7 @@ export function LoggedOut({onDismiss}: {onDismiss?: () => void}) { }) const {clearRequestedAccount} = useLoggedOutViewControls() const navigation = useNavigation() + const gate = useGate() const isFirstScreen = screenState === ScreenState.S_LoginOrCreateAccount React.useEffect(() => { @@ -96,7 +98,10 @@ export function LoggedOut({onDismiss}: {onDismiss?: () => void}) { }} /> - ) : isNative && !hasSession && isFirstScreen ? ( + ) : isNative && + !hasSession && + isFirstScreen && + !gate('native_pwi_disabled') ? ( Date: Wed, 3 Jul 2024 10:21:33 +0900 Subject: [PATCH 064/153] Make tab names translatable (#4724) --- src/screens/StarterPack/StarterPackScreen.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/screens/StarterPack/StarterPackScreen.tsx b/src/screens/StarterPack/StarterPackScreen.tsx index 12b36f43c6..b80687aff3 100644 --- a/src/screens/StarterPack/StarterPackScreen.tsx +++ b/src/screens/StarterPack/StarterPackScreen.tsx @@ -176,11 +176,12 @@ function StarterPackScreenLoaded({ const showPeopleTab = Boolean(starterPack.list) const showFeedsTab = Boolean(starterPack.feeds?.length) const showPostsTab = Boolean(starterPack.list) + const {_} = useLingui() const tabs = [ - ...(showPeopleTab ? ['People'] : []), - ...(showFeedsTab ? ['Feeds'] : []), - ...(showPostsTab ? ['Posts'] : []), + ...(showPeopleTab ? [_(msg`People`)] : []), + ...(showFeedsTab ? [_(msg`Feeds`)] : []), + ...(showPostsTab ? [_(msg`Posts`)] : []), ] const qrCodeDialogControl = useDialogControl() From 0598fc2faa813486851f01451818220302f2f97a Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 2 Jul 2024 21:34:18 -0500 Subject: [PATCH 065/153] [D1X] Add interstitials, component tweaks, placeholders (#4697) * Add interstitials, component tweaks, placeholders * Tweak feed card styles * Port over same fix to ProfileCard * Add browse more link on desktop * Rm Gemfile * Update logContext * Update logContext * Add click metric to cards * Pass through props to ProfileCard.Link * 2-up grid for profile cards on desktop web * Add secondary_inverted button color * Use inverted button color * Adjust follow button layout * Update skeleton * Use round button * Translate --- .../arrowRight_stroke2_corner0_rounded.svg | 1 + src/components/Button.tsx | 71 ++++ src/components/FeedCard.tsx | 41 +- src/components/FeedInterstitials.tsx | 354 ++++++++++++++++++ src/components/ProfileCard.tsx | 87 ++++- src/components/RichText.tsx | 26 +- src/components/icons/Arrow.tsx | 4 + src/lib/statsig/events.ts | 5 + src/view/screens/Feeds.tsx | 1 + src/view/screens/Storybook/Buttons.tsx | 2 +- 10 files changed, 564 insertions(+), 28 deletions(-) create mode 100644 assets/icons/arrowRight_stroke2_corner0_rounded.svg create mode 100644 src/components/FeedInterstitials.tsx diff --git a/assets/icons/arrowRight_stroke2_corner0_rounded.svg b/assets/icons/arrowRight_stroke2_corner0_rounded.svg new file mode 100644 index 0000000000..dbbbbc2c12 --- /dev/null +++ b/assets/icons/arrowRight_stroke2_corner0_rounded.svg @@ -0,0 +1 @@ + diff --git a/src/components/Button.tsx b/src/components/Button.tsx index 54d9eaf3b0..ed963026cb 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -21,6 +21,7 @@ export type ButtonVariant = 'solid' | 'outline' | 'ghost' | 'gradient' export type ButtonColor = | 'primary' | 'secondary' + | 'secondary_inverted' | 'negative' | 'gradient_sky' | 'gradient_midnight' @@ -217,6 +218,43 @@ export const Button = React.forwardRef( borderWidth: 1, }) + if (!disabled) { + baseStyles.push(a.border, { + borderColor: t.palette.contrast_300, + }) + hoverStyles.push(t.atoms.bg_contrast_50) + } else { + baseStyles.push(a.border, { + borderColor: t.palette.contrast_200, + }) + } + } else if (variant === 'ghost') { + if (!disabled) { + baseStyles.push(t.atoms.bg) + hoverStyles.push({ + backgroundColor: t.palette.contrast_25, + }) + } + } + } else if (color === 'secondary_inverted') { + if (variant === 'solid') { + if (!disabled) { + baseStyles.push({ + backgroundColor: t.palette.contrast_900, + }) + hoverStyles.push({ + backgroundColor: t.palette.contrast_950, + }) + } else { + baseStyles.push({ + backgroundColor: t.palette.contrast_700, + }) + } + } else if (variant === 'outline') { + baseStyles.push(a.border, t.atoms.bg, { + borderWidth: 1, + }) + if (!disabled) { baseStyles.push(a.border, { borderColor: t.palette.contrast_300, @@ -344,6 +382,7 @@ export const Button = React.forwardRef( const gradient = { primary: tokens.gradients.sky, secondary: tokens.gradients.sky, + secondary_inverted: tokens.gradients.sky, negative: tokens.gradients.sky, gradient_sky: tokens.gradients.sky, gradient_midnight: tokens.gradients.midnight, @@ -499,6 +538,38 @@ export function useSharedButtonTextStyles() { }) } } + } else if (color === 'secondary_inverted') { + if (variant === 'solid' || variant === 'gradient') { + if (!disabled) { + baseStyles.push({ + color: t.palette.white, + }) + } else { + baseStyles.push({ + color: t.palette.contrast_400, + }) + } + } else if (variant === 'outline') { + if (!disabled) { + baseStyles.push({ + color: t.palette.contrast_600, + }) + } else { + baseStyles.push({ + color: t.palette.contrast_300, + }) + } + } else if (variant === 'ghost') { + if (!disabled) { + baseStyles.push({ + color: t.palette.contrast_600, + }) + } else { + baseStyles.push({ + color: t.palette.contrast_300, + }) + } + } } else if (color === 'negative') { if (variant === 'solid' || variant === 'gradient') { if (!disabled) { diff --git a/src/components/FeedCard.tsx b/src/components/FeedCard.tsx index b1200d9c4e..5e50f3c483 100644 --- a/src/components/FeedCard.tsx +++ b/src/components/FeedCard.tsx @@ -30,7 +30,7 @@ import {Trash_Stroke2_Corner0_Rounded as Trash} from '#/components/icons/Trash' import {Link as InternalLink, LinkProps} from '#/components/Link' import {Loader} from '#/components/Loader' import * as Prompt from '#/components/Prompt' -import {RichText} from '#/components/RichText' +import {RichText, RichTextProps} from '#/components/RichText' import {Text} from '#/components/Typography' type Props = { @@ -70,22 +70,18 @@ export function Link({ }, [view, queryClient]) return ( - + {children} ) } export function Outer({children}: {children: React.ReactNode}) { - return {children} + return {children} } export function Header({children}: {children: React.ReactNode}) { - return ( - - {children} - - ) + return {children} } export type AvatarProps = {src: string | undefined; size?: number} @@ -167,7 +163,10 @@ export function TitleAndBylinePlaceholder({creator}: {creator?: boolean}) { ) } -export function Description({description}: {description?: string}) { +export function Description({ + description, + ...rest +}: {description?: string} & Partial) { const rt = React.useMemo(() => { if (!description) return const rt = new RichTextApi({text: description || ''}) @@ -175,7 +174,29 @@ export function Description({description}: {description?: string}) { return rt }, [description]) if (!rt) return null - return + return +} + +export function DescriptionPlaceholder() { + const t = useTheme() + return ( + + + + + + ) } export function Likes({count}: {count: number}) { diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx new file mode 100644 index 0000000000..f1c4876a33 --- /dev/null +++ b/src/components/FeedInterstitials.tsx @@ -0,0 +1,354 @@ +import React from 'react' +import {View} from 'react-native' +import {ScrollView} from 'react-native-gesture-handler' +import {AppBskyActorDefs, AppBskyFeedDefs} from '@atproto/api' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' +import {useNavigation} from '@react-navigation/native' + +import {NavigationProp} from '#/lib/routes/types' +import {logEvent} from '#/lib/statsig/statsig' +import {useModerationOpts} from '#/state/preferences/moderation-opts' +import {useGetPopularFeedsQuery} from '#/state/queries/feed' +import {useSuggestedFollowsQuery} from '#/state/queries/suggested-follows' +import {atoms as a, useBreakpoints, useTheme, ViewStyleProp, web} from '#/alf' +import {Button} from '#/components/Button' +import * as FeedCard from '#/components/FeedCard' +import {ArrowRight_Stroke2_Corner0_Rounded as Arrow} from '#/components/icons/Arrow' +import {Hashtag_Stroke2_Corner0_Rounded as Hashtag} from '#/components/icons/Hashtag' +import {PersonPlus_Stroke2_Corner0_Rounded as Person} from '#/components/icons/Person' +import {InlineLinkText} from '#/components/Link' +import * as ProfileCard from '#/components/ProfileCard' +import {Text} from '#/components/Typography' + +function CardOuter({ + children, + style, +}: {children: React.ReactNode | React.ReactNode[]} & ViewStyleProp) { + const t = useTheme() + const {gtMobile} = useBreakpoints() + return ( + + {children} + + ) +} + +export function SuggestedFollowPlaceholder() { + const t = useTheme() + return ( + + + + + + + + + + + + ) +} + +export function SuggestedFeedsCardPlaceholder() { + const t = useTheme() + return ( + + + + + + + + + ) +} + +export function SuggestedFollows() { + const t = useTheme() + const {_} = useLingui() + const { + isLoading: isSuggestionsLoading, + data, + error, + } = useSuggestedFollowsQuery({limit: 6}) + const moderationOpts = useModerationOpts() + const navigation = useNavigation() + const {gtMobile} = useBreakpoints() + const isLoading = isSuggestionsLoading || !moderationOpts + const maxLength = gtMobile ? 4 : 6 + + const profiles: AppBskyActorDefs.ProfileViewBasic[] = [] + if (data) { + // Currently the responses contain duplicate items. + // Needs to be fixed on backend, but let's dedupe to be safe. + let seen = new Set() + for (const page of data.pages) { + for (const actor of page.actors) { + if (!seen.has(actor.did)) { + seen.add(actor.did) + profiles.push(actor) + } + } + } + } + + const content = isLoading ? ( + Array(maxLength) + .fill(0) + .map((_, i) => ( + + + + )) + ) : error || !profiles.length ? null : ( + <> + {profiles.slice(0, maxLength).map(profile => ( + { + logEvent('feed:interstitial:profileCard:press', {}) + }} + style={[ + a.flex_1, + gtMobile && web([a.flex_0, {width: 'calc(50% - 6px)'}]), + ]}> + {({hovered, pressed}) => ( + + + + + + + + + + + )} + + ))} + + ) + + return error ? null : ( + + + + Suggested for you + + + + + {gtMobile ? ( + + + {content} + + + + + Browse more suggestions + + + + + ) : ( + + + {content} + + + + + )} + + ) +} + +export function SuggestedFeeds() { + const numFeedsToDisplay = 3 + const t = useTheme() + const {_} = useLingui() + const {data, isLoading, error} = useGetPopularFeedsQuery({ + limit: numFeedsToDisplay, + }) + const navigation = useNavigation() + const {gtMobile} = useBreakpoints() + + const feeds = React.useMemo(() => { + const items: AppBskyFeedDefs.GeneratorView[] = [] + + if (!data) return items + + for (const page of data.pages) { + for (const feed of page.feeds) { + items.push(feed) + } + } + + return items + }, [data]) + + const content = isLoading ? ( + Array(numFeedsToDisplay) + .fill(0) + .map((_, i) => ) + ) : error || !feeds ? null : ( + <> + {feeds.slice(0, numFeedsToDisplay).map(feed => ( + { + logEvent('feed:interstitial:feedCard:press', {}) + }}> + {({hovered, pressed}) => ( + + + + + + + + + + )} + + ))} + + ) + + return error ? null : ( + + + + Some other feeds you might like + + + + + {gtMobile ? ( + + {content} + + + + Browse more suggestions + + + + + ) : ( + + + {content} + + + + + )} + + ) +} diff --git a/src/components/ProfileCard.tsx b/src/components/ProfileCard.tsx index a6ca7627b2..77016d4fe9 100644 --- a/src/components/ProfileCard.tsx +++ b/src/components/ProfileCard.tsx @@ -9,6 +9,7 @@ import { import {msg} from '@lingui/macro' import {useLingui} from '@lingui/react' +import {LogEvents} from '#/lib/statsig/statsig' import {sanitizeDisplayName} from '#/lib/strings/display-names' import {useProfileFollowMutationQueue} from '#/state/queries/profile' import {sanitizeHandle} from 'lib/strings/handles' @@ -79,7 +80,7 @@ export function Outer({ }: { children: React.ReactElement | React.ReactElement[] }) { - return {children} + return {children} } export function Header({ @@ -87,16 +88,23 @@ export function Header({ }: { children: React.ReactElement | React.ReactElement[] }) { - return {children} + return {children} } -export function Link({did, children}: {did: string} & Omit) { +export function Link({ + did, + children, + style, + ...rest +}: {did: string} & Omit) { return ( + }} + style={[a.flex_col, style]} + {...rest}> {children} ) @@ -121,6 +129,22 @@ export function Avatar({ ) } +export function AvatarPlaceholder() { + const t = useTheme() + return ( + + ) +} + export function NameAndHandle({ profile, moderationOpts, @@ -150,6 +174,36 @@ export function NameAndHandle({ ) } +export function NameAndHandlePlaceholder() { + const t = useTheme() + + return ( + + + + + + ) +} + export function Description({ profile: profileUnshadowed, }: { @@ -183,9 +237,32 @@ export function Description({ ) } +export function DescriptionPlaceholder() { + const t = useTheme() + return ( + + + + + + ) +} + export type FollowButtonProps = { profile: AppBskyActorDefs.ProfileViewBasic - logContext: 'ProfileCard' | 'StarterPackProfilesList' + logContext: LogEvents['profile:follow']['logContext'] & + LogEvents['profile:unfollow']['logContext'] } & Partial export function FollowButton(props: FollowButtonProps) { diff --git a/src/components/RichText.tsx b/src/components/RichText.tsx index 9ba44eabe4..7511775978 100644 --- a/src/components/RichText.tsx +++ b/src/components/RichText.tsx @@ -17,6 +17,19 @@ import {Text, TextProps} from '#/components/Typography' const WORD_WRAP = {wordWrap: 1} +export type RichTextProps = TextStyleProp & + Pick & { + value: RichTextAPI | string + testID?: string + numberOfLines?: number + disableLinks?: boolean + enableTags?: boolean + authorHandle?: string + onLinkPress?: LinkProps['onPress'] + interactiveStyle?: TextStyle + emojiMultiplier?: number + } + export function RichText({ testID, value, @@ -29,18 +42,7 @@ export function RichText({ onLinkPress, interactiveStyle, emojiMultiplier = 1.85, -}: TextStyleProp & - Pick & { - value: RichTextAPI | string - testID?: string - numberOfLines?: number - disableLinks?: boolean - enableTags?: boolean - authorHandle?: string - onLinkPress?: LinkProps['onPress'] - interactiveStyle?: TextStyle - emojiMultiplier?: number - }) { +}: RichTextProps) { const richText = React.useMemo( () => value instanceof RichTextAPI ? value : new RichTextAPI({text: value}), diff --git a/src/components/icons/Arrow.tsx b/src/components/icons/Arrow.tsx index d6fb635e96..0d4bc9479e 100644 --- a/src/components/icons/Arrow.tsx +++ b/src/components/icons/Arrow.tsx @@ -8,6 +8,10 @@ export const ArrowLeft_Stroke2_Corner0_Rounded = createSinglePathSVG({ path: 'M3 12a1 1 0 0 1 .293-.707l6-6a1 1 0 0 1 1.414 1.414L6.414 11H20a1 1 0 1 1 0 2H6.414l4.293 4.293a1 1 0 0 1-1.414 1.414l-6-6A1 1 0 0 1 3 12Z', }) +export const ArrowRight_Stroke2_Corner0_Rounded = createSinglePathSVG({ + path: 'M21 12a1 1 0 0 1-.293.707l-6 6a1 1 0 0 1-1.414-1.414L17.586 13H4a1 1 0 1 1 0-2h13.586l-4.293-4.293a1 1 0 0 1 1.414-1.414l6 6A1 1 0 0 1 21 12Z', +}) + export const ArrowBottom_Stroke2_Corner0_Rounded = createSinglePathSVG({ path: 'M12 21a1 1 0 0 1-.707-.293l-6-6a1 1 0 1 1 1.414-1.414L11 17.586V4a1 1 0 1 1 2 0v13.586l4.293-4.293a1 1 0 0 1 1.414 1.414l-6 6A1 1 0 0 1 12 21Z', }) diff --git a/src/lib/statsig/events.ts b/src/lib/statsig/events.ts index 81a2d55e29..4946fb7f2d 100644 --- a/src/lib/statsig/events.ts +++ b/src/lib/statsig/events.ts @@ -153,6 +153,7 @@ export type LogEvents = { | 'ProfileHoverCard' | 'AvatarButton' | 'StarterPackProfilesList' + | 'FeedInterstitial' } 'profile:unfollow': { logContext: @@ -166,6 +167,7 @@ export type LogEvents = { | 'Chat' | 'AvatarButton' | 'StarterPackProfilesList' + | 'FeedInterstitial' } 'chat:create': { logContext: 'ProfileHeader' | 'NewChatDialog' | 'SendViaChatDialog' @@ -201,6 +203,9 @@ export type LogEvents = { starterPack: string } + 'feed:interstitial:profileCard:press': {} + 'feed:interstitial:feedCard:press': {} + 'test:all:always': {} 'test:all:sometimes': {} 'test:all:boosted_by_gate1': {reason: 'base' | 'gate1'} diff --git a/src/view/screens/Feeds.tsx b/src/view/screens/Feeds.tsx index 82de30d5c5..5a2d71087c 100644 --- a/src/view/screens/Feeds.tsx +++ b/src/view/screens/Feeds.tsx @@ -642,6 +642,7 @@ function SavedFeed({ const t = useTheme() const commonStyle = [ + a.w_full, a.flex_1, a.px_lg, a.py_md, diff --git a/src/view/screens/Storybook/Buttons.tsx b/src/view/screens/Storybook/Buttons.tsx index b532b0dd16..7cc3f60bf7 100644 --- a/src/view/screens/Storybook/Buttons.tsx +++ b/src/view/screens/Storybook/Buttons.tsx @@ -20,7 +20,7 @@ export function Buttons() {

Buttons

- {['primary', 'secondary', 'negative'].map(color => ( + {['primary', 'secondary', 'secondary_inverted'].map(color => ( {['solid', 'outline', 'ghost'].map(variant => ( From 04cfd06639687012b59b52756015324cc622613b Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 2 Jul 2024 21:43:54 -0500 Subject: [PATCH 066/153] [D1X] Integrate interstitials (#4698) * Use discriminated union * Integrate interstitials * Add gates and handling for variants * Only show interstitials for logged in accounts since flags are based on user ID * Nit --------- Co-authored-by: Dan Abramov --- src/components/FeedInterstitials.tsx | 8 +- src/lib/statsig/gates.ts | 2 + src/view/com/posts/Feed.tsx | 223 +++++++++++++++++++++++---- 3 files changed, 198 insertions(+), 35 deletions(-) diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index f1c4876a33..00342b39f2 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -203,7 +203,7 @@ export function SuggestedFollows() { {content} + ) +} diff --git a/src/tours/HomeTour.tsx b/src/tours/HomeTour.tsx new file mode 100644 index 0000000000..d938fe0e02 --- /dev/null +++ b/src/tours/HomeTour.tsx @@ -0,0 +1,93 @@ +import React from 'react' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' +import { + IStep, + TourGuideZone, + TourGuideZoneByPosition, + useTourGuideController, +} from 'rn-tourguide' + +import {DISCOVER_FEED_URI} from '#/lib/constants' +import {isWeb} from '#/platform/detection' +import {useSetSelectedFeed} from '#/state/shell/selected-feed' +import {TOURS} from '.' +import {useHeaderPosition} from './positioning' + +export function HomeTour() { + const {_} = useLingui() + const {tourKey, eventEmitter} = useTourGuideController(TOURS.HOME) + const setSelectedFeed = useSetSelectedFeed() + const headerPosition = useHeaderPosition() + + React.useEffect(() => { + const handleOnStepChange = (step?: IStep) => { + if (step?.order === 2) { + setSelectedFeed('following') + } else if (step?.order === 3) { + setSelectedFeed(`feedgen|${DISCOVER_FEED_URI}`) + } + } + eventEmitter?.on('stepChange', handleOnStepChange) + return () => { + eventEmitter?.off('stepChange', handleOnStepChange) + } + }, [eventEmitter, setSelectedFeed]) + + return ( + <> + + + + + ) +} + +export function HomeTourExploreWrapper({ + children, +}: React.PropsWithChildren<{}>) { + const {_} = useLingui() + const {tourKey} = useTourGuideController(TOURS.HOME) + return ( + + {children} + + ) +} diff --git a/src/tours/Tooltip.tsx b/src/tours/Tooltip.tsx new file mode 100644 index 0000000000..e7727763ba --- /dev/null +++ b/src/tours/Tooltip.tsx @@ -0,0 +1,168 @@ +import * as React from 'react' +import { + AccessibilityInfo, + findNodeHandle, + Pressable, + Text as RNText, + View, +} from 'react-native' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' +import {FocusScope} from '@tamagui/focus-scope' +import {IStep, Labels} from 'rn-tourguide' + +import {useWebBodyScrollLock} from '#/lib/hooks/useWebBodyScrollLock' +import {useA11y} from '#/state/a11y' +import {Logo} from '#/view/icons/Logo' +import {atoms as a, useTheme} from '#/alf' +import {Button, ButtonText} from '#/components/Button' +import {leading, Text} from '#/components/Typography' + +const stopPropagation = (e: any) => e.stopPropagation() + +export interface TooltipComponentProps { + isFirstStep?: boolean + isLastStep?: boolean + currentStep: IStep + labels?: Labels + handleNext?: () => void + handlePrev?: () => void + handleStop?: () => void +} + +export function TooltipComponent({ + isLastStep, + handleNext, + handleStop, + currentStep, + labels, +}: TooltipComponentProps) { + const t = useTheme() + const {_} = useLingui() + const btnRef = React.useRef(null) + const textRef = React.useRef(null) + const {screenReaderEnabled} = useA11y() + useWebBodyScrollLock(true) + + const focusTextNode = () => { + const node = textRef.current ? findNodeHandle(textRef.current) : undefined + if (node) { + AccessibilityInfo.setAccessibilityFocus(node) + } + } + + // handle initial focus immediately on mount + React.useLayoutEffect(() => { + focusTextNode() + }, []) + + // handle focus between steps + const innerHandleNext = () => { + handleNext?.() + setTimeout(() => focusTextNode(), 200) + } + + return ( + + true} + onTouchEnd={stopPropagation} + style={[ + t.atoms.bg, + a.px_lg, + a.py_lg, + a.flex_col, + a.gap_md, + a.rounded_sm, + a.shadow_md, + {maxWidth: 300}, + ]}> + {screenReaderEnabled && ( + + )} + + + + + Quick tip + + + + {currentStep.text} + + {!isLastStep ? ( + + ) : ( + + )} + + {screenReaderEnabled && ( + + )} + + + ) +} diff --git a/src/tours/index.tsx b/src/tours/index.tsx new file mode 100644 index 0000000000..8d4ca26b8a --- /dev/null +++ b/src/tours/index.tsx @@ -0,0 +1,62 @@ +import React from 'react' +import {InteractionManager} from 'react-native' +import {TourGuideProvider, useTourGuideController} from 'rn-tourguide' + +import {useGate} from '#/lib/statsig/statsig' +import {useColorModeTheme} from '#/alf/util/useColorModeTheme' +import {HomeTour} from './HomeTour' +import {TooltipComponent} from './Tooltip' + +export enum TOURS { + HOME = 'home', +} + +type StateContext = TOURS | null +type SetContext = (v: TOURS | null) => void + +const stateContext = React.createContext(null) +const setContext = React.createContext((_: TOURS | null) => {}) + +export function Provider({children}: React.PropsWithChildren<{}>) { + const theme = useColorModeTheme() + const [state, setState] = React.useState(() => null) + + return ( + + + + + {children} + + + + ) +} + +export function useTriggerTourIfQueued(tour: TOURS) { + const {start} = useTourGuideController(tour) + const setQueuedTour = React.useContext(setContext) + const queuedTour = React.useContext(stateContext) + const gate = useGate() + + return React.useCallback(() => { + if (queuedTour === tour) { + setQueuedTour(null) + InteractionManager.runAfterInteractions(() => { + if (gate('new_user_guided_tour')) { + start() + } + }) + } + }, [tour, queuedTour, setQueuedTour, start, gate]) +} + +export function useSetQueuedTour() { + return React.useContext(setContext) +} diff --git a/src/tours/positioning.ts b/src/tours/positioning.ts new file mode 100644 index 0000000000..03d61f53f0 --- /dev/null +++ b/src/tours/positioning.ts @@ -0,0 +1,23 @@ +import {useWindowDimensions} from 'react-native' +import {useSafeAreaInsets} from 'react-native-safe-area-context' + +import {useShellLayout} from '#/state/shell/shell-layout' + +export function useHeaderPosition() { + const {headerHeight} = useShellLayout() + const {width} = useWindowDimensions() + const insets = useSafeAreaInsets() + + return { + top: insets.top, + left: 10, + width: width - 20, + height: headerHeight.value, + borderRadiusObject: { + topLeft: 4, + topRight: 4, + bottomLeft: 4, + bottomRight: 4, + }, + } +} diff --git a/src/tours/positioning.web.ts b/src/tours/positioning.web.ts new file mode 100644 index 0000000000..fd0f7aa714 --- /dev/null +++ b/src/tours/positioning.web.ts @@ -0,0 +1,27 @@ +import {useWindowDimensions} from 'react-native' + +import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' +import {useShellLayout} from '#/state/shell/shell-layout' + +export function useHeaderPosition() { + const {headerHeight} = useShellLayout() + const winDim = useWindowDimensions() + const {isMobile} = useWebMediaQueries() + + let left = 0 + let width = winDim.width + if (width > 590 && !isMobile) { + left = winDim.width / 2 - 295 + width = 590 + } + + let offset = isMobile ? 45 : 0 + + return { + top: headerHeight.value - offset, + left, + width, + height: 45, + borderRadiusObject: undefined, + } +} diff --git a/src/view/com/home/HomeHeaderLayoutMobile.tsx b/src/view/com/home/HomeHeaderLayoutMobile.tsx index 8cf0452cec..ed353cf168 100644 --- a/src/view/com/home/HomeHeaderLayoutMobile.tsx +++ b/src/view/com/home/HomeHeaderLayoutMobile.tsx @@ -72,9 +72,11 @@ export function HomeHeaderLayoutMobile({ {width: 100}, ]}> {IS_DEV && ( - - - + <> + + + + )} {hasSession && ( @@ -86,6 +87,7 @@ function HomeScreenReady({ const selectedIndex = Math.max(0, maybeFoundIndex) const selectedFeed = allFeeds[selectedIndex] const requestNotificationsPermission = useRequestNotificationsPermission() + const triggerTourIfQueued = useTriggerTourIfQueued(TOURS.HOME) useSetTitle(pinnedFeedInfos[selectedIndex]?.displayName) useOTAUpdates() @@ -113,10 +115,16 @@ function HomeScreenReady({ React.useCallback(() => { setMinimalShellMode(false) setDrawerSwipeDisabled(selectedIndex > 0) + triggerTourIfQueued() return () => { setDrawerSwipeDisabled(false) } - }, [setDrawerSwipeDisabled, selectedIndex, setMinimalShellMode]), + }, [ + setDrawerSwipeDisabled, + selectedIndex, + setMinimalShellMode, + triggerTourIfQueued, + ]), ) useFocusEffect( diff --git a/src/view/screens/Settings/index.tsx b/src/view/screens/Settings/index.tsx index d075cc6961..1d8199b009 100644 --- a/src/view/screens/Settings/index.tsx +++ b/src/view/screens/Settings/index.tsx @@ -252,9 +252,10 @@ export function SettingsScreen({}: Props) { }, [clearPreferences]) const onPressResetOnboarding = React.useCallback(async () => { + navigation.navigate('Home') onboardingDispatch({type: 'start'}) Toast.show(_(msg`Onboarding reset`)) - }, [onboardingDispatch, _]) + }, [navigation, onboardingDispatch, _]) const onPressBuildInfo = React.useCallback(() => { setStringAsync( diff --git a/src/view/shell/bottom-bar/BottomBar.tsx b/src/view/shell/bottom-bar/BottomBar.tsx index b5ad92b4c4..80886b3207 100644 --- a/src/view/shell/bottom-bar/BottomBar.tsx +++ b/src/view/shell/bottom-bar/BottomBar.tsx @@ -45,6 +45,7 @@ import { Message_Stroke2_Corner0_Rounded as Message, Message_Stroke2_Corner0_Rounded_Filled as MessageFilled, } from '#/components/icons/Message' +import {HomeTourExploreWrapper} from '#/tours/HomeTour' import {styles} from './BottomBarStyles' type TabOptions = @@ -162,17 +163,19 @@ export function BottomBar({navigation}: BottomTabBarProps) { - ) : ( - - ) + + {isAtSearch ? ( + + ) : ( + + )} + } onPress={onPressSearch} accessibilityRole="search" diff --git a/src/view/shell/bottom-bar/BottomBarWeb.tsx b/src/view/shell/bottom-bar/BottomBarWeb.tsx index 21c253ee00..c89d2a63cf 100644 --- a/src/view/shell/bottom-bar/BottomBarWeb.tsx +++ b/src/view/shell/bottom-bar/BottomBarWeb.tsx @@ -41,6 +41,7 @@ import { UserCircle_Filled_Corner0_Rounded as UserCircleFilled, UserCircle_Stroke2_Corner0_Rounded as UserCircle, } from '#/components/icons/UserCircle' +import {HomeTourExploreWrapper} from '#/tours/HomeTour' import {styles} from './BottomBarStyles' export function BottomBarWeb() { @@ -94,10 +95,12 @@ export function BottomBarWeb() { {({isActive}) => { const Icon = isActive ? MagnifyingGlassFilled : MagnifyingGlass return ( - + + + ) }} diff --git a/src/view/shell/desktop/LeftNav.tsx b/src/view/shell/desktop/LeftNav.tsx index ca8073f573..49fb7fc99a 100644 --- a/src/view/shell/desktop/LeftNav.tsx +++ b/src/view/shell/desktop/LeftNav.tsx @@ -63,6 +63,7 @@ import { UserCircle_Filled_Corner0_Rounded as UserCircleFilled, UserCircle_Stroke2_Corner0_Rounded as UserCircle, } from '#/components/icons/UserCircle' +import {HomeTourExploreWrapper} from '#/tours/HomeTour' import {router} from '../../../routes' const NAV_ICON_WIDTH = 28 @@ -340,14 +341,19 @@ export function DesktopLeftNav() { iconFilled={} label={_(msg`Home`)} /> - } - iconFilled={ - - } - label={_(msg`Search`)} - /> + + } + iconFilled={ + + } + label={_(msg`Search`)} + /> + Date: Wed, 3 Jul 2024 18:15:08 -0700 Subject: [PATCH 070/153] Add starter pack embeds to posts (#4699) * starter pack embeds * revert test code * Types * add `BaseLink` * precache on click * rm log * add a comment * loading state * top margin --------- Co-authored-by: Dan Abramov --- src/components/Link.tsx | 49 ++++++++++++++- .../StarterPack/Main/ProfilesList.tsx | 21 +++++-- .../StarterPack/StarterPackCard.tsx | 60 +++++++++++++++---- src/lib/link-meta/bsky.ts | 51 ++++++++++++++-- src/lib/strings/starter-pack.ts | 2 +- src/lib/strings/url-helpers.ts | 24 ++++++++ src/screens/StarterPack/StarterPackScreen.tsx | 22 +------ src/state/queries/starter-packs.ts | 33 ++++++++++ src/view/com/composer/useExternalLinkFetch.ts | 20 +++++++ src/view/com/util/post-embeds/index.tsx | 5 ++ 10 files changed, 246 insertions(+), 41 deletions(-) diff --git a/src/components/Link.tsx b/src/components/Link.tsx index d8ac829b67..a8b478be78 100644 --- a/src/components/Link.tsx +++ b/src/components/Link.tsx @@ -1,5 +1,10 @@ import React from 'react' -import {GestureResponderEvent} from 'react-native' +import { + GestureResponderEvent, + Pressable, + StyleProp, + ViewStyle, +} from 'react-native' import {sanitizeUrl} from '@braintree/sanitize-url' import {StackActions, useLinkProps} from '@react-navigation/native' @@ -323,3 +328,45 @@ export function InlineLinkText({ ) } + +/** + * A Pressable that uses useLink to handle navigation. It is unstyled, so can be used in cases where the Button styles + * in Link are not desired. + * @param displayText + * @param style + * @param children + * @param rest + * @constructor + */ +export function BaseLink({ + displayText, + onPress: onPressOuter, + style, + children, + ...rest +}: { + style?: StyleProp + children: React.ReactNode + to: string + action: 'push' | 'replace' | 'navigate' + onPress?: () => false | void + shareOnLongPress?: boolean + label: string + displayText?: string +}) { + const {onPress, ...btnProps} = useLink({ + displayText: displayText ?? rest.to, + ...rest, + }) + return ( + { + onPressOuter?.() + onPress(e) + }} + {...btnProps}> + {children} + + ) +} diff --git a/src/components/StarterPack/Main/ProfilesList.tsx b/src/components/StarterPack/Main/ProfilesList.tsx index 0cc911d66a..3249f1b32e 100644 --- a/src/components/StarterPack/Main/ProfilesList.tsx +++ b/src/components/StarterPack/Main/ProfilesList.tsx @@ -11,10 +11,12 @@ import {InfiniteData, UseInfiniteQueryResult} from '@tanstack/react-query' import {useBottomBarOffset} from 'lib/hooks/useBottomBarOffset' import {isBlockedOrBlocking} from 'lib/moderation/blocked-and-muted' import {isNative, isWeb} from 'platform/detection' +import {useListMembersQuery} from 'state/queries/list-members' import {useSession} from 'state/session' import {List, ListRef} from 'view/com/util/List' import {SectionRef} from '#/screens/Profile/Sections/types' import {atoms as a, useTheme} from '#/alf' +import {ListMaybePlaceholder} from '#/components/Lists' import {Default as ProfileCard} from '#/components/ProfileCard' function keyExtractor(item: AppBskyActorDefs.ProfileViewBasic, index: number) { @@ -33,18 +35,17 @@ interface ProfilesListProps { export const ProfilesList = React.forwardRef( function ProfilesListImpl( - {listUri, listMembersQuery, moderationOpts, headerHeight, scrollElRef}, + {listUri, moderationOpts, headerHeight, scrollElRef}, ref, ) { const t = useTheme() const [initialHeaderHeight] = React.useState(headerHeight) const bottomBarOffset = useBottomBarOffset(20) const {currentAccount} = useSession() + const {data, refetch, isError} = useListMembersQuery(listUri, 50) const [isPTRing, setIsPTRing] = React.useState(false) - const {data, refetch} = listMembersQuery - // The server returns these sorted by descending creation date, so we want to invert const profiles = data?.pages .flatMap(p => p.items.map(i => i.subject)) @@ -96,7 +97,19 @@ export const ProfilesList = React.forwardRef( ) } - if (listMembersQuery) + if (!data) { + return ( + + + + ) + } + + if (data) return ( ) { + onPress?: () => void + children: React.ReactNode +}) { + const {_} = useLingui() + const queryClient = useQueryClient() const {record} = starterPack const {rkey, handleOrDid} = React.useMemo(() => { const rkey = new AtUri(starterPack.uri).rkey @@ -104,14 +112,46 @@ export function Link({ } return ( - { + precacheResolvedUri( + queryClient, + starterPack.creator.handle, + starterPack.creator.did, + ) + precacheStarterPack(queryClient, starterPack) }}> {children} - + + ) +} + +export function Embed({starterPack}: {starterPack: StarterPackViewBasic}) { + const t = useTheme() + const imageUri = getStarterPackOgCard(starterPack) + + return ( + + + + + + + + ) } diff --git a/src/lib/link-meta/bsky.ts b/src/lib/link-meta/bsky.ts index c1fbb34b3c..e3b4ea0c9c 100644 --- a/src/lib/link-meta/bsky.ts +++ b/src/lib/link-meta/bsky.ts @@ -1,11 +1,16 @@ -import {AppBskyFeedPost, BskyAgent} from '@atproto/api' +import {AppBskyFeedPost, AppBskyGraphStarterpack, BskyAgent} from '@atproto/api' + +import {useFetchDid} from '#/state/queries/handle' +import {useGetPost} from '#/state/queries/post' import * as apilib from 'lib/api/index' -import {LikelyType, LinkMeta} from './link-meta' +import { + createStarterPackUri, + parseStarterPackUri, +} from 'lib/strings/starter-pack' +import {ComposerOptsQuote} from 'state/shell/composer' // import {match as matchRoute} from 'view/routes' import {convertBskyAppUrlIfNeeded, makeRecordUri} from '../strings/url-helpers' -import {ComposerOptsQuote} from 'state/shell/composer' -import {useGetPost} from '#/state/queries/post' -import {useFetchDid} from '#/state/queries/handle' +import {LikelyType, LinkMeta} from './link-meta' // TODO // import {Home} from 'view/screens/Home' @@ -174,3 +179,39 @@ export async function getListAsEmbed( }, } } + +export async function getStarterPackAsEmbed( + agent: BskyAgent, + fetchDid: ReturnType, + url: string, +): Promise { + const parsed = parseStarterPackUri(url) + if (!parsed) { + throw new Error( + 'Unexepectedly called getStarterPackAsEmbed with a non-starterpack url', + ) + } + const did = await fetchDid(parsed.name) + const starterPack = createStarterPackUri({did, rkey: parsed.rkey}) + const res = await agent.app.bsky.graph.getStarterPack({starterPack}) + const record = res.data.starterPack.record + return { + isLoading: false, + uri: starterPack, + meta: { + url: starterPack, + likelyType: LikelyType.AtpData, + // Validation here should never fail + title: AppBskyGraphStarterpack.isRecord(record) + ? record.name + : 'Starter Pack', + }, + embed: { + $type: 'app.bsky.embed.record', + record: { + uri: res.data.starterPack.uri, + cid: res.data.starterPack.cid, + }, + }, + } +} diff --git a/src/lib/strings/starter-pack.ts b/src/lib/strings/starter-pack.ts index 01b5a65870..ca34100155 100644 --- a/src/lib/strings/starter-pack.ts +++ b/src/lib/strings/starter-pack.ts @@ -96,7 +96,7 @@ export function createStarterPackUri({ }: { did: string rkey: string -}): string | null { +}): string { return new AtUri(`at://${did}/app.bsky.graph.starterpack/${rkey}`).toString() } diff --git a/src/lib/strings/url-helpers.ts b/src/lib/strings/url-helpers.ts index 948279fceb..742c7ef79a 100644 --- a/src/lib/strings/url-helpers.ts +++ b/src/lib/strings/url-helpers.ts @@ -152,6 +152,30 @@ export function isBskyListUrl(url: string): boolean { return false } +export function isBskyStartUrl(url: string): boolean { + if (isBskyAppUrl(url)) { + try { + const urlp = new URL(url) + return /start\/(?[^/]+)\/(?[^/]+)/i.test(urlp.pathname) + } catch { + console.error('Unexpected error in isBskyStartUrl()', url) + } + } + return false +} + +export function isBskyStarterPackUrl(url: string): boolean { + if (isBskyAppUrl(url)) { + try { + const urlp = new URL(url) + return /starter-pack\/(?[^/]+)\/(?[^/]+)/i.test(urlp.pathname) + } catch { + console.error('Unexpected error in isBskyStartUrl()', url) + } + } + return false +} + export function isBskyDownloadUrl(url: string): boolean { if (isExternalUrl(url)) { return false diff --git a/src/screens/StarterPack/StarterPackScreen.tsx b/src/screens/StarterPack/StarterPackScreen.tsx index 2b6f673b1f..9b66e51578 100644 --- a/src/screens/StarterPack/StarterPackScreen.tsx +++ b/src/screens/StarterPack/StarterPackScreen.tsx @@ -3,7 +3,6 @@ import {View} from 'react-native' import {Image} from 'expo-image' import { AppBskyGraphDefs, - AppBskyGraphGetList, AppBskyGraphStarterpack, AtUri, ModerationOpts, @@ -14,11 +13,7 @@ import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useNavigation} from '@react-navigation/native' import {NativeStackScreenProps} from '@react-navigation/native-stack' -import { - InfiniteData, - UseInfiniteQueryResult, - useQueryClient, -} from '@tanstack/react-query' +import {useQueryClient} from '@tanstack/react-query' import {cleanError} from '#/lib/strings/errors' import {logger} from '#/logger' @@ -33,7 +28,6 @@ import {getStarterPackOgCard} from 'lib/strings/starter-pack' import {isWeb} from 'platform/detection' import {updateProfileShadow} from 'state/cache/profile-shadow' import {useModerationOpts} from 'state/preferences/moderation-opts' -import {useListMembersQuery} from 'state/queries/list-members' import {useResolvedStarterPackShortLink} from 'state/queries/resolve-short-link' import {useResolveDidQuery} from 'state/queries/resolve-uri' import {useShortenLink} from 'state/queries/shorten-link' @@ -123,7 +117,6 @@ export function StarterPackScreenInner({ isLoading: isLoadingStarterPack, isError: isErrorStarterPack, } = useStarterPackQuery({did, rkey}) - const listMembersQuery = useListMembersQuery(starterPack?.list?.uri, 50) const isValid = starterPack && @@ -134,12 +127,7 @@ export function StarterPackScreenInner({ if (!did || !starterPack || !isValid || !moderationOpts) { return ( ) @@ -164,14 +151,10 @@ export function StarterPackScreenInner({ function StarterPackScreenLoaded({ starterPack, routeParams, - listMembersQuery, moderationOpts, }: { starterPack: AppBskyGraphDefs.StarterPackView routeParams: StarterPackScreeProps['route']['params'] - listMembersQuery: UseInfiniteQueryResult< - InfiniteData - > moderationOpts: ModerationOpts }) { const showPeopleTab = Boolean(starterPack.list) @@ -242,7 +225,6 @@ function StarterPackScreenLoaded({ headerHeight={headerHeight} // @ts-expect-error scrollElRef={scrollElRef} - listMembersQuery={listMembersQuery} moderationOpts={moderationOpts} /> ) diff --git a/src/state/queries/starter-packs.ts b/src/state/queries/starter-packs.ts index f441a8ed26..2cdb6b850e 100644 --- a/src/state/queries/starter-packs.ts +++ b/src/state/queries/starter-packs.ts @@ -347,3 +347,36 @@ async function whenAppViewReady( () => agent.app.bsky.graph.getStarterPack({starterPack: uri}), ) } + +export async function precacheStarterPack( + queryClient: QueryClient, + starterPack: + | AppBskyGraphDefs.StarterPackViewBasic + | AppBskyGraphDefs.StarterPackView, +) { + if (!AppBskyGraphStarterpack.isRecord(starterPack.record)) { + return + } + + let starterPackView: AppBskyGraphDefs.StarterPackView | undefined + if (AppBskyGraphDefs.isStarterPackView(starterPack)) { + starterPackView = starterPack + } else if (AppBskyGraphDefs.isStarterPackViewBasic(starterPack)) { + const listView: AppBskyGraphDefs.ListViewBasic = { + uri: starterPack.record.list, + // This will be populated once the data from server is fetched + cid: '', + name: starterPack.record.name, + purpose: 'app.bsky.graph.defs#referencelist', + } + starterPackView = { + ...starterPack, + $type: 'app.bsky.graph.defs#starterPackView', + list: listView, + } + } + + if (starterPackView) { + queryClient.setQueryData(RQKEY({uri: starterPack.uri}), starterPackView) + } +} diff --git a/src/view/com/composer/useExternalLinkFetch.ts b/src/view/com/composer/useExternalLinkFetch.ts index 743535a5e0..2938ea25ac 100644 --- a/src/view/com/composer/useExternalLinkFetch.ts +++ b/src/view/com/composer/useExternalLinkFetch.ts @@ -10,6 +10,7 @@ import { getFeedAsEmbed, getListAsEmbed, getPostAsQuote, + getStarterPackAsEmbed, } from 'lib/link-meta/bsky' import {getLinkMeta} from 'lib/link-meta/link-meta' import {resolveShortLink} from 'lib/link-meta/resolve-short-link' @@ -18,6 +19,8 @@ import { isBskyCustomFeedUrl, isBskyListUrl, isBskyPostUrl, + isBskyStarterPackUrl, + isBskyStartUrl, isShortLink, } from 'lib/strings/url-helpers' import {ImageModel} from 'state/models/media/image' @@ -96,6 +99,23 @@ export function useExternalLinkFetch({ setExtLink(undefined) }, ) + } else if ( + isBskyStartUrl(extLink.uri) || + isBskyStarterPackUrl(extLink.uri) + ) { + getStarterPackAsEmbed(agent, fetchDid, extLink.uri).then( + ({embed, meta}) => { + if (aborted) { + return + } + setExtLink({ + uri: extLink.uri, + isLoading: false, + meta, + embed, + }) + }, + ) } else if (isShortLink(extLink.uri)) { if (isShortLink(extLink.uri)) { resolveShortLink(extLink.uri).then(res => { diff --git a/src/view/com/util/post-embeds/index.tsx b/src/view/com/util/post-embeds/index.tsx index be34a2869e..942ad57b81 100644 --- a/src/view/com/util/post-embeds/index.tsx +++ b/src/view/com/util/post-embeds/index.tsx @@ -30,6 +30,7 @@ import {ListEmbed} from './ListEmbed' import {MaybeQuoteEmbed} from './QuoteEmbed' import hairlineWidth = StyleSheet.hairlineWidth import {useLargeAltBadgeEnabled} from '#/state/preferences/large-alt-badge' +import {Embed as StarterPackCard} from '#/components/StarterPack/StarterPackCard' type Embed = | AppBskyEmbedRecord.View @@ -90,6 +91,10 @@ export function PostEmbeds({ return } + if (AppBskyGraphDefs.isStarterPackViewBasic(embed.record)) { + return + } + // quote post // = return ( From 0ed99b840d8de13465f010a6434dea50c72b3f62 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 3 Jul 2024 19:05:19 -0700 Subject: [PATCH 071/153] New user progress guides (#4716) * Add the animated checkmark svg * Add progress guide list and task components * Add ProgressGuide Toast component * Implement progress-guide controller * Add 7 follows to the progress guide * Wire up action captures * Wire up progress-guide persistence * Trigger progress guide on account creation * Clear the progress guide from storage on complete * Add progress guide interstitial, put behind gate * Fix: read progress guide state from prefs * Some defensive type checks * Create separate toast for completion * List tweaks * Only show on Discover * Spacing and progress tweaks * Completely hide when complete * Capture the progress guide in local state, and only render toasts while guide is active * Fix: ensure persisted hydrates into local state * Gate --------- Co-authored-by: Eric Bailey Co-authored-by: Dan Abramov --- package.json | 2 +- src/App.native.tsx | 12 +- src/App.web.tsx | 5 +- src/components/FeedInterstitials.tsx | 26 +++ src/components/ProgressGuide/List.tsx | 61 ++++++ src/components/ProgressGuide/Task.tsx | 50 +++++ src/components/ProgressGuide/Toast.tsx | 169 ++++++++++++++++ src/components/anim/AnimatedCheck.tsx | 92 +++++++++ src/lib/statsig/gates.ts | 1 + src/screens/Onboarding/StepFinished.tsx | 4 + src/screens/StarterPack/StarterPackScreen.tsx | 6 + src/state/queries/preferences/const.ts | 4 + src/state/queries/preferences/index.ts | 47 +++++ src/state/queries/profile.ts | 7 + src/state/shell/progress-guide.tsx | 185 ++++++++++++++++++ src/view/com/posts/Feed.tsx | 46 ++++- src/view/com/util/post-ctrls/PostCtrls.tsx | 7 + src/view/shell/desktop/RightNav.tsx | 10 +- yarn.lock | 9 +- 19 files changed, 721 insertions(+), 22 deletions(-) create mode 100644 src/components/ProgressGuide/List.tsx create mode 100644 src/components/ProgressGuide/Task.tsx create mode 100644 src/components/ProgressGuide/Toast.tsx create mode 100644 src/components/anim/AnimatedCheck.tsx create mode 100644 src/state/shell/progress-guide.tsx diff --git a/package.json b/package.json index 8525655136..5f9f03457a 100644 --- a/package.json +++ b/package.json @@ -49,7 +49,7 @@ "open-analyzer": "EXPO_PUBLIC_OPEN_ANALYZER=1 yarn build-web" }, "dependencies": { - "@atproto/api": "^0.12.22", + "@atproto/api": "^0.12.23", "@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/App.native.tsx b/src/App.native.tsx index 18af744097..f0dde6ee1a 100644 --- a/src/App.native.tsx +++ b/src/App.native.tsx @@ -45,6 +45,7 @@ import { import {readLastActiveAccount} from '#/state/session/util' import {Provider as ShellStateProvider} from '#/state/shell' 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 {TestCtrls} from '#/view/com/testing/TestCtrls' @@ -119,10 +120,13 @@ function InnerApp() { - - - - + + + + + + diff --git a/src/App.web.tsx b/src/App.web.tsx index f45806e4d2..eb4a925d07 100644 --- a/src/App.web.tsx +++ b/src/App.web.tsx @@ -34,6 +34,7 @@ import { import {readLastActiveAccount} from '#/state/session/util' import {Provider as ShellStateProvider} from '#/state/shell' 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 * as Toast from '#/view/com/util/Toast' @@ -104,7 +105,9 @@ function InnerApp() { - + + + diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index 00342b39f2..ca3b085b98 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -6,11 +6,13 @@ import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useNavigation} from '@react-navigation/native' +import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' import {NavigationProp} from '#/lib/routes/types' import {logEvent} from '#/lib/statsig/statsig' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useGetPopularFeedsQuery} from '#/state/queries/feed' import {useSuggestedFollowsQuery} from '#/state/queries/suggested-follows' +import {useProgressGuide} from '#/state/shell/progress-guide' import {atoms as a, useBreakpoints, useTheme, ViewStyleProp, web} from '#/alf' import {Button} from '#/components/Button' import * as FeedCard from '#/components/FeedCard' @@ -20,6 +22,7 @@ import {PersonPlus_Stroke2_Corner0_Rounded as Person} from '#/components/icons/P import {InlineLinkText} from '#/components/Link' import * as ProfileCard from '#/components/ProfileCard' import {Text} from '#/components/Typography' +import {ProgressGuideList} from './ProgressGuide/List' function CardOuter({ children, @@ -352,3 +355,26 @@ export function SuggestedFeeds() { ) } + +export function ProgressGuide() { + const t = useTheme() + const {isDesktop} = useWebMediaQueries() + const guide = useProgressGuide('like-10-and-follow-7') + + if (isDesktop) { + return null + } + + return guide ? ( + + + + ) : null +} diff --git a/src/components/ProgressGuide/List.tsx b/src/components/ProgressGuide/List.tsx new file mode 100644 index 0000000000..f68445d2be --- /dev/null +++ b/src/components/ProgressGuide/List.tsx @@ -0,0 +1,61 @@ +import React from 'react' +import {StyleProp, View, ViewStyle} from 'react-native' +import {msg, Trans} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import { + useProgressGuide, + useProgressGuideControls, +} from '#/state/shell/progress-guide' +import {atoms as a, useTheme} from '#/alf' +import {Button, ButtonIcon} from '#/components/Button' +import {TimesLarge_Stroke2_Corner0_Rounded as Times} from '#/components/icons/Times' +import {Text} from '#/components/Typography' +import {ProgressGuideTask} from './Task' + +export function ProgressGuideList({style}: {style?: StyleProp}) { + const t = useTheme() + const {_} = useLingui() + const guide = useProgressGuide('like-10-and-follow-7') + const {endProgressGuide} = useProgressGuideControls() + + if (guide) { + return ( + + + + Getting started + + + + + + + ) + } + return null +} diff --git a/src/components/ProgressGuide/Task.tsx b/src/components/ProgressGuide/Task.tsx new file mode 100644 index 0000000000..d286b88426 --- /dev/null +++ b/src/components/ProgressGuide/Task.tsx @@ -0,0 +1,50 @@ +import React from 'react' +import {View} from 'react-native' +import * as Progress from 'react-native-progress' + +import {atoms as a, useTheme} from '#/alf' +import {AnimatedCheck} from '../anim/AnimatedCheck' +import {Text} from '../Typography' + +export function ProgressGuideTask({ + current, + total, + title, + subtitle, +}: { + current: number + total: number + title: string + subtitle?: string +}) { + const t = useTheme() + + return ( + + {current === total ? ( + + ) : ( + + )} + + + + {title} + + {subtitle && ( + + {subtitle} + + )} + + + ) +} diff --git a/src/components/ProgressGuide/Toast.tsx b/src/components/ProgressGuide/Toast.tsx new file mode 100644 index 0000000000..346312af51 --- /dev/null +++ b/src/components/ProgressGuide/Toast.tsx @@ -0,0 +1,169 @@ +import React, {useImperativeHandle} from 'react' +import {Pressable, useWindowDimensions, View} from 'react-native' +import Animated, { + Easing, + runOnJS, + useAnimatedStyle, + useSharedValue, + withTiming, +} from 'react-native-reanimated' +import {useSafeAreaInsets} from 'react-native-safe-area-context' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {isWeb} from '#/platform/detection' +import {atoms as a, useTheme} from '#/alf' +import {Portal} from '#/components/Portal' +import {AnimatedCheck, AnimatedCheckRef} from '../anim/AnimatedCheck' +import {Text} from '../Typography' + +export interface ProgressGuideToastRef { + open(): void + close(): void +} + +export interface ProgressGuideToastProps { + title: string + subtitle?: string + visibleDuration?: number // default 5s +} + +export const ProgressGuideToast = React.forwardRef< + ProgressGuideToastRef, + ProgressGuideToastProps +>(function ProgressGuideToast({title, subtitle, visibleDuration}, ref) { + const t = useTheme() + const {_} = useLingui() + const insets = useSafeAreaInsets() + const [isOpen, setIsOpen] = React.useState(false) + const translateY = useSharedValue(0) + const opacity = useSharedValue(0) + const animatedCheckRef = React.useRef(null) + const timeoutRef = React.useRef() + const winDim = useWindowDimensions() + + /** + * Methods + */ + + const close = React.useCallback(() => { + // clear the timeout, in case this was called imperatively + if (timeoutRef.current) { + clearTimeout(timeoutRef.current) + timeoutRef.current = undefined + } + + // animate the opacity then set isOpen to false when done + const setIsntOpen = () => setIsOpen(false) + opacity.value = withTiming( + 0, + { + duration: 400, + easing: Easing.out(Easing.cubic), + }, + () => runOnJS(setIsntOpen)(), + ) + }, [setIsOpen, opacity]) + + const open = React.useCallback(() => { + // set isOpen=true to render + setIsOpen(true) + + // animate the vertical translation, the opacity, and the checkmark + const playCheckmark = () => animatedCheckRef.current?.play() + opacity.value = 0 + opacity.value = withTiming( + 1, + { + duration: 100, + easing: Easing.out(Easing.cubic), + }, + () => runOnJS(playCheckmark)(), + ) + translateY.value = 0 + translateY.value = withTiming(insets.top + 10, { + duration: 500, + easing: Easing.out(Easing.cubic), + }) + + // start the countdown timer to autoclose + timeoutRef.current = setTimeout(close, visibleDuration || 5e3) + }, [setIsOpen, translateY, opacity, insets, close, visibleDuration]) + + useImperativeHandle( + ref, + () => ({ + open, + close, + }), + [open, close], + ) + + const containerStyle = React.useMemo(() => { + let left = 10 + let right = 10 + if (isWeb && winDim.width > 400) { + left = right = (winDim.width - 380) / 2 + } + return { + position: isWeb ? 'fixed' : 'absolute', + top: 0, + left, + right, + } + }, [winDim.width]) + + const animatedStyle = useAnimatedStyle(() => ({ + transform: [{translateY: translateY.value}], + opacity: opacity.value, + })) + + return ( + isOpen && ( + + + + + + {title} + {subtitle && ( + + {subtitle} + + )} + + + + + ) + ) +}) diff --git a/src/components/anim/AnimatedCheck.tsx b/src/components/anim/AnimatedCheck.tsx new file mode 100644 index 0000000000..7fdfc14cfa --- /dev/null +++ b/src/components/anim/AnimatedCheck.tsx @@ -0,0 +1,92 @@ +import React from 'react' +import Animated, { + Easing, + useAnimatedProps, + useSharedValue, + withDelay, + withTiming, +} from 'react-native-reanimated' +import Svg, {Circle, Path} from 'react-native-svg' + +import {Props, useCommonSVGProps} from '#/components/icons/common' + +const AnimatedPath = Animated.createAnimatedComponent(Path) +const AnimatedCircle = Animated.createAnimatedComponent(Circle) + +const PATH = 'M14.1 27.2l7.1 7.2 16.7-16.8' + +export interface AnimatedCheckRef { + play(cb?: () => void): void +} + +export interface AnimatedCheckProps extends Props { + playOnMount?: boolean +} + +export const AnimatedCheck = React.forwardRef< + AnimatedCheckRef, + AnimatedCheckProps +>(function AnimatedCheck({playOnMount, ...props}, ref) { + const {fill, size, style, ...rest} = useCommonSVGProps(props) + const circleAnim = useSharedValue(0) + const checkAnim = useSharedValue(0) + + const circleAnimatedProps = useAnimatedProps(() => ({ + strokeDashoffset: 166 - circleAnim.value * 166, + })) + const checkAnimatedProps = useAnimatedProps(() => ({ + strokeDashoffset: 48 - 48 * checkAnim.value, + })) + + const play = React.useCallback( + (cb?: () => void) => { + circleAnim.value = 0 + checkAnim.value = 0 + + circleAnim.value = withTiming(1, {duration: 500, easing: Easing.linear}) + checkAnim.value = withDelay( + 500, + withTiming(1, {duration: 300, easing: Easing.linear}, cb), + ) + }, + [circleAnim, checkAnim], + ) + + React.useImperativeHandle(ref, () => ({ + play, + })) + + React.useEffect(() => { + if (playOnMount) { + play() + } + }, [play, playOnMount]) + + return ( + + + + + ) +}) diff --git a/src/lib/statsig/gates.ts b/src/lib/statsig/gates.ts index e4991ad384..c8a55b9288 100644 --- a/src/lib/statsig/gates.ts +++ b/src/lib/statsig/gates.ts @@ -7,5 +7,6 @@ export type Gate = | 'show_avi_follow_button' | 'show_follow_back_label_v2' | 'new_user_guided_tour' + | 'new_user_progress_guide' | 'suggested_feeds_interstitial' | 'suggested_follows_interstitial' diff --git a/src/screens/Onboarding/StepFinished.tsx b/src/screens/Onboarding/StepFinished.tsx index 1cb925c1fb..825a0e723d 100644 --- a/src/screens/Onboarding/StepFinished.tsx +++ b/src/screens/Onboarding/StepFinished.tsx @@ -19,6 +19,7 @@ import {preferencesQueryKey} from '#/state/queries/preferences' import {RQKEY as profileRQKey} from '#/state/queries/profile' import {useAgent} from '#/state/session' import {useOnboardingDispatch} from '#/state/shell' +import {useProgressGuideControls} from '#/state/shell/progress-guide' import {uploadBlob} from 'lib/api' import {useRequestNotificationsPermission} from 'lib/notifications/notifications' import {useSetHasCheckedForStarterPack} from 'state/preferences/used-starter-packs' @@ -58,6 +59,7 @@ export function StepFinished() { const setActiveStarterPack = useSetActiveStarterPack() const setHasCheckedForStarterPack = useSetHasCheckedForStarterPack() const setQueuedTour = useSetQueuedTour() + const {startProgressGuide} = useProgressGuideControls() const finishOnboarding = React.useCallback(async () => { setSaving(true) @@ -185,6 +187,7 @@ export function StepFinished() { setActiveStarterPack(undefined) setHasCheckedForStarterPack(true) setQueuedTour(TOURS.HOME) + startProgressGuide('like-10-and-follow-7') dispatch({type: 'finish'}) onboardDispatch({type: 'finish'}) track('OnboardingV2:StepFinished:End') @@ -218,6 +221,7 @@ export function StepFinished() { setActiveStarterPack, setHasCheckedForStarterPack, setQueuedTour, + startProgressGuide, ]) React.useEffect(() => { diff --git a/src/screens/StarterPack/StarterPackScreen.tsx b/src/screens/StarterPack/StarterPackScreen.tsx index 9b66e51578..518318f7a1 100644 --- a/src/screens/StarterPack/StarterPackScreen.tsx +++ b/src/screens/StarterPack/StarterPackScreen.tsx @@ -18,6 +18,10 @@ import {useQueryClient} from '@tanstack/react-query' import {cleanError} from '#/lib/strings/errors' import {logger} from '#/logger' import {useDeleteStarterPackMutation} from '#/state/queries/starter-packs' +import { + ProgressGuideAction, + useProgressGuideControls, +} from '#/state/shell/progress-guide' import {batchedUpdates} from 'lib/batchedUpdates' import {HITSLOP_20} from 'lib/constants' import {isBlockedOrBlocking, isMuted} from 'lib/moderation/blocked-and-muted' @@ -287,6 +291,7 @@ function Header({ const queryClient = useQueryClient() const setActiveStarterPack = useSetActiveStarterPack() const {requestSwitchToAccount} = useLoggedOutViewControls() + const {captureAction} = useProgressGuideControls() const [isProcessing, setIsProcessing] = React.useState(false) @@ -351,6 +356,7 @@ function Header({ starterPack: starterPack.uri, count: dids.length, }) + captureAction(ProgressGuideAction.Follow, dids.length) Toast.show(_(msg`All accounts have been followed!`)) } catch (e) { Toast.show(_(msg`An error occurred while trying to follow all`)) diff --git a/src/state/queries/preferences/const.ts b/src/state/queries/preferences/const.ts index d94edb47e8..2a8c51165e 100644 --- a/src/state/queries/preferences/const.ts +++ b/src/state/queries/preferences/const.ts @@ -34,4 +34,8 @@ export const DEFAULT_LOGGED_OUT_PREFERENCES: UsePreferencesQueryResponse = { userAge: 13, // TODO(pwi) interests: {tags: []}, savedFeeds: [], + bskyAppState: { + queuedNudges: [], + activeProgressGuide: undefined, + }, } diff --git a/src/state/queries/preferences/index.ts b/src/state/queries/preferences/index.ts index 672abfcac5..9bb57fcaf6 100644 --- a/src/state/queries/preferences/index.ts +++ b/src/state/queries/preferences/index.ts @@ -342,3 +342,50 @@ export function useRemoveMutedWordMutation() { }, }) } + +export function useQueueNudgesMutation() { + const queryClient = useQueryClient() + const agent = useAgent() + + return useMutation({ + mutationFn: async (nudges: string | string[]) => { + await agent.bskyAppQueueNudges(nudges) + // triggers a refetch + await queryClient.invalidateQueries({ + queryKey: preferencesQueryKey, + }) + }, + }) +} + +export function useDismissNudgesMutation() { + const queryClient = useQueryClient() + const agent = useAgent() + + return useMutation({ + mutationFn: async (nudges: string | string[]) => { + await agent.bskyAppDismissNudges(nudges) + // triggers a refetch + await queryClient.invalidateQueries({ + queryKey: preferencesQueryKey, + }) + }, + }) +} + +export function useSetActiveProgressGuideMutation() { + const queryClient = useQueryClient() + const agent = useAgent() + + return useMutation({ + mutationFn: async ( + guide: AppBskyActorDefs.BskyAppProgressGuide | undefined, + ) => { + await agent.bskyAppSetActiveProgressGuide(guide) + // triggers a refetch + await queryClient.invalidateQueries({ + queryKey: preferencesQueryKey, + }) + }, + }) +} diff --git a/src/state/queries/profile.ts b/src/state/queries/profile.ts index 6f7f2de792..af00faf276 100644 --- a/src/state/queries/profile.ts +++ b/src/state/queries/profile.ts @@ -25,6 +25,10 @@ import {STALE} from '#/state/queries' import {resetProfilePostsQueries} from '#/state/queries/post-feed' import {updateProfileShadow} from '../cache/profile-shadow' import {useAgent, useSession} from '../session' +import { + ProgressGuideAction, + useProgressGuideControls, +} from '../shell/progress-guide' import {RQKEY as RQKEY_LIST_CONVOS} from './messages/list-converations' import {RQKEY as RQKEY_MY_BLOCKED} from './my-blocked-accounts' import {RQKEY as RQKEY_MY_MUTED} from './my-muted-accounts' @@ -274,12 +278,15 @@ function useProfileFollowMutation( const {currentAccount} = useSession() const agent = useAgent() const queryClient = useQueryClient() + const {captureAction} = useProgressGuideControls() + return useMutation<{uri: string; cid: string}, Error, {did: string}>({ mutationFn: async ({did}) => { let ownProfile: AppBskyActorDefs.ProfileViewDetailed | undefined if (currentAccount) { ownProfile = findProfileQueryData(queryClient, currentAccount.did) } + captureAction(ProgressGuideAction.Follow) logEvent('profile:follow', { logContext, didBecomeMutual: profile.viewer diff --git a/src/state/shell/progress-guide.tsx b/src/state/shell/progress-guide.tsx new file mode 100644 index 0000000000..d10d58297a --- /dev/null +++ b/src/state/shell/progress-guide.tsx @@ -0,0 +1,185 @@ +import React from 'react' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {useGate} from '#/lib/statsig/statsig' +import { + ProgressGuideToast, + ProgressGuideToastRef, +} from '#/components/ProgressGuide/Toast' +import { + usePreferencesQuery, + useSetActiveProgressGuideMutation, +} from '../queries/preferences' + +export enum ProgressGuideAction { + Like = 'like', + Follow = 'follow', +} + +type ProgressGuideName = 'like-10-and-follow-7' + +interface BaseProgressGuide { + guide: string + isComplete: boolean + [key: string]: any +} + +interface Like10AndFollow7ProgressGuide extends BaseProgressGuide { + numLikes: number + numFollows: number +} + +type ProgressGuide = Like10AndFollow7ProgressGuide | undefined + +const ProgressGuideContext = React.createContext(undefined) + +const ProgressGuideControlContext = React.createContext<{ + startProgressGuide(guide: ProgressGuideName): void + endProgressGuide(): void + captureAction(action: ProgressGuideAction, count?: number): void +}>({ + startProgressGuide: (_guide: ProgressGuideName) => {}, + endProgressGuide: () => {}, + captureAction: (_action: ProgressGuideAction, _count = 1) => {}, +}) + +export function useProgressGuide(guide: ProgressGuideName) { + const ctx = React.useContext(ProgressGuideContext) + if (ctx?.guide === guide) { + return ctx + } + return undefined +} + +export function useProgressGuideControls() { + return React.useContext(ProgressGuideControlContext) +} + +export function Provider({children}: React.PropsWithChildren<{}>) { + const {_} = useLingui() + const {data: preferences} = usePreferencesQuery() + const {mutateAsync, variables} = useSetActiveProgressGuideMutation() + const gate = useGate() + + const activeProgressGuide = (variables || + preferences?.bskyAppState?.activeProgressGuide) as ProgressGuide + + // ensure the unspecced attributes have the correct types + if (activeProgressGuide?.guide === 'like-10-and-follow-7') { + activeProgressGuide.numLikes = Number(activeProgressGuide.numLikes) || 0 + activeProgressGuide.numFollows = Number(activeProgressGuide.numFollows) || 0 + } + + const [localGuideState, setLocalGuideState] = + React.useState(undefined) + + if (activeProgressGuide && !localGuideState) { + // hydrate from the server if needed + setLocalGuideState(activeProgressGuide) + } + + const firstLikeToastRef = React.useRef(null) + const fifthLikeToastRef = React.useRef(null) + const tenthLikeToastRef = React.useRef(null) + const guideCompleteToastRef = React.useRef(null) + + const controls = React.useMemo(() => { + return { + startProgressGuide(guide: ProgressGuideName) { + if (!gate('new_user_progress_guide')) { + return + } + if (guide === 'like-10-and-follow-7') { + const guideObj = { + guide: 'like-10-and-follow-7', + numLikes: 0, + numFollows: 0, + isComplete: false, + } + setLocalGuideState(guideObj) + mutateAsync(guideObj) + } + }, + + endProgressGuide() { + // update the persisted first + mutateAsync(undefined).then(() => { + // now clear local state, to avoid rehydrating from the server + setLocalGuideState(undefined) + }) + }, + + captureAction(action: ProgressGuideAction, count = 1) { + let guide = activeProgressGuide + if (!guide || guide?.isComplete) { + return + } + if (guide?.guide === 'like-10-and-follow-7') { + if (action === ProgressGuideAction.Like) { + guide = { + ...guide, + numLikes: (Number(guide.numLikes) || 0) + count, + } + if (guide.numLikes === 1) { + firstLikeToastRef.current?.open() + } + if (guide.numLikes === 5) { + fifthLikeToastRef.current?.open() + } + if (guide.numLikes === 10) { + tenthLikeToastRef.current?.open() + } + } + if (action === ProgressGuideAction.Follow) { + guide = { + ...guide, + numFollows: (Number(guide.numFollows) || 0) + count, + } + } + if (Number(guide.numLikes) >= 10 && Number(guide.numFollows) >= 7) { + guide = { + ...guide, + isComplete: true, + } + } + } + + setLocalGuideState(guide) + mutateAsync(guide?.isComplete ? undefined : guide) + }, + } + }, [activeProgressGuide, mutateAsync, gate, setLocalGuideState]) + + return ( + + + {children} + {localGuideState?.guide === 'like-10-and-follow-7' && ( + <> + + + + + + )} + + + ) +} diff --git a/src/view/com/posts/Feed.tsx b/src/view/com/posts/Feed.tsx index 3d90b8897d..e6ad356108 100644 --- a/src/view/com/posts/Feed.tsx +++ b/src/view/com/posts/Feed.tsx @@ -34,7 +34,11 @@ import {useSession} from '#/state/session' import {useAnalytics} from 'lib/analytics/analytics' import {useInitialNumToRender} from 'lib/hooks/useInitialNumToRender' import {useTheme} from 'lib/ThemeContext' -import {SuggestedFeeds, SuggestedFollows} from '#/components/FeedInterstitials' +import { + ProgressGuide, + SuggestedFeeds, + SuggestedFollows, +} from '#/components/FeedInterstitials' import {List, ListRef} from '../util/List' import {PostFeedLoadingPlaceholder} from '../util/LoadingPlaceholder' import {LoadMoreRetryBtn} from '../util/LoadMoreRetryBtn' @@ -85,12 +89,26 @@ type FeedItem = } slot: number } + | { + type: 'interstitialProgressGuide' + key: string + params: { + variant: 'default' | string + } + slot: number + } const feedInterstitialType = 'interstitialFeeds' const followInterstitialType = 'interstitialFollows' +const progressGuideInterstitialType = 'interstitialProgressGuide' const interstials: Record< 'following' | 'discover', - (FeedItem & {type: 'interstitialFeeds' | 'interstitialFollows'})[] + (FeedItem & { + type: + | 'interstitialFeeds' + | 'interstitialFollows' + | 'interstitialProgressGuide' + })[] > = { following: [ { @@ -111,6 +129,14 @@ const interstials: Record< }, ], discover: [ + { + type: progressGuideInterstitialType, + params: { + variant: 'default', + }, + key: progressGuideInterstitialType, + slot: 0, + }, { type: feedInterstitialType, params: { @@ -336,14 +362,14 @@ let Feed = ({ if (feedType) { for (const interstitial of interstials[feedType]) { - const feedInterstitialEnabled = - interstitial.type === feedInterstitialType && - gate('suggested_feeds_interstitial') - const followInterstitialEnabled = - interstitial.type === followInterstitialType && - gate('suggested_follows_interstitial') + const shouldShow = + (interstitial.type === feedInterstitialType && + gate('suggested_feeds_interstitial')) || + (interstitial.type === followInterstitialType && + gate('suggested_follows_interstitial')) || + interstitial.type === progressGuideInterstitialType - if (feedInterstitialEnabled || followInterstitialEnabled) { + if (shouldShow) { const variant = 'default' // replace with experiment variant const int = { ...interstitial, @@ -460,6 +486,8 @@ let Feed = ({ return } else if (item.type === followInterstitialType) { return + } else if (item.type === progressGuideInterstitialType) { + return } else if (item.type === 'slice') { if (item.slice.rootUri === FALLBACK_MARKER_POST.post.uri) { // HACK diff --git a/src/view/com/util/post-ctrls/PostCtrls.tsx b/src/view/com/util/post-ctrls/PostCtrls.tsx index 231808bf28..c3af3a61e8 100644 --- a/src/view/com/util/post-ctrls/PostCtrls.tsx +++ b/src/view/com/util/post-ctrls/PostCtrls.tsx @@ -31,6 +31,10 @@ import { } from '#/state/queries/post' import {useRequireAuth, useSession} from '#/state/session' import {useComposerControls} from '#/state/shell/composer' +import { + ProgressGuideAction, + useProgressGuideControls, +} from '#/state/shell/progress-guide' import {atoms as a, useTheme} from '#/alf' import {useDialogControl} from '#/components/Dialog' import {ArrowOutOfBox_Stroke2_Corner0_Rounded as ArrowOutOfBox} from '#/components/icons/ArrowOutOfBox' @@ -77,6 +81,7 @@ let PostCtrls = ({ const requireAuth = useRequireAuth() const loggedOutWarningPromptControl = useDialogControl() const {sendInteraction} = useFeedFeedbackContext() + const {captureAction} = useProgressGuideControls() const playHaptic = useHaptics() const gate = useGate() @@ -103,6 +108,7 @@ let PostCtrls = ({ event: 'app.bsky.feed.defs#interactionLike', feedContext, }) + captureAction(ProgressGuideAction.Like) await queueLike() } else { await queueUnlike() @@ -119,6 +125,7 @@ let PostCtrls = ({ queueLike, queueUnlike, sendInteraction, + captureAction, feedContext, ]) diff --git a/src/view/shell/desktop/RightNav.tsx b/src/view/shell/desktop/RightNav.tsx index 633f04932a..8dfa671cff 100644 --- a/src/view/shell/desktop/RightNav.tsx +++ b/src/view/shell/desktop/RightNav.tsx @@ -14,6 +14,7 @@ import {Text} from 'view/com/util/text/Text' import {DesktopFeeds} from './Feeds' import {DesktopSearch} from './Search' import hairlineWidth = StyleSheet.hairlineWidth +import {ProgressGuideList} from '#/components/ProgressGuide/List' export function DesktopRightNav({routeName}: {routeName: string}) { const pal = usePalette('default') @@ -39,9 +40,12 @@ export function DesktopRightNav({routeName}: {routeName: string}) { {hasSession && ( - - - + <> + + + + + )} )} diff --git a/yarn.lock b/yarn.lock index d31fa2f635..84318d1a4f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -34,15 +34,16 @@ jsonpointer "^5.0.0" leven "^3.1.0" -"@atproto/api@^0.12.22": - version "0.12.22" - resolved "https://registry.yarnpkg.com/@atproto/api/-/api-0.12.22.tgz#1880a93a0caa4485cd8463bd1e10bf2424b9826c" - integrity sha512-TIXSnf3qqyX40Ei/FkK4H24w+7s5rOc63TPwrGakRBOqIgSNBKOggei8I600fJ/AXB7HO6Vp9tBmDVOt2+021A== +"@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== dependencies: "@atproto/common-web" "^0.3.0" "@atproto/lexicon" "^0.4.0" "@atproto/syntax" "^0.3.0" "@atproto/xrpc" "^0.5.0" + await-lock "^2.2.2" multiformats "^9.9.0" tlds "^1.234.0" From 4f02da96c8c2483923fdf52d1ee7cd8f34b15fba Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Wed, 3 Jul 2024 22:13:47 -0500 Subject: [PATCH 072/153] [D1X] Pull out follow-backs for higher signal (#4719) * Pull out follow-backs for higher signal * Gate it * Fix early gate check --------- Co-authored-by: Dan Abramov --- src/lib/statsig/gates.ts | 5 +++-- src/state/queries/notifications/feed.ts | 3 +++ src/state/queries/notifications/unread.tsx | 5 ++++- src/state/queries/notifications/util.ts | 23 +++++++++++++++++----- src/view/com/notifications/FeedItem.tsx | 15 ++++++++++++-- 5 files changed, 41 insertions(+), 10 deletions(-) diff --git a/src/lib/statsig/gates.ts b/src/lib/statsig/gates.ts index c8a55b9288..6a4081185f 100644 --- a/src/lib/statsig/gates.ts +++ b/src/lib/statsig/gates.ts @@ -2,11 +2,12 @@ export type Gate = // Keep this alphabetic please. | 'debug_show_feedcontext' | 'native_pwi_disabled' + | 'new_user_guided_tour' + | 'new_user_progress_guide' | 'onboarding_minimum_interests' | 'request_notifications_permission_after_onboarding_v2' | 'show_avi_follow_button' | 'show_follow_back_label_v2' - | 'new_user_guided_tour' - | 'new_user_progress_guide' | 'suggested_feeds_interstitial' | 'suggested_follows_interstitial' + | 'ungroup_follow_backs' diff --git a/src/state/queries/notifications/feed.ts b/src/state/queries/notifications/feed.ts index 13ca3ffdee..17ee90929c 100644 --- a/src/state/queries/notifications/feed.ts +++ b/src/state/queries/notifications/feed.ts @@ -26,6 +26,7 @@ import { useQueryClient, } from '@tanstack/react-query' +import {useGate} from '#/lib/statsig/statsig' import {useAgent} from '#/state/session' import {useModerationOpts} from '../../preferences/moderation-opts' import {STALE} from '..' @@ -56,6 +57,7 @@ export function useNotificationFeedQuery(opts?: {enabled?: boolean}) { const unreads = useUnreadNotificationsApi() const enabled = opts?.enabled !== false const lastPageCountRef = useRef(0) + const gate = useGate() const query = useInfiniteQuery< FeedPage, @@ -81,6 +83,7 @@ export function useNotificationFeedQuery(opts?: {enabled?: boolean}) { queryClient, moderationOpts, fetchAdditionalData: true, + shouldUngroupFollowBacks: () => gate('ungroup_follow_backs'), }) ).page } diff --git a/src/state/queries/notifications/unread.tsx b/src/state/queries/notifications/unread.tsx index 7bb325ea98..b5f7d0d60b 100644 --- a/src/state/queries/notifications/unread.tsx +++ b/src/state/queries/notifications/unread.tsx @@ -8,6 +8,7 @@ import {useQueryClient} from '@tanstack/react-query' import EventEmitter from 'eventemitter3' import BroadcastChannel from '#/lib/broadcast' +import {useGate} from '#/lib/statsig/statsig' import {logger} from '#/logger' import {useAgent, useSession} from '#/state/session' import {resetBadgeCount} from 'lib/notifications/notifications' @@ -47,6 +48,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { const agent = useAgent() const queryClient = useQueryClient() const moderationOpts = useModerationOpts() + const gate = useGate() const [numUnread, setNumUnread] = React.useState('') @@ -149,6 +151,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { // only fetch subjects when the page is going to be used // in the notifications query, otherwise skip it fetchAdditionalData: !!invalidate, + shouldUngroupFollowBacks: () => gate('ungroup_follow_backs'), }) const unreadCount = countUnread(page) const unreadCountStr = @@ -189,7 +192,7 @@ export function Provider({children}: React.PropsWithChildren<{}>) { } }, } - }, [setNumUnread, queryClient, moderationOpts, agent]) + }, [setNumUnread, queryClient, moderationOpts, agent, gate]) checkUnreadRef.current = api.checkUnread return ( diff --git a/src/state/queries/notifications/util.ts b/src/state/queries/notifications/util.ts index ade98b3179..2f2c242d82 100644 --- a/src/state/queries/notifications/util.ts +++ b/src/state/queries/notifications/util.ts @@ -30,6 +30,7 @@ export async function fetchPage({ queryClient, moderationOpts, fetchAdditionalData, + shouldUngroupFollowBacks, }: { agent: BskyAgent cursor: string | undefined @@ -37,6 +38,7 @@ export async function fetchPage({ queryClient: QueryClient moderationOpts: ModerationOpts | undefined fetchAdditionalData: boolean + shouldUngroupFollowBacks?: () => boolean }): Promise<{page: FeedPage; indexedAt: string | undefined}> { const res = await agent.listNotifications({ limit, @@ -51,7 +53,7 @@ export async function fetchPage({ ) // group notifications which are essentially similar (follows, likes on a post) - let notifsGrouped = groupNotifications(notifs) + let notifsGrouped = groupNotifications(notifs, {shouldUngroupFollowBacks}) // we fetch subjects of notifications (usually posts) now instead of lazily // in the UI to avoid relayouts @@ -109,6 +111,7 @@ export function shouldFilterNotif( export function groupNotifications( notifs: AppBskyNotificationListNotifications.Notification[], + options?: {shouldUngroupFollowBacks?: () => boolean}, ): FeedNotification[] { const groupedNotifs: FeedNotification[] = [] for (const notif of notifs) { @@ -123,10 +126,20 @@ export function groupNotifications( notif.reasonSubject === groupedNotif.notification.reasonSubject && notif.author.did !== groupedNotif.notification.author.did ) { - groupedNotif.additional = groupedNotif.additional || [] - groupedNotif.additional.push(notif) - grouped = true - break + const nextIsFollowBack = + notif.reason === 'follow' && notif.author.viewer?.following + const prevIsFollowBack = + groupedNotif.notification.reason === 'follow' && + groupedNotif.notification.author.viewer?.following + const shouldUngroup = + (nextIsFollowBack || prevIsFollowBack) && + options?.shouldUngroupFollowBacks?.() + if (!shouldUngroup) { + groupedNotif.additional = groupedNotif.additional || [] + groupedNotif.additional.push(notif) + grouped = true + break + } } } } diff --git a/src/view/com/notifications/FeedItem.tsx b/src/view/com/notifications/FeedItem.tsx index 4f84385d20..1932efbd5c 100644 --- a/src/view/com/notifications/FeedItem.tsx +++ b/src/view/com/notifications/FeedItem.tsx @@ -22,6 +22,7 @@ import {msg, plural, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useQueryClient} from '@tanstack/react-query' +import {useGate} from '#/lib/statsig/statsig' import {FeedNotification} from '#/state/queries/notifications/feed' import {useAnimatedValue} from 'lib/hooks/useAnimatedValue' import {usePalette} from 'lib/hooks/usePalette' @@ -86,6 +87,7 @@ let FeedItem = ({ const pal = usePalette('default') const {_} = useLingui() const t = useTheme() + const gate = useGate() const [isAuthorsExpanded, setAuthorsExpanded] = useState(false) const itemHref = useMemo(() => { if (item.type === 'post-like' || item.type === 'repost') { @@ -168,6 +170,7 @@ let FeedItem = ({ ) } + let isFollowBack = false let action = '' let icon = ( } else if (item.type === 'follow') { - action = _(msg`followed you`) + if ( + item.notification.author.viewer?.following && + gate('ungroup_follow_backs') + ) { + isFollowBack = true + action = _(msg`followed you back`) + } else { + action = _(msg`followed you`) + } icon = } else if (item.type === 'feedgen-like') { action = _(msg`liked your custom feed`) @@ -260,7 +271,7 @@ let FeedItem = ({ visible={!isAuthorsExpanded} authors={authors} onToggleAuthorsExpanded={onToggleAuthorsExpanded} - showDmButton={item.type === 'starterpack-joined'} + showDmButton={item.type === 'starterpack-joined' || isFollowBack} /> From 12bf79629370b59eaf3a8f052fef60bcf745fcf2 Mon Sep 17 00:00:00 2001 From: dan Date: Thu, 4 Jul 2024 20:07:42 +0100 Subject: [PATCH 073/153] Fix feed feedback (#4730) --- src/state/feed-feedback.tsx | 12 +++++------- src/view/com/posts/Feed.tsx | 8 ++++++++ 2 files changed, 13 insertions(+), 7 deletions(-) diff --git a/src/state/feed-feedback.tsx b/src/state/feed-feedback.tsx index 88f50daca4..0a6c1d585e 100644 --- a/src/state/feed-feedback.tsx +++ b/src/state/feed-feedback.tsx @@ -6,11 +6,8 @@ import throttle from 'lodash.throttle' import {PROD_DEFAULT_FEED} from '#/lib/constants' import {logEvent} from '#/lib/statsig/statsig' import {logger} from '#/logger' -import { - FeedDescriptor, - FeedPostSliceItem, - isFeedPostSlice, -} from '#/state/queries/post-feed' +import {FeedDescriptor, FeedPostSliceItem} from '#/state/queries/post-feed' +import {getFeedPostSlice} from '#/view/com/posts/Feed' import {useAgent} from './session' type StateContext = { @@ -93,11 +90,12 @@ export function useFeedFeedback(feed: FeedDescriptor, hasSession: boolean) { }, [enabled, sendToFeed]) const onItemSeen = React.useCallback( - (slice: any) => { + (feedItem: any) => { if (!enabled) { return } - if (!isFeedPostSlice(slice)) { + const slice = getFeedPostSlice(feedItem) + if (slice === null) { return } for (const postItem of slice.items) { diff --git a/src/view/com/posts/Feed.tsx b/src/view/com/posts/Feed.tsx index e6ad356108..27f75b41a2 100644 --- a/src/view/com/posts/Feed.tsx +++ b/src/view/com/posts/Feed.tsx @@ -156,6 +156,14 @@ const interstials: Record< ], } +export function getFeedPostSlice(feedItem: FeedItem): FeedPostSlice | null { + if (feedItem.type === 'slice') { + return feedItem.slice + } else { + return null + } +} + // DISABLED need to check if this is causing random feed refreshes -prf // const REFRESH_AFTER = STALE.HOURS.ONE const CHECK_LATEST_AFTER = STALE.SECONDS.THIRTY From d837f96478dce8f6df03e387fa6d34086b01263f Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Thu, 4 Jul 2024 12:08:33 -0700 Subject: [PATCH 074/153] Fix responsiveness of dismissing the progress guide (#4729) --- src/state/shell/progress-guide.tsx | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/src/state/shell/progress-guide.tsx b/src/state/shell/progress-guide.tsx index d10d58297a..c9b42a263e 100644 --- a/src/state/shell/progress-guide.tsx +++ b/src/state/shell/progress-guide.tsx @@ -59,11 +59,13 @@ export function useProgressGuideControls() { export function Provider({children}: React.PropsWithChildren<{}>) { const {_} = useLingui() const {data: preferences} = usePreferencesQuery() - const {mutateAsync, variables} = useSetActiveProgressGuideMutation() + const {mutateAsync, variables, isPending} = + useSetActiveProgressGuideMutation() const gate = useGate() - const activeProgressGuide = (variables || - preferences?.bskyAppState?.activeProgressGuide) as ProgressGuide + const activeProgressGuide = ( + isPending ? variables : preferences?.bskyAppState?.activeProgressGuide + ) as ProgressGuide // ensure the unspecced attributes have the correct types if (activeProgressGuide?.guide === 'like-10-and-follow-7') { @@ -103,11 +105,8 @@ export function Provider({children}: React.PropsWithChildren<{}>) { }, endProgressGuide() { - // update the persisted first - mutateAsync(undefined).then(() => { - // now clear local state, to avoid rehydrating from the server - setLocalGuideState(undefined) - }) + setLocalGuideState(undefined) + mutateAsync(undefined) }, captureAction(action: ProgressGuideAction, count = 1) { From ca7386967a68574c25cff27cfbdf6a06f108a481 Mon Sep 17 00:00:00 2001 From: Hailey Date: Thu, 4 Jul 2024 12:12:15 -0700 Subject: [PATCH 075/153] Fix `onEndReached` not firing sometimes on web (#4728) * handle off screen visibility observer. * Revert "handle off screen visibility observer." This reverts commit e499ea0ed66b31964f79261b41f58a288b0cdb6f. * key ftw * Remove special case --------- Co-authored-by: Dan Abramov --- src/view/com/notifications/Feed.tsx | 11 +---------- src/view/com/util/List.web.tsx | 1 + 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/src/view/com/notifications/Feed.tsx b/src/view/com/notifications/Feed.tsx index 90f2785b21..e2f12e84f1 100644 --- a/src/view/com/notifications/Feed.tsx +++ b/src/view/com/notifications/Feed.tsx @@ -25,7 +25,6 @@ import {LoadMoreRetryBtn} from '#/view/com/util/LoadMoreRetryBtn' import {CenteredView} from '#/view/com/util/Views' import {FeedItem} from './FeedItem' import hairlineWidth = StyleSheet.hairlineWidth -import {isWeb} from '#/platform/detection' const EMPTY_FEED_ITEM = {_reactKey: '__empty__'} const LOAD_MORE_ERROR_ITEM = {_reactKey: '__load_more_error__'} @@ -183,15 +182,7 @@ export function Feed({ refreshing={isPTRing} onRefresh={onRefresh} onEndReached={onEndReached} - onEndReachedThreshold={ - /* - NOTE: - web's intersection observer struggles with the 2x threshold - and leads to missed pagination, so we keep it <1 - -prf - */ - isWeb ? 0.6 : 2 - } + onEndReachedThreshold={2} onScrolledDownChange={onScrolledDownChange} contentContainerStyle={s.contentContainer} // @ts-ignore our .web version only -prf diff --git a/src/view/com/util/List.web.tsx b/src/view/com/util/List.web.tsx index e917ab1d32..f2b2add377 100644 --- a/src/view/com/util/List.web.tsx +++ b/src/view/com/util/List.web.tsx @@ -365,6 +365,7 @@ function ListImpl( root={containWeb ? nativeRef : null} onVisibleChange={onTailVisibilityChange} bottomMargin={(onEndReachedThreshold ?? 0) * 100 + '%'} + key={data?.length} /> )} {footerComponent} From d03dd8c8154e11bf7603ba37cf0ee5a580ec11d1 Mon Sep 17 00:00:00 2001 From: dan Date: Thu, 4 Jul 2024 20:54:49 +0100 Subject: [PATCH 076/153] Feed interstitial tweaks (#4733) * Swap interstitial positions * Fix color --- src/components/Button.tsx | 2 +- src/view/com/posts/Feed.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Button.tsx b/src/components/Button.tsx index ed963026cb..dfdcde6edf 100644 --- a/src/components/Button.tsx +++ b/src/components/Button.tsx @@ -542,7 +542,7 @@ export function useSharedButtonTextStyles() { if (variant === 'solid' || variant === 'gradient') { if (!disabled) { baseStyles.push({ - color: t.palette.white, + color: t.palette.contrast_100, }) } else { baseStyles.push({ diff --git a/src/view/com/posts/Feed.tsx b/src/view/com/posts/Feed.tsx index 27f75b41a2..4a9b372915 100644 --- a/src/view/com/posts/Feed.tsx +++ b/src/view/com/posts/Feed.tsx @@ -143,7 +143,7 @@ const interstials: Record< variant: 'default', }, key: feedInterstitialType, - slot: 20, + slot: 40, }, { type: followInterstitialType, @@ -151,7 +151,7 @@ const interstials: Record< variant: 'default', }, key: followInterstitialType, - slot: 40, + slot: 20, }, ], } From 1c6bfc02fb9da56281bdc449a951725fb2ec808d Mon Sep 17 00:00:00 2001 From: dan Date: Thu, 4 Jul 2024 21:15:47 +0100 Subject: [PATCH 077/153] Fix order of checks in experiment (#4734) --- src/view/shell/createNativeStackNavigatorWithAuth.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/view/shell/createNativeStackNavigatorWithAuth.tsx b/src/view/shell/createNativeStackNavigatorWithAuth.tsx index 82dd6d22c8..203e7e5077 100644 --- a/src/view/shell/createNativeStackNavigatorWithAuth.tsx +++ b/src/view/shell/createNativeStackNavigatorWithAuth.tsx @@ -102,10 +102,11 @@ function NativeStackNavigator({ const {showLoggedOut} = useLoggedOutView() const {setShowLoggedOut} = useLoggedOutViewControls() const {isMobile, isTabletOrMobile} = useWebMediaQueries() - const isNativePWIDisabled = isNative && gate('native_pwi_disabled') if ( - (!PWI_ENABLED || isNativePWIDisabled || activeRouteRequiresAuth) && - !hasSession + !hasSession && + (!PWI_ENABLED || + activeRouteRequiresAuth || + (isNative && gate('native_pwi_disabled'))) ) { return } From 3407206f52a03223b9eba925f030cf371833a8ed Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 4 Jul 2024 16:28:38 -0500 Subject: [PATCH 078/153] [D1X] Use user action and viewing history to inform suggested follows (#4727) * Use user action and viewing history to inform suggested follows * Remove dynamic spreads * Track more info about seen posts * Add ranking --------- Co-authored-by: Dan Abramov --- src/components/FeedInterstitials.tsx | 105 ++++++++++++++++++++++----- src/state/queries/post-feed.ts | 36 ++++++++- src/state/queries/post.ts | 3 + src/state/queries/profile.ts | 3 + src/state/userActionHistory.ts | 71 ++++++++++++++++++ src/view/com/posts/Feed.tsx | 27 +------ 6 files changed, 196 insertions(+), 49 deletions(-) create mode 100644 src/state/userActionHistory.ts diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index ca3b085b98..043a27c297 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -1,7 +1,7 @@ import React from 'react' import {View} from 'react-native' import {ScrollView} from 'react-native-gesture-handler' -import {AppBskyActorDefs, AppBskyFeedDefs} from '@atproto/api' +import {AppBskyFeedDefs, AtUri} from '@atproto/api' import {msg, Trans} from '@lingui/macro' import {useLingui} from '@lingui/react' import {useNavigation} from '@react-navigation/native' @@ -9,10 +9,13 @@ import {useNavigation} from '@react-navigation/native' import {useWebMediaQueries} from '#/lib/hooks/useWebMediaQueries' import {NavigationProp} from '#/lib/routes/types' import {logEvent} from '#/lib/statsig/statsig' +import {logger} from '#/logger' import {useModerationOpts} from '#/state/preferences/moderation-opts' import {useGetPopularFeedsQuery} from '#/state/queries/feed' -import {useSuggestedFollowsQuery} from '#/state/queries/suggested-follows' +import {useProfilesQuery} from '#/state/queries/profile' import {useProgressGuide} from '#/state/shell/progress-guide' +import * as userActionHistory from '#/state/userActionHistory' +import {SeenPost} from '#/state/userActionHistory' import {atoms as a, useBreakpoints, useTheme, ViewStyleProp, web} from '#/alf' import {Button} from '#/components/Button' import * as FeedCard from '#/components/FeedCard' @@ -80,35 +83,92 @@ export function SuggestedFeedsCardPlaceholder() { ) } +function getRank(seenPost: SeenPost): string { + let tier: string + if (seenPost.feedContext === 'popfriends') { + tier = 'a' + } else if (seenPost.feedContext?.startsWith('cluster')) { + tier = 'b' + } else if (seenPost.feedContext?.startsWith('ntpc')) { + tier = 'c' + } else if (seenPost.feedContext?.startsWith('t-')) { + tier = 'd' + } else if (seenPost.feedContext === 'nettop') { + tier = 'e' + } else { + tier = 'f' + } + let score = Math.round( + Math.log( + 1 + seenPost.likeCount + seenPost.repostCount + seenPost.replyCount, + ), + ) + if (seenPost.isFollowedBy || Math.random() > 0.9) { + score *= 2 + } + const rank = 100 - score + return `${tier}-${rank}` +} + +function sortSeenPosts(postA: SeenPost, postB: SeenPost): 0 | 1 | -1 { + const rankA = getRank(postA) + const rankB = getRank(postB) + // Yes, we're comparing strings here. + // The "larger" string means a worse rank. + if (rankA > rankB) { + return 1 + } else if (rankA < rankB) { + return -1 + } else { + return 0 + } +} + +function useExperimentalSuggestedUsersQuery() { + const userActionSnapshot = userActionHistory.useActionHistorySnapshot() + const dids = React.useMemo(() => { + const {likes, follows, seen} = userActionSnapshot + const likeDids = likes + .map(l => new AtUri(l)) + .map(uri => uri.host) + .filter(did => !follows.includes(did)) + const seenDids = seen + .sort(sortSeenPosts) + .map(l => new AtUri(l.uri)) + .map(uri => uri.host) + return [...new Set([...likeDids, ...seenDids])] + }, [userActionSnapshot]) + const {data, isLoading, error} = useProfilesQuery({ + handles: dids.slice(0, 16), + }) + + const profiles = data + ? data.profiles.filter(profile => { + return !profile.viewer?.following + }) + : [] + + return { + isLoading, + error, + profiles: profiles.slice(0, 6), + } +} + export function SuggestedFollows() { const t = useTheme() const {_} = useLingui() const { isLoading: isSuggestionsLoading, - data, + profiles, error, - } = useSuggestedFollowsQuery({limit: 6}) + } = useExperimentalSuggestedUsersQuery() const moderationOpts = useModerationOpts() const navigation = useNavigation() const {gtMobile} = useBreakpoints() const isLoading = isSuggestionsLoading || !moderationOpts const maxLength = gtMobile ? 4 : 6 - const profiles: AppBskyActorDefs.ProfileViewBasic[] = [] - if (data) { - // Currently the responses contain duplicate items. - // Needs to be fixed on backend, but let's dedupe to be safe. - let seen = new Set() - for (const page of data.pages) { - for (const actor of page.actors) { - if (!seen.has(actor.did)) { - seen.add(actor.did) - profiles.push(actor) - } - } - } - } - const content = isLoading ? ( Array(maxLength) .fill(0) @@ -164,7 +224,12 @@ export function SuggestedFollows() { ) - return error ? null : ( + if (error || (!isLoading && profiles.length < 4)) { + logger.debug(`Not enough profiles to show suggested follows`) + return null + } + + return ( diff --git a/src/state/queries/post-feed.ts b/src/state/queries/post-feed.ts index 912548e517..315c9cfadd 100644 --- a/src/state/queries/post-feed.ts +++ b/src/state/queries/post-feed.ts @@ -17,11 +17,13 @@ import { import {HomeFeedAPI} from '#/lib/api/feed/home' import {aggregateUserInterests} from '#/lib/api/feed/utils' +import {DISCOVER_FEED_URI} from '#/lib/constants' import {moderatePost_wrapped as moderatePost} from '#/lib/moderatePost_wrapped' import {logger} from '#/logger' import {STALE} from '#/state/queries' import {DEFAULT_LOGGED_OUT_PREFERENCES} from '#/state/queries/preferences/const' import {useAgent} from '#/state/session' +import * as userActionHistory from '#/state/userActionHistory' import {AuthorFeedAPI} from 'lib/api/feed/author' import {CustomFeedAPI} from 'lib/api/feed/custom' import {FollowingFeedAPI} from 'lib/api/feed/following' @@ -131,6 +133,7 @@ export function usePostFeedQuery( result: InfiniteData } | null>(null) const lastPageCountRef = useRef(0) + const isDiscover = feedDesc.includes(DISCOVER_FEED_URI) // Make sure this doesn't invalidate unless really needed. const selectArgs = React.useMemo( @@ -139,8 +142,15 @@ export function usePostFeedQuery( disableTuner: params?.disableTuner, moderationOpts, ignoreFilterFor: opts?.ignoreFilterFor, + isDiscover, }), - [feedTuners, params?.disableTuner, moderationOpts, opts?.ignoreFilterFor], + [ + feedTuners, + params?.disableTuner, + moderationOpts, + opts?.ignoreFilterFor, + isDiscover, + ], ) const query = useInfiniteQuery< @@ -219,8 +229,13 @@ export function usePostFeedQuery( (data: InfiniteData) => { // If the selection depends on some data, that data should // be included in the selectArgs object and read here. - const {feedTuners, disableTuner, moderationOpts, ignoreFilterFor} = - selectArgs + const { + feedTuners, + disableTuner, + moderationOpts, + ignoreFilterFor, + isDiscover, + } = selectArgs const tuner = disableTuner ? new NoopFeedTuner() @@ -293,6 +308,21 @@ export function usePostFeedQuery( } } + if (isDiscover) { + userActionHistory.seen( + slice.items.map(item => ({ + feedContext: item.feedContext, + likeCount: item.post.likeCount ?? 0, + repostCount: item.post.repostCount ?? 0, + replyCount: item.post.replyCount ?? 0, + isFollowedBy: Boolean( + item.post.author.viewer?.followedBy, + ), + uri: item.post.uri, + })), + ) + } + return { _reactKey: slice._reactKey, _isFeedPostSlice: true, diff --git a/src/state/queries/post.ts b/src/state/queries/post.ts index a511d6b3d7..071a2e91fe 100644 --- a/src/state/queries/post.ts +++ b/src/state/queries/post.ts @@ -8,6 +8,7 @@ import {logEvent, LogEvents, toClout} from '#/lib/statsig/statsig' import {updatePostShadow} from '#/state/cache/post-shadow' import {Shadow} from '#/state/cache/types' import {useAgent, useSession} from '#/state/session' +import * as userActionHistory from '#/state/userActionHistory' import {useIsThreadMuted, useSetThreadMute} from '../cache/thread-mutes' import {findProfileQueryData} from './profile' @@ -92,6 +93,7 @@ export function usePostLikeMutationQueue( uri: postUri, cid: postCid, }) + userActionHistory.like([postUri]) return likeUri } else { if (prevLikeUri) { @@ -99,6 +101,7 @@ export function usePostLikeMutationQueue( postUri: postUri, likeUri: prevLikeUri, }) + userActionHistory.unlike([postUri]) } return undefined } diff --git a/src/state/queries/profile.ts b/src/state/queries/profile.ts index af00faf276..d9a2c6bbba 100644 --- a/src/state/queries/profile.ts +++ b/src/state/queries/profile.ts @@ -23,6 +23,7 @@ import {logEvent, LogEvents, toClout} from '#/lib/statsig/statsig' import {Shadow} from '#/state/cache/types' import {STALE} from '#/state/queries' import {resetProfilePostsQueries} from '#/state/queries/post-feed' +import * as userActionHistory from '#/state/userActionHistory' import {updateProfileShadow} from '../cache/profile-shadow' import {useAgent, useSession} from '../session' import { @@ -233,6 +234,7 @@ export function useProfileFollowMutationQueue( const {uri} = await followMutation.mutateAsync({ did, }) + userActionHistory.follow([did]) return uri } else { if (prevFollowingUri) { @@ -240,6 +242,7 @@ export function useProfileFollowMutationQueue( did, followUri: prevFollowingUri, }) + userActionHistory.unfollow([did]) } return undefined } diff --git a/src/state/userActionHistory.ts b/src/state/userActionHistory.ts new file mode 100644 index 0000000000..d82b3723a4 --- /dev/null +++ b/src/state/userActionHistory.ts @@ -0,0 +1,71 @@ +import React from 'react' + +const LIKE_WINDOW = 100 +const FOLLOW_WINDOW = 100 +const SEEN_WINDOW = 100 + +export type SeenPost = { + uri: string + likeCount: number + repostCount: number + replyCount: number + isFollowedBy: boolean + feedContext: string | undefined +} + +export type UserActionHistory = { + /** + * The last 100 post URIs the user has liked + */ + likes: string[] + /** + * The last 100 DIDs the user has followed + */ + follows: string[] + /** + * The last 100 post URIs the user has seen from the Discover feed only + */ + seen: SeenPost[] +} + +const userActionHistory: UserActionHistory = { + likes: [], + follows: [], + seen: [], +} + +export function getActionHistory() { + return userActionHistory +} + +export function useActionHistorySnapshot() { + return React.useState(() => getActionHistory())[0] +} + +export function like(postUris: string[]) { + userActionHistory.likes = userActionHistory.likes + .concat(postUris) + .slice(-LIKE_WINDOW) +} +export function unlike(postUris: string[]) { + userActionHistory.likes = userActionHistory.likes.filter( + uri => !postUris.includes(uri), + ) +} + +export function follow(dids: string[]) { + userActionHistory.follows = userActionHistory.follows + .concat(dids) + .slice(-FOLLOW_WINDOW) +} +export function unfollow(dids: string[]) { + userActionHistory.follows = userActionHistory.follows.filter( + uri => !dids.includes(uri), + ) +} + +export function seen(posts: SeenPost[]) { + userActionHistory.seen = userActionHistory.seen + .concat(posts) + .slice(-SEEN_WINDOW) +} diff --git a/src/view/com/posts/Feed.tsx b/src/view/com/posts/Feed.tsx index 4a9b372915..7623ff37e3 100644 --- a/src/view/com/posts/Feed.tsx +++ b/src/view/com/posts/Feed.tsx @@ -110,24 +110,7 @@ const interstials: Record< | 'interstitialProgressGuide' })[] > = { - following: [ - { - type: followInterstitialType, - params: { - variant: 'default', - }, - key: followInterstitialType, - slot: 20, - }, - { - type: feedInterstitialType, - params: { - variant: 'default', - }, - key: feedInterstitialType, - slot: 40, - }, - ], + following: [], discover: [ { type: progressGuideInterstitialType, @@ -137,14 +120,6 @@ const interstials: Record< key: progressGuideInterstitialType, slot: 0, }, - { - type: feedInterstitialType, - params: { - variant: 'default', - }, - key: feedInterstitialType, - slot: 40, - }, { type: followInterstitialType, params: { From 58e48fd31bbc57985b7533ebd927855c19c750e6 Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Fri, 5 Jul 2024 18:01:13 +0100 Subject: [PATCH 079/153] Feed interstitial snapping (#4737) Co-authored-by: Samuel Newman <10959775+mozzius@users.noreply.github.com> --- src/components/FeedInterstitials.tsx | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index 043a27c297..501eac57e4 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -27,6 +27,8 @@ import * as ProfileCard from '#/components/ProfileCard' import {Text} from '#/components/Typography' import {ProgressGuideList} from './ProgressGuide/List' +const MOBILE_CARD_WIDTH = 300 + function CardOuter({ children, style, @@ -43,7 +45,7 @@ function CardOuter({ t.atoms.bg, t.atoms.border_contrast_low, !gtMobile && { - width: 300, + width: MOBILE_CARD_WIDTH, }, style, ]}> @@ -266,7 +268,11 @@ export function SuggestedFollows() { ) : ( - + {content} @@ -392,7 +398,11 @@ export function SuggestedFeeds() { ) : ( - + {content} From d5fd19df8fa2e235febb357845be534415bec218 Mon Sep 17 00:00:00 2001 From: surfdude29 <149612116+surfdude29@users.noreply.github.com> Date: Fri, 5 Jul 2024 18:31:12 +0100 Subject: [PATCH 080/153] Update French localization (#4662) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update French localization * écriture inclusive for other usage of `amis` * add one more string * Apply suggestions from code review Co-authored-by: Stanislas Signoud * Update revision date * translate new strings * Apply suggestions from code review Co-authored-by: Stanislas Signoud --------- Co-authored-by: Stanislas Signoud --- src/locale/locales/fr/messages.po | 192 ++++++++++++++++++++++++------ 1 file changed, 158 insertions(+), 34 deletions(-) diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index a43130f601..385751f7b9 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-06-25 11:00+0100\n" +"PO-Revision-Date: 2024-07-04 14:15+0100\n" "Last-Translator: surfdude29\n" "Language-Team: Stanislas Signoud (@signez.fr), surfdude29\n" "Plural-Forms: \n" @@ -167,10 +167,6 @@ msgstr "{value, plural, =0 {Voir toutes les réponses} one {Voir les réponses a msgid "<0/> members" msgstr "<0/> membres" -#: src/screens/StarterPack/Wizard/index.tsx:485 -#~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" -#~ msgstr "<0>{0} et<1> <2>{1} sont inclus dans votre kit de démarrage" - #: 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" @@ -213,6 +209,10 @@ msgstr "⚠Pseudo invalide" msgid "2FA Confirmation" msgstr "Confirmation 2FA" +#: src/tours/Tooltip.tsx:70 +msgid "A help tooltip" +msgstr "Une infobulle d’aide" + #: src/view/com/util/ViewHeader.tsx:93 #: src/view/screens/Search/Search.tsx:684 msgid "Access navigation links and settings" @@ -337,10 +337,6 @@ msgstr "Ajouter un mot masqué pour les paramètres configurés" msgid "Add muted words and tags" msgstr "Ajouter des mots et des mots-clés masqués" -#: src/screens/StarterPack/Wizard/index.tsx:197 -#~ msgid "Add people to your starter pack that you think others will enjoy following" -#~ msgstr "Ajoutez à votre kit de démarrage des personnes que vous pensez que d’autres aimeront suivre" - #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "Ajouter les fils d’actu recommandés" @@ -390,7 +386,7 @@ msgstr "Contenu pour adultes" #: src/screens/Moderation/index.tsx:356 msgid "Adult content can only be enabled via the Web at <0>bsky.app." -msgstr "" +msgstr "Le contenu pour adultes ne peut être activé que via le Web sur <0>bsky.app." #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." @@ -401,6 +397,10 @@ msgstr "Le contenu pour adultes est désactivé." msgid "Advanced" msgstr "Avancé" +#: src/state/shell/progress-guide.tsx:177 +msgid "Algorithm training complete!" +msgstr "Entraînement de l’algorithme terminé !" + #: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "Tous les comptes ont été suivis !" @@ -465,10 +465,6 @@ 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/ShareDialog.tsx:79 -#~ msgid "An error occurred while saving the image." -#~ msgstr "Une erreur s’est produite lors de l’enregistrement de l’image." - #: src/components/StarterPack/QrCodeDialog.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" @@ -732,6 +728,10 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky est un réseau ouvert où vous pouvez choisir votre hébergeur. L’auto-hébergement est désormais disponible en version bêta pour les développeurs." +#: src/components/ProgressGuide/List.tsx:55 +msgid "Bluesky is better with friends!" +msgstr "Bluesky est meilleur entre ami·e·s !" + #: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Bluesky choisira un ensemble de comptes recommandés parmi les personnes de votre réseau." @@ -753,6 +753,24 @@ msgstr "Flouter les images et les filtrer des fils d’actu" msgid "Books" msgstr "Livres" +#: src/components/FeedInterstitials.tsx:206 +msgid "Browse more accounts on the Explore page" +msgstr "Parcourir d’autres comptes sur la page « Explore »" + +#: src/components/FeedInterstitials.tsx:332 +msgid "Browse more feeds on the Explore page" +msgstr "Parcourir d’autres fils d’actu sur la page « Explore »" + +#: src/components/FeedInterstitials.tsx:195 +#: src/components/FeedInterstitials.tsx:321 +msgid "Browse more suggestions" +msgstr "Parcourir d’autres suggestions" + +#: src/components/FeedInterstitials.tsx:214 +#: src/components/FeedInterstitials.tsx:341 +msgid "Browse more suggestions on the Explore page" +msgstr "Parcourir d’autres suggestions sur la page « Explore »" + #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" @@ -938,9 +956,13 @@ msgstr "Vérifiez votre boîte e-mail pour un code de connexion et saisissez-le msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "Consultez votre boîte de réception, vous avez du recevoir un e-mail contenant un code de confirmation à saisir ci-dessous :" -#: src/view/com/modals/Threadgate.tsx:75 -#~ msgid "Choose \"Everybody\" or \"Nobody\"" -#~ msgstr "Choisir « Tout le monde » ou « Personne »" +#: src/screens/Onboarding/StepInterests/index.tsx:190 +msgid "Choose 3 or more:" +msgstr "Choisissez 3 ou plus :" + +#: src/screens/Onboarding/StepInterests/index.tsx:325 +msgid "Choose at least {0} more" +msgstr "Choisissez au moins {0} de plus" #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" @@ -1407,10 +1429,6 @@ msgstr "Créer un mot de passe d’application" msgid "Create new account" msgstr "Créer un nouveau compte" -#: src/components/StarterPack/ShareDialog.tsx:158 -#~ msgid "Create QR code" -#~ msgstr "Créer un code QR" - #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" msgstr "Créer un rapport pour {0}" @@ -1622,6 +1640,10 @@ msgstr "Abandonner le brouillon ?" msgid "Discourage apps from showing my account to logged-out users" msgstr "Empêcher les applis de montrer mon compte aux personnes non connectées" +#: src/tours/HomeTour.tsx:70 +msgid "Discover learns which posts you like as you browse." +msgstr "« Discover » apprend quels sont les posts que vous aimez au fur et à mesure que vous naviguez." + #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -1635,6 +1657,10 @@ msgstr "Découvrir de nouveaux fils d’actu" msgid "Discover New Feeds" msgstr "Découvrir de nouveaux fils d’actu" +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "Annuler le guide de démarrage" + #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" msgstr "Afficher des badges de texte alt plus grands" @@ -1925,6 +1951,10 @@ msgstr "Activé" msgid "End of feed" msgstr "Fin du fil d’actu" +#: 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 "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 msgid "Enter a name for this App Password" msgstr "Entrer un nom pour ce mot de passe d’application" @@ -2218,6 +2248,10 @@ msgstr "Finalisation" msgid "Find accounts to follow" msgstr "Trouver des comptes à suivre" +#: src/tours/HomeTour.tsx:88 +msgid "Find more feeds and accounts to follow in the Explore page." +msgstr "Trouvez d’autres fils d’actu et comptes à suivre dans la page « Explore »." + #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "Trouver des posts et comptes sur Bluesky" @@ -2234,6 +2268,10 @@ msgstr "Affine les fils de discussion." msgid "Finish" msgstr "Terminer" +#: src/tours/Tooltip.tsx:149 +msgid "Finish tour and begin using the application" +msgstr "Terminer la visite et commencer à utiliser l’application" + #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "Fitness" @@ -2273,6 +2311,10 @@ msgstr "Suivre {0}" msgid "Follow {name}" msgstr "Suivre {name}" +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "Suivre 7 comptes" + #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" @@ -2323,6 +2365,10 @@ msgstr "Comptes suivis uniquement" msgid "followed you" msgstr "vous suit" +#: src/view/com/notifications/FeedItem.tsx:195 +msgid "followed you back" +msgstr "vous a suivi" + #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" @@ -2366,6 +2412,10 @@ msgstr "Préférences du fil d’actu « Following »" msgid "Following Feed Preferences" msgstr "Préférences du fil d’actu « Following »" +#: src/tours/HomeTour.tsx:59 +msgid "Following shows the latest posts from people you follow." +msgstr "« Following » affiche les derniers posts des personnes que vous suivez." + #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "Vous suit" @@ -2430,6 +2480,10 @@ msgstr "C’est parti" msgid "Get Started" msgstr "C’est parti" +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "Pour commencer" + #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" msgstr "GIF" @@ -2463,6 +2517,10 @@ msgstr "Retour" msgid "Go Back" msgstr "Retour" +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:189 +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 @@ -2497,6 +2555,10 @@ msgstr "Aller à la suite" msgid "Go to profile" msgstr "Voir le profil" +#: src/tours/Tooltip.tsx:138 +msgid "Go to the next step of the tour" +msgstr "Passer à l’étape suivante de la visite" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "Voir le profil du compte" @@ -2505,6 +2567,10 @@ msgstr "Voir le profil du compte" msgid "Graphic Media" msgstr "Médias crus" +#: src/state/shell/progress-guide.tsx:167 +msgid "Half way there!" +msgstr "On y est presque !" + #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" msgstr "Pseudo" @@ -2786,7 +2852,7 @@ msgstr "Invitez les gens à ce kit de démarrage !" #: src/screens/StarterPack/Wizard/StepDetails.tsx:35 msgid "Invite your friends to follow your favorite feeds and people" -msgstr "Invitez vos amis à suivre vos fils d’actu et vos personnes préférées" +msgstr "Invitez vos ami·e·s à suivre vos fils d’actu et vos personnes préférées" #: src/screens/StarterPack/Wizard/StepDetails.tsx:32 msgid "Invites, but personal" @@ -2932,6 +2998,15 @@ msgstr "Allons-y !" msgid "Light" msgstr "Clair" +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "Liker 10 posts" + +#: src/state/shell/progress-guide.tsx:163 +#: src/state/shell/progress-guide.tsx:168 +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 msgid "Like this feed" @@ -3236,7 +3311,11 @@ msgstr "Réponses les plus likées en premier" #: src/screens/Onboarding/state.ts:90 msgid "Movies" -msgstr "" +msgstr "Cinéma" + +#: src/screens/Onboarding/state.ts:91 +msgid "Music" +msgstr "Musique" #: src/components/TagMenu/index.tsx:249 msgid "Mute" @@ -3369,9 +3448,13 @@ msgstr "Nom ou description qui viole les normes communautaires" msgid "Nature" msgstr "Nature" +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "Navigue vers {0}" + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" -msgstr "" +msgstr "Navigue vers le kit de démarrage" #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 @@ -3692,6 +3775,10 @@ msgstr "le {str}" msgid "Onboarding reset" msgstr "Réinitialiser le didacticiel" +#: src/tours/Tooltip.tsx:118 +msgid "Onboarding tour step {0}: {1}" +msgstr "Étape de la visite d’accueil {0} : {1}" + #: src/view/com/composer/Composer.tsx:522 msgid "One or more images is missing alt text." msgstr "Une ou plusieurs images n’ont pas de texte alt." @@ -4007,7 +4094,7 @@ msgstr "Animaux domestiques" #: src/screens/Onboarding/state.ts:94 msgid "Photography" -msgstr "" +msgstr "Photographie" #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." @@ -4083,6 +4170,10 @@ msgstr "Veuillez entrer un mot, un mot-clé ou une phrase valide à masquer" msgid "Please enter your email." msgstr "Veuillez entrer votre e-mail." +#: src/screens/Signup/StepInfo/index.tsx:63 +msgid "Please enter your invite code." +msgstr "Veuillez saisir votre code d’invitation." + #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" msgstr "Veuillez également entrer votre mot de passe :" @@ -4294,6 +4385,10 @@ msgstr "Code QR a été téléchargé !" msgid "QR code saved to your camera roll!" msgstr "Code QR enregistré dans votre photothèque !" +#: src/tours/Tooltip.tsx:111 +msgid "Quick tip" +msgstr "Petite astuce" + #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:79 @@ -4453,10 +4548,6 @@ msgstr "Réponses" msgid "Replies disabled" msgstr "Les réponses sont désactivées" -#: src/view/com/threadgate/WhoCanReply.tsx:123 -#~ msgid "Replies on this thread are disabled" -#~ msgstr "Les réponses à ce fil de discussion sont désactivées" - #: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "Les réponses à ce fil de discussion sont désactivées" @@ -5347,6 +5438,10 @@ msgstr "Passer cette étape" msgid "Software Dev" msgstr "Développement de logiciels" +#: src/components/FeedInterstitials.tsx:303 +msgid "Some other feeds you might like" +msgstr "Quelques autres fils d’actu qui pourraient vous intéresser" + #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" @@ -5414,6 +5509,10 @@ msgstr "Démarrer une discussion avec {displayName}" msgid "Start chatting" msgstr "Démarrer les discussions" +#: src/tours/Tooltip.tsx:99 +msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +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:325 #: src/screens/StarterPack/Wizard/index.tsx:183 @@ -5430,11 +5529,11 @@ msgstr "Le kit de démarrage n’est pas valide" #: src/view/screens/Profile.tsx:214 msgid "Starter Packs" -msgstr "Packs de démarrage" +msgstr "Kits de démarrage" #: src/components/StarterPack/ProfileStarterPacks.tsx:238 msgid "Starter packs let you easily share your favorite feeds and people with your friends." -msgstr "" +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:963 msgid "Status Page" @@ -5503,6 +5602,10 @@ msgstr "Soutien" msgid "Switch Account" msgstr "Changer de compte" +#: src/tours/HomeTour.tsx:48 +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 msgid "Switch to {0}" msgstr "Basculer sur {0}" @@ -5531,10 +5634,22 @@ msgstr "Menu de mot-clé : {displayTag}" msgid "Tall" msgstr "Grand" +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "Tapper pour annuler" + #: src/view/com/util/images/AutoSizedImage.tsx:70 msgid "Tap to view fully" msgstr "Tapper pour voir en entier" +#: src/state/shell/progress-guide.tsx:172 +msgid "Task complete - 10 likes!" +msgstr "Tâche accomplie - 10 likes !" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "Apprendre à notre algorithme ce que vous aimez" + #: src/screens/Onboarding/index.tsx:36 #: src/screens/Onboarding/state.ts:98 msgid "Tech" @@ -5609,6 +5724,11 @@ msgstr "Les lignes directrices communautaires ont été déplacées vers <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "Notre politique de droits d’auteur a été déplacée vers <0/>" +#: src/state/shell/progress-guide.tsx:173 +#: src/state/shell/progress-guide.tsx:178 +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:321 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." @@ -5989,7 +6109,7 @@ msgstr "Réessayer" #: src/screens/Onboarding/state.ts:99 msgid "TV" -msgstr "" +msgstr "TV" #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" @@ -6501,7 +6621,7 @@ msgstr "Bienvenue !" #: src/components/NewskieDialog.tsx:103 msgid "Welcome, friend!" -msgstr "Bienvenue et enchanté !" +msgstr "Bienvenue et enchanté !" #: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" @@ -6756,7 +6876,7 @@ msgstr "Vous avez atteint la fin" #: src/components/StarterPack/ProfileStarterPacks.tsx:235 msgid "You haven't created a starter pack yet!" -msgstr "" +msgstr "Vous n’avez pas encore créé de kit de démarrage !" #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" @@ -6908,6 +7028,10 @@ msgstr "Votre e-mail a été mis à jour, mais n’a pas été vérifié. L’é msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "Votre e-mail n’a pas encore été vérifié. Il s’agit d’une mesure de sécurité importante que nous recommandons." +#: src/state/shell/progress-guide.tsx:162 +msgid "Your first like!" +msgstr "Votre premier « like » !" + #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Votre fil d’actu des comptes suivis est vide ! Suivez plus de comptes pour voir ce qui se passe." From 09dfc9edf820396ba0132e89ed6d98c2a4231d5d Mon Sep 17 00:00:00 2001 From: dan Date: Fri, 5 Jul 2024 20:17:47 +0100 Subject: [PATCH 081/153] Show feedback for Follow button in interstitials (#4738) * Fix Follow in interstitials * Show feedback in toast --- src/components/FeedInterstitials.tsx | 1 + src/components/ProfileCard.tsx | 25 ++++++++++++++++++++++++- src/state/queries/profile.ts | 19 +++++++++++++++++-- 3 files changed, 42 insertions(+), 3 deletions(-) diff --git a/src/components/FeedInterstitials.tsx b/src/components/FeedInterstitials.tsx index 501eac57e4..243db0a491 100644 --- a/src/components/FeedInterstitials.tsx +++ b/src/components/FeedInterstitials.tsx @@ -212,6 +212,7 @@ export function SuggestedFollows() { /> - + @@ -273,11 +278,13 @@ export function FollowButton(props: FollowButtonProps) { export function FollowButtonInner({ profile: profileUnshadowed, + moderationOpts, logContext, ...rest }: FollowButtonProps) { const {_} = useLingui() const profile = useProfileShadow(profileUnshadowed) + const moderation = moderateProfile(profile, moderationOpts) const [queueFollow, queueUnfollow] = useProfileFollowMutationQueue( profile, logContext, @@ -289,6 +296,14 @@ export function FollowButtonInner({ e.stopPropagation() try { await queueFollow() + Toast.show( + _( + msg`Following ${sanitizeDisplayName( + profile.displayName || profile.handle, + moderation.ui('displayName'), + )}`, + ), + ) } catch (e: any) { if (e?.name !== 'AbortError') { Toast.show(_(msg`An issue occurred, please try again.`)) @@ -301,6 +316,14 @@ export function FollowButtonInner({ e.stopPropagation() try { await queueUnfollow() + Toast.show( + _( + msg`No longer following ${sanitizeDisplayName( + profile.displayName || profile.handle, + moderation.ui('displayName'), + )}`, + ), + ) } catch (e: any) { if (e?.name !== 'AbortError') { Toast.show(_(msg`An issue occurred, please try again.`)) diff --git a/src/state/queries/profile.ts b/src/state/queries/profile.ts index d9a2c6bbba..1f866d26d2 100644 --- a/src/state/queries/profile.ts +++ b/src/state/queries/profile.ts @@ -3,6 +3,7 @@ import {Image as RNImage} from 'react-native-image-crop-picker' import { AppBskyActorDefs, AppBskyActorGetProfile, + AppBskyActorGetProfiles, AppBskyActorProfile, AtUri, BskyAgent, @@ -516,11 +517,11 @@ export function* findAllProfilesInQueryData( queryClient: QueryClient, did: string, ): Generator { - const queryDatas = + const profileQueryDatas = queryClient.getQueriesData({ queryKey: [RQKEY_ROOT], }) - for (const [_queryKey, queryData] of queryDatas) { + for (const [_queryKey, queryData] of profileQueryDatas) { if (!queryData) { continue } @@ -528,6 +529,20 @@ export function* findAllProfilesInQueryData( yield queryData } } + const profilesQueryDatas = + queryClient.getQueriesData({ + queryKey: [profilesQueryKeyRoot], + }) + for (const [_queryKey, queryData] of profilesQueryDatas) { + if (!queryData) { + continue + } + for (let profile of queryData.profiles) { + if (profile.did === did) { + yield profile + } + } + } } export function findProfileQueryData( From baa788de387cfb752db4e7af2bd07a5495caff9f Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Fri, 5 Jul 2024 12:26:58 -0700 Subject: [PATCH 082/153] Tweak checkmark size --- src/components/ProgressGuide/Task.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ProgressGuide/Task.tsx b/src/components/ProgressGuide/Task.tsx index d286b88426..a83715a425 100644 --- a/src/components/ProgressGuide/Task.tsx +++ b/src/components/ProgressGuide/Task.tsx @@ -22,7 +22,7 @@ export function ProgressGuideTask({ return ( {current === total ? ( - + ) : ( Date: Sat, 6 Jul 2024 02:28:03 +0700 Subject: [PATCH 083/153] Update Indonesian translation (#4706) Co-authored-by: Indonesian --- src/locale/locales/id/messages.po | 823 +++++++++++++++--------------- 1 file changed, 412 insertions(+), 411 deletions(-) diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po index 42d374de88..58881b17ed 100644 --- a/src/locale/locales/id/messages.po +++ b/src/locale/locales/id/messages.po @@ -8,9 +8,9 @@ msgstr "" "Language: id\n" "Project-Id-Version: bluesky-id\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-05-22 05:38\n" +"PO-Revision-Date: 2024-06-30 10:47\n" "Last-Translator: \n" -"Language-Team: GID0317, danninov, thinkbyte1024, mary-ext, kodebanget, oops-wtf\n" +"Language-Team: Indonesian\n" "Plural-Forms: nplurals=1; plural=0;\n" "X-Crowdin-Project: bluesky-id\n" "X-Crowdin-Project-ID: 648428\n" @@ -20,7 +20,7 @@ msgstr "" #: src/screens/Messages/List/ChatListItem.tsx:120 msgid "(contains embedded content)" -msgstr "" +msgstr "(berisi konten yang disisipkan)" #: src/view/com/modals/VerifyEmail.tsx:150 msgid "(no email)" @@ -95,11 +95,11 @@ msgstr "{0, plural, other {Batal suka (# menyukai)}}" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" -msgstr "" +msgstr "{0} telah bergabung minggu ini" #: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" -msgstr "" +msgstr "{0} orang telah menggunakan paket pemula ini!" #: src/view/screens/ProfileList.tsx:286 #~ msgid "{0} your feeds" @@ -107,15 +107,15 @@ msgstr "" #: src/view/com/util/UserAvatar.tsx:419 msgid "{0}'s avatar" -msgstr "" +msgstr "Avatar {0}" #: src/screens/StarterPack/Wizard/StepDetails.tsx:68 msgid "{0}'s favorite feeds and people - join me!" -msgstr "" +msgstr "Feed dan akun favorit {0} - ayo bergabung!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:47 msgid "{0}'s starter pack" -msgstr "" +msgstr "Paket pemula {0}" #: src/components/LabelingServiceCard/index.tsx:71 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" @@ -123,27 +123,27 @@ msgstr "{count, plural, other {Disukai oleh # pengguna}}" #: src/lib/hooks/useTimeAgo.ts:69 msgid "{diff, plural, one {day} other {days}}" -msgstr "" +msgstr "{diff, plural, other {hari}}" #: src/lib/hooks/useTimeAgo.ts:64 msgid "{diff, plural, one {hour} other {hours}}" -msgstr "" +msgstr "{diff, plural, other {jam}}" #: src/lib/hooks/useTimeAgo.ts:59 msgid "{diff, plural, one {minute} other {minutes}}" -msgstr "" +msgstr "{diff, plural, other {menit}}" #: src/lib/hooks/useTimeAgo.ts:75 msgid "{diff, plural, one {month} other {months}}" -msgstr "" +msgstr "{diff, plural, other {bulan}}" #: src/lib/hooks/useTimeAgo.ts:54 msgid "{diffSeconds, plural, one {second} other {seconds}}" -msgstr "" +msgstr "{diffSeconds, plural, other {detik}}" #: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" -msgstr "" +msgstr "Paket Pemula {displayName}" #: src/screens/SignupQueued.tsx:207 msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" @@ -174,11 +174,11 @@ msgstr "{numUnreadNotifications} belum dibaca" #: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" -msgstr "" +msgstr "{profileName} bergabung di Bluesky {0} yang lalu" #: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" -msgstr "" +msgstr "{profileName} bergabung di Bluesky menggunakan paket pemula {0} yang lalu" #: 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}}" @@ -195,12 +195,12 @@ msgstr "anggota <0/>" #: 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}, dan {2, plural, other {# lainnya}} sudah disertakan dalam paket pemula Anda" #: 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 "" +msgstr "<0>{0}, <1>{1}, dan {2, plural, other {# lainnya}} sudah disertakan dalam paket pemula Anda" #: 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" @@ -216,7 +216,7 @@ msgstr "<0>{0} {1, plural, other {mengikuti}}" #: src/screens/StarterPack/Wizard/index.tsx:507 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" -msgstr "" +msgstr "<0>{0} dan<1> <2>{1} sudah disertakan dalam paket pemula Anda" #: src/view/shell/Drawer.tsx:96 #~ msgid "<0>{0} following" @@ -224,7 +224,7 @@ msgstr "" #: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" -msgstr "" +msgstr "<0>{0} sudah disertakan dalam paket pemula Anda" #: src/components/ProfileHoverCard/index.web.tsx:437 #~ msgid "<0>{followers} <1>{pluralizedFollowers}" @@ -253,11 +253,11 @@ msgstr "<0>Tidak bisa diterapkan. Peringatan ini hanya tersedia untuk postin #: src/screens/StarterPack/Wizard/index.tsx:457 msgid "<0>You and<1> <2>{0} are included in your starter pack" -msgstr "" +msgstr "<0>Anda dan<1> <2>{0} sudah disertakan dalam paket pemula" #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" -msgstr "⚠Handle Tidak Valid" +msgstr "⚠Panggilan Tidak Valid" #: src/screens/Login/LoginForm.tsx:247 msgid "2FA Confirmation" @@ -347,11 +347,11 @@ msgstr "Tambah" #: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" -msgstr "" +msgstr "Tambah {0} lagi untuk melanjutkan" #: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" -msgstr "" +msgstr "Tambahkan {displayName} dalam paket pemula" #: src/view/com/modals/SelfLabel.tsx:57 msgid "Add a content warning" @@ -385,7 +385,7 @@ msgstr "Tambahkan teks alt" #: src/view/screens/AppPasswords.tsx:148 #: src/view/screens/AppPasswords.tsx:161 msgid "Add App Password" -msgstr "Tambahkan Kata Sandi Aplikasi" +msgstr "Tambahkan Sandi Aplikasi" #: src/view/com/composer/Composer.tsx:467 #~ msgid "Add link card" @@ -413,7 +413,7 @@ msgstr "Tambahkan feed rekomendasi" #: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" -msgstr "" +msgstr "Tambahkan beberapa feed ke dalam paket pemula Anda!" #: src/screens/Feeds/NoFollowingFeed.tsx:41 msgid "Add the default feed of only people you follow" @@ -425,7 +425,7 @@ msgstr "Tambahkan catatan DNS berikut ke domain Anda:" #: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" -msgstr "" +msgstr "Tambahkan feed ini ke daftar feed Anda" #: src/view/com/profile/ProfileMenu.tsx:267 #: src/view/com/profile/ProfileMenu.tsx:270 @@ -434,7 +434,7 @@ msgstr "Tambahkan ke Daftar" #: src/view/com/feeds/FeedSourceCard.tsx:267 msgid "Add to my feeds" -msgstr "Tambakan ke feed saya" +msgstr "Tambahkan ke daftar feed saya" #: src/view/com/auth/onboarding/RecommendedFeedsItem.tsx:139 #~ msgid "Added" @@ -447,7 +447,7 @@ msgstr "Ditambahkan ke daftar" #: src/view/com/feeds/FeedSourceCard.tsx:126 msgid "Added to my feeds" -msgstr "Ditambahkan ke feed saya" +msgstr "Ditambahkan ke daftar feed saya" #: src/view/screens/PreferencesFollowingFeed.tsx:172 msgid "Adjust the number of likes a reply must have to be shown in your feed." @@ -460,7 +460,7 @@ msgstr "Konten Dewasa" #: src/screens/Moderation/index.tsx:356 msgid "Adult content can only be enabled via the Web at <0>bsky.app." -msgstr "" +msgstr "Konten dewasa hanya dapat diaktifkan melalui laman <0>bsky.app." #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." @@ -473,7 +473,7 @@ msgstr "Lanjutan" #: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" -msgstr "" +msgstr "Semua akun telah diikuti!" #: src/view/screens/Feeds.tsx:721 msgid "All the feeds you've saved, right in one place." @@ -482,17 +482,17 @@ 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 msgid "Allow access to your direct messages" -msgstr "" +msgstr "Izinkan akses ke pesan langsung Anda" #: src/screens/Messages/Settings.tsx:61 #: src/screens/Messages/Settings.tsx:64 #~ msgid "Allow messages from" -#~ msgstr "Izinkan pesan dari" +#~ msgstr "" #: src/screens/Messages/Settings.tsx:62 #: src/screens/Messages/Settings.tsx:65 msgid "Allow new messages from" -msgstr "" +msgstr "Izinkan pesan baru dari" #: src/screens/Login/ForgotPasswordForm.tsx:178 #: src/view/com/modals/ChangePassword.tsx:171 @@ -538,7 +538,7 @@ msgstr "Terjadi kesalahan" #: src/components/StarterPack/ProfileStarterPacks.tsx:315 msgid "An error occurred while generating your starter pack. Want to try again?" -msgstr "" +msgstr "Terjadi kesalahan saat membuat paket pemula. Coba lagi?" #: src/components/StarterPack/ShareDialog.tsx:79 #~ msgid "An error occurred while saving the image." @@ -547,7 +547,7 @@ msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" -msgstr "" +msgstr "Terjadi kesalahan saat menyimpan kode QR!" #: src/components/dms/MessageMenu.tsx:134 #~ msgid "An error occurred while trying to delete the message. Please try again." @@ -555,7 +555,7 @@ msgstr "" #: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" -msgstr "" +msgstr "Terjadi kesalahan saat mencoba mengikuti semua" #: src/lib/moderation/useReportOptions.ts:28 msgid "An issue not included in these options" @@ -616,7 +616,7 @@ msgstr "Pengaturan kata sandi aplikasi" #: src/view/screens/AppPasswords.tsx:192 #: src/view/screens/Settings/index.tsx:706 msgid "App Passwords" -msgstr "Kata sandi Aplikasi" +msgstr "Kata Sandi Aplikasi" #: src/components/moderation/LabelsOnMeDialog.tsx:151 #: src/components/moderation/LabelsOnMeDialog.tsx:154 @@ -650,15 +650,15 @@ msgstr "Tampilan" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:47 #: src/screens/Home/NoFeedsPinned.tsx:93 msgid "Apply default recommended feeds" -msgstr "Tambahkan feed yang direkomendasikan secara default" +msgstr "Tambahkan feed bawaan yang direkomendasikan" #: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" -msgstr "" +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}\"?" -msgstr "Anda yakin untuk menghapus kata sandi aplikasi \"{name}\"?" +msgstr "Apakah Anda yakin ingin menghapus sandi aplikasi \"{name}\"?" #: 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." @@ -666,7 +666,7 @@ msgstr "Anda yakin untuk menghapus kata sandi aplikasi \"{name}\"?" #: 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 "Anda yakin ingin menghapus pesan ini? Pesan akan dihapus untuk Anda, tetapi tidak untuk partisipan lain." +msgstr "Anda yakin ingin menghapus pesan ini? Pesan akan dihapus untuk Anda, tetapi tidak untuk partisipan lainnya." #: 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." @@ -674,7 +674,7 @@ msgstr "Anda yakin ingin menghapus pesan ini? Pesan akan dihapus untuk Anda, tet #: 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 "Anda yakin ingin meninggalkan percakapan ini? Pesan akan dihapus untuk Anda, tetapi tidak untuk partisipan lain." +msgstr "Anda yakin ingin meninggalkan percakapan ini? Pesan akan dihapus untuk Anda, tetapi tidak untuk partisipan lainnya." #: src/view/com/feeds/FeedSourceCard.tsx:314 msgid "Are you sure you want to remove {0} from your feeds?" @@ -682,7 +682,7 @@ msgstr "Apakah Anda yakin ingin menghapus {0} dari daftar feed Anda?" #: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" -msgstr "" +msgstr "Apakah Anda yakin ingin menghapus ini dari daftar feed Anda?" #: src/view/com/composer/Composer.tsx:649 msgid "Are you sure you'd like to discard this draft?" @@ -731,7 +731,7 @@ msgstr "Kembali" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:144 #~ msgid "Based on your interest in {interestsText}" -#~ msgstr "Berdasarkan minat Anda pada {interestsText}" +#~ msgstr "" #: src/view/screens/Settings/index.tsx:496 msgid "Basics" @@ -774,7 +774,7 @@ msgstr "Blokir daftar" #: src/view/screens/ProfileList.tsx:683 msgid "Block these accounts?" -msgstr "Blokir akun ini?" +msgstr "Blokir akun-akun ini?" #: src/view/com/lists/ListCard.tsx:112 #: src/view/com/util/post-embeds/QuoteEmbed.tsx:75 @@ -792,11 +792,11 @@ msgstr "Akun yang diblokir" #: src/view/com/profile/ProfileMenu.tsx:360 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." -msgstr "Akun yang diblokir tidak dapat membalas di utas Anda, menyebut Anda, atau berinteraksi dengan Anda." +msgstr "Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau berinteraksi dengan Anda." #: src/view/screens/ModerationBlockedAccounts.tsx:117 msgid "Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you. You will not see their content and they will be prevented from seeing yours." -msgstr "Akun yang diblokir tidak dapat membalas postingan Anda, menyebut Anda, atau berinteraksi dengan Anda. Anda juga tidak akan melihat konten mereka dan mereka akan dicegah melihat konten Anda." +msgstr "Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau berinteraksi dengan Anda. Anda juga tidak akan melihat konten mereka dan mereka akan dicegah melihat konten Anda." #: src/view/com/post-thread/PostThread.tsx:367 msgid "Blocked post." @@ -808,7 +808,7 @@ msgstr "Pemblokiran tidak menghalangi pelabel ini menerapkan label pada akun And #: src/view/screens/ProfileList.tsx:685 msgid "Blocking is public. Blocked accounts cannot reply in your threads, mention you, or otherwise interact with you." -msgstr "Pemblokiran bersifat publik. Akun yang diblokir tidak dapat membalas postingan Anda, menyebut Anda, atau berinteraksi dengan Anda." +msgstr "Pemblokiran bersifat publik. Akun yang diblokir tidak dapat membalas utas Anda, menyebut Anda, atau berinteraksi dengan Anda." #: src/view/com/profile/ProfileMenu.tsx:357 msgid "Blocking will not prevent labels from being applied on your account, but it will stop this account from replying in your threads or interacting with you." @@ -844,11 +844,11 @@ msgstr "Bluesky adalah jaringan terbuka di mana Anda dapat memilih penyedia host #: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." -msgstr "" +msgstr "Bluesky akan memilih serangkaian akun yang direkomendasikan dari orang-orang dalam jaringan Anda." #: 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 tidak akan menampilkan profil dan postingan Anda kepada pengguna yang tidak login. Aplikasi lain mungkin tidak mematuhi permintaan ini. Ini tidak membuat akun Anda menjadi privat." +msgstr "Bluesky tidak akan menampilkan profil dan postingan Anda kepada pengguna yang tidak masuk. Aplikasi lain mungkin tidak akan mematuhi permintaan ini. Ini tidak membuat akun Anda menjadi privat." #: src/lib/moderation/useLabelBehaviorDescription.ts:53 msgid "Blur images" @@ -886,7 +886,7 @@ msgstr "Oleh {0}" #: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:112 #~ msgid "by @{0}" -#~ msgstr "oleh @{0}" +#~ msgstr "" #: src/view/com/profile/ProfileSubpageHeader.tsx:166 msgid "by <0/>" @@ -950,7 +950,7 @@ msgstr "Batal menghapus akun" #: src/view/com/modals/ChangeHandle.tsx:144 msgid "Cancel change handle" -msgstr "Batal mengubah handle" +msgstr "Batal mengubah panggilan" #: src/view/com/modals/crop-image/CropImage.web.tsx:159 msgid "Cancel image crop" @@ -966,7 +966,7 @@ msgstr "Batal mengutip postingan" #: src/screens/Deactivated.tsx:155 msgid "Cancel reactivation and log out" -msgstr "" +msgstr "Batalkan pengaktifan kembali dan keluar" #: src/view/com/modals/ListAddRemoveUsers.tsx:87 #: src/view/shell/desktop/Search.tsx:214 @@ -988,12 +988,12 @@ msgstr "Ubah" #: src/view/screens/Settings/index.tsx:718 msgid "Change handle" -msgstr "Ubah handle" +msgstr "Ubah panggilan" #: src/view/com/modals/ChangeHandle.tsx:156 #: src/view/screens/Settings/index.tsx:729 msgid "Change Handle" -msgstr "Ubah Handle" +msgstr "Ubah Panggilan" #: src/view/com/modals/VerifyEmail.tsx:155 msgid "Change my email" @@ -1037,11 +1037,11 @@ msgstr "Pengaturan obrolan" #: src/screens/Messages/Settings.tsx:59 #: src/view/screens/Settings/index.tsx:647 msgid "Chat Settings" -msgstr "" +msgstr "Pengaturan Obrolan" #: src/components/dms/ConvoMenu.tsx:84 msgid "Chat unmuted" -msgstr "Obrolan batal dibisukan" +msgstr "Obrolan dibunyikan" #: src/screens/Messages/Conversation/index.tsx:26 #~ msgid "Chat with {chatId}" @@ -1070,19 +1070,19 @@ msgstr "Periksa kotak masuk email Anda untuk kode konfirmasi dan masukkan di baw #: src/view/com/modals/Threadgate.tsx:75 #~ msgid "Choose \"Everybody\" or \"Nobody\"" -#~ msgstr "Pilih \"Semua Orang\" atau \"Tidak Ada\"" +#~ msgstr "" #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" -msgstr "" +msgstr "Pilih Feed" #: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" -msgstr "" +msgstr "Pilihkan untuk saya" #: src/screens/StarterPack/Wizard/index.tsx:187 msgid "Choose People" -msgstr "" +msgstr "Pilih Pengguna" #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" @@ -1104,11 +1104,11 @@ msgstr "Pilih warna ini sebagai avatar Anda" #: src/components/dialogs/ThreadgateEditor.tsx:91 #: src/components/dialogs/ThreadgateEditor.tsx:95 msgid "Choose who can reply" -msgstr "" +msgstr "Pilih siapa yang dapat membalas" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104 #~ msgid "Choose your main feeds" -#~ msgstr "Pilih feed utama Anda" +#~ msgstr "" #: src/screens/Signup/StepInfo/index.tsx:114 msgid "Choose your password" @@ -1149,11 +1149,11 @@ msgstr "klik di sini" #: src/view/com/modals/DeleteAccount.tsx:208 msgid "Click here for more information on deactivating your account" -msgstr "" +msgstr "Klik di sini untuk informasi lebih lanjut tentang menonaktifkan akun Anda" #: src/view/com/modals/DeleteAccount.tsx:216 msgid "Click here for more information." -msgstr "" +msgstr "Klik di sini untuk informasi lebih lanjut." #: src/screens/Feeds/NoFollowingFeed.tsx:46 #~ msgid "Click here to add one." @@ -1253,7 +1253,7 @@ msgstr "Menutup penampil untuk gambar header" #: src/view/com/notifications/FeedItem.tsx:226 msgid "Collapse list of users" -msgstr "" +msgstr "Ciutkan daftar pengguna" #: src/view/com/notifications/FeedItem.tsx:426 msgid "Collapses list of users for a given notification" @@ -1292,7 +1292,7 @@ msgstr "Tulis balasan" #: src/screens/Onboarding/StepModeration/ModerationOption.tsx:81 #~ msgid "Configure content filtering setting for category: {0}" -#~ msgstr "Konfigurasikan pengaturan penyaringan konten untuk kategori: {0}" +#~ msgstr "" #: src/components/moderation/LabelPreference.tsx:81 msgid "Configure content filtering setting for category: {name}" @@ -1401,7 +1401,7 @@ msgstr "Lanjutkan sebagai {0} (sudah masuk)" #: src/view/com/post-thread/PostThreadLoadMore.tsx:52 msgid "Continue thread..." -msgstr "" +msgstr "Lanjutkan utas..." #: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 @@ -1411,11 +1411,11 @@ msgstr "Lanjutkan ke langkah berikutnya" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:158 #~ msgid "Continue to the next step" -#~ msgstr "Lanjutkan ke langkah berikutnya" +#~ msgstr "" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:199 #~ msgid "Continue to the next step without following any accounts" -#~ msgstr "Lanjutkan ke langkah berikutnya tanpa mengikuti akun apa pun" +#~ msgstr "" #: src/screens/Messages/List/ChatListItem.tsx:154 msgid "Conversation deleted" @@ -1467,11 +1467,11 @@ msgstr "Salin kode" #: src/components/StarterPack/ShareDialog.tsx:123 msgid "Copy link" -msgstr "" +msgstr "Salin tautan" #: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" -msgstr "" +msgstr "Salin Tautan" #: src/view/screens/ProfileList.tsx:428 msgid "Copy link to list" @@ -1494,7 +1494,7 @@ msgstr "Salin teks postingan" #: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" -msgstr "" +msgstr "Salin kode QR" #: src/Navigation.tsx:261 #: src/view/screens/CopyrightPolicy.tsx:29 @@ -1527,7 +1527,7 @@ msgstr "Tidak dapat membisukan obrolan" #: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" -msgstr "" +msgstr "Buat" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 @@ -1540,17 +1540,17 @@ msgstr "Buat akun Bluesky baru" #: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" -msgstr "" +msgstr "Buat kode QR untuk paket pemula" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 #: src/Navigation.tsx:330 msgid "Create a starter pack" -msgstr "" +msgstr "Buat paket pemula" #: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" -msgstr "" +msgstr "Buatkan paket pemula untuk saya" #: src/screens/Signup/index.tsx:154 msgid "Create Account" @@ -1567,7 +1567,7 @@ msgstr "Buat avatar saja" #: src/components/StarterPack/ProfileStarterPacks.tsx:172 msgid "Create another" -msgstr "" +msgstr "Buat paket lain" #: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" @@ -1637,11 +1637,11 @@ msgstr "Tanggal lahir" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 #: src/view/screens/Settings/index.tsx:806 msgid "Deactivate account" -msgstr "" +msgstr "Nonaktifkan akun" #: src/view/screens/Settings/index.tsx:818 msgid "Deactivate my account" -msgstr "" +msgstr "Nonaktifkan akun saya" #: src/view/screens/Settings/index.tsx:873 msgid "Debug Moderation" @@ -1692,7 +1692,7 @@ msgstr "Hapus untuk saya" #: src/view/screens/ProfileList.tsx:471 msgid "Delete List" -msgstr "Hapus Daftar" +msgstr "Hapus daftar" #: src/components/dms/MessageMenu.tsx:147 msgid "Delete message" @@ -1718,11 +1718,11 @@ msgstr "Hapus postingan" #: src/screens/StarterPack/StarterPackScreen.tsx:478 #: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" -msgstr "" +msgstr "Hapus paket pemula" #: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" -msgstr "" +msgstr "Hapus paket pemula?" #: src/view/screens/ProfileList.tsx:662 msgid "Delete this list?" @@ -1742,7 +1742,7 @@ msgstr "Postingan dihapus." #: src/view/screens/Settings/index.tsx:891 msgid "Deletes the chat declaration record" -msgstr "Hapus catatan deklarasi obrolan" +msgstr "Menghapus catatan deklarasi obrolan" #: src/view/com/modals/CreateOrEditList.tsx:289 #: src/view/com/modals/CreateOrEditList.tsx:310 @@ -1807,7 +1807,7 @@ msgstr "Buang draf?" #: src/screens/Moderation/index.tsx:542 #: src/screens/Moderation/index.tsx:546 msgid "Discourage apps from showing my account to logged-out users" -msgstr "Cegah aplikasi untuk menampilkan akun saya ke pengguna yang tidak login" +msgstr "Cegah aplikasi menampilkan akun saya ke pengguna yang tidak masuk" #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 @@ -1816,7 +1816,7 @@ msgstr "Temukan feed kustom baru" #: src/view/screens/Search/Explore.tsx:388 msgid "Discover new feeds" -msgstr "" +msgstr "Temukan feed baru" #: src/view/screens/Feeds.tsx:744 msgid "Discover New Feeds" @@ -1824,7 +1824,7 @@ msgstr "Temukan Feed Baru" #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" -msgstr "" +msgstr "Tampilkan lencana teks alt yang lebih besar" #: src/view/com/modals/EditProfile.tsx:193 msgid "Display name" @@ -1889,7 +1889,7 @@ msgstr "Selesai{extraText}" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" -msgstr "" +msgstr "Unduh Bluesky" #: src/view/screens/Settings/ExportCarDialog.tsx:77 #: src/view/screens/Settings/ExportCarDialog.tsx:81 @@ -1902,7 +1902,7 @@ msgstr "Lepaskan untuk menambahkan gambar" #: 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 "Sesuai dengan kebijakan Apple, konten dewasa hanya dapat diaktifkan di web setelah menyelesaikan pendaftaran." +#~ msgstr "" #: src/view/com/modals/ChangeHandle.tsx:252 msgid "e.g. alice" @@ -1934,7 +1934,7 @@ msgstr "contoh: Spammer" #: src/view/com/modals/CreateOrEditList.tsx:301 msgid "e.g. The posters who never miss." -msgstr "contoh: Pemosting yang selalu kekinian." +msgstr "contoh: Pemosting yang selalu tepat sasaran." #: src/view/com/modals/CreateOrEditList.tsx:302 msgid "e.g. Users that repeatedly reply with ads." @@ -1950,7 +1950,7 @@ msgstr "Tiap kode hanya berlaku sekali. Anda akan mendapatkan tambahan kode unda #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" -msgstr "" +msgstr "Ubah" #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" @@ -1960,11 +1960,11 @@ msgstr "Ubah" #: src/view/com/util/UserAvatar.tsx:325 #: src/view/com/util/UserBanner.tsx:92 msgid "Edit avatar" -msgstr "Edit avatar" +msgstr "Ubah avatar" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" -msgstr "" +msgstr "Ubah Daftar Feed" #: src/view/com/composer/photos/Gallery.tsx:151 #: src/view/com/modals/EditImage.tsx:208 @@ -1973,7 +1973,7 @@ msgstr "Edit gambar" #: src/view/screens/ProfileList.tsx:459 msgid "Edit list details" -msgstr "Edit detail daftar" +msgstr "Ubah rincian daftar" #: src/view/com/modals/CreateOrEditList.tsx:239 msgid "Edit Moderation List" @@ -1984,7 +1984,7 @@ msgstr "Ubah Daftar Moderasi" #: src/view/screens/Feeds.tsx:451 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" -msgstr "Edit Feed Saya" +msgstr "Ubah Daftar Feed" #: src/view/com/modals/EditProfile.tsx:153 msgid "Edit my profile" @@ -1992,7 +1992,7 @@ msgstr "Edit profil saya" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" -msgstr "" +msgstr "Ubah Daftar Pengguna" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 @@ -2007,19 +2007,19 @@ msgstr "Edit Profil" #: src/view/com/home/HomeHeaderLayout.web.tsx:76 #: src/view/screens/Feeds.tsx:416 #~ msgid "Edit Saved Feeds" -#~ msgstr "Edit Feed Tersimpan" +#~ msgstr "" #: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" -msgstr "" +msgstr "Ubah paket pemula" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" -msgstr "Edit Daftar Pengguna" +msgstr "Ubah Daftar Pengguna" #: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" -msgstr "" +msgstr "Ubah siapa yang dapat membalas" #: src/view/com/modals/EditProfile.tsx:194 msgid "Edit your display name" @@ -2027,11 +2027,11 @@ msgstr "Ubah nama tampilan Anda" #: src/view/com/modals/EditProfile.tsx:212 msgid "Edit your profile description" -msgstr "Ubah deskripsi profil Anda" +msgstr "Sunting deskripsi profil Anda" #: src/Navigation.tsx:335 msgid "Edit your starter pack" -msgstr "" +msgstr "Ubah paket pemula Anda" #: src/screens/Onboarding/index.tsx:31 #: src/screens/Onboarding/state.ts:86 @@ -2040,7 +2040,7 @@ msgstr "Pendidikan" #: src/components/dialogs/ThreadgateEditor.tsx:98 msgid "Either choose \"Everybody\" or \"Nobody\"" -msgstr "" +msgstr "Pilih \"Semua orang\" atau \"Tak seorang pun\"" #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 @@ -2062,7 +2062,7 @@ msgstr "Email diperbarui" #: src/view/com/modals/ChangeEmail.tsx:106 msgid "Email Updated" -msgstr "Email Diupdate" +msgstr "Email Diperbarui" #: src/view/com/modals/VerifyEmail.tsx:85 msgid "Email verified" @@ -2074,17 +2074,17 @@ msgstr "Email:" #: src/components/dialogs/Embed.tsx:112 msgid "Embed HTML code" -msgstr "Sematkan kode HTML" +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 msgid "Embed post" -msgstr "Sematkan postingan" +msgstr "Sisipkan postingan" #: 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 "Sematkan postingan ini di situs web Anda. Salin potongan kode berikut dan tempelkan ke dalam kode HTML situs web Anda." +msgstr "Sisipkan postingan ini di situs web Anda. Salin potongan kode berikut dan tempelkan ke dalam kode HTML situs web Anda." #: src/components/dialogs/EmbedConsent.tsx:101 msgid "Enable {0} only" @@ -2096,12 +2096,12 @@ msgstr "Aktifkan konten dewasa" #: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:94 #~ msgid "Enable Adult Content" -#~ msgstr "Aktifkan Konten Dewasa" +#~ msgstr "" #: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:78 #: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:79 #~ msgid "Enable adult content in your feeds" -#~ msgstr "Aktifkan konten dewasa di feed Anda" +#~ msgstr "" #: src/components/dialogs/EmbedConsent.tsx:82 #: src/components/dialogs/EmbedConsent.tsx:89 @@ -2114,7 +2114,7 @@ msgstr "Aktifkan pemutar media untuk" #: src/view/screens/PreferencesFollowingFeed.tsx:146 msgid "Enable this setting to only see replies between people you follow." -msgstr "Aktifkan opsi ini untuk menampilkan balasan hanya dari akun yang Anda ikuti." +msgstr "Aktifkan opsi ini untuk menampilkan balasan hanya dari pengguna yang Anda ikuti." #: src/components/dialogs/EmbedConsent.tsx:94 msgid "Enable this source only" @@ -2190,7 +2190,7 @@ msgstr "Terjadi kesalahan saat menyimpan berkas" #: src/screens/Signup/StepCaptcha/index.tsx:51 msgid "Error receiving captcha response." -msgstr "Gagal menerima respons captcha." +msgstr "Kesalahan saat menerima respons captcha." #: src/screens/Onboarding/StepInterests/index.tsx:197 #: src/view/screens/Search/Search.tsx:116 @@ -2228,7 +2228,7 @@ msgstr "Keluar dari proses penghapusan akun" #: src/view/com/modals/ChangeHandle.tsx:145 msgid "Exits handle change process" -msgstr "Keluar dari proses perubahan handle" +msgstr "Keluar dari proses perubahan panggilan" #: src/view/com/modals/crop-image/CropImage.web.tsx:160 msgid "Exits image cropping process" @@ -2245,11 +2245,11 @@ msgstr "Keluar dari memasukkan permintaan pencarian" #: src/view/com/lightbox/Lightbox.web.tsx:183 msgid "Expand alt text" -msgstr "Tampilkan teks alt" +msgstr "Bentangkan teks alt" #: src/view/com/notifications/FeedItem.tsx:227 msgid "Expand list of users" -msgstr "" +msgstr "Bentangkan daftar pengguna" #: src/view/com/composer/ComposerReplyTo.tsx:82 #: src/view/com/composer/ComposerReplyTo.tsx:85 @@ -2301,7 +2301,7 @@ msgstr "Gagal membuat kata sandi aplikasi." #: src/screens/StarterPack/Wizard/index.tsx:230 #: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" -msgstr "" +msgstr "Gagal membuat paket pemula" #: src/view/com/modals/CreateOrEditList.tsx:194 msgid "Failed to create the list. Check your internet connection and try again." @@ -2317,12 +2317,12 @@ msgstr "Gagal menghapus postingan, silakan coba lagi" #: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" -msgstr "" +msgstr "Gagal menghapus paket pemula" #: src/view/screens/Search/Explore.tsx:426 #: src/view/screens/Search/Explore.tsx:454 msgid "Failed to load feeds preferences" -msgstr "" +msgstr "Gagal memuat preferensi feed" #: src/components/dialogs/GifSelect.ios.tsx:196 #: src/components/dialogs/GifSelect.tsx:212 @@ -2345,11 +2345,11 @@ msgstr "Gagal memuat pesan terdahulu" #: src/view/screens/Search/Explore.tsx:419 #: src/view/screens/Search/Explore.tsx:447 msgid "Failed to load suggested feeds" -msgstr "" +msgstr "Gagal memuat daftar feed yang disarankan" #: src/view/screens/Search/Explore.tsx:377 msgid "Failed to load suggested follows" -msgstr "" +msgstr "Gagal memuat saran akun untuk diikuti" #: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" @@ -2366,15 +2366,15 @@ msgstr "Gagal mengirim" #: src/components/moderation/LabelsOnMeDialog.tsx:223 #: src/screens/Messages/Conversation/ChatDisabled.tsx:87 msgid "Failed to submit appeal, please try again." -msgstr "Gagal mengirimkan banding, silakan coba lagi." +msgstr "Gagal mengajukan banding, silakan coba lagi." #: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Failed to toggle thread mute, please try again" -msgstr "" +msgstr "Gagal membisukan utas, silakan coba lagi" #: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" -msgstr "" +msgstr "Gagal memperbarui daftar feed" #: src/components/dms/MessagesNUX.tsx:60 #: src/screens/Messages/Settings.tsx:35 @@ -2388,15 +2388,15 @@ msgstr "Feed" #: src/components/FeedCard.tsx:161 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" -msgstr "Feed {0}" +msgstr "Feed oleh {0}" #: src/view/screens/Feeds.tsx:709 #~ msgid "Feed offline" -#~ msgstr "Feed offline" +#~ msgstr "" #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" -msgstr "" +msgstr "Tombol alih feed" #: src/view/shell/desktop/RightNav.tsx:66 #: src/view/shell/Drawer.tsx:345 @@ -2420,15 +2420,15 @@ msgstr "Feed" #: 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 adalah algoritma kustom yang dibuat pengguna dengan sedikit keahlian pemrograman. <0/> untuk informasi lebih lanjut." +msgstr "Feed adalah algoritma kustom yang dibuat pengguna dengan sedikit keahlian pemrograman. <0/> untuk informasi lebih lanjut." #: src/screens/Onboarding/StepTopicalFeeds.tsx:80 #~ msgid "Feeds can be topical as well!" -#~ msgstr "Feed juga bisa berdasarkan topik!" +#~ msgstr "" #: src/components/FeedCard.tsx:282 msgid "Feeds updated!" -msgstr "" +msgstr "Daftar feed diperbarui!" #: src/view/com/modals/ChangeHandle.tsx:475 msgid "File Contents" @@ -2474,11 +2474,11 @@ msgstr "Sesuaikan konten yang Anda lihat di feed Mengikuti." #: src/view/screens/PreferencesThreads.tsx:60 msgid "Fine-tune the discussion threads." -msgstr "Sesuaikan utasan diskusi." +msgstr "Sesuaikan utas diskusi." #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" -msgstr "" +msgstr "Selesai" #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" @@ -2517,7 +2517,7 @@ msgstr "Ikuti {0}" #: src/view/com/posts/AviFollowButton.tsx:71 msgid "Follow {name}" -msgstr "" +msgstr "Ikuti {name}" #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 @@ -2527,11 +2527,11 @@ msgstr "Ikuti Akun" #: src/screens/StarterPack/StarterPackScreen.tsx:345 #: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" -msgstr "" +msgstr "Ikuti semua" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 #~ msgid "Follow All" -#~ msgstr "Ikuti Semua" +#~ msgstr "" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 msgid "Follow Back" @@ -2539,11 +2539,11 @@ msgstr "Ikuti Balik" #: src/view/screens/Search/Explore.tsx:333 msgid "Follow more accounts to get connected to your interests and build your network." -msgstr "" +msgstr "Ikuti lebih banyak akun untuk terhubung sesuai minat Anda dan membangun jaringan." #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 #~ msgid "Follow selected accounts and continue to the next step" -#~ msgstr "Ikuti akun yang dipilih dan lanjutkan ke langkah berikutnya" +#~ msgstr "" #: 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." @@ -2559,19 +2559,19 @@ msgstr "Diikuti oleh {0}" #: src/components/KnownFollowers.tsx:223 msgid "Followed by <0>{0}" -msgstr "" +msgstr "Diikuti oleh <0>{0}" #: src/components/KnownFollowers.tsx:209 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" -msgstr "" +msgstr "Diikuti oleh <0>{0} dan {1, plural, other {# lainnya}}" #: src/components/KnownFollowers.tsx:196 msgid "Followed by <0>{0} and <1>{1}" -msgstr "" +msgstr "Diikuti oleh <0>{0} dan <1>{1}" #: src/components/KnownFollowers.tsx:178 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" -msgstr "" +msgstr "Diikuti oleh <0>{0}, <1>{1}, dan {2, plural, other {# lainnya}}" #: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" @@ -2592,12 +2592,12 @@ msgstr "Pengikut" #: src/Navigation.tsx:179 msgid "Followers of @{0} that you know" -msgstr "" +msgstr "Pengikut @{0} yang Anda kenal" #: src/screens/Profile/KnownFollowers.tsx:108 #: src/screens/Profile/KnownFollowers.tsx:118 msgid "Followers you know" -msgstr "" +msgstr "Pengikut yang Anda kenal" #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 @@ -2616,7 +2616,7 @@ msgstr "Mengikuti {0}" #: src/view/com/posts/AviFollowButton.tsx:53 msgid "Following {name}" -msgstr "" +msgstr "Mengikuti {name}" #: src/view/screens/Settings/index.tsx:573 msgid "Following feed preferences" @@ -2681,20 +2681,20 @@ msgstr "Galeri" #: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" -msgstr "" +msgstr "Buatkan paket pemula" #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" -msgstr "Memulai" +msgstr "Mulai" #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 msgid "Get Started" -msgstr "Memulai" +msgstr "Mulai" #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" -msgstr "" +msgstr "GIF" #: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" @@ -2736,7 +2736,7 @@ msgstr "Kembali ke langkah sebelumnya" #: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" -msgstr "" +msgstr "Kembali ke langkah sebelumnya" #: src/view/screens/NotFound.tsx:55 msgid "Go home" @@ -2774,7 +2774,7 @@ msgstr "Media Sensitif" #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" -msgstr "Handle" +msgstr "Panggilan" #: src/view/screens/AccessibilitySettings.tsx:116 msgid "Haptics" @@ -2807,15 +2807,15 @@ msgstr "Beri tahu orang-orang bahwa Anda bukan bot dengan mengunggah gambar atau #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:140 #~ msgid "Here are some accounts for you to follow" -#~ msgstr "Berikut beberapa akun untuk Anda ikuti" +#~ msgstr "" #: src/screens/Onboarding/StepTopicalFeeds.tsx:89 #~ msgid "Here are some popular topical feeds. You can choose to follow as many as you like." -#~ msgstr "Berikut beberapa feed topikal yang populer. Anda dapat memilih untuk mengikuti sebanyak yang Anda suka." +#~ msgstr "" #: src/screens/Onboarding/StepTopicalFeeds.tsx:84 #~ msgid "Here are some topical feeds based on your interests: {interestsText}. You can choose to follow as many as you like." -#~ msgstr "Berikut beberapa feed topikal berdasarkan minat Anda: {interestsText}. Anda dapat memilih untuk mengikuti sebanyak yang Anda suka." +#~ msgstr "" #: src/view/com/modals/AddAppPasswords.tsx:203 msgid "Here is your app password." @@ -2877,7 +2877,7 @@ msgstr "Hmm, kami kesulitan menemukan feed ini. Mungkin sudah dihapus." #: src/screens/Moderation/index.tsx:60 msgid "Hmmmm, it seems we're having trouble loading this data. See below for more details. If this issue persists, please contact us." -msgstr "Hmmmm, tampaknya kami mengalami kesulitan memuat data ini. Lihat detail lebih lanjut di bawah ini. Jika masalah berlanjut, silakan hubungi kami." +msgstr "Hmmmm, sepertinya kami kesulitan memuat data ini. Lihat di bawah untuk keterangan lebih lanjut. Jika masalah berlanjut, mohon hubungi kami." #: src/screens/Profile/ErrorState.tsx:31 msgid "Hmmmm, we couldn't load that moderation service." @@ -2928,7 +2928,7 @@ msgstr "Saya mengerti" #: src/view/com/lightbox/Lightbox.web.tsx:185 msgid "If alt text is long, toggles alt text expanded state" -msgstr "Jika teks alt panjang, alihkan status teks alt yang diperluas" +msgstr "Beralih ke status teks alt yang dibentangkan jika teks alt panjang" #: src/view/com/modals/SelfLabel.tsx:128 msgid "If none are selected, suitable for all ages." @@ -2952,7 +2952,7 @@ msgstr "Jika Anda ingin mengubah kata sandi, kami akan mengirimkan kode untuk me #: src/screens/Settings/components/DeactivateAccountDialog.tsx:92 msgid "If you're trying to change your handle or email, do so before you deactivate." -msgstr "" +msgstr "Jika ingin mengubah panggilan atau email, lakukanlah sebelum Anda menonaktifkan akun." #: src/lib/moderation/useReportOptions.ts:38 msgid "Illegal and Urgent" @@ -2968,7 +2968,7 @@ msgstr "Teks alt gambar" #: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" -msgstr "" +msgstr "Gambar telah disimpan ke rol kamera Anda!" #: src/lib/moderation/useReportOptions.ts:49 msgid "Impersonation or false claims about identity or affiliation" @@ -3020,7 +3020,7 @@ msgstr "Masukkan penyedia hosting pilihan Anda" #: src/screens/Signup/StepHandle.tsx:63 msgid "Input your user handle" -msgstr "Masukkan handle pengguna Anda" +msgstr "Masukkan panggilan Anda" #: src/components/dms/MessagesNUX.tsx:82 msgid "Introducing Direct Messages" @@ -3033,7 +3033,7 @@ msgstr "Kode konfirmasi 2FA tidak valid." #: src/view/com/post-thread/PostThreadItem.tsx:236 msgid "Invalid or unsupported post record" -msgstr "Catatan posting tidak valid atau tidak didukung" +msgstr "Catatan postingan tidak valid atau tidak didukung" #: src/screens/Login/LoginForm.tsx:140 msgid "Invalid username or password" @@ -3061,23 +3061,23 @@ msgstr "Kode undangan: 1 tersedia" #: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" -msgstr "" +msgstr "Undang orang lain ke paket pemula ini!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:35 msgid "Invite your friends to follow your favorite feeds and people" -msgstr "" +msgstr "Undang teman untuk mengikuti feed dan akun favorit Anda" #: src/screens/StarterPack/Wizard/StepDetails.tsx:32 msgid "Invites, but personal" -msgstr "" +msgstr "Undangan, tetapi personal" #: src/screens/Onboarding/StepFollowingFeed.tsx:65 #~ msgid "It shows posts from the people you follow as they happen." -#~ msgstr "Feed ini menampilkan postingan secara langsung dari orang yang Anda ikuti." +#~ 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 "Hanya ada Anda saat ini! Tambahkan lebih banyak orang ke paket pemula Anda melalui pencarian di atas." #: src/view/com/auth/SplashScreen.web.tsx:157 msgid "Jobs" @@ -3086,11 +3086,11 @@ msgstr "Karir" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" -msgstr "" +msgstr "Bergabung di Bluesky" #: src/components/StarterPack/QrCode.tsx:56 msgid "Join the conversation" -msgstr "" +msgstr "Bergabunglah dengan kami" #: src/screens/Onboarding/index.tsx:21 #: src/screens/Onboarding/state.ts:89 @@ -3167,7 +3167,7 @@ msgstr "Pelajari lebih lanjut tentang peringatan ini" #: src/screens/Moderation/index.tsx:573 msgid "Learn more about what is public on Bluesky." -msgstr "Pelajari lebih lanjut tentang apa yang publik di Bluesky." +msgstr "Pelajari lebih lanjut tentang apa yang bersifat publik di Bluesky." #: src/components/moderation/ContentHider.tsx:155 msgid "Learn more." @@ -3204,11 +3204,11 @@ msgstr "yang tersisa" #: src/view/screens/Settings/index.tsx:308 msgid "Legacy storage cleared, you need to restart the app now." -msgstr "Penyimpanan lama dihapus, Anda perlu memulai ulang aplikasi sekarang." +msgstr "Penyimpanan lama dibersihkan, Anda perlu memulai ulang aplikasi sekarang." #: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" -msgstr "" +msgstr "Biarkan saya memilih" #: src/screens/Login/index.tsx:130 #: src/screens/Login/index.tsx:145 @@ -3289,7 +3289,7 @@ msgstr "Daftar diblokir" #: src/components/FeedCard.tsx:155 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" -msgstr "Daftar {0}" +msgstr "Daftar oleh {0}" #: src/view/screens/ProfileList.tsx:397 msgid "List deleted" @@ -3305,11 +3305,11 @@ msgstr "Nama Daftar" #: src/view/screens/ProfileList.tsx:372 msgid "List unblocked" -msgstr "Daftar tidak diblokir" +msgstr "Daftar batal diblokir" #: src/view/screens/ProfileList.tsx:344 msgid "List unmuted" -msgstr "Daftar tidak dibisukan" +msgstr "Daftar batal dibisukan" #: src/Navigation.tsx:122 #: src/view/screens/Profile.tsx:208 @@ -3326,15 +3326,15 @@ msgstr "Daftar yang memblokir pengguna ini:" #: src/view/screens/Search/Explore.tsx:130 msgid "Load more" -msgstr "" +msgstr "Muat lebih banyak" #: src/view/screens/Search/Explore.tsx:218 msgid "Load more suggested feeds" -msgstr "" +msgstr "Muat lebih banyak feed yang disarankan" #: src/view/screens/Search/Explore.tsx:216 msgid "Load more suggested follows" -msgstr "" +msgstr "Muat lebih banyak akun untuk diikuti" #: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" @@ -3358,7 +3358,7 @@ msgstr "Catatan" #: src/screens/Deactivated.tsx:214 #: src/screens/Deactivated.tsx:220 msgid "Log in or sign up" -msgstr "" +msgstr "Masuk atau daftar" #: src/screens/SignupQueued.tsx:155 #: src/screens/SignupQueued.tsx:158 @@ -3369,15 +3369,15 @@ msgstr "Keluar" #: src/screens/Moderation/index.tsx:466 msgid "Logged-out visibility" -msgstr "Visibilitas pengguna yang tidak login" +msgstr "Visibilitas pengguna yang tidak masuk" #: src/components/AccountList.tsx:58 msgid "Login to account that is not listed" -msgstr "Masuk ke akun yang tidak ada di daftar" +msgstr "Masuk ke akun yang tidak tercantum dalam daftar" #: src/components/RichText.tsx:217 msgid "Long press to open tag menu for #{tag}" -msgstr "Tekan lama untuk membuka menu tagar untuk #{tag}" +msgstr "Tekan lama untuk membuka menu tagar #{tag}" #: src/screens/Login/SetNewPasswordForm.tsx:116 msgid "Looks like XXXXX-XXXXX" @@ -3397,11 +3397,11 @@ msgstr "Sepertinya Anda menghapus semua feed tersemat. Tapi jangan khawatir, And #: src/screens/Feeds/NoFollowingFeed.tsx:37 msgid "Looks like you're missing a following feed. <0>Click here to add one." -msgstr "Sepertinya Anda kehilangan feed mengikuti. <0>Klik di sini untuk menambahkan." +msgstr "Sepertinya Anda belum memiliki feed mengikuti. <0>Klik di sini untuk menambahkan." #: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" -msgstr "" +msgstr "Buatkan untuk saya" #: src/view/com/modals/LinkWarning.tsx:79 msgid "Make sure this is where you intend to go!" @@ -3537,7 +3537,7 @@ msgstr "Moderator telah memilih untuk menetapkan peringatan umum pada konten." #: src/view/com/post-thread/PostThreadItem.tsx:564 msgid "More" -msgstr "Lebih lanjut" +msgstr "Selengkapnya" #: src/view/shell/desktop/Feeds.tsx:55 msgid "More feeds" @@ -3545,7 +3545,7 @@ msgstr "Feed lainnya" #: src/view/screens/ProfileList.tsx:653 msgid "More options" -msgstr "Pilihan lainnya" +msgstr "Opsi lainnya" #: src/view/screens/PreferencesThreads.tsx:82 msgid "Most-liked replies first" @@ -3553,7 +3553,7 @@ msgstr "Balasan yang paling disukai lebih dulu" #: src/screens/Onboarding/state.ts:90 msgid "Movies" -msgstr "" +msgstr "Film" #: src/components/TagMenu/index.tsx:249 msgid "Mute" @@ -3583,11 +3583,11 @@ msgstr "Bisukan percakapan" #: src/components/dialogs/MutedWords.tsx:148 msgid "Mute in tags only" -msgstr "Bisukan di tagar saja" +msgstr "Bisukan tagar saja" #: src/components/dialogs/MutedWords.tsx:133 msgid "Mute in text & tags" -msgstr "Bisukan di teks & tagar" +msgstr "Bisukan teks & tagar" #: src/view/screens/ProfileList.tsx:678 msgid "Mute list" @@ -3613,7 +3613,7 @@ msgstr "Bisukan kata ini hanya dalam tagar" #: src/view/com/util/forms/PostDropdownBtn.tsx:362 #: src/view/com/util/forms/PostDropdownBtn.tsx:368 msgid "Mute thread" -msgstr "Bisukan utasan" +msgstr "Bisukan utas" #: src/view/com/util/forms/PostDropdownBtn.tsx:378 #: src/view/com/util/forms/PostDropdownBtn.tsx:380 @@ -3656,7 +3656,7 @@ msgstr "Tanggal Lahir Saya" #: src/view/screens/Feeds.tsx:718 msgid "My Feeds" -msgstr "Feed Saya" +msgstr "Daftar Feed Saya" #: src/view/shell/desktop/LeftNav.tsx:84 msgid "My Profile" @@ -3693,7 +3693,7 @@ msgstr "Alam" #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" -msgstr "" +msgstr "Menuju ke paket pemula" #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 @@ -3720,7 +3720,7 @@ msgstr "Tidak akan lagi kehilangan akses ke data dan pengikut Anda." #: src/view/com/modals/ChangeHandle.tsx:515 msgid "Nevermind, create a handle for me" -msgstr "Tidak usah, buatkan handle untuk saya" +msgstr "Tidak usah, buatkan panggilan untuk saya" #: src/view/screens/Lists.tsx:81 msgctxt "action" @@ -3775,7 +3775,7 @@ msgstr "Postingan baru" #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" -msgstr "" +msgstr "Dialog informasi pengguna baru" #: src/view/com/modals/CreateOrEditList.tsx:236 msgid "New User List" @@ -3783,7 +3783,7 @@ msgstr "Daftar Pengguna Baru" #: src/view/screens/PreferencesThreads.tsx:79 msgid "Newest replies first" -msgstr "Balasan terbaru terlebih dahulu" +msgstr "Balasan terbaru lebih dulu" #: src/screens/Onboarding/index.tsx:20 #: src/screens/Onboarding/state.ts:92 @@ -3840,7 +3840,7 @@ msgstr "GIF tidak ditemukan. Mungkin ada masalah dengan Tenor." #: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." -msgstr "" +msgstr "Tidak ditemukan feed apa pun. Coba pencarian lain." #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" @@ -3871,7 +3871,7 @@ msgstr "Tidak seorang pun" #: src/screens/Profile/Sections/Feed.tsx:59 msgid "No posts yet." -msgstr "" +msgstr "Belum ada postingan." #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 @@ -3888,19 +3888,19 @@ msgstr "Tidak ditemukan hasil" #: src/view/screens/Feeds.tsx:511 msgid "No results found for \"{query}\"" -msgstr "Tidak ada hasil ditemukan untuk \"{query}\"" +msgstr "Tidak ditemukan hasil untuk \"{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 "Tidak ada hasil ditemukan untuk {query}" +msgstr "Tidak ditemukan hasil untuk {query}" #: src/components/dialogs/GifSelect.ios.tsx:200 #: src/components/dialogs/GifSelect.tsx:216 msgid "No search results found for \"{search}\"." -msgstr "Tidak ada hasil pencarian yang ditemukan untuk \"{search}\"." +msgstr "Tidak ditemukan hasil pencarian untuk \"{search}\"." #: src/components/dms/NewChat.tsx:240 #~ msgid "No search results found for \"{searchText}\"." @@ -3926,7 +3926,7 @@ msgstr "Belum ada yang menyukai ini. Mungkin Anda bisa jadi yang pertama!" #: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." -msgstr "" +msgstr "Tidak ditemukan siapa pun. Coba pencarian lain." #: src/lib/moderation/useGlobalLabelStrings.ts:42 msgid "Non-sexual Nudity" @@ -3954,7 +3954,7 @@ msgstr "Catatan tentang berbagi" #: src/screens/Moderation/index.tsx:564 msgid "Note: Bluesky is an open and public network. This setting only limits the visibility of your content on the Bluesky app and website, and other apps may not respect this setting. Your content may still be shown to logged-out users by other apps and websites." -msgstr "Catatan: Bluesky merupakan jaringan terbuka dan publik. Pengaturan ini hanya akan membatasi visibilitas konten Anda pada aplikasi dan situs web Bluesky, dan aplikasi lain mungkin tidak menghormati pengaturan ini. Konten Anda mungkin tetap ditampilkan kepada pengguna yang tidak login oleh aplikasi dan website lain." +msgstr "Catatan: Bluesky merupakan jaringan terbuka dan publik. Pengaturan ini hanya membatasi visibilitas konten Anda pada aplikasi dan situs web Bluesky. Konten Anda mungkin tetap ditampilkan oleh aplikasi atau situs web lain kepada pengguna yang tidak masuk." #: src/screens/Messages/List/index.tsx:215 msgid "Nothing here" @@ -3980,7 +3980,7 @@ msgstr "Notifikasi" #: src/lib/hooks/useTimeAgo.ts:51 msgid "now" -msgstr "" +msgstr "sekarang" #: src/components/dms/MessageItem.tsx:175 msgid "Now" @@ -4010,7 +4010,7 @@ msgstr "Oh tidak!" #: src/screens/Onboarding/StepInterests/index.tsx:138 msgid "Oh no! Something went wrong." -msgstr "Oh tidak! Sepertinya ada yang salah." +msgstr "Oh tidak! Ada yang tidak beres." #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:336 msgid "OK" @@ -4022,15 +4022,15 @@ msgstr "Baiklah" #: src/view/screens/PreferencesThreads.tsx:78 msgid "Oldest replies first" -msgstr "Balasan terlama terlebih dahulu" +msgstr "Balasan terlama lebih dulu" #: src/components/StarterPack/QrCode.tsx:69 msgid "on" -msgstr "" +msgstr "di" #: src/lib/hooks/useTimeAgo.ts:81 msgid "on {str}" -msgstr "" +msgstr "pada {str}" #: src/view/screens/Settings/index.tsx:256 msgid "Onboarding reset" @@ -4046,11 +4046,11 @@ msgstr "Hanya mendukung berkas .jpg dan .png" #: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" -msgstr "" +msgstr "Hanya {0} yang dapat membalas" #: src/view/com/threadgate/WhoCanReply.tsx:100 #~ msgid "Only {0} can reply." -#~ msgstr "Hanya {0} yang dapat membalas." +#~ msgstr "" #: src/screens/Signup/StepHandle.tsx:98 msgid "Only contains letters, numbers, and hyphens" @@ -4058,7 +4058,7 @@ msgstr "Hanya berisi huruf, angka, dan tanda hubung" #: src/components/Lists.tsx:88 msgid "Oops, something went wrong!" -msgstr "Ups, sepertinya ada yang salah!" +msgstr "Ups, ada yang tidak beres!" #: src/components/Lists.tsx:191 #: src/components/StarterPack/ProfileStarterPacks.tsx:304 @@ -4066,15 +4066,15 @@ msgstr "Ups, sepertinya ada yang salah!" #: src/view/screens/AppPasswords.tsx:69 #: src/view/screens/Profile.tsx:108 msgid "Oops!" -msgstr "Uups!" +msgstr "Ups!" #: src/screens/Onboarding/StepFinished.tsx:253 msgid "Open" -msgstr "Buka" +msgstr "Terbuka" #: src/view/com/posts/AviFollowButton.tsx:89 msgid "Open {name} profile shortcut menu" -msgstr "" +msgstr "Buka menu pintasan profil {name}" #: src/screens/Onboarding/StepProfile/index.tsx:277 msgid "Open avatar creator" @@ -4116,7 +4116,7 @@ msgstr "Buka menu opsi postingan" #: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" -msgstr "" +msgstr "Buka menu paket pemula" #: src/view/screens/Settings/index.tsx:860 #: src/view/screens/Settings/index.tsx:870 @@ -4133,7 +4133,7 @@ msgstr "Membuka opsi {numItems}" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 msgid "Opens a dialog to choose who can reply to this thread" -msgstr "" +msgstr "Membuka dialog untuk memilih siapa yang dapat membalas utas ini" #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" @@ -4145,7 +4145,7 @@ msgstr "Membuka detail tambahan untuk entri debug" #: src/view/com/notifications/FeedItem.tsx:349 #~ msgid "Opens an expanded list of users in this notification" -#~ msgstr "Membuka daftar pengguna yang diperluas dalam notifikasi ini" +#~ msgstr "" #: src/view/com/composer/photos/OpenCameraBtn.tsx:74 msgid "Opens camera on device" @@ -4153,7 +4153,7 @@ msgstr "Membuka kamera pada perangkat" #: src/view/screens/Settings/index.tsx:639 msgid "Opens chat settings" -msgstr "" +msgstr "Membuka pengaturan obrolan" #: src/view/com/composer/Prompt.tsx:27 msgid "Opens composer" @@ -4169,7 +4169,7 @@ msgstr "Membuka galeri foto perangkat" #: src/view/screens/Settings/index.tsx:671 msgid "Opens external embeds settings" -msgstr "Membuka pengaturan penyematan eksternal" +msgstr "Membuka pengaturan sisipan eksternal" #: src/view/com/auth/SplashScreen.tsx:50 #: src/view/com/auth/SplashScreen.web.tsx:99 @@ -4179,7 +4179,7 @@ msgstr "Membuka alur untuk membuat akun baru Bluesky" #: 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 "Membuka alur untuk masuk ke akun Bluesky Anda yang telah ada" +msgstr "Membuka alur untuk masuk ke akun Bluesky Anda yang sudah ada" #: src/view/com/composer/photos/SelectGifBtn.tsx:36 msgid "Opens GIF select dialog" @@ -4191,35 +4191,35 @@ msgstr "Membuka daftar kode undangan" #: src/view/screens/Settings/index.tsx:808 msgid "Opens modal for account deactivation confirmation" -msgstr "" +msgstr "Membuka jendela modal untuk konfirmasi penonaktifan akun" #: src/view/screens/Settings/index.tsx:830 msgid "Opens modal for account deletion confirmation. Requires email code" -msgstr "Buka modal untuk konfirmasi penghapusan akun. Membutuhkan kode email" +msgstr "Membuka jendela modal untuk konfirmasi penghapusan akun. Membutuhkan kode email" #: src/view/screens/Settings/index.tsx:765 msgid "Opens modal for changing your Bluesky password" -msgstr "Buka modal untuk mengubah kata sandi Bluesky Anda" +msgstr "Membuka jendela modal untuk mengubah kata sandi Bluesky Anda" #: src/view/screens/Settings/index.tsx:720 msgid "Opens modal for choosing a new Bluesky handle" -msgstr "Membuka modal untuk memilih handle baru Bluesky" +msgstr "Membuka jendela modal untuk memilih panggilan Bluesky baru" #: src/view/screens/Settings/index.tsx:788 msgid "Opens modal for downloading your Bluesky account data (repository)" -msgstr "Buka modal untuk mengunduh data akun (repositori) Bluesky Anda" +msgstr "Membuka jendela modal untuk mengunduh data akun (repositori) Bluesky Anda" #: src/view/screens/Settings/index.tsx:1008 msgid "Opens modal for email verification" -msgstr "Membuka modal untuk verifikasi email" +msgstr "Membuka jendela modal untuk verifikasi email" #: src/view/com/modals/ChangeHandle.tsx:276 msgid "Opens modal for using custom domain" -msgstr "Buka modal untuk menggunakan domain kustom" +msgstr "Membuka jendela modal untuk menggunakan domain kustom" #: src/view/screens/Settings/index.tsx:556 msgid "Opens moderation settings" -msgstr "Buka pengaturan moderasi" +msgstr "Membuka pengaturan moderasi" #: src/screens/Login/LoginForm.tsx:228 msgid "Opens password reset form" @@ -4228,15 +4228,15 @@ msgstr "Membuka formulir pengaturan ulang kata sandi" #: src/view/com/home/HomeHeaderLayout.web.tsx:77 #: src/view/screens/Feeds.tsx:417 #~ msgid "Opens screen to edit Saved Feeds" -#~ msgstr "Membuka layar untuk mengedit Feed Tersimpan" +#~ msgstr "" #: src/view/screens/Settings/index.tsx:617 msgid "Opens screen with all saved feeds" -msgstr "Buka halaman dengan semua feed tersimpan" +msgstr "Membuka layar berisi semua feed tersimpan" #: src/view/screens/Settings/index.tsx:698 msgid "Opens the app password settings" -msgstr "Buka pengaturan kata sandi aplikasi" +msgstr "Membuka pengaturan kata sandi aplikasi" #: src/view/screens/Settings/index.tsx:574 msgid "Opens the Following feed preferences" @@ -4253,20 +4253,20 @@ msgstr "Membuka situs web tertaut" #: src/view/screens/Settings/index.tsx:861 #: src/view/screens/Settings/index.tsx:871 msgid "Opens the storybook page" -msgstr "Buka halaman storybook" +msgstr "Membuka halaman storybook" #: src/view/screens/Settings/index.tsx:849 msgid "Opens the system log page" -msgstr "Buka halaman log sistem" +msgstr "Membuka halaman log sistem" #: src/view/screens/Settings/index.tsx:595 msgid "Opens the threads preferences" -msgstr "Buka preferensi utasan" +msgstr "Membuka preferensi utas" #: src/view/com/notifications/FeedItem.tsx:513 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" -msgstr "" +msgstr "Membuka profil ini" #: src/view/com/util/forms/DropdownButton.tsx:293 msgid "Option {0} of {numItems}" @@ -4283,11 +4283,11 @@ msgstr "Atau gabungkan opsi-opsi berikut:" #: src/screens/Deactivated.tsx:211 msgid "Or, continue with another account." -msgstr "" +msgstr "Atau, lanjutkan dengan akun lain." #: src/screens/Deactivated.tsx:194 msgid "Or, log into one of your other accounts." -msgstr "" +msgstr "Atau, masuk ke salah satu akun Anda yang lain." #: src/lib/moderation/useReportOptions.ts:27 msgid "Other" @@ -4359,7 +4359,7 @@ msgstr "Izin untuk mengakses rol kamera ditolak. Silakan aktifkan di pengaturan #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" -msgstr "" +msgstr "Tombol alih pengguna" #: src/screens/Onboarding/index.tsx:28 #: src/screens/Onboarding/state.ts:93 @@ -4368,7 +4368,7 @@ msgstr "Hewan Peliharaan" #: src/screens/Onboarding/state.ts:94 msgid "Photography" -msgstr "" +msgstr "Fotografi" #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." @@ -4389,7 +4389,7 @@ msgstr "Feed Tersemat" #: src/view/screens/ProfileList.tsx:289 msgid "Pinned to your feeds" -msgstr "Disematkan ke feed Anda" +msgstr "Disematkan ke daftar feed Anda" #: src/view/com/util/post-embeds/GifEmbed.tsx:37 msgid "Play" @@ -4419,7 +4419,7 @@ msgstr "Putar GIF" #: src/screens/Signup/state.ts:234 msgid "Please choose your handle." -msgstr "Silakan pilih handle Anda." +msgstr "Silakan tentukan panggilan Anda." #: src/screens/Signup/state.ts:227 msgid "Please choose your password." @@ -4455,7 +4455,7 @@ msgstr "Masukkan juga kata sandi Anda:" #: src/components/moderation/LabelsOnMeDialog.tsx:256 msgid "Please explain why you think this label was incorrectly applied by {0}" -msgstr "Jelaskan menurut Anda mengapa {0} salah menerapkan label ini" +msgstr "Jelaskan menurut Anda mengapa {0} salah dalam menerapkan label ini" #: src/screens/Messages/Conversation/ChatDisabled.tsx:110 msgid "Please explain why you think your chats were incorrectly disabled" @@ -4577,7 +4577,7 @@ msgstr "Tekan untuk mengulangi" #: src/components/KnownFollowers.tsx:116 msgid "Press to view followers of this account that you also follow" -msgstr "" +msgstr "Tekan untuk melihat pengikut akun ini yang juga Anda ikuti" #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" @@ -4589,7 +4589,7 @@ msgstr "Bahasa Utama" #: src/view/screens/PreferencesThreads.tsx:97 msgid "Prioritize Your Follows" -msgstr "Prioritaskan Pengikut Anda" +msgstr "Dahulukan yang Anda Ikuti" #: src/view/screens/Settings/index.tsx:654 #: src/view/shell/desktop/RightNav.tsx:77 @@ -4639,11 +4639,11 @@ msgstr "Publik" #: src/view/screens/ModerationModlists.tsx:61 msgid "Public, shareable lists of users to mute or block in bulk." -msgstr "Daftar publik yang dapat dibagikan untuk memblokir atau membisukan pengguna secara massal." +msgstr "Daftar terbuka yang dapat dibagikan untuk memblokir atau membisukan pengguna secara massal." #: src/view/screens/Lists.tsx:66 msgid "Public, shareable lists which can drive feeds." -msgstr "Daftar bersifat publik yang dapat dibagikan dan digunakan sebagai feed." +msgstr "Daftar terbuka yang dapat dibagikan dan digunakan sebagai feed." #: src/view/com/composer/Composer.tsx:481 msgid "Publish post" @@ -4655,15 +4655,15 @@ msgstr "Publikasikan balasan" #: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" -msgstr "" +msgstr "Kode QR telah disalin ke papan klip!" #: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" -msgstr "" +msgstr "Kode QR telah diunduh!" #: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" -msgstr "" +msgstr "Kode QR disimpan ke rol kamera Anda!" #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 @@ -4675,16 +4675,16 @@ msgstr "Kutip postingan" #: src/view/com/modals/Repost.tsx:66 #~ msgctxt "action" #~ msgid "Quote post" -#~ msgstr "Kutip postingan" +#~ msgstr "" #: src/view/com/modals/Repost.tsx:71 #~ msgctxt "action" #~ msgid "Quote Post" -#~ msgstr "Kutip Postingan" +#~ msgstr "" #: src/view/screens/PreferencesThreads.tsx:86 msgid "Random (aka \"Poster's Roulette\")" -msgstr "Acak (alias \"Rolet Poster\")" +msgstr "Acak (alias \"Rolet Pemosting\")" #: src/view/com/modals/EditImage.tsx:237 msgid "Ratios" @@ -4692,7 +4692,7 @@ msgstr "Rasio" #: src/screens/Deactivated.tsx:144 msgid "Reactivate your account" -msgstr "" +msgstr "Aktifkan kembali akun Anda" #: src/components/dms/ReportDialog.tsx:174 msgid "Reason:" @@ -4736,7 +4736,7 @@ msgstr "Hapus" #: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" -msgstr "" +msgstr "Hapus {displayName} dari paket pemula" #: src/view/com/util/AccountDropdownBtn.tsx:22 msgid "Remove account" @@ -4748,11 +4748,11 @@ msgstr "Hapus Avatar" #: src/view/com/util/UserBanner.tsx:155 msgid "Remove Banner" -msgstr "Hapus Spanduk" +msgstr "Hapus Sampul" #: src/screens/Messages/Conversation/MessageInputEmbed.tsx:218 msgid "Remove embed" -msgstr "" +msgstr "Hapus sisipan" #: src/view/com/posts/FeedErrorMessage.tsx:168 #: src/view/com/posts/FeedShutdownMsg.tsx:113 @@ -4770,12 +4770,12 @@ msgstr "Hapus feed?" #: src/view/screens/ProfileFeed.tsx:338 #: src/view/screens/ProfileList.tsx:443 msgid "Remove from my feeds" -msgstr "Hapus dari feed saya" +msgstr "Hapus dari daftar feed saya" #: src/components/FeedCard.tsx:320 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" -msgstr "Hapus dari feed saya?" +msgstr "Hapus dari daftar feed saya?" #: src/view/com/composer/photos/Gallery.tsx:174 msgid "Remove image" @@ -4791,11 +4791,11 @@ msgstr "Hapus kata yang dibisukan dari daftar Anda" #: src/view/screens/Search/Search.tsx:974 msgid "Remove profile" -msgstr "" +msgstr "Hapus profil" #: src/view/screens/Search/Search.tsx:976 msgid "Remove profile from search history" -msgstr "" +msgstr "Hapus profil dari riwayat pencarian" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:238 msgid "Remove quote" @@ -4817,21 +4817,21 @@ msgstr "Dihapus dari daftar" #: src/view/com/feeds/FeedSourceCard.tsx:139 msgid "Removed from my feeds" -msgstr "Dihapus dari feed saya" +msgstr "Dihapus dari daftar feed saya" #: src/view/com/posts/FeedShutdownMsg.tsx:44 #: src/view/screens/ProfileFeed.tsx:192 #: src/view/screens/ProfileList.tsx:320 msgid "Removed from your feeds" -msgstr "Dihapus dari feed Anda" +msgstr "Dihapus dari daftar feed Anda" #: src/view/com/composer/ExternalEmbed.tsx:88 msgid "Removes default thumbnail from {0}" -msgstr "Menghapus gambar pra tinjau bawaan dari {0}" +msgstr "Menghapus keluku gambar bawaan dari {0}" #: src/view/com/util/post-embeds/QuoteEmbed.tsx:239 msgid "Removes quoted post" -msgstr "Hapus postingan yang dikutip" +msgstr "Menghapus postingan yang dikutip" #: src/view/com/posts/FeedShutdownMsg.tsx:126 #: src/view/com/posts/FeedShutdownMsg.tsx:130 @@ -4844,7 +4844,7 @@ msgstr "Balasan" #: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" -msgstr "" +msgstr "Balasan dinonaktifkan" #: src/view/com/threadgate/WhoCanReply.tsx:123 #~ msgid "Replies on this thread are disabled" @@ -4878,7 +4878,7 @@ msgstr "Membalas <0><1/>" #: src/view/com/posts/FeedItem.tsx:437 msgctxt "description" msgid "Reply to a blocked post" -msgstr "" +msgstr "Membalas postingan yang diblokir" #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 @@ -4927,7 +4927,7 @@ msgstr "Laporkan postingan" #: src/screens/StarterPack/StarterPackScreen.tsx:504 #: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" -msgstr "" +msgstr "Laporkan paket pemula" #: src/components/ReportDialog/SelectReportOptionView.tsx:43 msgid "Report this content" @@ -4953,7 +4953,7 @@ msgstr "Laporkan postingan ini" #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this starter pack" -msgstr "" +msgstr "Laporkan paket pemula ini" #: src/components/ReportDialog/SelectReportOptionView.tsx:47 msgid "Report this user" @@ -5066,7 +5066,7 @@ msgstr "Mencoba masuk kembali" #: src/view/com/util/error/ErrorMessage.tsx:57 #: src/view/com/util/error/ErrorScreen.tsx:74 msgid "Retries the last action, which errored out" -msgstr "Coba kembali tindakan terakhir, yang gagal" +msgstr "Mencoba kembali tindakan terakhir yang gagal" #: src/components/dms/MessageItem.tsx:241 #: src/components/Error.tsx:90 @@ -5133,12 +5133,12 @@ msgstr "Simpan Perubahan" #: src/view/com/modals/ChangeHandle.tsx:165 msgid "Save handle change" -msgstr "Simpan perubahan handle" +msgstr "Simpan perubahan panggilan" #: src/components/StarterPack/ShareDialog.tsx:150 #: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" -msgstr "" +msgstr "Simpan gambar" #: src/view/com/modals/crop-image/CropImage.web.tsx:169 msgid "Save image crop" @@ -5146,12 +5146,12 @@ msgstr "Simpan potongan gambar" #: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" -msgstr "" +msgstr "Simpan kode QR" #: src/view/screens/ProfileFeed.tsx:333 #: src/view/screens/ProfileFeed.tsx:339 msgid "Save to my feeds" -msgstr "Simpan ke feed saya" +msgstr "Simpan ke daftar feed saya" #: src/view/screens/SavedFeeds.tsx:145 msgid "Saved Feeds" @@ -5168,7 +5168,7 @@ msgstr "Disimpan ke rol kamera Anda" #: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 msgid "Saved to your feeds" -msgstr "Disimpan ke feed Anda" +msgstr "Disimpan ke daftar feed Anda" #: src/view/com/modals/EditProfile.tsx:226 msgid "Saves any changes to your profile" @@ -5176,7 +5176,7 @@ msgstr "Simpan setiap perubahan pada profil Anda" #: src/view/com/modals/ChangeHandle.tsx:166 msgid "Saves handle change to {handle}" -msgstr "Simpan perubahan handle ke {handle}" +msgstr "Simpan perubahan panggilan ke {handle}" #: src/view/com/modals/crop-image/CropImage.web.tsx:170 msgid "Saves image crop settings" @@ -5234,7 +5234,7 @@ msgstr "Cari semua postingan dengan tagar {displayTag}" #: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." -msgstr "" +msgstr "Cari feed yang ingin Anda sarankan kepada orang lain." #: src/components/dms/NewChat.tsx:226 #~ msgid "Search for someone to start a conversation with." @@ -5284,7 +5284,7 @@ msgstr "Lihat postingan <0>{displayTag} dari pengguna ini" #: src/view/com/notifications/FeedItem.tsx:411 #: src/view/com/util/UserAvatar.tsx:402 #~ msgid "See profile" -#~ msgstr "Lihat profil" +#~ msgstr "" #: src/view/screens/SavedFeeds.tsx:187 msgid "See this guide" @@ -5340,7 +5340,7 @@ msgstr "Pilih opsi {i} dari {numItems}" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:52 #~ msgid "Select some accounts below to follow" -#~ msgstr "Pilih beberapa akun di bawah ini untuk diikuti" +#~ msgstr "" #: src/screens/Onboarding/StepProfile/AvatarCreatorItems.tsx:83 msgid "Select the {emojiName} emoji as your avatar" @@ -5352,15 +5352,15 @@ msgstr "Pilih layanan moderasi untuk melaporkan" #: src/view/com/auth/server-input/index.tsx:82 msgid "Select the service that hosts your data." -msgstr "Pilih layanan yang akan menyimpan data Anda." +msgstr "Pilih layanan yang akan menjadi tempat penyimpanan data Anda." #: src/screens/Onboarding/StepTopicalFeeds.tsx:100 #~ msgid "Select topical feeds to follow from the list below" -#~ msgstr "Pilih feed topikal untuk diikuti dari daftar di bawah ini" +#~ 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 "Pilih apa yang ingin Anda lihat (atau tidak lihat), dan kami akan menangani sisanya." +#~ 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." @@ -5368,7 +5368,7 @@ msgstr "Pilih bahasa yang ingin Anda sertakan dalam feed langganan Anda. Jika ti #: src/view/screens/LanguageSettings.tsx:99 msgid "Select your app language for the default text to display in the app." -msgstr "Pilih bahasa untuk teks default yang akan ditampilkan dalam aplikasi." +msgstr "Pilih bahasa untuk teks bawaan yang akan ditampilkan dalam aplikasi." #: src/screens/Signup/StepInfo/index.tsx:135 msgid "Select your date of birth" @@ -5380,15 +5380,15 @@ msgstr "Pilih minat Anda dari opsi di bawah ini" #: src/view/screens/LanguageSettings.tsx:192 msgid "Select your preferred language for translations in your feed." -msgstr "Pilih bahasa yang disukai untuk penerjemahaan feed Anda." +msgstr "Pilih bahasa yang disukai untuk terjemahan dalam feed Anda." #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:117 #~ msgid "Select your primary algorithmic feeds" -#~ msgstr "Pilih feed algoritma utama Anda" +#~ msgstr "" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:133 #~ msgid "Select your secondary algorithmic feeds" -#~ msgstr "Pilih feed algoritma sekunder Anda" +#~ msgstr "" #: src/components/dms/ChatEmptyPill.tsx:38 msgid "Send a neat website!" @@ -5420,7 +5420,7 @@ msgstr "Kirim pesan" #: src/components/dms/dialogs/ShareViaChatDialog.tsx:59 msgid "Send post to..." -msgstr "" +msgstr "Kirim postingan ke..." #: src/components/dms/ReportDialog.tsx:234 #: src/components/dms/ReportDialog.tsx:237 @@ -5441,7 +5441,7 @@ msgstr "Kirim email verifikasi" #: src/view/com/util/forms/PostDropdownBtn.tsx:296 #: src/view/com/util/forms/PostDropdownBtn.tsx:299 msgid "Send via direct message" -msgstr "" +msgstr "Kirim melalui pesan" #: src/view/com/modals/DeleteAccount.tsx:151 msgid "Sends email with confirmation code for account deletion" @@ -5473,11 +5473,11 @@ msgstr "Pilih \"Tidak\" untuk menyembunyikan semua posting ulang dari feed Anda. #: src/view/screens/PreferencesThreads.tsx:122 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 utasan. Ini merupakan fitur eksperimental." +msgstr "Pilih \"Ya\" untuk menampilkan balasan dalam bentuk tampilan bersusun. Ini merupakan fitur eksperimental." #: src/view/screens/PreferencesFollowingFeed.tsx:260 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" +msgstr "Pilih \"Ya\" untuk menampilkan beberapa sampel dari feed tersimpan di feed Mengikuti Anda. Ini merupakan fitur eksperimental." #: src/screens/Onboarding/Layout.tsx:48 msgid "Set up your account" @@ -5485,7 +5485,7 @@ msgstr "Atur akun Anda" #: src/view/com/modals/ChangeHandle.tsx:261 msgid "Sets Bluesky username" -msgstr "Atur nama pengguna Bluesky" +msgstr "Mengatur nama pengguna Bluesky" #: src/view/screens/Settings/index.tsx:461 msgid "Sets color theme to dark" @@ -5579,7 +5579,7 @@ msgstr "Bagikan feed" #: src/components/StarterPack/ShareDialog.tsx:130 #: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" -msgstr "" +msgstr "Bagikan tautan" #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 @@ -5588,20 +5588,20 @@ msgstr "Bagikan Tautan" #: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" -msgstr "" +msgstr "Dialog berbagi tautan" #: src/components/StarterPack/ShareDialog.tsx:134 #: src/components/StarterPack/ShareDialog.tsx:145 msgid "Share QR code" -msgstr "" +msgstr "Bagikan kode QR" #: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" -msgstr "" +msgstr "Bagikan paket pemula ini" #: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." -msgstr "" +msgstr "Bagikan paket pemula ini dan bantu orang-orang untuk bergabung dengan komunitas Anda di Bluesky." #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" @@ -5646,12 +5646,12 @@ msgstr "Tampilkan pengguna lain yang serupa dengan {0}" #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 msgid "Show hidden replies" -msgstr "" +msgstr "Tampilkan balasan yang disembunyikan" #: src/view/com/util/forms/PostDropdownBtn.tsx:346 #: src/view/com/util/forms/PostDropdownBtn.tsx:348 msgid "Show less like this" -msgstr "Tampilkan lebih sedikit" +msgstr "Kurangi postingan serupa" #: src/view/com/post-thread/PostThreadItem.tsx:530 #: src/view/com/post/Post.tsx:227 @@ -5662,15 +5662,15 @@ msgstr "Tampilkan Lebih Lanjut" #: src/view/com/util/forms/PostDropdownBtn.tsx:338 #: src/view/com/util/forms/PostDropdownBtn.tsx:340 msgid "Show more like this" -msgstr "Tampilkan lebih banyak" +msgstr "Perbanyak postingan serupa" #: src/view/com/post-thread/PostThreadShowHiddenReplies.tsx:23 msgid "Show muted replies" -msgstr "" +msgstr "Tampilkan balasan yang dibisukan" #: src/view/screens/PreferencesFollowingFeed.tsx:257 msgid "Show Posts from My Feeds" -msgstr "Tampilkan Postingan dari Feed Saya" +msgstr "Tampilkan Postingan dari Feed Tersimpan Saya" #: src/view/screens/PreferencesFollowingFeed.tsx:221 msgid "Show Quote Posts" @@ -5678,15 +5678,15 @@ msgstr "Tampilkan Kutipan Postingan" #: src/screens/Onboarding/StepFollowingFeed.tsx:119 #~ msgid "Show quote-posts in Following feed" -#~ msgstr "Tampilkan kutipan postingan di feed Mengikuti" +#~ msgstr "" #: src/screens/Onboarding/StepFollowingFeed.tsx:135 #~ msgid "Show quotes in Following" -#~ msgstr "Tampilkan kutipan di Mengikuti" +#~ msgstr "" #: src/screens/Onboarding/StepFollowingFeed.tsx:95 #~ msgid "Show re-posts in Following feed" -#~ msgstr "Tampilkan posting ulang di feed Mengikuti" +#~ msgstr "" #: src/view/screens/PreferencesFollowingFeed.tsx:118 msgid "Show Replies" @@ -5698,11 +5698,11 @@ msgstr "Tampilkan balasan dari orang yang Anda ikuti sebelum balasan lainnya." #: src/screens/Onboarding/StepFollowingFeed.tsx:87 #~ msgid "Show replies in Following" -#~ msgstr "Tampilkan balasan di Mengikuti" +#~ msgstr "" #: src/screens/Onboarding/StepFollowingFeed.tsx:71 #~ msgid "Show replies in Following feed" -#~ msgstr "Tampilkan balasan di feed Mengikuti" +#~ msgstr "" #: src/view/screens/PreferencesFollowingFeed.tsx:70 #~ msgid "Show replies with at least {value} {0}" @@ -5714,7 +5714,7 @@ msgstr "Tampilkan Posting Ulang" #: src/screens/Onboarding/StepFollowingFeed.tsx:111 #~ msgid "Show reposts in Following" -#~ msgstr "Tampilkan posting ulang di Mengikuti" +#~ msgstr "" #: src/components/moderation/ContentHider.tsx:69 #: src/components/moderation/PostHider.tsx:79 @@ -5723,7 +5723,7 @@ msgstr "Tampilkan konten" #: src/view/com/notifications/FeedItem.tsx:347 #~ msgid "Show users" -#~ msgstr "Tampilkan pengguna" +#~ msgstr "" #: src/lib/moderation/useLabelBehaviorDescription.ts:58 msgid "Show warning" @@ -5811,12 +5811,12 @@ msgstr "Masuk sebagai @{0}" #: src/view/com/notifications/FeedItem.tsx:197 msgid "signed up with your starter pack" -msgstr "" +msgstr "mendaftar dengan paket pemula Anda" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" -msgstr "" +msgstr "Mendaftar tanpa paket pemula" #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/StarterPack/Wizard/index.tsx:192 @@ -5843,18 +5843,18 @@ msgstr "Beberapa orang dapat membalas" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" -msgstr "Terjadi kesalahan" +msgstr "Ada yang tidak beres" #: src/screens/Deactivated.tsx:94 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:59 msgid "Something went wrong, please try again" -msgstr "" +msgstr "Ada yang tidak beres, silakan coba lagi" #: 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 "Terjadi kesalahan, silakan coba lagi." +msgstr "Ada yang tidak beres, silakan coba lagi." #: src/App.native.tsx:96 #: src/App.web.tsx:78 @@ -5911,23 +5911,23 @@ msgstr "Mulai mengobrol" #: src/Navigation.tsx:325 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" -msgstr "" +msgstr "Paket Pemula" #: src/components/StarterPack/StarterPackCard.tsx:65 msgid "Starter pack by {0}" -msgstr "" +msgstr "Paket pemula dari {0}" #: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" -msgstr "" +msgstr "Paket pemula tidak valid" #: src/view/screens/Profile.tsx:214 msgid "Starter Packs" -msgstr "" +msgstr "Paket Pemula" #: src/components/StarterPack/ProfileStarterPacks.tsx:238 msgid "Starter packs let you easily share your favorite feeds and people with your friends." -msgstr "" +msgstr "Paket pemula memudahkan Anda untuk berbagi feed dan akun favorit Anda dengan teman." #: src/view/screens/Settings/index.tsx:862 #~ msgid "Status page" @@ -5947,7 +5947,7 @@ msgstr "Langkah {0} dari {1}" #: src/view/screens/Settings/index.tsx:304 msgid "Storage cleared, you need to restart the app now." -msgstr "Penyimpanan dihapus, Anda perlu memulai ulang aplikasi sekarang." +msgstr "Penyimpanan dibersihkan, Anda perlu memulai ulang aplikasi sekarang." #: src/Navigation.tsx:226 #: src/view/screens/Settings/index.tsx:863 @@ -5976,7 +5976,7 @@ msgstr "Berlangganan Pelabel" #: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:172 #: src/screens/Onboarding/StepAlgoFeeds/FeedCard.tsx:307 #~ msgid "Subscribe to the {0} feed" -#~ msgstr "Berlangganan ke feed {0}" +#~ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:194 msgid "Subscribe to this labeler" @@ -5988,11 +5988,11 @@ msgstr "Berlangganan ke daftar ini" #: src/view/screens/Search/Explore.tsx:331 msgid "Suggested accounts" -msgstr "" +msgstr "Akun yang disarankan" #: src/view/screens/Search/Search.tsx:425 #~ msgid "Suggested Follows" -#~ msgstr "Disarankan untuk Mengikuti" +#~ msgstr "" #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" @@ -6011,7 +6011,7 @@ msgstr "Dukungan" #: src/components/dialogs/SwitchAccount.tsx:47 #: src/components/dialogs/SwitchAccount.tsx:50 msgid "Switch Account" -msgstr "Pindah Akun" +msgstr "Beralih Akun" #: src/view/screens/Settings/index.tsx:160 msgid "Switch to {0}" @@ -6019,7 +6019,7 @@ msgstr "Beralih ke {0}" #: src/view/screens/Settings/index.tsx:161 msgid "Switches the account you are logged in to" -msgstr "Mengganti akun yang Anda masuki" +msgstr "Alihkan akun yang Anda gunakan untuk masuk" #: src/view/screens/Settings/index.tsx:445 msgid "System" @@ -6056,7 +6056,7 @@ msgstr "Ceritakan sebuah lelucon!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" -msgstr "" +msgstr "Beritahu kami lebih lanjut" #: src/view/shell/desktop/RightNav.tsx:86 msgid "Terms" @@ -6097,19 +6097,19 @@ msgstr "Berisi hal berikut:" #: src/screens/Signup/index.tsx:100 msgid "That handle is already taken." -msgstr "Handle telah terpakai." +msgstr "Panggilan telah terpakai." #: src/screens/StarterPack/StarterPackScreen.tsx:105 #: src/screens/StarterPack/StarterPackScreen.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." -msgstr "" +msgstr "Tidak dapat menemukan paket pemula." #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 #: src/view/com/profile/ProfileMenu.tsx:353 msgid "The account will be able to interact with you after unblocking." -msgstr "Akun ini dapat berinteraksi kembali dengan Anda setelah pemblokiran dibuka." +msgstr "Akun ini dapat berinteraksi kembali dengan Anda setelah blokir dibuka." #: src/components/moderation/ModerationDetailsDialog.tsx:127 #~ msgid "the author" @@ -6125,7 +6125,7 @@ msgstr "Kebijakan Hak Cipta telah dipindahkan ke <0/>" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." -msgstr "" +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 msgid "The feed has been replaced with Discover." @@ -6154,7 +6154,7 @@ msgstr "Kebijakan Privasi telah dipindahkan ke <0/>" #: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." -msgstr "" +msgstr "Paket pemula yang ingin Anda lihat tidak valid. Anda dapat menghapus paket pemula ini." #: src/view/screens/Support.tsx:36 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." @@ -6166,11 +6166,11 @@ msgstr "Ketentuan Layanan telah dipindahkan ke" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:141 #~ msgid "There are many feeds to try:" -#~ msgstr "Ada banyak feed untuk dicoba:" +#~ msgstr "" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:86 msgid "There is no time limit for account deactivation, come back any time." -msgstr "" +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 @@ -6234,11 +6234,11 @@ msgstr "Ada masalah saat mengirimkan laporan. Silakan periksa koneksi internet A #: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:65 #~ msgid "There was an issue syncing your preferences with the server" -#~ msgstr "Ada masalah saat mensinkronkan preferensi Anda dengan server" +#~ msgstr "" #: src/view/screens/AppPasswords.tsx:70 msgid "There was an issue with fetching your app passwords" -msgstr "Ada masalah dengan pengambilan kata sandi aplikasi Anda" +msgstr "Ada masalah saat pengambilan kata sandi aplikasi Anda" #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:107 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:129 @@ -6266,7 +6266,7 @@ msgstr "Ada masalah. Periksa koneksi internet Anda dan coba lagi." #: src/components/dialogs/GifSelect.tsx:257 #: src/view/com/util/ErrorBoundary.tsx:57 msgid "There was an unexpected issue in the application. Please let us know if this happened to you!" -msgstr "Sepertinya ada masalah pada aplikasi. Harap beri tahu kami jika Anda mengalaminya!" +msgstr "Ada masalah tak terduga dalam aplikasi. Beri tahu kami jika hal ini terjadi pada Anda!" #: 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." @@ -6274,7 +6274,7 @@ msgstr "Sedang ada lonjakan pengguna baru di Bluesky! Kami akan mengaktifkan aku #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:146 #~ msgid "These are popular accounts you might like:" -#~ msgstr "Berikut adalah akun populer yang mungkin Anda sukai:" +#~ msgstr "" #: src/components/moderation/ScreenHider.tsx:116 msgid "This {screenDescription} has been flagged:" @@ -6327,7 +6327,7 @@ msgstr "Konten ini tidak dapat dilihat tanpa akun Bluesky." #: src/screens/Messages/List/ChatListItem.tsx:213 msgid "This conversation is with a deleted or a deactivated account. Press for options." -msgstr "" +msgstr "Percakapan ini dilakukan dengan akun yang telah dihapus atau dinonaktifkan. Tekan untuk opsi lain." #: src/view/screens/Settings/ExportCarDialog.tsx:93 msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." @@ -6341,17 +6341,17 @@ msgstr "Feed ini sedang menerima terlalu banyak trafik dan sementara tidak terse #: src/view/screens/ProfileFeed.tsx:471 #: src/view/screens/ProfileList.tsx:729 #~ msgid "This feed is empty!" -#~ msgstr "Feed ini kosong!" +#~ msgstr "" #: src/view/com/posts/CustomFeedEmptyState.tsx:37 msgid "This feed is empty! You may need to follow more users or tune your language settings." -msgstr "Feed ini kosong! Anda mungkin perlu mengikuti lebih banyak pengguna atau menyesuaikan pengaturan bahasa Anda." +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/ProfileList.tsx:729 msgid "This feed is empty." -msgstr "" +msgstr "Feed ini kosong." #: src/view/com/posts/FeedShutdownMsg.tsx:97 msgid "This feed is no longer online. We are showing <0>Discover instead." @@ -6359,11 +6359,11 @@ msgstr "Feed ini tidak lagi online. Kami akan menampilkan <0>Discover sebaga #: src/components/dialogs/BirthDateSettings.tsx:41 msgid "This information is not shared with other users." -msgstr "Informasi ini tidak akan dibagikan ke pengguna lainnya." +msgstr "Informasi ini tidak akan dibagikan ke pengguna lain." #: src/view/com/modals/VerifyEmail.tsx:127 msgid "This is important in case you ever need to change your email or reset your password." -msgstr "Ini penting jika Anda butuh untuk mengganti email atau reset kata sandi Anda nantinya." +msgstr "Ini penting dilakukan untuk berjaga-jaga jika Anda perlu mengubah email atau mengatur ulang kata sandi." #: src/components/moderation/ModerationDetailsDialog.tsx:124 #~ msgid "This label was applied by {0}." @@ -6375,7 +6375,7 @@ msgstr "Label ini diterapkan oleh <0>{0}." #: src/components/moderation/ModerationDetailsDialog.tsx:125 msgid "This label was applied by the author." -msgstr "Label ini diterapkan oleh pemosting." +msgstr "Label ini diterapkan oleh penulis." #: src/components/moderation/LabelsOnMeDialog.tsx:165 #~ msgid "This label was applied by you" @@ -6457,7 +6457,7 @@ msgstr "Pengguna ini termasuk dalam daftar <0>{0} yang telah Anda bisukan" #: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." -msgstr "" +msgstr "Pengguna ini masih baru. Tekan untuk informasi lebih lanjut tentang kapan ia bergabung." #: src/view/com/profile/ProfileFollows.tsx:87 msgid "This user isn't following anyone." @@ -6473,20 +6473,20 @@ msgstr "Ini akan menghapus {0} dari daftar kata yang Anda bisukan. Anda tetap da #: src/view/screens/Settings/index.tsx:594 msgid "Thread preferences" -msgstr "Preferensi utasan" +msgstr "Preferensi utas" #: src/view/screens/PreferencesThreads.tsx:53 #: src/view/screens/Settings/index.tsx:604 msgid "Thread Preferences" -msgstr "Preferensi Utasan" +msgstr "Preferensi Utas" #: src/components/WhoCanReply.tsx:109 msgid "Thread settings updated" -msgstr "" +msgstr "Pengaturan utas diperbarui" #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" -msgstr "Mode Utasan" +msgstr "Mode Bersusun" #: src/Navigation.tsx:284 msgid "Threads Preferences" @@ -6541,7 +6541,7 @@ msgstr "Coba lagi" #: src/screens/Onboarding/state.ts:99 msgid "TV" -msgstr "" +msgstr "TV" #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" @@ -6574,7 +6574,7 @@ msgstr "Tidak dapat terhubung ke layanan. Mohon periksa koneksi internet Anda." #: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" -msgstr "" +msgstr "Tidak dapat menghapus" #: src/components/dms/MessagesListBlockedFooter.tsx:89 #: src/components/dms/MessagesListBlockedFooter.tsx:96 @@ -6616,7 +6616,7 @@ msgstr "Batalkan posting ulang" #: src/view/com/profile/FollowButton.tsx:61 msgctxt "action" msgid "Unfollow" -msgstr "Berhenti mengikuti" +msgstr "Berhenti ikuti" #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:247 msgid "Unfollow" @@ -6624,12 +6624,12 @@ msgstr "Batal ikuti" #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:237 msgid "Unfollow {0}" -msgstr "Berhenti mengikuti {0}" +msgstr "Berhenti ikuti {0}" #: src/view/com/profile/ProfileMenu.tsx:245 #: src/view/com/profile/ProfileMenu.tsx:255 msgid "Unfollow Account" -msgstr "Batal Ikuti Akun" +msgstr "Berhenti Ikuti Akun" #: src/view/com/util/post-ctrls/PostCtrls.tsx:197 #~ msgid "Unlike" @@ -6646,7 +6646,7 @@ msgstr "Bunyikan" #: src/components/TagMenu/index.web.tsx:104 msgid "Unmute {truncatedTag}" -msgstr "Batal bisukan {truncatedTag}" +msgstr "Bunyikan {truncatedTag}" #: src/view/com/profile/ProfileMenu.tsx:282 #: src/view/com/profile/ProfileMenu.tsx:288 @@ -6655,7 +6655,7 @@ msgstr "Bunyikan Akun" #: src/components/TagMenu/index.tsx:208 msgid "Unmute all {displayTag} posts" -msgstr "Batal bisukan semua postingan {displayTag}" +msgstr "Bunyikan semua postingan {displayTag}" #: src/components/dms/ConvoMenu.tsx:176 msgid "Unmute conversation" @@ -6668,7 +6668,7 @@ msgstr "Bunyikan percakapan" #: src/view/com/util/forms/PostDropdownBtn.tsx:362 #: src/view/com/util/forms/PostDropdownBtn.tsx:367 msgid "Unmute thread" -msgstr "Bunyikan utasan" +msgstr "Bunyikan utas" #: src/view/screens/ProfileFeed.tsx:291 #: src/view/screens/ProfileList.tsx:617 @@ -6685,7 +6685,7 @@ msgstr "Lepas sematan daftar moderasi" #: src/view/screens/ProfileList.tsx:290 msgid "Unpinned from your feeds" -msgstr "Lepaskan sematan dari feed Anda" +msgstr "Dilepaskan dari daftar feed Anda" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:228 msgid "Unsubscribe" @@ -6710,7 +6710,7 @@ msgstr "Perbarui {displayName} dalam Daftar" #: src/view/com/modals/ChangeHandle.tsx:502 msgid "Update to {handle}" -msgstr "Ubah ke {handle}" +msgstr "Perbarui ke {handle}" #: src/screens/Login/SetNewPasswordForm.tsx:186 msgid "Updating..." @@ -6749,7 +6749,7 @@ msgstr "Gunakan berkas di server Anda" #: 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 "Gunakan kata sandi aplikasi untuk masuk ke klien Bluesky lainnya tanpa memberikan akses penuh ke akun atau kata sandi Anda." +msgstr "Gunakan kata sandi aplikasi untuk masuk ke klien Bluesky lain tanpa memberikan akses penuh ke akun atau kata sandi Anda." #: src/view/com/modals/ChangeHandle.tsx:513 msgid "Use bsky.social as hosting provider" @@ -6757,7 +6757,7 @@ msgstr "Gunakan bsky.social sebagai penyedia hosting" #: src/view/com/modals/ChangeHandle.tsx:512 msgid "Use default provider" -msgstr "Gunakan penyedia handle bawaan" +msgstr "Gunakan penyedia panggilan bawaan" #: src/view/com/modals/InAppBrowserConsent.tsx:56 #: src/view/com/modals/InAppBrowserConsent.tsx:58 @@ -6771,7 +6771,7 @@ msgstr "Gunakan peramban bawaan saya" #: src/screens/Feeds/NoSavedFeedsOfAnyType.tsx:53 msgid "Use recommended" -msgstr "Gunakan rekomendasi" +msgstr "Gunakan yang direkomendasikan" #: src/view/com/modals/ChangeHandle.tsx:394 msgid "Use the DNS panel" @@ -6779,7 +6779,7 @@ msgstr "Gunakan panel DNS" #: src/view/com/modals/AddAppPasswords.tsx:205 msgid "Use this to sign into the other app along with your handle." -msgstr "Gunakan ini untuk masuk ke aplikasi lain dengan handle Anda." +msgstr "Gunakan sandi ini untuk masuk ke aplikasi lain bersama dengan panggilan Anda." #: src/view/com/modals/InviteCodes.tsx:201 msgid "Used by:" @@ -6804,7 +6804,7 @@ msgstr "Pengguna Diblokir oleh Daftar" #: src/lib/moderation/useModerationCauseDescription.ts:68 msgid "User Blocking You" -msgstr "Pengguna yang Memblokir Anda" +msgstr "Pengguna Memblokir Anda" #: src/components/moderation/ModerationDetailsDialog.tsx:70 msgid "User Blocks You" @@ -6817,7 +6817,7 @@ msgstr "Daftar pengguna {0}" #: src/view/screens/ProfileList.tsx:831 msgid "User list by <0/>" -msgstr "Daftar pengguna oleh<0/>" +msgstr "Daftar pengguna oleh <0/>" #: src/view/com/lists/ListCard.tsx:85 #: src/view/com/modals/UserAddRemoveLists.tsx:207 @@ -6920,11 +6920,11 @@ msgstr "Lihat avatar {0}" #: src/view/com/notifications/FeedItem.tsx:234 msgid "View {0}'s profile" -msgstr "" +msgstr "Lihat profil {0}" #: src/components/ProfileHoverCard/index.web.tsx:430 msgid "View blocked user's profile" -msgstr "" +msgstr "Lihat profil pengguna yang diblokir" #: src/view/screens/Log.tsx:56 msgid "View debug entry" @@ -6969,7 +6969,7 @@ msgstr "Lihat pengguna yang menyukai feed ini" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 #: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 msgid "View your feeds and explore more" -msgstr "" +msgstr "Lihat daftar feed Anda dan jelajahi lebih lanjut" #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 @@ -6992,7 +6992,7 @@ msgstr "Peringatkan konten dan saring dari feed" #: src/screens/Hashtag.tsx:210 msgid "We couldn't find any results for that hashtag." -msgstr "Kami tidak dapat menemukan hasil apa pun untuk tagar tersebut." +msgstr "Kami tidak menemukan hasil apa pun untuk tagar tersebut." #: src/screens/Messages/Conversation/index.tsx:107 msgid "We couldn't load this conversation" @@ -7004,7 +7004,7 @@ msgstr "Kami perkirakan {estimatedTime} hingga akun Anda siap." #: src/screens/Onboarding/StepFinished.tsx:231 msgid "We hope you have a wonderful time. Remember, Bluesky is:" -msgstr "Semoga Anda senang dan betah di sini. Ingat, Bluesky adalah:" +msgstr "Semoga Anda senang dan betah di sini. Ingat, Bluesky itu:" #: src/view/com/posts/DiscoverFallbackHeader.tsx:29 msgid "We ran out of posts from your follows. Here's the latest from <0/>." @@ -7016,7 +7016,7 @@ msgstr "Sebaiknya hindari kata-kata umum yang muncul dalam postingan, karena dap #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:125 #~ msgid "We recommend our \"Discover\" feed:" -#~ msgstr "Kami merekomendasikan feed \"Discover\" kami:" +#~ msgstr "" #: src/components/dialogs/BirthDateSettings.tsx:52 msgid "We were unable to load your birth date preferences. Please try again." @@ -7060,7 +7060,7 @@ msgstr "Maaf, pencarian Anda tidak dapat dilakukan. Mohon coba lagi dalam bebera #: src/view/com/composer/Composer.tsx:335 msgid "We're sorry! The post you are replying to has been deleted." -msgstr "" +msgstr "Kami mohon maaf! Postingan yang Anda balas telah dihapus." #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 @@ -7069,15 +7069,15 @@ msgstr "Maaf! Kami tidak dapat menemukan halaman yang Anda cari." #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 #~ msgid "We're sorry! You can only subscribe to ten labelers, and you've reached your limit of ten." -#~ msgstr "Maaf, Anda hanya dapat berlangganan sepuluh pelabel dan Anda telah mencapai batas tersebut." +#~ msgstr "" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." -msgstr "" +msgstr "Maaf! Anda hanya dapat berlangganan dua puluh pelabel, dan Anda telah mencapai batas tersebut." #: src/screens/Deactivated.tsx:128 msgid "Welcome back!" -msgstr "" +msgstr "Selamat datang kembali!" #: src/view/com/auth/onboarding/WelcomeMobile.tsx:48 #~ msgid "Welcome to <0>Bluesky" @@ -7085,7 +7085,7 @@ msgstr "" #: src/components/NewskieDialog.tsx:103 msgid "Welcome, friend!" -msgstr "" +msgstr "Selamat datang, kawan!" #: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" @@ -7093,7 +7093,7 @@ msgstr "Apa saja minat Anda?" #: src/screens/StarterPack/Wizard/StepDetails.tsx:42 msgid "What do you want to call your starter pack?" -msgstr "" +msgstr "Apa nama paket pemula Anda?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 @@ -7107,7 +7107,7 @@ msgstr "Bahasa apa yang digunakan di postingan ini?" #: src/view/com/modals/lang-settings/ContentLanguagesSettings.tsx:77 msgid "Which languages would you like to see in your algorithmic feeds?" -msgstr "Bahasa apa yang ingin Anda lihat di feed Anda?" +msgstr "Bahasa apa yang ingin Anda lihat di feed algoritmik Anda?" #: src/components/dms/MessagesNUX.tsx:110 #: src/components/dms/MessagesNUX.tsx:124 @@ -7120,11 +7120,11 @@ msgstr "Siapa yang dapat membalas" #: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" -msgstr "" +msgstr "Dialog siapa yang dapat membalas" #: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" -msgstr "" +msgstr "Siapa yang dapat membalas?" #: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 @@ -7153,7 +7153,7 @@ msgstr "Mengapa postingan ini perlu ditinjau?" #: src/components/ReportDialog/SelectReportOptionView.tsx:60 msgid "Why should this starter pack be reviewed?" -msgstr "" +msgstr "Mengapa paket pemula ini perlu ditinjau?" #: src/components/ReportDialog/SelectReportOptionView.tsx:48 msgid "Why should this user be reviewed?" @@ -7195,15 +7195,15 @@ msgstr "Ya" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:106 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:108 msgid "Yes, deactivate" -msgstr "" +msgstr "Ya, nonaktifkan" #: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" -msgstr "" +msgstr "Ya, hapus paket pemula ini" #: src/screens/Deactivated.tsx:150 msgid "Yes, reactivate my account" -msgstr "" +msgstr "Ya, aktifkan kembali akun saya" #: src/components/dms/MessageItem.tsx:188 msgid "Yesterday, {time}" @@ -7211,11 +7211,11 @@ msgstr "Kemarin, {time}" #: src/components/StarterPack/StarterPackCard.tsx:68 msgid "you" -msgstr "" +msgstr "Anda" #: src/components/NewskieDialog.tsx:43 msgid "You" -msgstr "" +msgstr "Anda" #: src/screens/SignupQueued.tsx:136 msgid "You are in line." @@ -7232,11 +7232,11 @@ msgstr "Anda juga bisa menemukan Feed Kustom baru untuk diikuti." #: src/view/com/modals/DeleteAccount.tsx:202 msgid "You can also temporarily deactivate your account instead, and reactivate it at any time." -msgstr "" +msgstr "Anda juga dapat menonaktifkan akun untuk sementara, dan mengaktifkannya kembali kapan saja." #: src/screens/Onboarding/StepFollowingFeed.tsx:143 #~ msgid "You can change these settings later." -#~ msgstr "Anda dapat mengubah pengaturan ini nanti." +#~ msgstr "" #: src/components/dms/MessagesNUX.tsx:119 msgid "You can change this at any time." @@ -7244,7 +7244,7 @@ msgstr "Anda dapat mengubah ini kapan saja." #: src/screens/Messages/Settings.tsx:111 msgid "You can continue ongoing conversations regardless of which setting you choose." -msgstr "" +msgstr "Anda dapat melanjutkan percakapan yang sedang berlangsung terlepas dari pengaturan mana yang Anda pilih." #: src/screens/Login/index.tsx:158 #: src/screens/Login/PasswordUpdatedForm.tsx:33 @@ -7253,7 +7253,7 @@ msgstr "Sekarang Anda dapat masuk dengan kata sandi baru." #: src/screens/Deactivated.tsx:136 msgid "You can reactivate your account to continue logging in. Your profile and posts will be visible to other users." -msgstr "" +msgstr "Anda dapat mengaktifkan kembali akun Anda untuk melanjutkan masuk. Profil dan postingan Anda akan terlihat oleh pengguna lain." #: src/view/com/profile/ProfileFollowers.tsx:86 msgid "You do not have any followers." @@ -7261,7 +7261,7 @@ msgstr "Anda tidak memiliki pengikut." #: src/screens/Profile/KnownFollowers.tsx:99 msgid "You don't follow any users who follow @{name}." -msgstr "" +msgstr "Anda tidak mengikuti satu pun pengguna yang mengikuti @{name}." #: src/view/com/modals/InviteCodes.tsx:67 msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." @@ -7319,16 +7319,16 @@ msgstr "Anda telah membisukan pengguna ini" #: src/screens/Messages/List/index.tsx:225 msgid "You have no conversations yet. Start one!" -msgstr "Anda belum melakukan percakapan. Mulai sekarang!" +msgstr "Anda belum memiliki percakapan. Mulai sekarang!" #: src/view/com/feeds/ProfileFeedgens.tsx:137 msgid "You have no feeds." -msgstr "Anda tidak punya feed." +msgstr "Anda tidak memiliki feed." #: src/view/com/lists/MyLists.tsx:90 #: src/view/com/lists/ProfileLists.tsx:144 msgid "You have no lists." -msgstr "Anda tidak punya daftar." +msgstr "Anda tidak memiliki daftar." #: src/screens/Messages/List/index.tsx:200 #~ msgid "You have no messages yet. Start a conversation with someone!" @@ -7352,7 +7352,7 @@ msgstr "Anda telah mencapai akhir" #: src/components/StarterPack/ProfileStarterPacks.tsx:235 msgid "You haven't created a starter pack yet!" -msgstr "" +msgstr "Anda belum membuat paket pemula!" #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" @@ -7364,15 +7364,15 @@ msgstr "Anda dapat mengajukan banding atas label non-mandiri jika Anda merasa la #: src/components/moderation/LabelsOnMeDialog.tsx:91 msgid "You may appeal these labels if you feel they were placed in error." -msgstr "Anda dapat mengajukan banding atas label ini jika Anda merasa label tersebut ditempatkan secara tidak tepat." +msgstr "Anda dapat mengajukan banding atas label berikut jika Anda merasa label tersebut ditempatkan secara tidak tepat." #: src/screens/StarterPack/Wizard/State.tsx:92 msgid "You may only add up to 50 feeds" -msgstr "" +msgstr "Anda hanya boleh menambahkan maksimal 50 feed" #: src/screens/StarterPack/Wizard/State.tsx:77 msgid "You may only add up to 50 profiles" -msgstr "" +msgstr "Anda hanya boleh menambahkan maksimal 50 profil" #: src/screens/Signup/StepInfo/Policies.tsx:79 msgid "You must be 13 years of age or older to sign up." @@ -7380,19 +7380,19 @@ msgstr "Anda harus berusia 13 tahun atau lebih untuk mendaftar." #: src/screens/Onboarding/StepModeration/AdultContentEnabledPref.tsx:110 #~ msgid "You must be 18 years or older to enable adult content" -#~ msgstr "Anda harus berusia 18 tahun atau lebih untuk mengaktifkan konten dewasa" +#~ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." -msgstr "" +msgstr "Anda harus mengikuti setidaknya tujuh orang sebelum membuat paket pemula." #: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" -msgstr "" +msgstr "Anda harus memberikan akses ke pustaka foto Anda untuk menyimpan kode QR" #: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." -msgstr "" +msgstr "Anda harus memberikan akses ke pustaka foto Anda untuk menyimpan gambar ini." #: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" @@ -7400,7 +7400,7 @@ msgstr "Anda harus memilih setidaknya satu pelabel untuk sebuah laporan" #: src/screens/Deactivated.tsx:131 msgid "You previously deactivated @{0}." -msgstr "" +msgstr "Anda telah menonaktifkan @{0} sebelumnya." #: src/view/com/util/forms/PostDropdownBtn.tsx:174 msgid "You will no longer receive notifications for this thread" @@ -7420,35 +7420,35 @@ msgstr "Anda: {0}" #: src/screens/Messages/List/ChatListItem.tsx:143 msgid "You: {defaultEmbeddedContentMessage}" -msgstr "" +msgstr "Anda: {defaultEmbeddedContentMessage}" #: src/screens/Messages/List/ChatListItem.tsx:136 msgid "You: {short}" -msgstr "" +msgstr "Anda: {short}" #: src/screens/Signup/index.tsx:169 msgid "You'll follow the suggested users and feeds once you finish creating your account!" -msgstr "" +msgstr "Anda akan mengikuti pengguna dan feed yang disarankan setelah selesai membuat akun!" #: src/screens/Signup/index.tsx:174 msgid "You'll follow the suggested users once you finish creating your account!" -msgstr "" +msgstr "Anda akan mengikuti pengguna yang disarankan setelah selesai membuat akun!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" -msgstr "" +msgstr "Anda akan mengikuti pengguna ini dan {0} lainnya" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" -msgstr "" +msgstr "Anda akan otomatis mengikuti para pengguna ini" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" -msgstr "" +msgstr "Dapatkan informasi terbaru melalui feed berikut" #: src/screens/Onboarding/StepModeration/index.tsx:60 #~ msgid "You're in control" -#~ msgstr "Anda memiliki kendali" +#~ msgstr "" #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:94 @@ -7459,7 +7459,7 @@ msgstr "Anda sedang dalam antrian" #: src/screens/Deactivated.tsx:89 #: src/screens/Settings/components/DeactivateAccountDialog.tsx:54 msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." -msgstr "" +msgstr "Anda masuk menggunakan Sandi Aplikasi. Mohon gunakan kata sandi utama untuk melanjutkan penonaktifan akun Anda." #: src/screens/Onboarding/StepFinished.tsx:228 msgid "You're ready to go!" @@ -7472,7 +7472,7 @@ msgstr "Anda telah memilih untuk menyembunyikan kata atau tagar dalam postingan #: src/view/com/posts/FollowingEndOfFeed.tsx:44 msgid "You've reached the end of your feed! Find some more accounts to follow." -msgstr "Anda telah mencapai akhir feed Anda! Temukan beberapa akun lain untuk diikuti." +msgstr "Anda telah mencapai bagian akhir feed! Temukan lebih banyak akun lain untuk diikuti." #: src/screens/Signup/index.tsx:202 msgid "Your account" @@ -7500,7 +7500,7 @@ msgstr "Pilihan Anda akan disimpan, tetapi dapat diubah nanti di pengaturan." #: src/screens/Onboarding/StepFollowingFeed.tsx:62 #~ msgid "Your default feed is \"Following\"" -#~ msgstr "Feed bawaan Anda adalah \"Mengikuti\"" +#~ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:57 #: src/screens/Signup/state.ts:220 @@ -7522,11 +7522,11 @@ msgstr "Feed mengikuti Anda kosong! Ikuti lebih banyak pengguna untuk melihat ap #: src/screens/Signup/StepHandle.tsx:73 msgid "Your full handle will be" -msgstr "Handle lengkap Anda akan menjadi" +msgstr "Panggilan lengkap Anda akan menjadi" #: src/view/com/modals/ChangeHandle.tsx:265 msgid "Your full handle will be <0>@{0}" -msgstr "Handle lengkap Anda akan menjadi <0>@{0}" +msgstr "Panggilan lengkap Anda akan menjadi <0>@{0}" #: src/components/dialogs/MutedWords.tsx:220 msgid "Your muted words" @@ -7550,7 +7550,7 @@ msgstr "Profil Anda" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:75 msgid "Your profile, posts, feeds, and lists will no longer be visible to other Bluesky users. You can reactivate your account at any time by logging in." -msgstr "" +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 msgid "Your reply has been published" @@ -7562,4 +7562,5 @@ msgstr "Laporan Anda akan dikirim ke Layanan Moderasi Bluesky" #: src/screens/Signup/index.tsx:204 msgid "Your user handle" -msgstr "Handle Anda" +msgstr "Panggilan Anda" + From b10a2b9a8e44cc7b3ec1dac1df57b359c70217ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ivan=20Be=C3=A0?= Date: Fri, 5 Jul 2024 21:28:29 +0200 Subject: [PATCH 084/153] Update catalan (#4702) * Update catalan New lines added, new lines localized. Check it please @jordimas @darccio @surfdude29 * Update src/locale/locales/ca/messages.po Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> * Update src/locale/locales/ca/messages.po Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> * Update src/locale/locales/ca/messages.po Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> * Update src/locale/locales/ca/messages.po Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> * Update src/locale/locales/ca/messages.po Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> * Update messages.po Apply @surfdude29 corrections --------- Co-authored-by: surfdude29 <149612116+surfdude29@users.noreply.github.com> --- src/locale/locales/ca/messages.po | 332 +++++++++++++++--------------- 1 file changed, 166 insertions(+), 166 deletions(-) diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po index fca5b6e89b..a26c437e96 100644 --- a/src/locale/locales/ca/messages.po +++ b/src/locale/locales/ca/messages.po @@ -105,11 +105,11 @@ msgstr "{0, plural, one {Desmarca m'agrada (# like)} other {Desmarca m'agrada (# #: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 msgid "{0} joined this week" -msgstr "" +msgstr "{0} s'han unit aquesta setmana" #: src/screens/StarterPack/StarterPackScreen.tsx:378 msgid "{0} people have used this starter pack!" -msgstr "" +msgstr "{0} persones han utilitzat aquest starter pack" #: src/view/screens/ProfileList.tsx:286 #~ msgid "{0} your feeds" @@ -121,11 +121,11 @@ msgstr "Avatar de {0}" #: src/screens/StarterPack/Wizard/StepDetails.tsx:68 msgid "{0}'s favorite feeds and people - join me!" -msgstr "" +msgstr "Els canals i les persones preferits de {0}: uneix-te a mi!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:47 msgid "{0}'s starter pack" -msgstr "" +msgstr "Starter pack de {0}" #: src/components/LabelingServiceCard/index.tsx:71 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" @@ -133,27 +133,27 @@ msgstr "{count, plural, one {Li ha agradat a # user} other {Li ha agradat a # us #: src/lib/hooks/useTimeAgo.ts:69 msgid "{diff, plural, one {day} other {days}}" -msgstr "" +msgstr "{diff, plural, one {dia} other {dies}}" #: src/lib/hooks/useTimeAgo.ts:64 msgid "{diff, plural, one {hour} other {hours}}" -msgstr "" +msgstr "{diff, plural, one {hora} other {hores}}" #: src/lib/hooks/useTimeAgo.ts:59 msgid "{diff, plural, one {minute} other {minutes}}" -msgstr "" +msgstr "{diff, plural, one {minut} other {minuts}}" #: src/lib/hooks/useTimeAgo.ts:75 msgid "{diff, plural, one {month} other {months}}" -msgstr "" +msgstr "{diff, plural, one {mes} other {mesos}}" #: src/lib/hooks/useTimeAgo.ts:54 msgid "{diffSeconds, plural, one {second} other {seconds}}" -msgstr "" +msgstr "{diffSeconds, plural, one {segon} other {segons}}" #: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" -msgstr "" +msgstr "Starter Pack de {displayName}" #: src/screens/SignupQueued.tsx:207 msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" @@ -202,11 +202,11 @@ msgstr "{numUnreadNotifications} no llegides" #: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" -msgstr "" +msgstr "{profileName} s'uní a Bluesky fa {0}" #: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" -msgstr "" +msgstr "{profileName} s'uní a Bluesky amb un starter pack, fa {0}" #: 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}}" @@ -218,21 +218,21 @@ msgstr "<0/> membres" #: src/screens/StarterPack/Wizard/index.tsx:485 #~ msgid "<0>{0} and<1> <2>{1} are included in your starter pack" -#~ msgstr "" +#~ msgstr "<0>{0} i<1> <2>{1} estan inclosos al teu starter pack" #: 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}, i {2, plural, one {# altre} other {# altres}} estan inclosos al teu starter pack" #: 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 "" +msgstr "<0>{0}, <1>{1}, i {2, plural, one {# altre} other {# altres}} estan inclosos al teu starter pack" #: 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}, i {2} {3, plural, one {altre} other {altres}} estan inclosos al teu starter pack" #: src/view/shell/Drawer.tsx:101 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -244,7 +244,7 @@ msgstr "<0>{0} {1, plural, one {seguint} other {seguint}}" #: src/screens/StarterPack/Wizard/index.tsx:507 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" -msgstr "" +msgstr "<0>{0} i<1> <2>{1} estan inclosos al teu starter pack" #: src/view/shell/Drawer.tsx:96 #~ msgid "<0>{0} following" @@ -252,7 +252,7 @@ msgstr "" #: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" -msgstr "" +msgstr "<0>{0} està inclòs al teu starter pack" #: src/components/ProfileHoverCard/index.web.tsx:437 #~ msgid "<0>{followers} <1>{pluralizedFollowers}" @@ -281,7 +281,7 @@ msgstr "<0>No aplicable. Aquesta advertència només està disponible per pu #: src/screens/StarterPack/Wizard/index.tsx:457 msgid "<0>You and<1> <2>{0} are included in your starter pack" -msgstr "" +msgstr "<0>Tu i<1> <2>{0} esteu inclosos al teu starter pack" #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" @@ -383,11 +383,11 @@ msgstr "Afegeix" #: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" -msgstr "" +msgstr "Afegeix-ne {0} més per a continuar" #: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" -msgstr "" +msgstr "Afegeix {displayName} al teu starter pack" #: src/view/com/modals/SelfLabel.tsx:57 msgid "Add a content warning" @@ -458,7 +458,7 @@ msgstr "Afegeix els canals recomanats" #: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" -msgstr "" +msgstr "Afegiu alguns canals al teu starter pack" #: src/screens/Feeds/NoFollowingFeed.tsx:41 msgid "Add the default feed of only people you follow" @@ -470,7 +470,7 @@ msgstr "Afegeix el següent registre DNS al teu domini:" #: src/components/FeedCard.tsx:305 msgid "Add this feed to your feeds" -msgstr "" +msgstr "Afegeix aquest canal als teus canals" #: src/view/com/profile/ProfileMenu.tsx:267 #: src/view/com/profile/ProfileMenu.tsx:270 @@ -509,7 +509,7 @@ msgstr "Contingut per a adults" #: src/screens/Moderation/index.tsx:356 msgid "Adult content can only be enabled via the Web at <0>bsky.app." -msgstr "" +msgstr "El contingut per a adults només es pot activar a través del web a <0>bsky.app." #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." @@ -522,7 +522,7 @@ msgstr "Avançat" #: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" -msgstr "" +msgstr "S'han seguit tots els comptes!" #: src/view/screens/Feeds.tsx:721 msgid "All the feeds you've saved, right in one place." @@ -587,16 +587,16 @@ msgstr "Hi ha hagut un error" #: src/components/StarterPack/ProfileStarterPacks.tsx:315 msgid "An error occurred while generating your starter pack. Want to try again?" -msgstr "" +msgstr "S'ha produït un error en generar el teu starter pack. Vols tornar-ho a provar?" #: src/components/StarterPack/ShareDialog.tsx:79 #~ msgid "An error occurred while saving the image." -#~ msgstr "" +#~ msgstr "S'ha produït un error en desar la imatge." #: src/components/StarterPack/QrCodeDialog.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" -msgstr "" +msgstr "S'ha produït un error en desar el codi QR!" #: src/components/dms/MessageMenu.tsx:134 #~ msgid "An error occurred while trying to delete the message. Please try again." @@ -604,7 +604,7 @@ msgstr "" #: src/screens/StarterPack/StarterPackScreen.tsx:303 msgid "An error occurred while trying to follow all" -msgstr "" +msgstr "S'ha produït un error en intentar seguir-ho tot" #: src/lib/moderation/useReportOptions.ts:28 msgid "An issue not included in these options" @@ -723,7 +723,7 @@ msgstr "Aplica els canals recomanats per defecte" #: src/screens/StarterPack/StarterPackScreen.tsx:532 msgid "Are you sure you want delete this starter pack?" -msgstr "" +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}\"?" @@ -751,7 +751,7 @@ msgstr "Confirmes que vols eliminar {0} dels teus canals?" #: src/components/FeedCard.tsx:322 msgid "Are you sure you want to remove this from your feeds?" -msgstr "" +msgstr "Segur que vols eliminar-ho dels teus canals?" #: src/view/com/composer/Composer.tsx:649 msgid "Are you sure you'd like to discard this draft?" @@ -930,7 +930,7 @@ msgstr "Bluesky és una xarxa oberta on pots escollir el teu proveïdor d'allotj #: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." -msgstr "" +msgstr "Bluesky triarà un conjunt de comptes recomanats de les persones de la teva xarxa." #: 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." @@ -1188,15 +1188,15 @@ msgstr "Comprova el teu correu per a rebre el codi de confirmació i entra'l aqu #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" -msgstr "" +msgstr "Tria els canals" #: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" -msgstr "" +msgstr "Tria per mi" #: src/screens/StarterPack/Wizard/index.tsx:187 msgid "Choose People" -msgstr "" +msgstr "Tria les persones" #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" @@ -1218,7 +1218,7 @@ msgstr "Tria aquest color com el teu avatar" #: src/components/dialogs/ThreadgateEditor.tsx:91 #: src/components/dialogs/ThreadgateEditor.tsx:95 msgid "Choose who can reply" -msgstr "" +msgstr "Tria qui pot respondre" #: src/screens/Onboarding/StepAlgoFeeds/index.tsx:104 #~ msgid "Choose your main feeds" @@ -1537,7 +1537,7 @@ msgstr "Continua com a {0} (sessió actual)" #: src/view/com/post-thread/PostThreadLoadMore.tsx:52 msgid "Continue thread..." -msgstr "" +msgstr "Continua el fil..." #: src/screens/Onboarding/StepInterests/index.tsx:255 #: src/screens/Onboarding/StepProfile/index.tsx:266 @@ -1603,11 +1603,11 @@ msgstr "Copia el codi" #: src/components/StarterPack/ShareDialog.tsx:123 msgid "Copy link" -msgstr "" +msgstr "Copia l'enllaç" #: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" -msgstr "" +msgstr "Copia l'enllaç" #: src/view/screens/ProfileList.tsx:428 msgid "Copy link to list" @@ -1634,7 +1634,7 @@ msgstr "Copia el text de la publicació" #: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" -msgstr "" +msgstr "Copia el codi QR" #: src/Navigation.tsx:261 #: src/view/screens/CopyrightPolicy.tsx:29 @@ -1671,7 +1671,7 @@ msgstr "No s'ha pogut silenciar el xat" #: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" -msgstr "" +msgstr "Crea" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 @@ -1684,17 +1684,17 @@ msgstr "Crea un nou compte de Bluesky" #: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" -msgstr "" +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:330 msgid "Create a starter pack" -msgstr "" +msgstr "Crea un starter pack" #: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" -msgstr "" +msgstr "Crea un starter pack per a mi" #: src/screens/Signup/index.tsx:154 msgid "Create Account" @@ -1711,7 +1711,7 @@ msgstr "Enlloc d'això, crea un avatar" #: src/components/StarterPack/ProfileStarterPacks.tsx:172 msgid "Create another" -msgstr "" +msgstr "Crea'n un altre" #: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" @@ -1724,7 +1724,7 @@ msgstr "Crea un nou compte" #: src/components/StarterPack/ShareDialog.tsx:158 #~ msgid "Create QR code" -#~ msgstr "" +#~ msgstr "Crea codi QR" #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" @@ -1878,11 +1878,11 @@ msgstr "Elimina la publicació" #: src/screens/StarterPack/StarterPackScreen.tsx:478 #: src/screens/StarterPack/StarterPackScreen.tsx:634 msgid "Delete starter pack" -msgstr "" +msgstr "Elimina l'starter pack" #: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Delete starter pack?" -msgstr "" +msgstr "Vols eliminar l'starter pack?" #: src/view/screens/ProfileList.tsx:662 msgid "Delete this list?" @@ -1996,7 +1996,7 @@ msgstr "Descobreix nous canals" #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" -msgstr "" +msgstr "Mostra insígnies de text alternatiu més grans" #: src/view/com/modals/EditProfile.tsx:193 msgid "Display name" @@ -2069,7 +2069,7 @@ msgstr "Fet{extraText}" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 msgid "Download Bluesky" -msgstr "" +msgstr "Descarrega Bluesky" #: src/view/screens/Settings/index.tsx:755 #~ msgid "Download Bluesky account data (repository)" @@ -2134,7 +2134,7 @@ msgstr "Cada codi funciona un cop. Rebràs més codis d'invitació periòdicamen #: src/view/screens/Feeds.tsx:385 #: src/view/screens/Feeds.tsx:453 msgid "Edit" -msgstr "" +msgstr "Edita" #: src/view/com/lists/ListMembers.tsx:149 msgctxt "action" @@ -2148,7 +2148,7 @@ msgstr "Edita l'avatar" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" -msgstr "" +msgstr "Edita els canals" #: src/view/com/composer/photos/Gallery.tsx:151 #: src/view/com/modals/EditImage.tsx:208 @@ -2176,7 +2176,7 @@ msgstr "Edita el meu perfil" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" -msgstr "" +msgstr "Edita les persones" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 @@ -2195,7 +2195,7 @@ msgstr "Edita el perfil" #: src/screens/StarterPack/StarterPackScreen.tsx:465 msgid "Edit starter pack" -msgstr "" +msgstr "Edita l'starter pack" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -2203,7 +2203,7 @@ msgstr "Edita la llista d'usuaris" #: src/components/WhoCanReply.tsx:127 msgid "Edit who can reply" -msgstr "" +msgstr "Edita qui pot respondre" #: src/view/com/modals/EditProfile.tsx:194 msgid "Edit your display name" @@ -2215,7 +2215,7 @@ msgstr "Edita la descripció del teu perfil" #: src/Navigation.tsx:335 msgid "Edit your starter pack" -msgstr "" +msgstr "Edita el teu starter pack" #: src/screens/Onboarding/index.tsx:31 #: src/screens/Onboarding/state.ts:86 @@ -2224,7 +2224,7 @@ msgstr "Ensenyament" #: src/components/dialogs/ThreadgateEditor.tsx:98 msgid "Either choose \"Everybody\" or \"Nobody\"" -msgstr "" +msgstr "Tria \"Tothom\" o \"Ningú\"" #: src/screens/Signup/StepInfo/index.tsx:80 #: src/view/com/modals/ChangeEmail.tsx:136 @@ -2505,7 +2505,7 @@ msgstr "No s'ha pogut crear la contrasenya d'aplicació." #: src/screens/StarterPack/Wizard/index.tsx:230 #: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" -msgstr "" +msgstr "No s'ha pogut crear l'starter pack" #: src/view/com/modals/CreateOrEditList.tsx:194 msgid "Failed to create the list. Check your internet connection and try again." @@ -2521,12 +2521,12 @@ msgstr "No s'ha pogut esborrar la publicació, torna-ho a provar" #: src/screens/StarterPack/StarterPackScreen.tsx:597 msgid "Failed to delete starter pack" -msgstr "" +msgstr "No s'ha pogut eliminar l'starter pack" #: src/view/screens/Search/Explore.tsx:426 #: src/view/screens/Search/Explore.tsx:454 msgid "Failed to load feeds preferences" -msgstr "" +msgstr "No s'han pogut carregar les preferències dels canals" #: src/components/dialogs/GifSelect.ios.tsx:196 #: src/components/dialogs/GifSelect.tsx:212 @@ -2549,11 +2549,11 @@ msgstr "No s'han pogut carregar els missatges anteriors" #: src/view/screens/Search/Explore.tsx:419 #: src/view/screens/Search/Explore.tsx:447 msgid "Failed to load suggested feeds" -msgstr "" +msgstr "No s'han pogut carregar els canals suggerits" #: src/view/screens/Search/Explore.tsx:377 msgid "Failed to load suggested follows" -msgstr "" +msgstr "No s'han pogut carregar els comptes suggerits" #: src/view/com/lightbox/Lightbox.tsx:86 msgid "Failed to save image: {0}" @@ -2574,11 +2574,11 @@ msgstr "No s'ha pogut enviar l'apel·lació, torna-ho a provar." #: src/view/com/util/forms/PostDropdownBtn.tsx:180 msgid "Failed to toggle thread mute, please try again" -msgstr "" +msgstr "No s'ha pogut desactivar el silenci del fil; torneu-ho a provar" #: src/components/FeedCard.tsx:285 msgid "Failed to update feeds" -msgstr "" +msgstr "No s'han pogut actualitzar els canals" #: src/components/dms/MessagesNUX.tsx:60 #: src/screens/Messages/Settings.tsx:35 @@ -2604,7 +2604,7 @@ msgstr "Canal per {0}" #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" -msgstr "" +msgstr "Alterna el canal" #: src/view/shell/desktop/RightNav.tsx:66 #: src/view/shell/Drawer.tsx:345 @@ -2636,7 +2636,7 @@ msgstr "Els canals són algoritmes personalitzats creats per usuaris que coneixe #: src/components/FeedCard.tsx:282 msgid "Feeds updated!" -msgstr "" +msgstr "Canals actualitzats!" #: src/view/com/modals/ChangeHandle.tsx:475 msgid "File Contents" @@ -2690,7 +2690,7 @@ msgstr "Ajusta els fils de debat." #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" -msgstr "" +msgstr "Finalitza" #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" @@ -2739,7 +2739,7 @@ msgstr "Segueix el compte" #: src/screens/StarterPack/StarterPackScreen.tsx:345 #: src/screens/StarterPack/StarterPackScreen.tsx:352 msgid "Follow all" -msgstr "" +msgstr "Segueix-los a tots" #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:187 #~ msgid "Follow All" @@ -2751,7 +2751,7 @@ msgstr "Segueix" #: src/view/screens/Search/Explore.tsx:333 msgid "Follow more accounts to get connected to your interests and build your network." -msgstr "" +msgstr "Segueix més comptes per connectar-te als teus interessos i construir la teva xarxa." #: src/screens/Onboarding/StepSuggestedAccounts/index.tsx:182 #~ msgid "Follow selected accounts and continue to the next step" @@ -2763,7 +2763,7 @@ msgstr "" #: src/components/KnownFollowers.tsx:169 #~ msgid "Followed by" -#~ msgstr "" +#~ msgstr "Seguit per" #: src/view/com/profile/ProfileCard.tsx:227 msgid "Followed by {0}" @@ -2771,19 +2771,19 @@ msgstr "Seguit per {0}" #: src/components/KnownFollowers.tsx:223 msgid "Followed by <0>{0}" -msgstr "" +msgstr "Seguit per <0>{0}" #: src/components/KnownFollowers.tsx:209 msgid "Followed by <0>{0} and {1, plural, one {# other} other {# others}}" -msgstr "" +msgstr "Seguit per <0>{0} i {1, plural, one {# altre} other {# altres}}" #: src/components/KnownFollowers.tsx:196 msgid "Followed by <0>{0} and <1>{1}" -msgstr "" +msgstr "Seguit per <0>{0} i <1>{1}" #: src/components/KnownFollowers.tsx:178 msgid "Followed by <0>{0}, <1>{1}, and {2, plural, one {# other} other {# others}}" -msgstr "" +msgstr "Seguit per <0>{0}, <1>{1}, i {2, plural, one {# altre} other {# altres}}" #: src/components/dialogs/ThreadgateEditor.tsx:124 msgid "Followed users" @@ -2804,12 +2804,12 @@ msgstr "Seguidors" #: src/Navigation.tsx:179 msgid "Followers of @{0} that you know" -msgstr "" +msgstr "Seguidors de @{0} que coneixes" #: src/screens/Profile/KnownFollowers.tsx:108 #: src/screens/Profile/KnownFollowers.tsx:118 msgid "Followers you know" -msgstr "" +msgstr "Seguidors que coneixes" #: src/view/com/profile/ProfileHeader.tsx:624 #~ msgid "following" @@ -2905,7 +2905,7 @@ msgstr "Galeria" #: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" -msgstr "" +msgstr "Genera un starter pack" #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" @@ -2918,7 +2918,7 @@ msgstr "Comença" #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" -msgstr "" +msgstr "GIF" #: src/screens/Onboarding/StepProfile/index.tsx:225 msgid "Give your profile a face" @@ -2960,7 +2960,7 @@ msgstr "Ves al pas anterior" #: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" -msgstr "" +msgstr "Ves al pas anterior" #: src/view/screens/NotFound.tsx:55 msgid "Go home" @@ -3217,7 +3217,7 @@ msgstr "Text alternatiu de la imatge" #: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" -msgstr "" +msgstr "La imatge s'ha desat a la teva galeria!" #: src/lib/moderation/useReportOptions.ts:49 msgid "Impersonation or false claims about identity or affiliation" @@ -3338,15 +3338,15 @@ msgstr "Codis d'invitació: 1 disponible" #: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" -msgstr "" +msgstr "Convida a gent a aquest starter pack!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:35 msgid "Invite your friends to follow your favorite feeds and people" -msgstr "" +msgstr "Convida els teus amics a seguir els teus canals i persones preferides" #: src/screens/StarterPack/Wizard/StepDetails.tsx:32 msgid "Invites, but personal" -msgstr "" +msgstr "Convida a Bluesky de manera més personalitzada" #: src/screens/Onboarding/StepFollowingFeed.tsx:65 #~ msgid "It shows posts from the people you follow as they happen." @@ -3354,7 +3354,7 @@ 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 "Ara només ets tu! Afegeix més persones al teu starter pack cercant a dalt." #: src/view/com/auth/SplashScreen.web.tsx:157 msgid "Jobs" @@ -3363,11 +3363,11 @@ msgstr "Feines" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 msgid "Join Bluesky" -msgstr "" +msgstr "Uneix-te a Bluesky" #: src/components/StarterPack/QrCode.tsx:56 msgid "Join the conversation" -msgstr "" +msgstr "Uneix-te a la conversa" #: src/view/com/modals/Waitlist.tsx:67 #~ msgid "Join the waitlist" @@ -3506,7 +3506,7 @@ msgstr "L'emmagatzematge heretat s'ha esborrat, cal que reinicieu l'aplicació a #: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" -msgstr "" +msgstr "Deixa'm triar" #: src/screens/Login/index.tsx:130 #: src/screens/Login/index.tsx:145 @@ -3633,7 +3633,7 @@ msgstr "Llistes que bloquegen aquest usuari:" #: src/view/screens/Search/Explore.tsx:130 msgid "Load more" -msgstr "" +msgstr "Carrega'n més" #: src/view/com/post-thread/PostThread.tsx:333 #: src/view/com/post-thread/PostThread.tsx:341 @@ -3642,11 +3642,11 @@ msgstr "" #: src/view/screens/Search/Explore.tsx:218 msgid "Load more suggested feeds" -msgstr "" +msgstr "Carrega més canals suggerits" #: src/view/screens/Search/Explore.tsx:216 msgid "Load more suggested follows" -msgstr "" +msgstr "Carrega més suggerencies d'usuaris per seguir" #: src/view/screens/Notifications.tsx:184 msgid "Load new notifications" @@ -3720,7 +3720,7 @@ msgstr "Sembla que et falta el canal del Seguits. <0>Clica aquí per a afegir-ne #: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" -msgstr "" +msgstr "Fes-ne un per mi" #: src/view/com/modals/LinkWarning.tsx:79 msgid "Make sure this is where you intend to go!" @@ -3888,7 +3888,7 @@ msgstr "Respostes amb més m'agrada primer" #: src/screens/Onboarding/state.ts:90 msgid "Movies" -msgstr "" +msgstr "Pel·lícules" #: src/view/com/auth/create/Step2.tsx:122 #~ msgid "Must be at least 3 characters" @@ -4044,7 +4044,7 @@ msgstr "Natura" #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" -msgstr "" +msgstr "Vés a l'starter pack" #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 @@ -4139,7 +4139,7 @@ msgstr "Nova publicació" #: src/components/NewskieDialog.tsx:83 msgid "New user info dialog" -msgstr "" +msgstr "Diàleg d'informació d'usuari nou" #: src/view/com/modals/CreateOrEditList.tsx:236 msgid "New User List" @@ -4204,7 +4204,7 @@ msgstr "No s'han trobat GIF destacats. Pot haver-hi un problema amb Tenor." #: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." -msgstr "" +msgstr "No s'han trobat canals. Intenta cercar una altra cosa." #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" @@ -4235,7 +4235,7 @@ msgstr "Ningú" #: src/screens/Profile/Sections/Feed.tsx:59 msgid "No posts yet." -msgstr "" +msgstr "Encara no hi ha publicacions." #: src/view/com/composer/text-input/mobile/Autocomplete.tsx:101 #: src/view/com/composer/text-input/web/Autocomplete.tsx:195 @@ -4290,7 +4290,7 @@ msgstr "A ningú encara li ha agradat això. Potser hauries de ser el primer!" #: src/screens/StarterPack/Wizard/StepProfiles.tsx:103 msgid "Nobody was found. Try searching for someone else." -msgstr "" +msgstr "No s'ha trobat ningú. Intenta cercar algú altre." #: src/lib/moderation/useGlobalLabelStrings.ts:42 msgid "Non-sexual Nudity" @@ -4344,7 +4344,7 @@ msgstr "Notificacions" #: src/lib/hooks/useTimeAgo.ts:51 msgid "now" -msgstr "" +msgstr "ara" #: src/components/dms/MessageItem.tsx:175 msgid "Now" @@ -4394,11 +4394,11 @@ msgstr "Respostes més antigues primer" #: src/components/StarterPack/QrCode.tsx:69 msgid "on" -msgstr "" +msgstr "en" #: src/lib/hooks/useTimeAgo.ts:81 msgid "on {str}" -msgstr "" +msgstr "en {str}" #: src/view/screens/Settings/index.tsx:256 msgid "Onboarding reset" @@ -4414,7 +4414,7 @@ msgstr "Només s'accepten fitxers .jpg i .png" #: src/components/WhoCanReply.tsx:244 msgid "Only {0} can reply" -msgstr "" +msgstr "Només {0} pot respondre" #: src/view/com/threadgate/WhoCanReply.tsx:100 #~ msgid "Only {0} can reply." @@ -4492,7 +4492,7 @@ msgstr "Obre el menú de les opcions de publicació" #: src/screens/StarterPack/StarterPackScreen.tsx:451 msgid "Open starter pack menu" -msgstr "" +msgstr "Obre el menú de l'starter pack" #: src/view/screens/Settings/index.tsx:860 #: src/view/screens/Settings/index.tsx:870 @@ -4509,7 +4509,7 @@ msgstr "Obre {numItems} opcions" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 msgid "Opens a dialog to choose who can reply to this thread" -msgstr "" +msgstr "Obre un diàleg per triar qui pot respondre a aquest fil" #: src/view/screens/Settings/index.tsx:510 msgid "Opens accessibility settings" @@ -4767,7 +4767,7 @@ msgstr "S'ha denegat el permís per a accedir a la càmera. Activa'l a la config #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" -msgstr "" +msgstr "Canvi de persona" #: src/screens/Onboarding/index.tsx:28 #: src/screens/Onboarding/state.ts:93 @@ -4780,7 +4780,7 @@ msgstr "Mascotes" #: src/screens/Onboarding/state.ts:94 msgid "Photography" -msgstr "" +msgstr "Fotografia" #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." @@ -5019,7 +5019,7 @@ msgstr "Prem per a tornar-ho a provar" #: src/components/KnownFollowers.tsx:116 msgid "Press to view followers of this account that you also follow" -msgstr "" +msgstr "Prem per veure els seguidors d'aquest compte que també segueixes" #: src/view/com/lightbox/Lightbox.web.tsx:150 msgid "Previous image" @@ -5097,15 +5097,15 @@ msgstr "Publica la resposta" #: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" -msgstr "" +msgstr "Codi QR copiat en memòria!" #: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" -msgstr "" +msgstr "Codi QR descarregat!" #: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" -msgstr "" +msgstr "Codi QR desat a la teva galeria" #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 @@ -5186,7 +5186,7 @@ msgstr "Elimina" #: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" -msgstr "" +msgstr "Elimina a {displayName} de l'starter pack" #: src/view/com/util/AccountDropdownBtn.tsx:22 msgid "Remove account" @@ -5302,11 +5302,11 @@ msgstr "Respostes" #: src/components/WhoCanReply.tsx:71 msgid "Replies disabled" -msgstr "" +msgstr "Respostes deshabilitades" #: src/view/com/threadgate/WhoCanReply.tsx:123 #~ msgid "Replies on this thread are disabled" -#~ msgstr "" +#~ msgstr "Les respostes a aquest fil de debat estan deshabilitades" #: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" @@ -5336,7 +5336,7 @@ msgstr "Resposta a <0><1/>" #: src/view/com/posts/FeedItem.tsx:437 msgctxt "description" msgid "Reply to a blocked post" -msgstr "" +msgstr "Respon a una publicació bloquejada" #: src/components/dms/MessageMenu.tsx:132 #: src/components/dms/MessagesListBlockedFooter.tsx:77 @@ -5389,7 +5389,7 @@ msgstr "Informa de la publicació" #: src/screens/StarterPack/StarterPackScreen.tsx:504 #: src/screens/StarterPack/StarterPackScreen.tsx:507 msgid "Report starter pack" -msgstr "" +msgstr "Informa sobre l'starter pack" #: src/components/ReportDialog/SelectReportOptionView.tsx:43 msgid "Report this content" @@ -5415,7 +5415,7 @@ msgstr "Informa d'aquesta publicació" #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this starter pack" -msgstr "" +msgstr "Informa sobre aquest starter pack" #: src/components/ReportDialog/SelectReportOptionView.tsx:47 msgid "Report this user" @@ -5624,7 +5624,7 @@ msgstr "Desa el canvi d'identificador" #: src/components/StarterPack/ShareDialog.tsx:150 #: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" -msgstr "" +msgstr "Desa la imatge" #: src/view/com/modals/crop-image/CropImage.web.tsx:169 msgid "Save image crop" @@ -5632,7 +5632,7 @@ msgstr "Desa la imatge retallada" #: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" -msgstr "" +msgstr "Desa el codi QR" #: src/view/screens/ProfileFeed.tsx:333 #: src/view/screens/ProfileFeed.tsx:339 @@ -5728,7 +5728,7 @@ msgstr "Cerca totes les publicacions amb l'etiqueta {displayTag}" #: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." -msgstr "" +msgstr "Cerca canals que vulgueu suggerir als altres." #: src/components/dms/NewChat.tsx:226 #~ msgid "Search for someone to start a conversation with." @@ -6153,7 +6153,7 @@ msgstr "Comparteix el canal" #: src/components/StarterPack/ShareDialog.tsx:130 #: src/screens/StarterPack/StarterPackScreen.tsx:497 msgid "Share link" -msgstr "" +msgstr "Comparteix l'enllaç" #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 @@ -6162,20 +6162,20 @@ msgstr "Comparteix l'enllaç" #: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" -msgstr "" +msgstr "Diàleg de compartició de l'enllaç" #: src/components/StarterPack/ShareDialog.tsx:134 #: src/components/StarterPack/ShareDialog.tsx:145 msgid "Share QR code" -msgstr "" +msgstr "Comparteix el codi QR" #: src/screens/StarterPack/StarterPackScreen.tsx:333 msgid "Share this starter pack" -msgstr "" +msgstr "Comparteix aquets starter pack" #: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." -msgstr "" +msgstr "Comparteix aquets starter pack i ajuda a la gent de la teva comunitat a unir-se a Bluesky." #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" @@ -6403,7 +6403,7 @@ msgstr "S'ha iniciat sessió com a @{0}" #: src/view/com/notifications/FeedItem.tsx:197 msgid "signed up with your starter pack" -msgstr "" +msgstr "s'ha registrat amb el vostre starter pack" #: src/view/com/modals/SwitchAccount.tsx:70 #~ msgid "Signs {0} out of Bluesky" @@ -6412,7 +6412,7 @@ msgstr "" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 #: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 msgid "Signup without a starter pack" -msgstr "" +msgstr "S'ha registrat sense cap starter pack" #: src/screens/Onboarding/StepInterests/index.tsx:245 #: src/screens/StarterPack/Wizard/index.tsx:192 @@ -6439,7 +6439,7 @@ msgstr "Algunes persones poden respondre" #: src/screens/StarterPack/Wizard/index.tsx:203 #~ msgid "Some subtitle" -#~ msgstr "" +#~ msgstr "Algun subtítol" #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" @@ -6527,23 +6527,23 @@ msgstr "Comença a xatejar" #: src/Navigation.tsx:325 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" -msgstr "" +msgstr "Starter pack" #: src/components/StarterPack/StarterPackCard.tsx:65 msgid "Starter pack by {0}" -msgstr "" +msgstr "Starter pack de {0}" #: src/screens/StarterPack/StarterPackScreen.tsx:614 msgid "Starter pack is invalid" -msgstr "" +msgstr "Aquest starter pack és invàlid" #: src/view/screens/Profile.tsx:214 msgid "Starter Packs" -msgstr "" +msgstr "Starter packs" #: src/components/StarterPack/ProfileStarterPacks.tsx:238 msgid "Starter packs let you easily share your favorite feeds and people with your friends." -msgstr "" +msgstr "Els starter packs et permeten compartir els teus canals i persones preferides amb els teus amics." #: src/view/screens/Settings/index.tsx:862 #~ msgid "Status page" @@ -6608,7 +6608,7 @@ msgstr "Subscriure's a la llista" #: src/view/screens/Search/Explore.tsx:331 msgid "Suggested accounts" -msgstr "" +msgstr "Comptes suggerits" #: src/view/screens/Search/Search.tsx:425 #~ msgid "Suggested Follows" @@ -6684,7 +6684,7 @@ msgstr "Explica un acudit!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" -msgstr "" +msgstr "Explica'ns una mica més" #: src/view/shell/desktop/RightNav.tsx:86 msgid "Terms" @@ -6732,7 +6732,7 @@ msgstr "Aquest identificador ja està agafat." #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." -msgstr "" +msgstr "No s'ha pogut trobar aquest starter pack." #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 #: src/view/com/profile/ProfileMenu.tsx:353 @@ -6753,7 +6753,7 @@ msgstr "La política de drets d'autoria ha estat traslladada a <0/>" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." -msgstr "" +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 msgid "The feed has been replaced with Discover." @@ -6782,7 +6782,7 @@ msgstr "La política de privacitat ha estat traslladada a <0/>" #: src/screens/StarterPack/StarterPackScreen.tsx:624 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." -msgstr "" +msgstr "L'starter pack que estàs provant de veure no és vàlid. En lloc d'això, podeu suprimir-lo." #: src/view/screens/Support.tsx:36 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." @@ -6966,7 +6966,7 @@ msgstr "Aquest contingut no es pot veure sense un compte de Bluesky." #: src/screens/Messages/List/ChatListItem.tsx:213 msgid "This conversation is with a deleted or a deactivated account. Press for options." -msgstr "" +msgstr "Aquesta conversa és amb un compte suprimit o desactivat. Prem per obtenir opcions." #: src/view/screens/Settings/ExportCarDialog.tsx:75 #~ msgid "This feature is in beta. You can read more about repository exports in <0>this blogpost." @@ -6994,7 +6994,7 @@ msgstr "Aquest canal està buit! Necessites seguir més usuaris o modificar la t #: src/view/screens/ProfileFeed.tsx:473 #: src/view/screens/ProfileList.tsx:729 msgid "This feed is empty." -msgstr "" +msgstr "Aquest canal és buit." #: src/view/com/posts/FeedShutdownMsg.tsx:97 msgid "This feed is no longer online. We are showing <0>Discover instead." @@ -7116,7 +7116,7 @@ msgstr "Aquest usuari està inclòs a la llista <0>{0} que has silenciat." #: src/components/NewskieDialog.tsx:65 msgid "This user is new here. Press for more info about when they joined." -msgstr "" +msgstr "Aquest usuari és nou aquí. Prem per obtenir més informació sobre quan es van unir." #: src/view/com/profile/ProfileFollows.tsx:87 msgid "This user isn't following anyone." @@ -7145,7 +7145,7 @@ msgstr "Preferències dels fils de debat" #: src/components/WhoCanReply.tsx:109 msgid "Thread settings updated" -msgstr "" +msgstr "Preferències dels fils de debat actualitzades" #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" @@ -7208,7 +7208,7 @@ msgstr "Torna-ho a provar" #: src/screens/Onboarding/state.ts:99 msgid "TV" -msgstr "" +msgstr "TV" #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" @@ -7241,7 +7241,7 @@ msgstr "No es pot contactar amb el teu servei. Comprova la teva connexió a inte #: src/screens/StarterPack/StarterPackScreen.tsx:548 msgid "Unable to delete" -msgstr "" +msgstr "No s'ha pogut eliminar" #: src/components/dms/MessagesListBlockedFooter.tsx:89 #: src/components/dms/MessagesListBlockedFooter.tsx:96 @@ -7619,7 +7619,7 @@ msgstr "Veure el perfil de {0}" #: src/components/ProfileHoverCard/index.web.tsx:430 msgid "View blocked user's profile" -msgstr "" +msgstr "Veure el perfil de l'usuari bloquejat" #: src/view/screens/Log.tsx:56 msgid "View debug entry" @@ -7664,7 +7664,7 @@ msgstr "Veure els usuaris a qui els agrada aquest canal" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 #: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 msgid "View your feeds and explore more" -msgstr "" +msgstr "Veure el teus canals i descobreix-ne més" #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 @@ -7763,7 +7763,7 @@ msgstr "Ens sap greu, però la teva cerca no s'ha pogut fer. Prova-ho d'aquí un #: src/view/com/composer/Composer.tsx:335 msgid "We're sorry! The post you are replying to has been deleted." -msgstr "" +msgstr "Ho sentim! La publicació a la qual estàs responent s'ha suprimit." #: src/components/Lists.tsx:212 #: src/view/screens/NotFound.tsx:48 @@ -7776,7 +7776,7 @@ msgstr "Ens sap greu! No podem trobar la pàgina que estàs cercant." #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:330 msgid "We're sorry! You can only subscribe to twenty labelers, and you've reached your limit of twenty." -msgstr "" +msgstr "Ho sentim! Només pots subscriure't a vint etiquetadors i has arribat al teu límit de vint." #: src/screens/Deactivated.tsx:128 msgid "Welcome back!" @@ -7788,7 +7788,7 @@ msgstr "Bentornat!" #: src/components/NewskieDialog.tsx:103 msgid "Welcome, friend!" -msgstr "" +msgstr "Benvingut, col·lega!" #: src/screens/Onboarding/StepInterests/index.tsx:140 msgid "What are your interests?" @@ -7796,7 +7796,7 @@ msgstr "Quins són els teus interessos?" #: src/screens/StarterPack/Wizard/StepDetails.tsx:42 msgid "What do you want to call your starter pack?" -msgstr "" +msgstr "Com vols anomenar al teu starter pack?" #: src/view/com/modals/report/Modal.tsx:169 #~ msgid "What is the issue with this {collectionName}?" @@ -7830,11 +7830,11 @@ msgstr "Qui hi pot respondre" #: src/components/WhoCanReply.tsx:211 msgid "Who can reply dialog" -msgstr "" +msgstr "Diàleg de qui pot respondre" #: src/components/WhoCanReply.tsx:215 msgid "Who can reply?" -msgstr "" +msgstr "Qui pot respondre?" #: src/screens/Home/NoFeedsPinned.tsx:79 #: src/screens/Messages/List/index.tsx:185 @@ -7863,7 +7863,7 @@ msgstr "Per què s'hauria de revisar aquesta publicació?" #: src/components/ReportDialog/SelectReportOptionView.tsx:60 msgid "Why should this starter pack be reviewed?" -msgstr "" +msgstr "Per què s'hauria de revisar aquest starter pack?" #: src/components/ReportDialog/SelectReportOptionView.tsx:48 msgid "Why should this user be reviewed?" @@ -7913,7 +7913,7 @@ msgstr "Sí, desactiva'l" #: src/screens/StarterPack/StarterPackScreen.tsx:560 msgid "Yes, delete this starter pack" -msgstr "" +msgstr "Sí, elimina aquest starter pack" #: src/screens/Deactivated.tsx:150 msgid "Yes, reactivate my account" @@ -7925,11 +7925,11 @@ msgstr "Ahir, {time}" #: src/components/StarterPack/StarterPackCard.tsx:68 msgid "you" -msgstr "" +msgstr "tu" #: src/components/NewskieDialog.tsx:43 msgid "You" -msgstr "" +msgstr "Tu" #: src/screens/SignupQueued.tsx:136 msgid "You are in line." @@ -7979,7 +7979,7 @@ msgstr "No tens cap seguidor." #: src/screens/Profile/KnownFollowers.tsx:99 msgid "You don't follow any users who follow @{name}." -msgstr "" +msgstr "No segueixes cap usuari que segueixi @{name}." #: src/view/com/modals/InviteCodes.tsx:67 msgid "You don't have any invite codes yet! We'll send you some when you've been on Bluesky for a little longer." @@ -8082,7 +8082,7 @@ msgstr "Has arribat al final" #: src/components/StarterPack/ProfileStarterPacks.tsx:235 msgid "You haven't created a starter pack yet!" -msgstr "" +msgstr "Encara no has creat cap starter pack!" #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" @@ -8098,11 +8098,11 @@ msgstr "Pots apel·lar aquestes etiquetes si creus que s'han col·locat per erro #: src/screens/StarterPack/Wizard/State.tsx:92 msgid "You may only add up to 50 feeds" -msgstr "" +msgstr "Només pots afegir 50 canals" #: src/screens/StarterPack/Wizard/State.tsx:77 msgid "You may only add up to 50 profiles" -msgstr "" +msgstr "Només pots afegir 50 perfils" #: src/screens/Signup/StepInfo/Policies.tsx:79 msgid "You must be 13 years of age or older to sign up." @@ -8118,15 +8118,15 @@ msgstr "Has de tenir 13 anys o més per a registrar-te" #: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." -msgstr "" +msgstr "Has de seguir almenys set persones més per generar un starter pack." #: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" -msgstr "" +msgstr "Has de concedir accés a la teva galeria per desar un codi QR" #: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." -msgstr "" +msgstr "Has de concedir accés a la teva galeria per desar la imatge." #: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" @@ -8162,23 +8162,23 @@ msgstr "Tu: {short}" #: src/screens/Signup/index.tsx:169 msgid "You'll follow the suggested users and feeds once you finish creating your account!" -msgstr "" +msgstr "Seguiràs els usuaris i els canals suggerits un cop hagis acabat de crear el teu compte!" #: src/screens/Signup/index.tsx:174 msgid "You'll follow the suggested users once you finish creating your account!" -msgstr "" +msgstr "Seguiràs els usuaris suggerits un cop hagis acabat de crear el teu compte!" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 msgid "You'll follow these people and {0} others" -msgstr "" +msgstr "Seguiràs aquestes persones i {0} altres" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 msgid "You'll follow these people right away" -msgstr "" +msgstr "Seguiràs a aquesta gent de seguida" #: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 msgid "You'll stay updated with these feeds" -msgstr "" +msgstr "Estaràs al dia amb aquests canals" #: src/screens/Onboarding/StepModeration/index.tsx:60 #~ msgid "You're in control" From adcd066733e31b0cf96b375b52f162ae584e3776 Mon Sep 17 00:00:00 2001 From: Kuwa Lee Date: Sat, 6 Jul 2024 03:28:50 +0800 Subject: [PATCH 085/153] Update Chinese Localization (#4695) * CN: Update translates * CN: Remove superseded strings * CN: Update translates * CN: Run intl:extract * CN: Remove superseded strings * CN: Optimize translation of starter pack * CN: Run intl:extract * CN: Remove superseded strings * CN: Update translates * CN: fix typo * CN: Optimize Translations * CN: hot fix * TW: Update * TW: Update and clean * CN: hot fix * BOTH: commit as LF * Update src/locale/locales/zh-TW/messages.po Co-authored-by: cirx <133132480+cirx1e@users.noreply.github.com> * Update src/locale/locales/zh-TW/messages.po Co-authored-by: cirx <133132480+cirx1e@users.noreply.github.com> * Update src/locale/locales/zh-TW/messages.po Co-authored-by: cirx <133132480+cirx1e@users.noreply.github.com> * Update src/locale/locales/zh-TW/messages.po Co-authored-by: cirx <133132480+cirx1e@users.noreply.github.com> * Update src/locale/locales/zh-TW/messages.po Co-authored-by: cirx <133132480+cirx1e@users.noreply.github.com> * Update src/locale/locales/zh-TW/messages.po Co-authored-by: cirx <133132480+cirx1e@users.noreply.github.com> * TW: Apply suggestions Co-authored-by: cirx <133132480+cirx1e@users.noreply.github.com> * Update src/locale/locales/zh-CN/messages.po * CN: Update translates * CN: Update translates * TW: Update and clean --------- Co-authored-by: Frudrax Cheng Co-authored-by: cirx <133132480+cirx1e@users.noreply.github.com> --- src/locale/locales/zh-CN/messages.po | 1225 ++++++++++++++------------ src/locale/locales/zh-TW/messages.po | 1221 +++++++++++++------------ 2 files changed, 1352 insertions(+), 1094 deletions(-) diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po index 71120c8d4f..1310e56ff3 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-06-20 16:34+0800\n" +"PO-Revision-Date: 2024-07-04 14:49+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:283 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {其他 {formattedCount} 人} other {其他 {formattedCount} 人}}" @@ -47,7 +47,7 @@ msgstr "{0, plural, one {关注者} other {关注者}}" msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {正在关注} other {正在关注}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:259 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {喜欢 (# 个喜欢)} other {喜欢 (# 个喜欢)}}" @@ -55,7 +55,7 @@ msgstr "{0, plural, one {喜欢 (# 个喜欢)} other {喜欢 (# 个喜欢)}}" msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {喜欢} other {喜欢}}" -#: src/components/FeedCard.tsx:216 +#: 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 {# 位用户喜欢}}" @@ -64,7 +64,7 @@ msgstr "{0, plural, one {# 位用户喜欢} other {# 位用户喜欢}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {帖文} other {帖文}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:217 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {回复 (# 个回复)} other {回复 (# 个回复)}}" @@ -72,29 +72,29 @@ msgstr "{0, plural, one {回复 (# 个回复)} other {回复 (# 个回复)}}" msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {转发} other {转发}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:262 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {取消喜欢 (# 个喜欢)} other {取消喜欢 (# 个喜欢)}}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" -msgstr "" +msgstr "在本周加入了 {0} 人" -#: src/screens/StarterPack/StarterPackScreen.tsx:378 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" -msgstr "" +msgstr "{0} 人已使用过此入门包!" #: src/view/com/util/UserAvatar.tsx:419 msgid "{0}'s avatar" -msgstr "{0} 的头像" +msgstr "{0}的头像" #: src/screens/StarterPack/Wizard/StepDetails.tsx:68 msgid "{0}'s favorite feeds and people - join me!" -msgstr "" +msgstr "{0}最喜欢的资讯源和用户 - 来加入我们吧!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:47 msgid "{0}'s starter pack" -msgstr "" +msgstr "{0}的入门包" #: src/components/LabelingServiceCard/index.tsx:71 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" @@ -122,7 +122,7 @@ msgstr "{diffSeconds, plural, one {秒} other {秒}}" #: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" -msgstr "" +msgstr "{displayName} 的入门包" #: src/screens/SignupQueued.tsx:207 msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" @@ -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:503 +#: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} 个正在关注" @@ -157,7 +157,7 @@ msgstr "{profileName} 在 {0} 前加入了 Bluesky" #: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" -msgstr "" +msgstr "{profileName} 在 {0} 前使用入门包加入了 Bluesky" #: 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}}" @@ -167,23 +167,15 @@ msgstr "{value, plural, =0 {显示所有回复} one {显示至少含有 # 个喜 msgid "<0/> members" msgstr "<0/> 个成员" -#: 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}及{2, plural, one {其他 # } other {其他 # }}人包含在你的入门包中" #: 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}及{2, plural, one {其他 # } other {其他 # }}个资讯源包含在你的入门包中" #: src/view/shell/Drawer.tsx:101 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -195,11 +187,11 @@ msgstr "<0>{0} {1, plural, one {正在关注} other {正在关注}}" #: src/screens/StarterPack/Wizard/index.tsx:507 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" -msgstr "" +msgstr "<0>{0} 以及<1><2>{1} 包含在你的入门包中" #: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" -msgstr "" +msgstr "<0>{0} 包含在你的入门包中" #: src/view/com/modals/SelfLabel.tsx:135 msgid "<0>Not Applicable. This warning is only available for posts with media attached." @@ -207,16 +199,20 @@ msgstr "<0>不适用。 这个警告仅适用于附加媒体内容的帖文 #: src/screens/StarterPack/Wizard/index.tsx:457 msgid "<0>You and<1> <2>{0} are included in your starter pack" -msgstr "" +msgstr "<0>你以及<1> <2>{0} 包含在你的入门包中" #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠无效的用户识别符" -#: src/screens/Login/LoginForm.tsx:247 +#: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" msgstr "两步验证" +#: src/tours/Tooltip.tsx:70 +msgid "A help tooltip" +msgstr "帮助工具提示" + #: src/view/com/util/ViewHeader.tsx:93 #: src/view/screens/Search/Search.tsx:684 msgid "Access navigation links and settings" @@ -227,22 +223,22 @@ msgid "Access profile and other navigation links" msgstr "访问个人资料及其他导航链接" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:518 +#: src/view/screens/Settings/index.tsx:519 msgid "Accessibility" msgstr "无障碍" -#: src/view/screens/Settings/index.tsx:509 +#: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" msgstr "无障碍设置" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "无障碍设置" -#: src/screens/Login/LoginForm.tsx:170 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:190 +#: src/view/screens/Settings/index.tsx:346 +#: src/view/screens/Settings/index.tsx:753 msgid "Account" msgstr "账户" @@ -297,11 +293,11 @@ msgstr "添加" #: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" -msgstr "" +msgstr "添加 {0} 个以继续" #: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" -msgstr "" +msgstr "添加 {displayName} 至入门包" #: src/view/com/modals/SelfLabel.tsx:57 msgid "Add a content warning" @@ -313,8 +309,8 @@ msgstr "将用户添加至列表" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:422 -#: src/view/screens/Settings/index.tsx:431 +#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:432 msgid "Add account" msgstr "添加账户" @@ -341,17 +337,13 @@ msgstr "为配置的设置添加隐藏词汇" msgid "Add muted words and tags" msgstr "添加隐藏词和标签" -#: src/screens/StarterPack/Wizard/index.tsx:197 -#~ msgid "Add people to your starter pack that you think others will enjoy following" -#~ msgstr "" - #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "添加推荐的资讯源" #: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" -msgstr "" +msgstr "添加一些推荐的资讯源到你的入门包中!" #: src/screens/Feeds/NoFollowingFeed.tsx:41 msgid "Add the default feed of only people you follow" @@ -361,7 +353,7 @@ msgstr "添加默认的资讯源(仅显示你关注的人)" msgid "Add the following DNS record to your domain:" msgstr "将以下 DNS 记录新增到你的域名:" -#: src/components/FeedCard.tsx:305 +#: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" msgstr "添加此资讯源到你的自定义资讯源列表" @@ -394,22 +386,26 @@ msgstr "成人内容" #: src/screens/Moderation/index.tsx:356 msgid "Adult content can only be enabled via the Web at <0>bsky.app." -msgstr "" +msgstr "成人内容显示仅可通过网页端(<0>bsky.app)启用。" #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "成人内容显示已被禁用。" #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Advanced" msgstr "详细设置" -#: src/screens/StarterPack/StarterPackScreen.tsx:301 -msgid "All accounts have been followed!" -msgstr "" +#: src/state/shell/progress-guide.tsx:177 +msgid "Algorithm training complete!" +msgstr "算法训练完成!" -#: src/view/screens/Feeds.tsx:721 +#: src/screens/StarterPack/StarterPackScreen.tsx:360 +msgid "All accounts have been followed!" +msgstr "已关注所有账户!" + +#: src/view/screens/Feeds.tsx:734 msgid "All the feeds you've saved, right in one place." msgstr "你保存的所有资讯源都集中在一处。" @@ -434,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:177 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 msgid "ALT" msgstr "ALT" @@ -444,7 +440,7 @@ msgstr "ALT" msgid "Alt text" msgstr "替代文本" -#: src/view/com/util/post-embeds/GifEmbed.tsx:183 +#: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" msgstr "替代文本" @@ -467,20 +463,16 @@ msgstr "发生错误" #: 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 "创建入门包时发生错误,重试?" #: src/components/StarterPack/QrCodeDialog.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" -msgstr "" +msgstr "保存二维码时发生错误!" -#: src/screens/StarterPack/StarterPackScreen.tsx:303 +#: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" -msgstr "" +msgstr "关注所有人时发生错误" #: src/lib/moderation/useReportOptions.ts:28 msgid "An issue not included in these options" @@ -488,6 +480,8 @@ msgstr "不在这些选项中的问题" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:294 +#: src/components/ProfileCard.tsx:306 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -495,12 +489,12 @@ msgstr "不在这些选项中的问题" msgid "An issue occurred, please try again." msgstr "出现问题,请重试。" -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" msgstr "出现未知错误" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:280 +#: src/view/com/notifications/FeedItem.tsx:291 msgid "and" msgstr "和" @@ -509,7 +503,7 @@ msgstr "和" msgid "Animals" msgstr "动物" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" msgstr "GIF 动画" @@ -533,13 +527,13 @@ msgstr "应用专用密码只能包含字母、数字、空格、破折号及下 msgid "App Password names must be at least 4 characters long." msgstr "应用专用密码必须至少为 4 个字符。" -#: src/view/screens/Settings/index.tsx:697 +#: src/view/screens/Settings/index.tsx:698 msgid "App password settings" msgstr "应用专用密码设置" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:269 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/view/screens/Settings/index.tsx:707 msgid "App Passwords" msgstr "应用专用密码" @@ -564,7 +558,7 @@ msgstr "申诉已提交" msgid "Appeal this decision" msgstr "对此结果提出申诉" -#: src/view/screens/Settings/index.tsx:439 +#: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "外观" @@ -573,9 +567,9 @@ msgstr "外观" msgid "Apply default recommended feeds" msgstr "使用默认推荐的资讯源" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Are you sure you want delete this starter pack?" -msgstr "" +msgstr "你确定要删除此入门包吗?" #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" @@ -593,7 +587,7 @@ msgstr "你确定要离开这个对话吗?此操作仅会在你的私信列表 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "你确定要从你的资讯源中删除 {0} 吗?" -#: src/components/FeedCard.tsx:322 +#: src/components/FeedCard.tsx:306 msgid "Are you sure you want to remove this from your feeds?" msgstr "你确定要从自定义资讯源列表中删除此资讯源吗?" @@ -618,7 +612,7 @@ msgstr "艺术" msgid "Artistic or non-erotic nudity." msgstr "艺术作品或非色情的裸体。" -#: src/screens/Signup/StepHandle.tsx:119 +#: src/screens/Signup/StepHandle.tsx:170 msgid "At least 3 characters" msgstr "至少 3 个字符" @@ -629,20 +623,21 @@ msgstr "至少 3 个字符" #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:278 -#: src/screens/Login/LoginForm.tsx:284 +#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:304 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/index.tsx:231 +#: 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:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "基础信息" @@ -650,7 +645,7 @@ msgstr "基础信息" msgid "Birthday" msgstr "生日" -#: src/view/screens/Settings/index.tsx:377 +#: src/view/screens/Settings/index.tsx:378 msgid "Birthday:" msgstr "生日:" @@ -694,7 +689,7 @@ msgstr "已屏蔽" msgid "Blocked accounts" msgstr "已屏蔽账户" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:145 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "已屏蔽账户" @@ -736,9 +731,13 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky 是一个开放的公共网络,你可以选择自己的托管提供商。现在,自定义托管现在已经进入开发者测试阶段。" +#: src/components/ProgressGuide/List.tsx:55 +msgid "Bluesky is better with friends!" +msgstr "Bluesky 因朋友而更好!" + #: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." -msgstr "" +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." @@ -757,6 +756,24 @@ msgstr "模糊化图片并从资讯源中过滤" msgid "Books" msgstr "书籍" +#: src/components/FeedInterstitials.tsx:209 +msgid "Browse more accounts on the Explore page" +msgstr "在探索页面浏览更多账户" + +#: src/components/FeedInterstitials.tsx:335 +msgid "Browse more feeds on the Explore page" +msgstr "在探索页面浏览更多资讯源" + +#: src/components/FeedInterstitials.tsx:198 +#: src/components/FeedInterstitials.tsx:324 +msgid "Browse more suggestions" +msgstr "浏览更多建议" + +#: src/components/FeedInterstitials.tsx:217 +#: src/components/FeedInterstitials.tsx:344 +msgid "Browse more suggestions on the Explore page" +msgstr "在探索页面浏览更多建议" + #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" @@ -867,17 +884,17 @@ msgstr "取消打开链接的网站" msgid "Change" msgstr "更改" -#: src/view/screens/Settings/index.tsx:371 +#: src/view/screens/Settings/index.tsx:372 msgctxt "action" msgid "Change" msgstr "更改" -#: src/view/screens/Settings/index.tsx:718 +#: src/view/screens/Settings/index.tsx:719 msgid "Change handle" msgstr "更改用户识别符" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change Handle" msgstr "更改用户识别符" @@ -885,12 +902,12 @@ msgstr "更改用户识别符" msgid "Change my email" msgstr "更改我的邮箱地址" -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/index.tsx:764 msgid "Change password" msgstr "更改密码" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Change Password" msgstr "更改密码" @@ -902,9 +919,9 @@ msgstr "更改帖文的发布语言至 {0}" msgid "Change Your Email" msgstr "更改你的邮箱地址" -#: src/Navigation.tsx:310 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:313 +#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" msgstr "私信" @@ -914,14 +931,14 @@ msgstr "已隐藏对话" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:318 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" msgstr "私信设置" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" msgstr "私信设置" @@ -934,7 +951,7 @@ msgstr "已解除隐藏对话" msgid "Check my status" msgstr "检查我的状态" -#: src/screens/Login/LoginForm.tsx:271 +#: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." msgstr "在这里输入刚才发送到你电子邮箱里的验证码。" @@ -942,27 +959,31 @@ msgstr "在这里输入刚才发送到你电子邮箱里的验证码。" msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "查看发送至你电子邮箱的确认邮件,并在下方输入收到的验证码:" -#: src/view/com/modals/Threadgate.tsx:75 -#~ msgid "Choose \"Everybody\" or \"Nobody\"" -#~ msgstr "选择 \"所有人\" 或是 \"没有人\"" +#: src/screens/Onboarding/StepInterests/index.tsx:190 +msgid "Choose 3 or more:" +msgstr "选择至少 3 个或更多:" + +#: src/screens/Onboarding/StepInterests/index.tsx:325 +msgid "Choose at least {0} more" +msgstr "还需选择至少 {0} 个" #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" -msgstr "" +msgstr "选择资讯源" #: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" -msgstr "" +msgstr "为我做选择" #: src/screens/StarterPack/Wizard/index.tsx:187 msgid "Choose People" -msgstr "" +msgstr "选择用户" #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "选择服务" -#: src/screens/Onboarding/StepFinished.tsx:273 +#: src/screens/Onboarding/StepFinished.tsx:281 msgid "Choose the algorithms that power your custom feeds." msgstr "选择支持你的自定义资讯源的算法。" @@ -973,25 +994,25 @@ msgstr "选择这个颜色作为你的头像" #: src/components/dialogs/ThreadgateEditor.tsx:91 #: src/components/dialogs/ThreadgateEditor.tsx:95 msgid "Choose who can reply" -msgstr "" +msgstr "选择谁可以回复" -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" msgstr "选择你的密码" -#: src/view/screens/Settings/index.tsx:910 +#: src/view/screens/Settings/index.tsx:911 msgid "Clear all legacy storage data" msgstr "清除所有旧存储数据" -#: src/view/screens/Settings/index.tsx:913 +#: src/view/screens/Settings/index.tsx:914 msgid "Clear all legacy storage data (restart after this)" msgstr "清除所有旧存储数据(并重启)" -#: src/view/screens/Settings/index.tsx:922 +#: src/view/screens/Settings/index.tsx:923 msgid "Clear all storage data" msgstr "清除所有数据" -#: src/view/screens/Settings/index.tsx:925 +#: src/view/screens/Settings/index.tsx:926 msgid "Clear all storage data (restart after this)" msgstr "清除所有数据(并重启)" @@ -1000,11 +1021,11 @@ msgstr "清除所有数据(并重启)" msgid "Clear search query" msgstr "清除搜索历史记录" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" msgstr "清除所有旧版存储数据" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" msgstr "清除所有数据" @@ -1045,7 +1066,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:189 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "Close" msgstr "关闭" @@ -1108,11 +1129,11 @@ msgstr "关闭帖文编辑页并丢弃草稿" msgid "Closes viewer for header image" msgstr "关闭标题图片查看器" -#: src/view/com/notifications/FeedItem.tsx:226 +#: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" msgstr "折叠用户列表" -#: src/view/com/notifications/FeedItem.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:437 msgid "Collapses list of users for a given notification" msgstr "折叠给定通知的用户列表" @@ -1126,16 +1147,16 @@ msgstr "喜剧" msgid "Comics" msgstr "漫画" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:259 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "社群准则" -#: src/screens/Onboarding/StepFinished.tsx:286 +#: src/screens/Onboarding/StepFinished.tsx:294 msgid "Complete onboarding and start using your account" msgstr "完成引导并开始使用你的账户" -#: src/screens/Signup/index.tsx:206 +#: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" msgstr "完成验证" @@ -1188,7 +1209,7 @@ msgstr "确认你的年龄:" msgid "Confirm your birthdate" msgstr "确认你的出生日期" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:272 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 @@ -1198,11 +1219,11 @@ msgstr "确认你的出生日期" msgid "Confirmation code" msgstr "验证码" -#: src/screens/Login/LoginForm.tsx:305 +#: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." msgstr "连接中..." -#: src/screens/Signup/index.tsx:276 +#: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "联系支持" @@ -1239,7 +1260,7 @@ msgstr "内容警告" msgid "Context menu backdrop, click to close the menu." msgstr "上下文菜单背景,点击关闭菜单。" -#: src/screens/Onboarding/StepInterests/index.tsx:258 +#: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "继续" @@ -1252,9 +1273,9 @@ msgstr "以 {0} 继续(已登录)" msgid "Continue thread..." msgstr "加载更多帖文串..." -#: src/screens/Onboarding/StepInterests/index.tsx:255 +#: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/index.tsx:251 +#: src/screens/Signup/BackNextButtons.tsx:59 msgid "Continue to next step" msgstr "继续下一步" @@ -1271,7 +1292,7 @@ msgstr "烹饪" msgid "Copied" msgstr "已复制" -#: src/view/screens/Settings/index.tsx:263 +#: src/view/screens/Settings/index.tsx:264 msgid "Copied build version to clipboard" msgstr "已复制构建版本号至剪贴板" @@ -1280,7 +1301,7 @@ msgstr "已复制构建版本号至剪贴板" #: 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/post-ctrls/PostCtrls.tsx:350 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "已复制至剪贴板" @@ -1308,11 +1329,11 @@ msgstr "复制代码" #: src/components/StarterPack/ShareDialog.tsx:123 msgid "Copy link" -msgstr "" +msgstr "复制链接" #: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" -msgstr "" +msgstr "复制链接" #: src/view/screens/ProfileList.tsx:428 msgid "Copy link to list" @@ -1335,9 +1356,9 @@ msgstr "复制帖文文字" #: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" -msgstr "" +msgstr "复制二维码" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "版权许可" @@ -1360,32 +1381,32 @@ msgstr "无法隐藏对话" #: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" -msgstr "" +msgstr "创建" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 msgid "Create a new account" msgstr "创建新的账户" -#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" msgstr "创建新的 Bluesky 账户" #: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" -msgstr "" +msgstr "为入门包创建二维码" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:338 msgid "Create a starter pack" -msgstr "" +msgstr "创建入门包" #: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" -msgstr "" +msgstr "为我创建入门包" -#: src/screens/Signup/index.tsx:154 +#: src/screens/Signup/index.tsx:88 msgid "Create Account" msgstr "创建账户" @@ -1400,7 +1421,7 @@ msgstr "创建一个头像" #: src/components/StarterPack/ProfileStarterPacks.tsx:172 msgid "Create another" -msgstr "" +msgstr "创建另外一个" #: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" @@ -1411,10 +1432,6 @@ msgstr "创建应用专用密码" msgid "Create new account" msgstr "创建新的账户" -#: src/components/StarterPack/ShareDialog.tsx:158 -#~ msgid "Create QR code" -#~ msgstr "" - #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" msgstr "创建 {0} 的举报" @@ -1437,7 +1454,7 @@ msgstr "自定义" msgid "Custom domain" msgstr "自定义域名" -#: src/view/screens/Feeds.tsx:747 +#: src/view/screens/Feeds.tsx:760 #: src/view/screens/Search/Explore.tsx:390 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "由社群构建的自定义资讯源能为你带来新的体验,并帮助你找到你喜欢的内容。" @@ -1446,8 +1463,8 @@ msgstr "由社群构建的自定义资讯源能为你带来新的体验,并帮 msgid "Customize media from external sites." msgstr "自定义外部站点的媒体。" -#: src/view/screens/Settings/index.tsx:458 -#: src/view/screens/Settings/index.tsx:484 +#: src/view/screens/Settings/index.tsx:459 +#: src/view/screens/Settings/index.tsx:485 msgid "Dark" msgstr "暗色" @@ -1455,24 +1472,24 @@ msgstr "暗色" msgid "Dark mode" msgstr "深色模式" -#: src/view/screens/Settings/index.tsx:471 +#: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" msgstr "深色模式" -#: src/screens/Signup/StepInfo/index.tsx:134 +#: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" msgstr "生日" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" msgstr "停用账户" -#: src/view/screens/Settings/index.tsx:818 +#: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" msgstr "停用我的账户" -#: src/view/screens/Settings/index.tsx:873 +#: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" msgstr "调试内容审核" @@ -1481,16 +1498,16 @@ msgid "Debug panel" msgstr "调试面板" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:484 -#: src/screens/StarterPack/StarterPackScreen.tsx:563 -#: src/screens/StarterPack/StarterPackScreen.tsx:643 +#: 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/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "删除" -#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:829 msgid "Delete account" msgstr "删除账户" @@ -1506,8 +1523,8 @@ msgstr "删除应用专用密码" msgid "Delete app password?" msgstr "删除应用专用密码?" -#: src/view/screens/Settings/index.tsx:890 -#: src/view/screens/Settings/index.tsx:893 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" msgstr "删除聊天记录" @@ -1531,7 +1548,7 @@ msgstr "为我删除私信" msgid "Delete my account" msgstr "删除我的账户" -#: src/view/screens/Settings/index.tsx:840 +#: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" msgstr "删除我的账户…" @@ -1540,14 +1557,14 @@ msgstr "删除我的账户…" msgid "Delete post" msgstr "删除帖文" -#: src/screens/StarterPack/StarterPackScreen.tsx:478 -#: src/screens/StarterPack/StarterPackScreen.tsx:634 +#: src/screens/StarterPack/StarterPackScreen.tsx:556 +#: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" -msgstr "" +msgstr "删除入门包" -#: src/screens/StarterPack/StarterPackScreen.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" -msgstr "" +msgstr "删除入门包?" #: src/view/screens/ProfileList.tsx:662 msgid "Delete this list?" @@ -1565,7 +1582,7 @@ msgstr "已删除" msgid "Deleted post." msgstr "已删除的帖文。" -#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" msgstr "删除聊天记录" @@ -1584,7 +1601,7 @@ msgstr "描述替代文本" msgid "Did you want to say anything?" msgstr "有什么想说的吗?" -#: src/view/screens/Settings/index.tsx:477 +#: src/view/screens/Settings/index.tsx:478 msgid "Dim" msgstr "暗淡" @@ -1626,6 +1643,10 @@ msgstr "丢弃草稿?" msgid "Discourage apps from showing my account to logged-out users" msgstr "阻止应用向未登录用户显示我的账户" +#: src/tours/HomeTour.tsx:70 +msgid "Discover learns which posts you like as you browse." +msgstr "\"Discover\" 会根据你的浏览喜好向你推荐帖文。" + #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -1635,10 +1656,14 @@ msgstr "探索新的自定义资讯源" msgid "Discover new feeds" msgstr "探索新的资讯源" -#: src/view/screens/Feeds.tsx:744 +#: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" msgstr "探索新的资讯源" +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "关闭入门指南" + #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" msgstr "显示更大的替代文本标签" @@ -1659,7 +1684,7 @@ msgstr "DNS 面板" msgid "Does not include nudity." msgstr "不包含裸露内容。" -#: src/screens/Signup/StepHandle.tsx:105 +#: src/screens/Signup/StepHandle.tsx:156 msgid "Doesn't begin or end with a hyphen" msgstr "不以连字符开头或结尾" @@ -1704,16 +1729,16 @@ msgstr "完成" msgid "Done{extraText}" msgstr "完成{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" -msgstr "" +msgstr "下载 Bluesky" #: src/view/screens/Settings/ExportCarDialog.tsx:77 #: src/view/screens/Settings/ExportCarDialog.tsx:81 msgid "Download CAR file" msgstr "下载 CAR 文件" -#: src/view/com/composer/text-input/TextInput.web.tsx:272 +#: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" msgstr "拖放即可新增图片" @@ -1757,11 +1782,11 @@ msgstr "例如:散布广告内容的用户。" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "每个邀请码仅可使用一次。你将不定期获得新的邀请码。" -#: src/screens/StarterPack/StarterPackScreen.tsx:473 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "编辑" @@ -1777,7 +1802,7 @@ msgstr "编辑头像" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" -msgstr "" +msgstr "编辑资讯源" #: src/view/com/composer/photos/Gallery.tsx:151 #: src/view/com/modals/EditImage.tsx:208 @@ -1792,9 +1817,9 @@ msgstr "编辑列表详情" msgid "Edit Moderation List" msgstr "编辑内容审核列表" -#: src/Navigation.tsx:271 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 +#: src/Navigation.tsx:274 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "编辑自定义资讯源" @@ -1805,7 +1830,7 @@ msgstr "编辑个人资料" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" -msgstr "" +msgstr "编辑用户" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 @@ -1817,9 +1842,9 @@ msgstr "编辑个人资料" msgid "Edit Profile" msgstr "编辑个人资料" -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" -msgstr "" +msgstr "编辑入门包" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1837,9 +1862,9 @@ msgstr "编辑你的显示名称" msgid "Edit your profile description" msgstr "编辑你的账户描述" -#: src/Navigation.tsx:335 +#: src/Navigation.tsx:343 msgid "Edit your starter pack" -msgstr "" +msgstr "编辑你的入门包" #: src/screens/Onboarding/index.tsx:31 #: src/screens/Onboarding/state.ts:86 @@ -1848,9 +1873,9 @@ msgstr "教育" #: src/components/dialogs/ThreadgateEditor.tsx:98 msgid "Either choose \"Everybody\" or \"Nobody\"" -msgstr "" +msgstr "选择 \"所有人\"或是\"没有人\"" -#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "电子邮箱" @@ -1876,7 +1901,7 @@ msgstr "电子邮箱已更新" msgid "Email verified" msgstr "电子邮箱已验证" -#: src/view/screens/Settings/index.tsx:349 +#: src/view/screens/Settings/index.tsx:350 msgid "Email:" msgstr "电子邮箱:" @@ -1929,6 +1954,10 @@ msgstr "已启用" msgid "End of feed" 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 "入门指南已结束,已没有进一步的选项。若仍需获取更多选项请返回上一步,或点按跳过。" + #: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "为这个应用专用密码命名" @@ -1963,7 +1992,7 @@ msgid "Enter your birth date" msgstr "输入你的出生日期" #: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:92 +#: src/screens/Signup/StepInfo/index.tsx:152 msgid "Enter your email address" msgstr "输入你的电子邮箱" @@ -1983,11 +2012,11 @@ msgstr "输入你的用户名和密码" msgid "Error occurred while saving file" msgstr "保存文件时发生错误" -#: src/screens/Signup/StepCaptcha/index.tsx:51 +#: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." msgstr "Captcha 响应错误。" -#: src/screens/Onboarding/StepInterests/index.tsx:197 +#: src/screens/Onboarding/StepInterests/index.tsx:216 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "错误:" @@ -2042,7 +2071,7 @@ msgstr "退出搜索查询输入" msgid "Expand alt text" msgstr "展开替代文本" -#: src/view/com/notifications/FeedItem.tsx:227 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" msgstr "展开用户列表" @@ -2059,12 +2088,12 @@ msgstr "明确或潜在引起不适的媒体内容。" msgid "Explicit sexual images." msgstr "明确的性暗示图片。" -#: src/view/screens/Settings/index.tsx:786 +#: src/view/screens/Settings/index.tsx:787 msgid "Export my data" msgstr "导出账户数据" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:797 +#: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" msgstr "导出账户数据" @@ -2078,13 +2107,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:290 +#: src/Navigation.tsx:293 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/view/screens/Settings/index.tsx:680 msgid "External Media Preferences" msgstr "外部媒体首选项" -#: src/view/screens/Settings/index.tsx:670 +#: src/view/screens/Settings/index.tsx:671 msgid "External media settings" msgstr "外部媒体设置" @@ -2096,7 +2125,7 @@ msgstr "创建应用专用密码失败。" #: src/screens/StarterPack/Wizard/index.tsx:230 #: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" -msgstr "" +msgstr "无法创建入门包" #: src/view/com/modals/CreateOrEditList.tsx:194 msgid "Failed to create the list. Check your internet connection and try again." @@ -2110,9 +2139,9 @@ msgstr "无法删除私信" msgid "Failed to delete post, please try again" msgstr "无法删除帖文,请重试" -#: src/screens/StarterPack/StarterPackScreen.tsx:597 +#: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" -msgstr "" +msgstr "无法删除入门包" #: src/view/screens/Search/Explore.tsx:426 #: src/view/screens/Search/Explore.tsx:454 @@ -2154,7 +2183,7 @@ msgstr "无法提交申诉,请再试一次。" msgid "Failed to toggle thread mute, please try again" msgstr "无法隐藏讨论串,请再试一次" -#: src/components/FeedCard.tsx:285 +#: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" msgstr "无法更新资讯源" @@ -2163,34 +2192,31 @@ msgstr "无法更新资讯源" msgid "Failed to update settings" msgstr "无法更新设置" -#: src/Navigation.tsx:211 +#: src/Navigation.tsx:214 msgid "Feed" msgstr "资讯源" -#: src/components/FeedCard.tsx:161 +#: src/components/FeedCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "由 {0} 创建的资讯源" -#: src/view/screens/Feeds.tsx:675 -#~ msgid "Feed offline" -#~ msgstr "资讯源已离线" - #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" -msgstr "" +msgstr "切换资讯源" -#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "反馈" -#: src/Navigation.tsx:320 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 +#: src/Navigation.tsx:323 +#: 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:373 +#: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" @@ -2200,7 +2226,7 @@ msgstr "资讯源" msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "创建资讯源仅需你掌握一点编程基础。<0/>以获取详情。" -#: src/components/FeedCard.tsx:282 +#: src/components/FeedCard.tsx:266 msgid "Feeds updated!" msgstr "资讯源已更新!" @@ -2216,7 +2242,7 @@ msgstr "文件保存成功!" msgid "Filter from feeds" msgstr "从资讯源中过滤" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 msgid "Finalizing" msgstr "最终确定" @@ -2226,6 +2252,10 @@ msgstr "最终确定" msgid "Find accounts to follow" msgstr "寻找一些账户关注" +#: src/tours/HomeTour.tsx:88 +msgid "Find more feeds and accounts to follow in the Explore page." +msgstr "在探索页面中寻找更多资讯源与账户关注。" + #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "在 Bluesky 寻找帖文和用户" @@ -2240,13 +2270,17 @@ msgstr "调整讨论主题。" #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" -msgstr "" +msgstr "完成" + +#: src/tours/Tooltip.tsx:149 +msgid "Finish tour and begin using the application" +msgstr "完成入门指南并开始使用应用程序" #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "健康" -#: src/screens/Onboarding/StepFinished.tsx:269 +#: src/screens/Onboarding/StepFinished.tsx:277 msgid "Flexible" msgstr "灵活" @@ -2259,6 +2293,8 @@ msgstr "水平翻转" msgid "Flip vertically" msgstr "垂直翻转" +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:318 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2281,15 +2317,19 @@ msgstr "关注 {0}" msgid "Follow {name}" msgstr "关注 {name}" +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "关注 7 个账户" + #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" msgstr "关注账户" -#: src/screens/StarterPack/StarterPackScreen.tsx:345 -#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:405 +#: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" -msgstr "" +msgstr "关注所有人" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 msgid "Follow Back" @@ -2297,9 +2337,9 @@ msgstr "回关" #: src/view/screens/Search/Explore.tsx:333 msgid "Follow more accounts to get connected to your interests and build your network." -msgstr "关注更多帐户以了解你的兴趣,并逐步建立你的社交网络。" +msgstr "关注更多账户以了解你的兴趣,并逐步建立你的社交网络。" -#: src/view/com/profile/ProfileCard.tsx:227 +#: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" msgstr "由 {0} 所关注" @@ -2327,16 +2367,20 @@ msgstr "已关注的用户" msgid "Followed users only" msgstr "仅限已关注的用户" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:197 msgid "followed you" msgstr "关注了你" +#: src/view/com/notifications/FeedItem.tsx:195 +msgid "followed you back" +msgstr "回关" + #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "关注者" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" msgstr "由你所认识的 @{0} 所关注" @@ -2345,12 +2389,14 @@ msgstr "由你所认识的 @{0} 所关注" msgid "Followers you know" msgstr "由你所认识的关注者" +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:312 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:630 +#: src/view/screens/Feeds.tsx:631 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" @@ -2364,21 +2410,25 @@ msgstr "已关注 {0}" msgid "Following {name}" msgstr "已关注 {name}" -#: src/view/screens/Settings/index.tsx:573 +#: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" msgstr "\"正在关注\"资讯源首选项" -#: src/Navigation.tsx:277 +#: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "Following Feed Preferences" msgstr "\"正在关注\"资讯源首选项" +#: src/tours/HomeTour.tsx:59 +msgid "Following shows the latest posts from people you follow." +msgstr "\"正在关注\"显示你已关注的账户所发布的最新帖文。" + #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "关注了你" -#: src/view/com/profile/ProfileCard.tsx:152 +#: src/components/Pills.tsx:165 msgid "Follows You" msgstr "关注了你" @@ -2400,11 +2450,11 @@ msgstr "出于安全原因,你将无法再次查看此内容。如果你丢失 msgid "Forgot Password" msgstr "忘记密码" -#: src/screens/Login/LoginForm.tsx:227 +#: src/screens/Login/LoginForm.tsx:246 msgid "Forgot password?" msgstr "忘记密码?" -#: src/screens/Login/LoginForm.tsx:238 +#: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" msgstr "忘记?" @@ -2427,7 +2477,7 @@ msgstr "相册" #: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" -msgstr "" +msgstr "创建一个入门包" #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" @@ -2436,7 +2486,11 @@ msgstr "开始吧" #: src/view/com/modals/VerifyEmail.tsx:197 #: src/view/com/modals/VerifyEmail.tsx:199 msgid "Get Started" -msgstr "开始" +msgstr "开始吧" + +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "开始吧" #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" @@ -2452,37 +2506,41 @@ msgstr "明显违反法律或服务条款" #: src/components/moderation/ScreenHider.tsx:151 #: src/components/moderation/ScreenHider.tsx:160 -#: src/view/com/auth/LoggedOut.tsx:78 -#: src/view/com/auth/LoggedOut.tsx:79 +#: src/view/com/auth/LoggedOut.tsx:80 +#: src/view/com/auth/LoggedOut.tsx:81 #: src/view/screens/NotFound.tsx:55 #: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "返回" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:656 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 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/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:225 +#: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" msgstr "返回上一步" #: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" -msgstr "" +msgstr "返回上一步" #: src/view/screens/NotFound.tsx:55 msgid "Go home" @@ -2505,6 +2563,10 @@ msgstr "前往下一步" msgid "Go to profile" msgstr "前往个人资料" +#: src/tours/Tooltip.tsx:138 +msgid "Go to the next step of the tour" +msgstr "前往入门指南的下一步" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "前往用户个人资料" @@ -2513,6 +2575,10 @@ msgstr "前往用户个人资料" msgid "Graphic Media" msgstr "图形媒体" +#: src/state/shell/progress-guide.tsx:167 +msgid "Half way there!" +msgstr "已经完成一半了!" + #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" msgstr "用户识别符" @@ -2525,19 +2591,19 @@ msgstr "触感" msgid "Harassment, trolling, or intolerance" msgstr "骚扰、恶作剧或其他无法容忍的行为" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:308 msgid "Hashtag" msgstr "标签" -#: src/components/RichText.tsx:216 +#: src/components/RichText.tsx:218 msgid "Hashtag: #{tag}" msgstr "标签:#{tag}" -#: src/screens/Signup/index.tsx:272 +#: src/screens/Signup/index.tsx:167 msgid "Having trouble?" msgstr "任何疑问?" -#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/desktop/RightNav.tsx:99 #: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "帮助" @@ -2561,7 +2627,7 @@ msgstr "这里是你的应用专用密码。" msgid "Hide" msgstr "隐藏" -#: src/view/com/notifications/FeedItem.tsx:433 +#: src/view/com/notifications/FeedItem.tsx:444 msgctxt "action" msgid "Hide" msgstr "隐藏" @@ -2580,7 +2646,7 @@ msgstr "隐藏内容" msgid "Hide this post?" msgstr "隐藏这条帖文?" -#: src/view/com/notifications/FeedItem.tsx:424 +#: src/view/com/notifications/FeedItem.tsx:435 msgid "Hide user list" msgstr "隐藏用户列表" @@ -2612,10 +2678,10 @@ msgstr "看起来在加载数据时遇到了问题,请查看下方获取更多 msgid "Hmmmm, we couldn't load that moderation service." msgstr "无法加载此内容审核提供服务。" -#: src/Navigation.tsx:511 -#: src/Navigation.tsx:531 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: src/Navigation.tsx:519 +#: src/Navigation.tsx:539 +#: 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 msgid "Home" @@ -2626,8 +2692,8 @@ msgid "Host:" msgstr "主机:" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:160 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:180 +#: src/screens/Signup/StepInfo/index.tsx:106 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "托管服务提供商" @@ -2697,7 +2763,7 @@ msgstr "图片替代文本" #: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" -msgstr "" +msgstr "图片已保存到你的照片图库!" #: src/lib/moderation/useReportOptions.ts:49 msgid "Impersonation or false claims about identity or affiliation" @@ -2727,19 +2793,15 @@ msgstr "输入新的密码" msgid "Input password for account deletion" msgstr "输入密码以删除账户" -#: src/screens/Login/LoginForm.tsx:266 +#: src/screens/Login/LoginForm.tsx:286 msgid "Input the code which has been emailed to you" msgstr "输入发送至你电子邮箱的验证码" -#: src/screens/Login/LoginForm.tsx:221 -msgid "Input the password tied to {identifier}" -msgstr "输入与 {identifier} 关联的密码" - -#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Login/LoginForm.tsx:215 msgid "Input the username or email address you used at signup" msgstr "输入注册时使用的用户名或电子邮箱" -#: src/screens/Login/LoginForm.tsx:220 +#: src/screens/Login/LoginForm.tsx:241 msgid "Input your password" msgstr "输入你的密码" @@ -2747,7 +2809,7 @@ msgstr "输入你的密码" msgid "Input your preferred hosting provider" msgstr "输入你首选的托管服务提供商" -#: src/screens/Signup/StepHandle.tsx:63 +#: src/screens/Signup/StepHandle.tsx:111 msgid "Input your user handle" msgstr "输入你的用户识别符" @@ -2755,7 +2817,7 @@ msgstr "输入你的用户识别符" msgid "Introducing Direct Messages" msgstr "介绍私信" -#: src/screens/Login/LoginForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:140 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "无效的两步验证码。" @@ -2764,7 +2826,7 @@ msgstr "无效的两步验证码。" msgid "Invalid or unsupported post record" msgstr "帖文记录无效或不受支持" -#: src/screens/Login/LoginForm.tsx:140 +#: src/screens/Login/LoginForm.tsx:145 msgid "Invalid username or password" msgstr "用户名或密码无效" @@ -2772,11 +2834,11 @@ msgstr "用户名或密码无效" msgid "Invite a Friend" msgstr "邀请朋友" -#: src/screens/Signup/StepInfo/index.tsx:58 +#: src/screens/Signup/StepInfo/index.tsx:124 msgid "Invite code" msgstr "邀请码" -#: src/screens/Signup/state.ts:275 +#: src/screens/Signup/state.ts:251 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "邀请码无效,请检查你输入的邀请码并重试。" @@ -2790,32 +2852,34 @@ msgstr "邀请码:1 个可用" #: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" -msgstr "" +msgstr "邀请朋友使用此入门包!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:35 msgid "Invite your friends to follow your favorite feeds and people" -msgstr "" +msgstr "邀请你的朋友关注你喜欢的资讯源和用户" #: src/screens/StarterPack/Wizard/StepDetails.tsx:32 msgid "Invites, but personal" -msgstr "" +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:200 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackScreen.tsx:432 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" -msgstr "" +msgstr "加入 Bluesky" #: src/components/StarterPack/QrCode.tsx:56 msgid "Join the conversation" -msgstr "" +msgstr "加入对话" #: src/screens/Onboarding/index.tsx:21 #: src/screens/Onboarding/state.ts:89 @@ -2850,16 +2914,16 @@ msgstr "你内容上的标记" msgid "Language selection" msgstr "选择语言" -#: src/view/screens/Settings/index.tsx:530 +#: src/view/screens/Settings/index.tsx:531 msgid "Language settings" msgstr "语言设置" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:155 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "语言设置" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Languages" msgstr "语言" @@ -2919,35 +2983,45 @@ msgstr "离开 Bluesky" msgid "left to go." msgstr "个人排在你前面。" -#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:309 msgid "Legacy storage cleared, you need to restart the app now." msgstr "旧存储数据已清除,你需要立即重新启动应用。" #: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" -msgstr "" +msgstr "自定义" #: src/screens/Login/index.tsx:130 #: src/screens/Login/index.tsx:145 msgid "Let's get your password reset!" msgstr "让我们来重置你的密码!" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 +#: src/tours/Tooltip.tsx:151 msgid "Let's go!" msgstr "让我们开始!" -#: src/view/screens/Settings/index.tsx:452 +#: src/view/screens/Settings/index.tsx:453 msgid "Light" msgstr "亮色" +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "喜欢 10 条帖文" + +#: src/state/shell/progress-guide.tsx:163 +#: src/state/shell/progress-guide.tsx:168 +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 msgid "Like this feed" msgstr "喜欢这个资讯源" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:216 -#: src/Navigation.tsx:221 +#: src/Navigation.tsx:219 +#: src/Navigation.tsx:224 msgid "Liked by" msgstr "喜欢" @@ -2957,11 +3031,11 @@ msgstr "喜欢" msgid "Liked By" msgstr "喜欢" -#: src/view/com/notifications/FeedItem.tsx:190 +#: src/view/com/notifications/FeedItem.tsx:201 msgid "liked your custom feed" msgstr "喜欢了你的自定义资讯源" -#: src/view/com/notifications/FeedItem.tsx:182 +#: src/view/com/notifications/FeedItem.tsx:185 msgid "liked your post" msgstr "喜欢了你的帖文" @@ -2973,7 +3047,7 @@ msgstr "喜欢" msgid "Likes on this post" msgstr "这条帖文的喜欢数" -#: src/Navigation.tsx:185 +#: src/Navigation.tsx:188 msgid "List" msgstr "列表" @@ -2985,7 +3059,7 @@ msgstr "列表头像" msgid "List blocked" msgstr "列表已屏蔽" -#: src/components/FeedCard.tsx:155 +#: src/components/ListCard.tsx:113 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "列表由 {0} 创建" @@ -3010,10 +3084,10 @@ msgstr "解除对列表的屏蔽" msgid "List unmuted" msgstr "解除对列表的隐藏" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:125 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/desktop/LeftNav.tsx:385 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 msgid "Lists" @@ -3050,7 +3124,7 @@ msgstr "加载新的帖文" msgid "Loading..." msgstr "加载中..." -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:239 msgid "Log" msgstr "日志" @@ -3074,7 +3148,7 @@ msgstr "未登录用户可见性" msgid "Login to account that is not listed" msgstr "登录未列出的账户" -#: src/components/RichText.tsx:217 +#: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" msgstr "长按来打开 #{tag} 标签菜单" @@ -3096,7 +3170,7 @@ msgstr "看起来你似乎缺少\"正在关注\"资讯源。<0>点击这里来 #: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" -msgstr "" +msgstr "帮我选择" #: src/view/com/modals/LinkWarning.tsx:79 msgid "Make sure this is where you intend to go!" @@ -3155,7 +3229,7 @@ msgstr "私信过长" msgid "Message settings" msgstr "私信设置" -#: src/Navigation.tsx:526 +#: src/Navigation.tsx:534 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3166,9 +3240,9 @@ msgstr "私信" msgid "Misleading Account" msgstr "误导性账户" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:130 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Moderation" msgstr "内容审核" @@ -3176,7 +3250,7 @@ msgstr "内容审核" msgid "Moderation details" msgstr "内容审核详情" -#: src/components/FeedCard.tsx:157 +#: src/components/ListCard.tsx:109 #: src/view/com/lists/ListCard.tsx:95 #: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" @@ -3204,16 +3278,16 @@ msgstr "内容审核列表已更新" msgid "Moderation lists" msgstr "内容审核列表" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "内容审核列表" -#: src/view/screens/Settings/index.tsx:555 +#: src/view/screens/Settings/index.tsx:556 msgid "Moderation settings" msgstr "内容审核设置" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:234 msgid "Moderation states" msgstr "内容审核状态" @@ -3244,7 +3318,11 @@ msgstr "优先显示最多喜欢" #: src/screens/Onboarding/state.ts:90 msgid "Movies" -msgstr "" +msgstr "电影" + +#: src/screens/Onboarding/state.ts:91 +msgid "Music" +msgstr "音乐" #: src/components/TagMenu/index.tsx:249 msgid "Mute" @@ -3314,7 +3392,7 @@ msgstr "已隐藏" msgid "Muted accounts" msgstr "已隐藏账户" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "已隐藏账户" @@ -3340,19 +3418,19 @@ msgstr "被隐藏的账户将不会得知你已将他隐藏,已隐藏的账户 msgid "My Birthday" msgstr "我的生日" -#: src/view/screens/Feeds.tsx:718 +#: src/view/screens/Feeds.tsx:731 msgid "My Feeds" msgstr "自定义资讯源" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "我的个人资料" -#: src/view/screens/Settings/index.tsx:616 +#: src/view/screens/Settings/index.tsx:617 msgid "My saved feeds" msgstr "我保存的资讯源" -#: src/view/screens/Settings/index.tsx:622 +#: src/view/screens/Settings/index.tsx:623 msgid "My Saved Feeds" msgstr "我保存的资讯源" @@ -3373,16 +3451,20 @@ msgid "Name or Description Violates Community Standards" msgstr "名称或描述违反了社群准则" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:92 msgid "Nature" msgstr "自然" +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "转到 {0}" + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" -msgstr "" +msgstr "转到入门包" #: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:332 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "转到下一页" @@ -3395,7 +3477,7 @@ msgstr "转到个人资料" msgid "Need to report a copyright violation?" msgstr "需要举报侵犯版权行为吗?" -#: src/screens/Onboarding/StepFinished.tsx:257 +#: src/screens/Onboarding/StepFinished.tsx:265 msgid "Never lose access to your followers or data." msgstr "永远不会失去对你的关注者或数据的访问。" @@ -3439,17 +3521,17 @@ msgctxt "action" msgid "New post" msgstr "新帖文" -#: src/view/screens/Feeds.tsx:580 +#: 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/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/shell/desktop/LeftNav.tsx:278 msgid "New post" msgstr "新帖文" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:284 msgctxt "action" msgid "New Post" msgstr "新帖文" @@ -3467,21 +3549,22 @@ msgid "Newest replies first" msgstr "优先显示最新回复" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:93 msgid "News" msgstr "新闻" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:311 -#: src/screens/Login/LoginForm.tsx:318 +#: src/screens/Login/LoginForm.tsx:331 +#: src/screens/Login/LoginForm.tsx:338 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:258 +#: src/screens/Signup/BackNextButtons.tsx:66 #: src/screens/StarterPack/Wizard/index.tsx:184 #: src/screens/StarterPack/Wizard/index.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:359 #: src/screens/StarterPack/Wizard/index.tsx:366 +#: src/tours/Tooltip.tsx:139 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3516,13 +3599,13 @@ msgstr "未找到精选 GIF,Tensor 可能存在问题。" #: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." -msgstr "" +msgstr "未找到资讯源,尝试搜索点别的。" #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "不再关注 {0}" -#: src/screens/Signup/StepHandle.tsx:115 +#: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" msgstr "不超过 253 个字符" @@ -3562,7 +3645,7 @@ msgstr "没有结果" msgid "No results found" msgstr "未找到结果" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" msgstr "未找到\"{query}\"的结果" @@ -3598,13 +3681,13 @@ 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 "非性暗示裸露" -#: src/Navigation.tsx:117 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "未找到" @@ -3616,7 +3699,7 @@ msgstr "暂时不需要" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:315 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "分享注意事项" @@ -3636,11 +3719,11 @@ msgstr "通知提示音" msgid "Notification Sounds" msgstr "通知提示音" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:529 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 +#: 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 msgid "Notifications" @@ -3672,7 +3755,7 @@ msgstr "显示" msgid "Oh no!" msgstr "糟糕!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:152 msgid "Oh no! Something went wrong." msgstr "糟糕!发生了一些错误。" @@ -3690,16 +3773,20 @@ msgstr "优先显示最旧的回复" #: src/components/StarterPack/QrCode.tsx:69 msgid "on" -msgstr "" +msgstr "于" #: src/lib/hooks/useTimeAgo.ts:81 msgid "on {str}" msgstr "于 {str}" -#: src/view/screens/Settings/index.tsx:256 +#: src/view/screens/Settings/index.tsx:257 msgid "Onboarding reset" msgstr "重新开始引导流程" +#: src/tours/Tooltip.tsx:118 +msgid "Onboarding tour step {0}: {1}" +msgstr "入门指南步骤:{0}/{1}" + #: src/view/com/composer/Composer.tsx:522 msgid "One or more images is missing alt text." msgstr "至少有一张图片缺失了替代文本。" @@ -3712,7 +3799,7 @@ msgstr "目前只支持上传 .jpg 或 .png 格式的图片文件" msgid "Only {0} can reply" msgstr "只有 {0} 可以回复" -#: src/screens/Signup/StepHandle.tsx:98 +#: src/screens/Signup/StepHandle.tsx:149 msgid "Only contains letters, numbers, and hyphens" msgstr "仅限字母、数字和连字符" @@ -3728,7 +3815,7 @@ msgstr "糟糕,发生了一些错误!" msgid "Oops!" msgstr "Oops!" -#: src/screens/Onboarding/StepFinished.tsx:253 +#: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" msgstr "开启" @@ -3754,7 +3841,7 @@ msgstr "开启表情符号选择器" msgid "Open feed options menu" msgstr "开启资讯源选项菜单" -#: src/view/screens/Settings/index.tsx:736 +#: src/view/screens/Settings/index.tsx:737 msgid "Open links with in-app browser" msgstr "在内置浏览器中打开链接" @@ -3774,16 +3861,16 @@ msgstr "打开导航" msgid "Open post options menu" msgstr "开启帖文选项菜单" -#: src/screens/StarterPack/StarterPackScreen.tsx:451 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Open starter pack menu" -msgstr "" +msgstr "开启入门包菜单" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:861 +#: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" msgstr "开启 Storybook 界面" -#: src/view/screens/Settings/index.tsx:848 +#: src/view/screens/Settings/index.tsx:849 msgid "Open system log" msgstr "开启系统日志" @@ -3793,9 +3880,9 @@ msgstr "开启 {numItems} 个选项" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 msgid "Opens a dialog to choose who can reply to this thread" -msgstr "" +msgstr "打开对话框以选择谁可以回复此讨论串" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Opens accessibility settings" msgstr "开启无障碍设置" @@ -3807,7 +3894,7 @@ msgstr "开启调试记录的额外详细信息" msgid "Opens camera on device" msgstr "开启设备相机" -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Opens chat settings" msgstr "开启私信设置" @@ -3815,7 +3902,7 @@ msgstr "开启私信设置" msgid "Opens composer" msgstr "开启编辑器" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Opens configurable language settings" msgstr "开启可配置的语言设置" @@ -3823,7 +3910,7 @@ msgstr "开启可配置的语言设置" msgid "Opens device photo gallery" msgstr "开启设备相册" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" msgstr "开启外部嵌入设置" @@ -3845,27 +3932,27 @@ msgstr "开启 GIF 选择对话框" msgid "Opens list of invite codes" msgstr "开启邀请码列表" -#: src/view/screens/Settings/index.tsx:808 +#: src/view/screens/Settings/index.tsx:809 msgid "Opens modal for account deactivation confirmation" msgstr "开启账户停用确认界面" -#: src/view/screens/Settings/index.tsx:830 +#: src/view/screens/Settings/index.tsx:831 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "需要邮件验证以继续进行账户删除操作" -#: src/view/screens/Settings/index.tsx:765 +#: src/view/screens/Settings/index.tsx:766 msgid "Opens modal for changing your Bluesky password" msgstr "开启密码修改界面" -#: src/view/screens/Settings/index.tsx:720 +#: src/view/screens/Settings/index.tsx:721 msgid "Opens modal for choosing a new Bluesky handle" msgstr "开启创建新的用户识别符界面" -#: src/view/screens/Settings/index.tsx:788 +#: src/view/screens/Settings/index.tsx:789 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "开启你的 Bluesky 用户资料(存储库)下载页面" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Opens modal for email verification" msgstr "开启电子邮箱确认界面" @@ -3873,23 +3960,23 @@ msgstr "开启电子邮箱确认界面" msgid "Opens modal for using custom domain" msgstr "开启使用自定义域名的模式" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Opens moderation settings" msgstr "开启内容审核设置" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:247 msgid "Opens password reset form" msgstr "开启密码重置申请" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "Opens screen with all saved feeds" msgstr "开启包含所有已保存资讯源的界面" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "Opens the app password settings" msgstr "开启应用专用密码设置界面" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Opens the Following feed preferences" msgstr "开启\"正在关注\"资讯源首选项" @@ -3897,20 +3984,20 @@ msgstr "开启\"正在关注\"资讯源首选项" msgid "Opens the linked website" 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 "Opens the storybook page" msgstr "开启 Storybook 界面" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" msgstr "开启系统日志界面" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Opens the threads preferences" msgstr "开启讨论串首选项" -#: src/view/com/notifications/FeedItem.tsx:513 +#: src/view/com/notifications/FeedItem.tsx:524 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "开启此个人资料" @@ -3961,8 +4048,8 @@ msgstr "无法找到这个页面" msgid "Page Not Found" msgstr "无法找到这个页面" -#: src/screens/Login/LoginForm.tsx:204 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Signup/StepInfo/index.tsx:162 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -3984,15 +4071,16 @@ msgstr "密码已更新!" msgid "Pause" msgstr "暂停" +#: src/screens/StarterPack/StarterPackScreen.tsx:170 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "用户" -#: src/Navigation.tsx:172 +#: src/Navigation.tsx:175 msgid "People followed by @{0}" msgstr "@{0} 关注的用户" -#: src/Navigation.tsx:165 +#: src/Navigation.tsx:168 msgid "People following @{0}" msgstr "关注 @{0} 的用户" @@ -4006,16 +4094,16 @@ msgstr "照片图库的访问权限已被拒绝,请在系统设置中启用。 #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" -msgstr "" +msgstr "切换用户" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:94 msgid "Pets" msgstr "宠物" -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:95 msgid "Photography" -msgstr "" +msgstr "摄影" #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." @@ -4059,15 +4147,16 @@ msgstr "播放视频" msgid "Plays the GIF" msgstr "播放 GIF" -#: src/screens/Signup/state.ts:234 +#: src/screens/Signup/state.ts:210 msgid "Please choose your handle." msgstr "请设置你的用户识别符。" -#: src/screens/Signup/state.ts:227 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:81 msgid "Please choose your password." msgstr "请设置你的密码。" -#: src/screens/Signup/state.ts:248 +#: src/screens/Signup/state.ts:224 msgid "Please complete the verification captcha." msgstr "请完成 Captcha 验证。" @@ -4087,10 +4176,15 @@ msgstr "请输入这个应用专用密码的唯一名称,或使用我们提供 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "请输入一个有效的词、标签或短语" -#: src/screens/Signup/state.ts:213 +#: src/screens/Signup/state.ts:189 +#: src/screens/Signup/StepInfo/index.tsx:69 msgid "Please enter your email." msgstr "请输入你的电子邮箱。" +#: src/screens/Signup/StepInfo/index.tsx:63 +msgid "Please enter your invite code." +msgstr "请输入你的邀请码。" + #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" msgstr "请输入你的密码:" @@ -4117,7 +4211,7 @@ msgid "Please wait for your link card to finish loading" msgstr "请等待你的链接卡片加载完毕" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:96 msgid "Politics" msgstr "政治" @@ -4140,9 +4234,9 @@ msgstr "帖文" msgid "Post by {0}" msgstr "{0} 的帖文" -#: src/Navigation.tsx:191 -#: src/Navigation.tsx:198 -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:194 +#: src/Navigation.tsx:201 +#: src/Navigation.tsx:208 msgid "Post by @{0}" msgstr "@{0} 的帖文" @@ -4181,6 +4275,7 @@ msgstr "无法找到帖文" msgid "posts" msgstr "帖文" +#: src/screens/StarterPack/StarterPackScreen.tsx:172 #: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "帖文" @@ -4208,7 +4303,7 @@ msgstr "点击以变更托管提供商" #: src/components/Error.tsx:85 #: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/index.tsx:238 +#: src/screens/Signup/BackNextButtons.tsx:46 msgid "Press to retry" msgstr "点按重试" @@ -4228,15 +4323,15 @@ msgstr "首选语言" msgid "Prioritize Your Follows" msgstr "优先显示关注者" -#: src/view/screens/Settings/index.tsx:654 -#: src/view/shell/desktop/RightNav.tsx:77 +#: src/view/screens/Settings/index.tsx:655 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "隐私" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 +#: src/view/screens/Settings/index.tsx:958 #: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "隐私政策" @@ -4254,8 +4349,8 @@ msgstr "处理中..." msgid "profile" msgstr "个人资料" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 +#: 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 @@ -4266,11 +4361,11 @@ msgstr "个人资料" msgid "Profile updated" msgstr "个人资料已更新" -#: src/view/screens/Settings/index.tsx:1021 +#: src/view/screens/Settings/index.tsx:1022 msgid "Protect your account by verifying your email." msgstr "通过验证电子邮箱来保护你的账户。" -#: src/screens/Onboarding/StepFinished.tsx:239 +#: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" msgstr "公开内容" @@ -4292,15 +4387,19 @@ msgstr "发布回复" #: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" -msgstr "" +msgstr "二维码已复制到你的剪切板!" #: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" -msgstr "" +msgstr "二维码已下载!" #: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" -msgstr "" +msgstr "二维码已保存至你的照片图库!" + +#: src/tours/Tooltip.tsx:111 +msgid "Quick tip" +msgstr "小建议" #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 @@ -4338,7 +4437,7 @@ msgid "Reload conversations" msgstr "重新加载对话" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:325 +#: src/components/FeedCard.tsx:309 #: src/components/StarterPack/Wizard/WizardListCard.tsx:95 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 @@ -4351,7 +4450,7 @@ msgstr "移除" #: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" -msgstr "" +msgstr "从你的入门包中删除 {displayName}" #: src/view/com/util/AccountDropdownBtn.tsx:22 msgid "Remove account" @@ -4387,7 +4486,7 @@ msgstr "删除资讯源?" msgid "Remove from my feeds" msgstr "从自定义资讯源中删除" -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:304 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "从自定义资讯源中删除?" @@ -4451,7 +4550,7 @@ msgstr "删除引用的帖文" #: src/view/com/posts/FeedShutdownMsg.tsx:126 #: src/view/com/posts/FeedShutdownMsg.tsx:130 msgid "Replace with Discover" -msgstr "替换为\"Discover\"" +msgstr "替换为 \"Discover\"" #: src/view/screens/Profile.tsx:210 msgid "Replies" @@ -4461,10 +4560,6 @@ msgstr "回复" msgid "Replies disabled" msgstr "回复已被禁用" -#: src/view/com/threadgate/WhoCanReply.tsx:123 -#~ msgid "Replies on this thread are disabled" -#~ msgstr "该讨论串的回复已被禁用" - #: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "该讨论串的回复已被禁用" @@ -4528,10 +4623,10 @@ msgstr "举报私信" msgid "Report post" msgstr "举报帖文" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 -#: src/screens/StarterPack/StarterPackScreen.tsx:507 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 msgid "Report starter pack" -msgstr "" +msgstr "举报入门包" #: src/components/ReportDialog/SelectReportOptionView.tsx:43 msgid "Report this content" @@ -4557,7 +4652,7 @@ msgstr "举报这条帖文" #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this starter pack" -msgstr "" +msgstr "举报此入门包" #: src/components/ReportDialog/SelectReportOptionView.tsx:47 msgid "Report this user" @@ -4575,7 +4670,7 @@ msgstr "转发" msgid "Repost" msgstr "转发" -#: src/screens/StarterPack/StarterPackScreen.tsx:446 +#: src/screens/StarterPack/StarterPackScreen.tsx:524 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4594,7 +4689,7 @@ msgstr "由 {0} 转发" msgid "Reposted by <0><1/>" msgstr "由 <0><1/> 转发" -#: src/view/com/notifications/FeedItem.tsx:184 +#: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "转发你的帖文" @@ -4620,7 +4715,7 @@ msgstr "发布时检查媒体是否存在替代文本" msgid "Require email code to log into your account" msgstr "需要电子邮件验证码才能登录到你的账户" -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" msgstr "服务提供者要求" @@ -4637,8 +4732,8 @@ msgstr "确认码" msgid "Reset Code" msgstr "确认码" -#: src/view/screens/Settings/index.tsx:900 -#: src/view/screens/Settings/index.tsx:903 +#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" msgstr "重置引导流程状态" @@ -4646,20 +4741,20 @@ msgstr "重置引导流程状态" msgid "Reset password" msgstr "重置密码" -#: src/view/screens/Settings/index.tsx:880 -#: src/view/screens/Settings/index.tsx:883 +#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:884 msgid "Reset preferences state" msgstr "重置首选项状态" -#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" msgstr "重置引导流程状态" -#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" msgstr "重置首选项状态" -#: src/screens/Login/LoginForm.tsx:292 +#: src/screens/Login/LoginForm.tsx:312 msgid "Retries login" msgstr "重试登录" @@ -4672,19 +4767,19 @@ msgstr "重试上次出错的操作" #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:291 -#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:311 +#: src/screens/Login/LoginForm.tsx:318 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Signup/BackNextButtons.tsx:52 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "重试" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:650 +#: src/screens/StarterPack/StarterPackScreen.tsx:728 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "回到上一页" @@ -4734,7 +4829,7 @@ msgstr "保存用户识别符更改" #: src/components/StarterPack/ShareDialog.tsx:150 #: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" -msgstr "" +msgstr "保存图片" #: src/view/com/modals/crop-image/CropImage.web.tsx:169 msgid "Save image crop" @@ -4742,7 +4837,7 @@ msgstr "保存图片裁切" #: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" -msgstr "" +msgstr "保存二维码" #: src/view/screens/ProfileFeed.tsx:333 #: src/view/screens/ProfileFeed.tsx:339 @@ -4776,13 +4871,13 @@ msgstr "保存图片裁剪设置" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:372 -#: src/view/com/notifications/FeedItem.tsx:397 +#: src/view/com/notifications/FeedItem.tsx:383 +#: src/view/com/notifications/FeedItem.tsx:408 msgid "Say hello!" msgstr "说嗨!" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:97 msgid "Science" msgstr "科学" @@ -4791,16 +4886,16 @@ msgid "Scroll to top" msgstr "滚动到顶部" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:516 -#: src/view/com/auth/LoggedOut.tsx:119 +#: src/Navigation.tsx:524 +#: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 #: src/view/screens/Search/Search.tsx:791 #: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 +#: 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 @@ -4826,10 +4921,10 @@ msgstr "搜索所有带有 {displayTag} 的帖文" #: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." -msgstr "" +msgstr "搜索来添加你想推荐给别人的资讯源。" -#: src/view/com/auth/LoggedOut.tsx:101 -#: src/view/com/auth/LoggedOut.tsx:102 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:107 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "搜索用户" @@ -4937,11 +5032,11 @@ msgstr "选择你希望订阅资讯源中所包含的语言。如果未选择任 msgid "Select your app language for the default text to display in the app." msgstr "选择你的应用语言,以显示应用中的默认文本。" -#: src/screens/Signup/StepInfo/index.tsx:135 +#: src/screens/Signup/StepInfo/index.tsx:192 msgid "Select your date of birth" msgstr "输入你的出生日期" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:225 msgid "Select your interests from the options below" msgstr "下面选择你感兴趣的选项" @@ -5046,23 +5141,23 @@ msgstr "设置你的账户" msgid "Sets Bluesky username" msgstr "设置 Bluesky 用户名" -#: src/view/screens/Settings/index.tsx:461 +#: src/view/screens/Settings/index.tsx:462 msgid "Sets color theme to dark" msgstr "设置主题为深色模式" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Sets color theme to light" msgstr "设置主题为亮色模式" -#: src/view/screens/Settings/index.tsx:448 +#: src/view/screens/Settings/index.tsx:449 msgid "Sets color theme to system setting" msgstr "设置主题跟随系统设置" -#: src/view/screens/Settings/index.tsx:487 +#: src/view/screens/Settings/index.tsx:488 msgid "Sets dark theme to the dark theme" msgstr "设置深色模式至深黑" -#: src/view/screens/Settings/index.tsx:480 +#: src/view/screens/Settings/index.tsx:481 msgid "Sets dark theme to the dim theme" msgstr "设置深色模式至暗淡" @@ -5082,9 +5177,9 @@ msgstr "将图片纵横比设置为高" msgid "Sets image aspect ratio to wide" msgstr "将图片纵横比设置为宽" -#: src/Navigation.tsx:147 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:395 +#: src/Navigation.tsx:150 +#: src/view/screens/Settings/index.tsx:333 +#: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:559 #: src/view/shell/Drawer.tsx:560 msgid "Settings" @@ -5099,13 +5194,13 @@ msgid "Sexually Suggestive" msgstr "性暗示" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:340 -#: src/screens/StarterPack/StarterPackScreen.tsx:493 +#: 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/post-ctrls/PostCtrls.tsx:304 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "分享" @@ -5125,7 +5220,7 @@ msgstr "分享一个有趣的事实!" #: src/view/com/profile/ProfileMenu.tsx:377 #: src/view/com/util/forms/PostDropdownBtn.tsx:461 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:320 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "仍然分享" @@ -5136,9 +5231,9 @@ msgstr "分享资讯源" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" -msgstr "" +msgstr "分享链接" #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 @@ -5147,20 +5242,20 @@ msgstr "分享链接" #: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" -msgstr "" +msgstr "分享链接对话框" #: src/components/StarterPack/ShareDialog.tsx:134 #: src/components/StarterPack/ShareDialog.tsx:145 msgid "Share QR code" -msgstr "" +msgstr "分享二维码" -#: src/screens/StarterPack/StarterPackScreen.tsx:333 +#: src/screens/StarterPack/StarterPackScreen.tsx:393 msgid "Share this starter pack" -msgstr "" +msgstr "分享这个入门包" #: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." -msgstr "" +msgstr "分享这个入门包以帮助其他人加入你在 Bluesky 上的社交网络。" #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" @@ -5173,11 +5268,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:381 +#: src/view/screens/Settings/index.tsx:382 msgid "Show" msgstr "显示" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "显示替代文本" @@ -5264,17 +5359,17 @@ msgstr "在你的资讯源中显示来自 {0} 的帖文" #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:100 #: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Login/LoginForm.tsx:177 #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.tsx:72 #: src/view/com/auth/SplashScreen.web.tsx:112 #: src/view/com/auth/SplashScreen.web.tsx:121 -#: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 #: src/view/shell/bottom-bar/BottomBar.tsx:315 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/bottom-bar/BottomBar.tsx:318 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:210 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5302,12 +5397,12 @@ msgstr "登录 Bluesky 或创建新账户" msgid "Sign out" msgstr "登出" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 #: src/view/shell/bottom-bar/BottomBar.tsx:305 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBar.tsx:306 +#: src/view/shell/bottom-bar/BottomBar.tsx:308 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:200 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5323,7 +5418,7 @@ msgstr "注册或登录以加入对话" msgid "Sign-in Required" msgstr "需要登录" -#: src/view/screens/Settings/index.tsx:391 +#: src/view/screens/Settings/index.tsx:392 msgid "Signed in as" msgstr "登录身份" @@ -5332,21 +5427,21 @@ msgstr "登录身份" msgid "Signed in as @{0}" msgstr "以 @{0} 身份登录" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "signed up with your starter pack" -msgstr "" +msgstr "使用你的入门包注册" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 msgid "Signup without a starter pack" -msgstr "" +msgstr "注册但不使用入门包" -#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:264 #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "跳过" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:261 msgid "Skip this flow" msgstr "跳过这段流程" @@ -5355,15 +5450,15 @@ msgstr "跳过这段流程" msgid "Software Dev" msgstr "程序开发" +#: src/components/FeedInterstitials.tsx:306 +msgid "Some other feeds you might like" +msgstr "其他你可能喜欢的资讯源" + #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "一些人可以回复" -#: src/screens/StarterPack/Wizard/index.tsx:203 -#~ msgid "Some subtitle" -#~ msgstr "" - #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "出了点问题" @@ -5379,8 +5474,8 @@ msgstr "出了点问题,请重试" msgid "Something went wrong, please try again." msgstr "出了点问题,请重试。" -#: src/App.native.tsx:96 -#: src/App.web.tsx:78 +#: src/App.native.tsx:98 +#: src/App.web.tsx:80 msgid "Sorry! Your session expired. Please log in again." msgstr "很抱歉,你的登录会话已过期,请重新登录。" @@ -5406,7 +5501,7 @@ msgid "Spam; excessive mentions or replies" msgstr "垃圾内容;过于频繁的提及或回复" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:98 msgid "Sports" msgstr "运动" @@ -5426,42 +5521,47 @@ msgstr "与 {displayName} 开始私信" msgid "Start chatting" msgstr "开始私信" +#: src/tours/Tooltip.tsx:99 +msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +msgstr "开始入门指南吧,若需获取更多选项请点击下一步,或点按跳过。" + #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:328 +#: src/Navigation.tsx:333 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" -msgstr "" +msgstr "入门包" -#: src/components/StarterPack/StarterPackCard.tsx:65 +#: src/components/StarterPack/StarterPackCard.tsx:70 msgid "Starter pack by {0}" -msgstr "" +msgstr "由 {0} 创建的入门包" -#: src/screens/StarterPack/StarterPackScreen.tsx:614 +#: src/screens/StarterPack/StarterPackScreen.tsx:692 msgid "Starter pack is invalid" -msgstr "" +msgstr "入门包无效" #: src/view/screens/Profile.tsx:214 msgid "Starter Packs" -msgstr "" +msgstr "入门包" #: src/components/StarterPack/ProfileStarterPacks.tsx:238 msgid "Starter packs let you easily share your favorite feeds and people with your friends." -msgstr "" +msgstr "入门包能让你更轻松地与朋友分享你最中意的资讯源和关注用户。" -#: src/view/screens/Settings/index.tsx:963 +#: src/view/screens/Settings/index.tsx:964 msgid "Status Page" msgstr "状态页" -#: src/screens/Signup/index.tsx:192 +#: src/screens/Signup/index.tsx:125 msgid "Step {0} of {1}" msgstr "步骤 {1} 共 {0} 步" -#: src/view/screens/Settings/index.tsx:304 +#: src/view/screens/Settings/index.tsx:305 msgid "Storage cleared, you need to restart the app now." msgstr "已清除存储,请立即重启应用。" -#: src/Navigation.tsx:226 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:229 +#: src/view/screens/Settings/index.tsx:864 msgid "Storybook" msgstr "Storybook" @@ -5496,6 +5596,7 @@ msgstr "订阅这个列表" msgid "Suggested accounts" msgstr "建议的账号" +#: src/components/FeedInterstitials.tsx:178 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "为你推荐" @@ -5504,7 +5605,7 @@ msgstr "为你推荐" msgid "Suggestive" msgstr "建议" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:244 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5515,6 +5616,10 @@ msgstr "支持" msgid "Switch Account" msgstr "切换账户" +#: src/tours/HomeTour.tsx:48 +msgid "Switch between feeds to control your experience." +msgstr "在资讯源之间切换以刷新你的浏览体验。" + #: src/view/screens/Settings/index.tsx:160 msgid "Switch to {0}" msgstr "切换到 {0}" @@ -5523,11 +5628,11 @@ msgstr "切换到 {0}" msgid "Switches the account you are logged in to" msgstr "切换你登录的账户" -#: src/view/screens/Settings/index.tsx:445 +#: src/view/screens/Settings/index.tsx:446 msgid "System" msgstr "系统" -#: src/view/screens/Settings/index.tsx:851 +#: src/view/screens/Settings/index.tsx:852 msgid "System log" msgstr "系统日志" @@ -5543,12 +5648,24 @@ msgstr "标签菜单:{displayTag}" msgid "Tall" msgstr "高" +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "点按关闭" + #: src/view/com/util/images/AutoSizedImage.tsx:70 msgid "Tap to view fully" msgstr "点击查看完整内容" +#: src/state/shell/progress-guide.tsx:172 +msgid "Task complete - 10 likes!" +msgstr "任务完成:10 个喜欢!" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "告诉我们的算法你喜欢什么" + #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:99 msgid "Tech" msgstr "科技" @@ -5558,15 +5675,15 @@ msgstr "讲个笑话!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" -msgstr "" +msgstr "告诉我们更多" -#: src/view/shell/desktop/RightNav.tsx:86 +#: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "条款" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:254 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/Settings/index.tsx:952 #: src/view/screens/TermsOfService.tsx:29 #: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" @@ -5597,16 +5714,18 @@ msgstr "谢谢,你的举报已提交。" msgid "That contains the following:" msgstr "其中包含以下内容:" -#: src/screens/Signup/index.tsx:100 +#: src/screens/Signup/StepHandle.tsx:50 msgid "That handle is already taken." msgstr "该用户识别符已被占用。" -#: src/screens/StarterPack/StarterPackScreen.tsx:105 -#: src/screens/StarterPack/StarterPackScreen.tsx:106 +#: src/screens/StarterPack/StarterPackScreen.tsx:96 +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:136 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." -msgstr "" +msgstr "找不到此入门包。" #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 #: src/view/com/profile/ProfileMenu.tsx:353 @@ -5621,13 +5740,18 @@ msgstr "社群准则已迁移至 <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "版权许可已迁移至 <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +#: src/state/shell/progress-guide.tsx:173 +#: src/state/shell/progress-guide.tsx:178 +msgid "The Discover feed now knows what you like" +msgstr "现在 \"Discover\" 资讯源已了解你的喜好" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." -msgstr "" +msgstr "使用 App 的体验更好。立即下载 Bluesky,我们将从你上次中断的地方继续。" #: src/view/com/posts/FeedShutdownMsg.tsx:66 msgid "The feed has been replaced with Discover." -msgstr "资讯源已替换为\"Discover\"。" +msgstr "资讯源已替换为 \"Discover\"。" #: src/components/moderation/LabelsOnMeDialog.tsx:65 msgid "The following labels were applied to your account." @@ -5650,9 +5774,9 @@ msgstr "这条帖文可能已被删除。" msgid "The Privacy Policy has been moved to <0/>" msgstr "隐私政策已迁移至 <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:624 +#: src/screens/StarterPack/StarterPackScreen.tsx:702 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." -msgstr "" +msgstr "你尝试查看的入门包无效,你可以删除此入门包。" #: src/view/screens/Support.tsx:36 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." @@ -5704,7 +5828,7 @@ msgstr "连接服务器时出现问题" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "刷新通知时出现问题,点击重试。" -#: src/view/com/posts/Feed.tsx:299 +#: src/view/com/posts/Feed.tsx:476 msgid "There was an issue fetching posts. Tap here to try again." msgstr "刷新帖文时出现问题,点击重试。" @@ -5874,7 +5998,7 @@ msgid "This post has been deleted." msgstr "这条帖文已被删除。" #: src/view/com/util/forms/PostDropdownBtn.tsx:458 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:317 +#: 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 "这条帖文只对已登录用户可见,未登录的用户将无法看到。" @@ -5931,24 +6055,24 @@ 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:594 +#: src/view/screens/Settings/index.tsx:595 msgid "Thread preferences" msgstr "讨论串首选项" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/Settings/index.tsx:605 msgid "Thread Preferences" msgstr "讨论串首选项" #: src/components/WhoCanReply.tsx:109 msgid "Thread settings updated" -msgstr "" +msgstr "讨论串首选项已更新" #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "讨论串模式" -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:287 msgid "Threads Preferences" msgstr "讨论串首选项" @@ -5999,11 +6123,11 @@ msgctxt "action" msgid "Try again" msgstr "重试" -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:100 msgid "TV" -msgstr "" +msgstr "电视节目" -#: src/view/screens/Settings/index.tsx:745 +#: src/view/screens/Settings/index.tsx:746 msgid "Two-factor authentication" msgstr "两步验证" @@ -6025,16 +6149,16 @@ msgstr "取消隐藏列表" #: src/screens/Login/ForgotPasswordForm.tsx:74 #: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:79 +#: src/screens/Signup/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "无法连接到服务,请检查互联网连接。" -#: src/screens/StarterPack/StarterPackScreen.tsx:548 +#: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Unable to delete" -msgstr "" +msgstr "无法删除" #: src/components/dms/MessagesListBlockedFooter.tsx:89 #: src/components/dms/MessagesListBlockedFooter.tsx:96 @@ -6285,7 +6409,7 @@ msgstr "用户列表已更新" msgid "User Lists" msgstr "用户列表" -#: src/screens/Login/LoginForm.tsx:177 +#: src/screens/Login/LoginForm.tsx:197 msgid "Username or email address" msgstr "用户名或电子邮箱" @@ -6320,15 +6444,15 @@ msgstr "值:" msgid "Verify DNS Record" msgstr "验证 DNS 记录" -#: src/view/screens/Settings/index.tsx:982 +#: src/view/screens/Settings/index.tsx:983 msgid "Verify email" msgstr "验证邮箱" -#: src/view/screens/Settings/index.tsx:1007 +#: src/view/screens/Settings/index.tsx:1008 msgid "Verify my email" msgstr "验证我的邮箱" -#: src/view/screens/Settings/index.tsx:1016 +#: src/view/screens/Settings/index.tsx:1017 msgid "Verify My Email" msgstr "验证我的邮箱" @@ -6345,7 +6469,7 @@ msgstr "验证文本文件" msgid "Verify Your Email" msgstr "验证你的邮箱" -#: src/view/screens/Settings/index.tsx:935 +#: src/view/screens/Settings/index.tsx:936 msgid "Version {appVersion} {bundleInfo}" msgstr "版本 {appVersion} {bundleInfo}" @@ -6358,7 +6482,7 @@ msgstr "电子游戏" msgid "View {0}'s avatar" msgstr "查看{0}的头像" -#: src/view/com/notifications/FeedItem.tsx:234 +#: src/view/com/notifications/FeedItem.tsx:245 msgid "View {0}'s profile" msgstr "查看{0}的个人资料" @@ -6407,7 +6531,7 @@ msgid "View users who like this feed" msgstr "查看这个资讯源被谁喜欢" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "查看自定义资讯源并探索更多" @@ -6442,7 +6566,7 @@ msgstr "我们无法加载这个对话" msgid "We estimate {estimatedTime} until your account is ready." msgstr "我们估计还需要 {estimatedTime} 才能完成你的账户准备。" -#: src/screens/Onboarding/StepFinished.tsx:231 +#: src/screens/Onboarding/StepFinished.tsx:239 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "我们希望你在此度过愉快的时光。请记住,Bluesky 是:" @@ -6462,7 +6586,7 @@ msgstr "我们无法加载你的生日首选项,请重试。" msgid "We were unable to load your configured labelers at this time." msgstr "我们暂时无法记载你已配置的标记者。" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:157 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "我们无法连接到互联网,请重试以继续设置你的账户。如果仍继续失败,你可以选择跳过这段流程。" @@ -6470,7 +6594,7 @@ msgstr "我们无法连接到互联网,请重试以继续设置你的账户。 msgid "We will let you know when your account is ready." msgstr "我们会在你的账户准备好时通知你。" -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:162 msgid "We'll use this to help customize your experience." msgstr "我们将使用这些信息来帮助定制你的体验。" @@ -6478,7 +6602,7 @@ msgstr "我们将使用这些信息来帮助定制你的体验。" msgid "We're having network issues, try again" msgstr "我们遇到了网络问题,请再试一次" -#: src/screens/Signup/index.tsx:155 +#: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" msgstr "我们非常高兴你加入我们!" @@ -6513,15 +6637,15 @@ msgstr "欢迎回来!" #: src/components/NewskieDialog.tsx:103 msgid "Welcome, friend!" -msgstr "" +msgstr "欢迎新天友!" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" msgstr "你感兴趣的是什么?" #: src/screens/StarterPack/Wizard/StepDetails.tsx:42 msgid "What do you want to call your starter pack?" -msgstr "" +msgstr "你想如何命名你的入门包?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 @@ -6581,7 +6705,7 @@ msgstr "为什么应该审核这条帖文?" #: src/components/ReportDialog/SelectReportOptionView.tsx:60 msgid "Why should this starter pack be reviewed?" -msgstr "" +msgstr "为什么应该审核此入门包?" #: src/components/ReportDialog/SelectReportOptionView.tsx:48 msgid "Why should this user be reviewed?" @@ -6606,7 +6730,7 @@ msgid "Write your reply" msgstr "撰写你的回复" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:101 msgid "Writers" msgstr "作家" @@ -6625,9 +6749,9 @@ msgstr "启用" msgid "Yes, deactivate" msgstr "是的,请停用" -#: src/screens/StarterPack/StarterPackScreen.tsx:560 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 msgid "Yes, delete this starter pack" -msgstr "" +msgstr "是的,删除此入门包" #: src/screens/Deactivated.tsx:150 msgid "Yes, reactivate my account" @@ -6637,13 +6761,13 @@ msgstr "是的,重新启用我的账户" msgid "Yesterday, {time}" msgstr "昨天,{time}" -#: src/components/StarterPack/StarterPackCard.tsx:68 +#: src/components/StarterPack/StarterPackCard.tsx:73 msgid "you" -msgstr "" +msgstr "你" #: src/components/NewskieDialog.tsx:43 msgid "You" -msgstr "" +msgstr "你" #: src/screens/SignupQueued.tsx:136 msgid "You are in line." @@ -6768,7 +6892,7 @@ msgstr "你已经到末尾了" #: src/components/StarterPack/ProfileStarterPacks.tsx:235 msgid "You haven't created a starter pack yet!" -msgstr "" +msgstr "你还没有创建任何入门包!" #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" @@ -6784,11 +6908,11 @@ msgstr "如果你认为标签的标记信息有误,你可以提出申诉。" #: src/screens/StarterPack/Wizard/State.tsx:92 msgid "You may only add up to 50 feeds" -msgstr "" +msgstr "你最多只能添加 50 个资讯源" #: src/screens/StarterPack/Wizard/State.tsx:77 msgid "You may only add up to 50 profiles" -msgstr "" +msgstr "你最多只能添加 50 个用户" #: src/screens/Signup/StepInfo/Policies.tsx:79 msgid "You must be 13 years of age or older to sign up." @@ -6796,15 +6920,15 @@ msgstr "你必须年满13岁及以上才能注册。" #: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." -msgstr "" +msgstr "你必须至少关注 7 个人以创建入门包。" #: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" -msgstr "" +msgstr "你必须授权照片图库权限以保存二维码" #: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." -msgstr "" +msgstr "你必须授权照片图库权限以保存图片。" #: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" @@ -6838,25 +6962,25 @@ msgstr "你:{defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "你:{short}" -#: src/screens/Signup/index.tsx:169 +#: 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:174 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users once you finish creating your account!" -msgstr "" +msgstr "完成创建帐户后,你将关注建议的用户!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 msgid "You'll follow these people and {0} others" -msgstr "" +msgstr "你将关注这些用户以及其他 {0} 位" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 msgid "You'll follow these people right away" -msgstr "" +msgstr "你将立即关注这些人" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "You'll stay updated with these feeds" -msgstr "" +msgstr "你将通过这些资讯源接收最新动态" #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:94 @@ -6869,7 +6993,7 @@ msgstr "轮到你了" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "你已使用应用密码登录账户,请改用你的主密码登录以继续停用你的账户。" -#: src/screens/Onboarding/StepFinished.tsx:228 +#: src/screens/Onboarding/StepFinished.tsx:236 msgid "You're ready to go!" msgstr "你已设置完成!" @@ -6882,7 +7006,7 @@ msgstr "你选择隐藏了这条帖文中的词汇或标签。" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "你已经浏览完你的订阅资讯源啦!寻找一些更多的账户关注吧。" -#: src/screens/Signup/index.tsx:202 +#: src/screens/Signup/index.tsx:135 msgid "Your account" msgstr "你的账户" @@ -6894,7 +7018,7 @@ msgstr "你的账户已删除" 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”文件。这个文件不包括帖文中的媒体,例如图像或你的隐私数据,这些数据需要另外获取。" -#: src/screens/Signup/StepInfo/index.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" msgstr "你的生日" @@ -6907,7 +7031,8 @@ msgid "Your choice will be saved, but can be changed later in settings." msgstr "你的选择将被保存,但可以稍后在设置中更改。" #: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "你的电子邮箱似乎无效。" @@ -6920,11 +7045,15 @@ msgstr "你的电子邮箱已更新但尚未验证。作为下一步,请验证 msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "你的电子邮箱尚未验证。这是一个重要的安全步骤,我们建议你完成验证。" +#: src/state/shell/progress-guide.tsx:162 +msgid "Your first like!" +msgstr "你的第一个喜欢!" + #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "你的\"正在关注\"资讯源为空!关注更多用户去看看他们发了什么。" -#: src/screens/Signup/StepHandle.tsx:73 +#: src/screens/Signup/StepHandle.tsx:122 msgid "Your full handle will be" msgstr "你的完整用户识别符将修改为" @@ -6944,7 +7073,7 @@ msgstr "你的密码已成功更改!" msgid "Your post has been published" msgstr "你的帖文已发布" -#: src/screens/Onboarding/StepFinished.tsx:243 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "你的帖文、喜欢和屏蔽是公开可见的,而隐藏不可见。" @@ -6964,6 +7093,6 @@ msgstr "你的回复已发布" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "你的举报将发送至 Bluesky 内容审核服务" -#: src/screens/Signup/index.tsx:204 +#: src/screens/Signup/index.tsx:137 msgid "Your user handle" msgstr "你的用户识别符" diff --git a/src/locale/locales/zh-TW/messages.po b/src/locale/locales/zh-TW/messages.po index ffa61c95c6..28fa8dff8d 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-06-20 23:03+0800\n" +"PO-Revision-Date: 2024-07-05 03:19+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:283 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {其他 {formattedCount} 個人} other {其他 {formattedCount} 個人}}" @@ -47,7 +47,7 @@ msgstr "{0, plural, one {個跟隨者} other {個跟隨者}}" msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {個跟隨中} other {個跟隨中}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:259 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {喜歡(# 個喜歡)} other {喜歡(# 個喜歡)}}" @@ -55,7 +55,7 @@ msgstr "{0, plural, one {喜歡(# 個喜歡)} other {喜歡(# 個喜歡) msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {喜歡} other {喜歡}}" -#: src/components/FeedCard.tsx:216 +#: 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 {# 個用戶已喜歡}}" @@ -64,7 +64,7 @@ msgstr "{0, plural,one {# 個用戶已喜歡} other {# 個用戶已喜歡}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {則貼文} other {則貼文}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:217 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {回覆(# 個回覆)} other {回覆(# 個回覆)}}" @@ -72,29 +72,29 @@ msgstr "{0, plural, one {回覆(# 個回覆)} other {回覆(# 個回覆) msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {轉貼} other {轉貼}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:262 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {撤回喜歡(# 個喜歡)} other {撤回喜歡(# 個喜歡)}}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" -msgstr "" +msgstr "本週加入了 {0} 人" -#: src/screens/StarterPack/StarterPackScreen.tsx:378 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" -msgstr "" +msgstr "{0} 人已使用此入門包!" #: src/view/com/util/UserAvatar.tsx:419 msgid "{0}'s avatar" -msgstr "{0} 的頭像" +msgstr "「{0}」的頭像" #: src/screens/StarterPack/Wizard/StepDetails.tsx:68 msgid "{0}'s favorite feeds and people - join me!" -msgstr "" +msgstr "「{0}」最喜歡的動態和人物 - 加入我的行列吧!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:47 msgid "{0}'s starter pack" -msgstr "" +msgstr "「{0}」的入門包" #: src/components/LabelingServiceCard/index.tsx:71 msgid "{count, plural, one {Liked by # user} other {Liked by # users}}" @@ -122,7 +122,7 @@ msgstr "{diffSeconds, plural, one {秒} other {秒}}" #: src/screens/StarterPack/Wizard/index.tsx:175 msgid "{displayName}'s Starter Pack" -msgstr "" +msgstr "「{displayName}」的入門包" #: src/screens/SignupQueued.tsx:207 msgid "{estimatedTimeHrs, plural, one {hour} other {hours}}" @@ -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:503 +#: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} 個跟隨中" @@ -153,11 +153,11 @@ msgstr "{numUnreadNotifications} 個未讀通知" #: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" -msgstr "{profileName} 在 {0} 前加入了 Bluesky" +msgstr "「{profileName}」在 {0} 前加入了 Bluesky" #: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" -msgstr "" +msgstr "「{profileName}」在 {0} 前使用入門包加入了 Bluesky" #: 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}}" @@ -167,23 +167,15 @@ msgstr "{value, plural, =0 {顯示所有回覆} one {顯示至少 # 個喜歡的 msgid "<0/> members" msgstr "<0/> 個成員" -#: 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}和{2, plural, one {其他 # } other {其他 # }}人已在您的入門包中" #: 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}和{2, plural, one {其他 # } other {其他 # }}個動態源已在您的入門包中" #: src/view/shell/Drawer.tsx:101 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -195,11 +187,11 @@ msgstr "<0>{0} {1, plural, one {個跟隨中} other {個跟隨中}}" #: src/screens/StarterPack/Wizard/index.tsx:507 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" -msgstr "" +msgstr "<0>{0} 和<1> <2>{1} 已在您的入門包中" #: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" -msgstr "" +msgstr "<0>{0} 已在您的入門包中" #: src/view/com/modals/SelfLabel.tsx:135 msgid "<0>Not Applicable. This warning is only available for posts with media attached." @@ -207,16 +199,20 @@ msgstr "<0>不適用。 此警告只適用於附帶媒體的貼文。" #: src/screens/StarterPack/Wizard/index.tsx:457 msgid "<0>You and<1> <2>{0} are included in your starter pack" -msgstr "" +msgstr "<0>您和<1> <2>{0} 已在您的入門包中" #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠無效的帳號代碼" -#: src/screens/Login/LoginForm.tsx:247 +#: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" msgstr "雙重驗證" +#: src/tours/Tooltip.tsx:70 +msgid "A help tooltip" +msgstr "幫助工具提示框" + #: src/view/com/util/ViewHeader.tsx:93 #: src/view/screens/Search/Search.tsx:684 msgid "Access navigation links and settings" @@ -227,22 +223,22 @@ msgid "Access profile and other navigation links" msgstr "存取個人檔案和其他導覽連結" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:518 +#: src/view/screens/Settings/index.tsx:519 msgid "Accessibility" msgstr "無障礙" -#: src/view/screens/Settings/index.tsx:509 +#: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" msgstr "無障礙設定" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "無障礙設定" -#: src/screens/Login/LoginForm.tsx:170 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:190 +#: src/view/screens/Settings/index.tsx:346 +#: src/view/screens/Settings/index.tsx:753 msgid "Account" msgstr "帳號" @@ -297,11 +293,11 @@ msgstr "新增" #: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" -msgstr "" +msgstr "再新增至少 {0} 個以繼續" #: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" -msgstr "" +msgstr "新增 {displayName} 至入門包" #: src/view/com/modals/SelfLabel.tsx:57 msgid "Add a content warning" @@ -313,8 +309,8 @@ msgstr "將用戶新增至此列表" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:422 -#: src/view/screens/Settings/index.tsx:431 +#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:432 msgid "Add account" msgstr "新增帳號" @@ -341,17 +337,13 @@ msgstr "在已配置的設定中新增靜音文字" msgid "Add muted words and tags" msgstr "新增靜音文字及標籤" -#: src/screens/StarterPack/Wizard/index.tsx:197 -#~ msgid "Add people to your starter pack that you think others will enjoy following" -#~ msgstr "" - #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "新增推薦的動態源" #: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" -msgstr "" +msgstr "新增一些動態源至您的入門包!" #: src/screens/Feeds/NoFollowingFeed.tsx:41 msgid "Add the default feed of only people you follow" @@ -361,7 +353,7 @@ msgstr "新增預設的「Following」動態源,它只會顯示您跟隨的人 msgid "Add the following DNS record to your domain:" msgstr "將以下 DNS 記錄新增到您的網域:" -#: src/components/FeedCard.tsx:305 +#: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" msgstr "將此新增至您的動態源" @@ -394,22 +386,26 @@ msgstr "成人內容" #: src/screens/Moderation/index.tsx:356 msgid "Adult content can only be enabled via the Web at <0>bsky.app." -msgstr "" +msgstr "成人內容只能透過網頁版 (<0>bsky.app) 啟用。" #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "成人內容已停用。" #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Advanced" msgstr "進階設定" -#: src/screens/StarterPack/StarterPackScreen.tsx:301 -msgid "All accounts have been followed!" -msgstr "" +#: src/state/shell/progress-guide.tsx:177 +msgid "Algorithm training complete!" +msgstr "演算法訓練完成!" -#: src/view/screens/Feeds.tsx:721 +#: src/screens/StarterPack/StarterPackScreen.tsx:360 +msgid "All accounts have been followed!" +msgstr "已跟隨所有帳號!" + +#: src/view/screens/Feeds.tsx:734 msgid "All the feeds you've saved, right in one place." msgstr "以下是您儲存的動態源。" @@ -434,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:177 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 msgid "ALT" msgstr "ALT" @@ -444,7 +440,7 @@ msgstr "ALT" msgid "Alt text" msgstr "替代文字" -#: src/view/com/util/post-embeds/GifEmbed.tsx:183 +#: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" msgstr "替代文字" @@ -467,20 +463,16 @@ msgstr "發生錯誤" #: 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 "建立您的入門包時發生錯誤。是否要重試?" #: src/components/StarterPack/QrCodeDialog.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" -msgstr "" +msgstr "儲存 QR Code 時發生錯誤!" -#: src/screens/StarterPack/StarterPackScreen.tsx:303 +#: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" -msgstr "" +msgstr "跟隨所有帳號時發生錯誤" #: src/lib/moderation/useReportOptions.ts:28 msgid "An issue not included in these options" @@ -488,6 +480,8 @@ msgstr "問題不在上述選項" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:294 +#: src/components/ProfileCard.tsx:306 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -495,12 +489,12 @@ msgstr "問題不在上述選項" msgid "An issue occurred, please try again." msgstr "出現問題,請再試一次。" -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" msgstr "出現未知錯誤" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:280 +#: src/view/com/notifications/FeedItem.tsx:291 msgid "and" msgstr "和" @@ -509,7 +503,7 @@ msgstr "和" msgid "Animals" msgstr "動物" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" msgstr "GIF 動畫" @@ -533,13 +527,13 @@ msgstr "應用程式專用密碼只能包含字母、數字、空格、破折號 msgid "App Password names must be at least 4 characters long." msgstr "應用程式專用密碼名稱必須至少為 4 個字元。" -#: src/view/screens/Settings/index.tsx:697 +#: src/view/screens/Settings/index.tsx:698 msgid "App password settings" msgstr "應用程式專用密碼設定" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:269 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/view/screens/Settings/index.tsx:707 msgid "App Passwords" msgstr "應用程式專用密碼" @@ -564,7 +558,7 @@ msgstr "已提交申訴" msgid "Appeal this decision" msgstr "對此決定提出上訴" -#: src/view/screens/Settings/index.tsx:439 +#: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "外觀" @@ -573,9 +567,9 @@ msgstr "外觀" msgid "Apply default recommended feeds" msgstr "使用預設推薦的動態源" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Are you sure you want delete this starter pack?" -msgstr "" +msgstr "您確定要刪除這個入門包?" #: src/view/screens/AppPasswords.tsx:282 msgid "Are you sure you want to delete the app password \"{name}\"?" @@ -593,7 +587,7 @@ msgstr "您確定要離開此對話嗎?您的訊息將為您刪除,但不會 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "您確定要從您的動態中移除 {0} 嗎?" -#: src/components/FeedCard.tsx:322 +#: src/components/FeedCard.tsx:306 msgid "Are you sure you want to remove this from your feeds?" msgstr "您確定要將此從您的動態源中移除嗎?" @@ -618,7 +612,7 @@ msgstr "藝術" msgid "Artistic or non-erotic nudity." msgstr "藝術作品或非色情的裸露。" -#: src/screens/Signup/StepHandle.tsx:119 +#: src/screens/Signup/StepHandle.tsx:170 msgid "At least 3 characters" msgstr "至少 3 個字元" @@ -629,20 +623,21 @@ msgstr "至少 3 個字元" #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:278 -#: src/screens/Login/LoginForm.tsx:284 +#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:304 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/index.tsx:231 +#: 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:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "基本設定" @@ -650,7 +645,7 @@ msgstr "基本設定" msgid "Birthday" msgstr "生日" -#: src/view/screens/Settings/index.tsx:377 +#: src/view/screens/Settings/index.tsx:378 msgid "Birthday:" msgstr "生日:" @@ -694,7 +689,7 @@ msgstr "已被封鎖" msgid "Blocked accounts" msgstr "已封鎖帳號" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:145 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "已封鎖帳號" @@ -736,9 +731,13 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky 是一個開放的網路,您可以自行挑選託管服務供應商。自定義託管服務現已為開發人員推出測試版。" +#: src/components/ProgressGuide/List.tsx:55 +msgid "Bluesky is better with friends!" +msgstr "Bluesky 因朋友而更好!" + #: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." -msgstr "" +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." @@ -757,6 +756,24 @@ msgstr "模糊圖片並從動態中過濾" msgid "Books" msgstr "書籍" +#: src/components/FeedInterstitials.tsx:209 +msgid "Browse more accounts on the Explore page" +msgstr "在探索頁面瀏覽更多帳號" + +#: src/components/FeedInterstitials.tsx:335 +msgid "Browse more feeds on the Explore page" +msgstr "在探索頁面瀏覽更多動態源" + +#: src/components/FeedInterstitials.tsx:198 +#: src/components/FeedInterstitials.tsx:324 +msgid "Browse more suggestions" +msgstr "瀏覽更多建議" + +#: src/components/FeedInterstitials.tsx:217 +#: src/components/FeedInterstitials.tsx:344 +msgid "Browse more suggestions on the Explore page" +msgstr "在探索頁面瀏覽更多建議" + #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" @@ -867,17 +884,17 @@ msgstr "取消開啟網站連結" msgid "Change" msgstr "變更" -#: src/view/screens/Settings/index.tsx:371 +#: src/view/screens/Settings/index.tsx:372 msgctxt "action" msgid "Change" msgstr "變更" -#: src/view/screens/Settings/index.tsx:718 +#: src/view/screens/Settings/index.tsx:719 msgid "Change handle" msgstr "變更帳號代碼" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change Handle" msgstr "變更帳號代碼" @@ -885,12 +902,12 @@ msgstr "變更帳號代碼" msgid "Change my email" msgstr "變更我的電子郵件地址" -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/index.tsx:764 msgid "Change password" msgstr "變更密碼" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Change Password" msgstr "變更密碼" @@ -902,9 +919,9 @@ msgstr "變更貼文的發佈語言為 {0}" msgid "Change Your Email" msgstr "變更您的電子郵件地址" -#: src/Navigation.tsx:310 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:313 +#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" msgstr "對話" @@ -914,14 +931,14 @@ msgstr "對話已靜音" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:318 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" msgstr "對話設定" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" msgstr "對話設定" @@ -934,7 +951,7 @@ msgstr "對話已解除靜音" msgid "Check my status" msgstr "檢查我的狀態" -#: src/screens/Login/LoginForm.tsx:271 +#: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." msgstr "在此輸入寄送至您電子郵件地址的驗證碼。" @@ -942,27 +959,31 @@ msgstr "在此輸入寄送至您電子郵件地址的驗證碼。" msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "在下方輸入寄送至您電子郵件地址的驗證碼:" -#: src/view/com/modals/Threadgate.tsx:75 -#~ msgid "Choose \"Everybody\" or \"Nobody\"" -#~ msgstr "選擇「所有人」或「沒有人」" +#: src/screens/Onboarding/StepInterests/index.tsx:190 +msgid "Choose 3 or more:" +msgstr "選擇至少三個:" + +#: src/screens/Onboarding/StepInterests/index.tsx:325 +msgid "Choose at least {0} more" +msgstr "選擇至少 {0} 個" #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" -msgstr "" +msgstr "選擇動態源" #: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" -msgstr "" +msgstr "為我選擇" #: src/screens/StarterPack/Wizard/index.tsx:187 msgid "Choose People" -msgstr "" +msgstr "選擇人物" #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "選擇服務" -#: src/screens/Onboarding/StepFinished.tsx:273 +#: src/screens/Onboarding/StepFinished.tsx:281 msgid "Choose the algorithms that power your custom feeds." msgstr "選擇提供您自定義動態的演算法。" @@ -973,25 +994,25 @@ msgstr "選擇這個顏色作為您的頭像" #: src/components/dialogs/ThreadgateEditor.tsx:91 #: src/components/dialogs/ThreadgateEditor.tsx:95 msgid "Choose who can reply" -msgstr "" +msgstr "選擇哪些人可以回覆" -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" msgstr "選擇您的密碼" -#: src/view/screens/Settings/index.tsx:910 +#: src/view/screens/Settings/index.tsx:911 msgid "Clear all legacy storage data" msgstr "清除所有遺留資料" -#: src/view/screens/Settings/index.tsx:913 +#: src/view/screens/Settings/index.tsx:914 msgid "Clear all legacy storage data (restart after this)" msgstr "清除所有遺留資料(並重啟)" -#: src/view/screens/Settings/index.tsx:922 +#: src/view/screens/Settings/index.tsx:923 msgid "Clear all storage data" msgstr "清除所有資料" -#: src/view/screens/Settings/index.tsx:925 +#: src/view/screens/Settings/index.tsx:926 msgid "Clear all storage data (restart after this)" msgstr "清除所有資料(並重啟)" @@ -1000,11 +1021,11 @@ msgstr "清除所有資料(並重啟)" msgid "Clear search query" msgstr "清除搜尋記錄" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" msgstr "清除所有遺留資料" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" msgstr "清除所有資料" @@ -1045,7 +1066,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:189 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "Close" msgstr "關閉" @@ -1108,11 +1129,11 @@ msgstr "關閉貼文編輯頁並捨棄草稿" msgid "Closes viewer for header image" msgstr "關閉標題圖片檢視器" -#: src/view/com/notifications/FeedItem.tsx:226 +#: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" msgstr "折疊用戶清單" -#: src/view/com/notifications/FeedItem.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:437 msgid "Collapses list of users for a given notification" msgstr "折疊指定通知的用戶清單" @@ -1126,16 +1147,16 @@ msgstr "喜劇" msgid "Comics" msgstr "漫畫" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:259 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "社群守則" -#: src/screens/Onboarding/StepFinished.tsx:286 +#: src/screens/Onboarding/StepFinished.tsx:294 msgid "Complete onboarding and start using your account" msgstr "完成初始設定並開始使用您的帳號" -#: src/screens/Signup/index.tsx:206 +#: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" msgstr "完成驗證" @@ -1188,7 +1209,7 @@ msgstr "確認您的年齡:" msgid "Confirm your birthdate" msgstr "確認您的出生日期" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:272 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 @@ -1198,11 +1219,11 @@ msgstr "確認您的出生日期" msgid "Confirmation code" msgstr "驗證碼" -#: src/screens/Login/LoginForm.tsx:305 +#: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." msgstr "連線中…" -#: src/screens/Signup/index.tsx:276 +#: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "聯繫支援" @@ -1239,7 +1260,7 @@ msgstr "內容警告" msgid "Context menu backdrop, click to close the menu." msgstr "彈出式選單背景,點擊以關閉選單。" -#: src/screens/Onboarding/StepInterests/index.tsx:258 +#: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "繼續" @@ -1252,9 +1273,9 @@ msgstr "以 {0} 繼續 (目前已登入)" msgid "Continue thread..." msgstr "繼續載入討論串…" -#: src/screens/Onboarding/StepInterests/index.tsx:255 +#: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/index.tsx:251 +#: src/screens/Signup/BackNextButtons.tsx:59 msgid "Continue to next step" msgstr "繼續下一步" @@ -1271,7 +1292,7 @@ msgstr "烹飪" msgid "Copied" msgstr "已複製" -#: src/view/screens/Settings/index.tsx:263 +#: src/view/screens/Settings/index.tsx:264 msgid "Copied build version to clipboard" msgstr "已複製建構版本號至剪貼簿" @@ -1280,7 +1301,7 @@ msgstr "已複製建構版本號至剪貼簿" #: 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/post-ctrls/PostCtrls.tsx:350 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "已複製至剪貼簿" @@ -1308,11 +1329,11 @@ msgstr "複製程式碼" #: src/components/StarterPack/ShareDialog.tsx:123 msgid "Copy link" -msgstr "" +msgstr "複製連結" #: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" -msgstr "" +msgstr "複製連結" #: src/view/screens/ProfileList.tsx:428 msgid "Copy link to list" @@ -1335,9 +1356,9 @@ msgstr "複製貼文文字" #: src/components/StarterPack/QrCodeDialog.tsx:168 msgid "Copy QR code" -msgstr "" +msgstr "複製 QR Code" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "著作權政策" @@ -1360,32 +1381,32 @@ msgstr "無法靜音對話" #: src/components/StarterPack/ProfileStarterPacks.tsx:272 msgid "Create" -msgstr "" +msgstr "建立" #: src/view/com/auth/SplashScreen.tsx:57 #: src/view/com/auth/SplashScreen.web.tsx:106 msgid "Create a new account" msgstr "建立新帳號" -#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" msgstr "建立新的 Bluesky 帳號" #: src/components/StarterPack/QrCodeDialog.tsx:151 msgid "Create a QR code for a starter pack" -msgstr "" +msgstr "為入門包建立 QR Code" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:338 msgid "Create a starter pack" -msgstr "" +msgstr "選擇一個入門包" #: src/components/StarterPack/ProfileStarterPacks.tsx:246 msgid "Create a starter pack for me" -msgstr "" +msgstr "為我建立一個入門包" -#: src/screens/Signup/index.tsx:154 +#: src/screens/Signup/index.tsx:88 msgid "Create Account" msgstr "建立帳號" @@ -1400,7 +1421,7 @@ msgstr "或是建立一個頭像" #: src/components/StarterPack/ProfileStarterPacks.tsx:172 msgid "Create another" -msgstr "" +msgstr "建立另外一個" #: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" @@ -1411,10 +1432,6 @@ msgstr "建立應用程式專用密碼" msgid "Create new account" msgstr "建立新帳號" -#: src/components/StarterPack/ShareDialog.tsx:158 -#~ msgid "Create QR code" -#~ msgstr "" - #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" msgstr "建立 {0} 的檢舉" @@ -1437,7 +1454,7 @@ msgstr "自訂" msgid "Custom domain" msgstr "自訂網域" -#: src/view/screens/Feeds.tsx:747 +#: src/view/screens/Feeds.tsx:760 #: src/view/screens/Search/Explore.tsx:390 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "由社群打造的自訂動態源帶來全新體驗,幫助您找到所愛的內容。" @@ -1446,8 +1463,8 @@ msgstr "由社群打造的自訂動態源帶來全新體驗,幫助您找到所 msgid "Customize media from external sites." msgstr "自訂外部網站的媒體。" -#: src/view/screens/Settings/index.tsx:458 -#: src/view/screens/Settings/index.tsx:484 +#: src/view/screens/Settings/index.tsx:459 +#: src/view/screens/Settings/index.tsx:485 msgid "Dark" msgstr "深色" @@ -1455,24 +1472,24 @@ msgstr "深色" msgid "Dark mode" msgstr "深色模式" -#: src/view/screens/Settings/index.tsx:471 +#: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" msgstr "深色主題" -#: src/screens/Signup/StepInfo/index.tsx:134 +#: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" msgstr "出生日期" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" msgstr "停用帳號" -#: src/view/screens/Settings/index.tsx:818 +#: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" msgstr "停用我的帳號" -#: src/view/screens/Settings/index.tsx:873 +#: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" msgstr "內容管理偵錯" @@ -1481,16 +1498,16 @@ msgid "Debug panel" msgstr "偵錯面板" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:484 -#: src/screens/StarterPack/StarterPackScreen.tsx:563 -#: src/screens/StarterPack/StarterPackScreen.tsx:643 +#: 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/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "刪除" -#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:829 msgid "Delete account" msgstr "刪除帳號" @@ -1506,8 +1523,8 @@ msgstr "刪除應用程式專用密碼" msgid "Delete app password?" msgstr "刪除應用程式專用密碼?" -#: src/view/screens/Settings/index.tsx:890 -#: src/view/screens/Settings/index.tsx:893 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" msgstr "刪除對話聲明紀錄" @@ -1531,7 +1548,7 @@ msgstr "為我刪除訊息" msgid "Delete my account" msgstr "刪除我的帳號" -#: src/view/screens/Settings/index.tsx:840 +#: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" msgstr "刪除我的帳號…" @@ -1540,14 +1557,14 @@ msgstr "刪除我的帳號…" msgid "Delete post" msgstr "刪除貼文" -#: src/screens/StarterPack/StarterPackScreen.tsx:478 -#: src/screens/StarterPack/StarterPackScreen.tsx:634 +#: src/screens/StarterPack/StarterPackScreen.tsx:556 +#: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" -msgstr "" +msgstr "刪除入門包" -#: src/screens/StarterPack/StarterPackScreen.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" -msgstr "" +msgstr "刪除入門包?" #: src/view/screens/ProfileList.tsx:662 msgid "Delete this list?" @@ -1565,7 +1582,7 @@ msgstr "已刪除" msgid "Deleted post." msgstr "已刪除的貼文。" -#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" msgstr "刪除對話聲明紀錄" @@ -1584,7 +1601,7 @@ msgstr "生動的替代文字" msgid "Did you want to say anything?" msgstr "有什麼想說的嗎?" -#: src/view/screens/Settings/index.tsx:477 +#: src/view/screens/Settings/index.tsx:478 msgid "Dim" msgstr "昏暗" @@ -1626,6 +1643,10 @@ msgstr "捨棄草稿?" msgid "Discourage apps from showing my account to logged-out users" msgstr "阻撓應用程式向未登入用戶顯示我的帳號" +#: src/tours/HomeTour.tsx:70 +msgid "Discover learns which posts you like as you browse." +msgstr "「Discover」動態源會在您瀏覽時了解您喜歡哪些貼文。" + #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -1635,10 +1656,14 @@ msgstr "探索新的自訂動態源" msgid "Discover new feeds" msgstr "探索新的動態源" -#: src/view/screens/Feeds.tsx:744 +#: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" msgstr "探索新的動態源" +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "跳過入門指南" + #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" msgstr "顯示更大的 alt 文本標識" @@ -1659,7 +1684,7 @@ msgstr "DNS 控制台" msgid "Does not include nudity." msgstr "不包含裸露內容。" -#: src/screens/Signup/StepHandle.tsx:105 +#: src/screens/Signup/StepHandle.tsx:156 msgid "Doesn't begin or end with a hyphen" msgstr "不以連字符開頭或結尾" @@ -1704,16 +1729,16 @@ msgstr "完成" msgid "Done{extraText}" msgstr "完成{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" -msgstr "" +msgstr "下載 Bluesky" #: src/view/screens/Settings/ExportCarDialog.tsx:77 #: src/view/screens/Settings/ExportCarDialog.tsx:81 msgid "Download CAR file" msgstr "下載 CAR 檔案" -#: src/view/com/composer/text-input/TextInput.web.tsx:272 +#: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" msgstr "拖放即可新增圖片" @@ -1757,11 +1782,11 @@ msgstr "例如:多次張貼廣告的用戶。" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "每個邀請碼僅能使用一次。您將定期收到更多的邀請碼。" -#: src/screens/StarterPack/StarterPackScreen.tsx:473 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "編輯" @@ -1777,7 +1802,7 @@ msgstr "編輯頭像" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" -msgstr "" +msgstr "編輯動態源" #: src/view/com/composer/photos/Gallery.tsx:151 #: src/view/com/modals/EditImage.tsx:208 @@ -1792,9 +1817,9 @@ msgstr "編輯列表詳情" msgid "Edit Moderation List" msgstr "編輯內容管理列表" -#: src/Navigation.tsx:271 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 +#: src/Navigation.tsx:274 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "編輯我的動態源" @@ -1805,7 +1830,7 @@ msgstr "編輯我的個人檔案" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" -msgstr "" +msgstr "編輯人物" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 @@ -1817,9 +1842,9 @@ msgstr "編輯個人檔案" msgid "Edit Profile" msgstr "編輯個人檔案" -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" -msgstr "" +msgstr "編輯入門包" #: src/view/com/modals/CreateOrEditList.tsx:234 msgid "Edit User List" @@ -1837,9 +1862,9 @@ msgstr "編輯您的顯示名稱" msgid "Edit your profile description" msgstr "編輯您的帳號描述" -#: src/Navigation.tsx:335 +#: src/Navigation.tsx:343 msgid "Edit your starter pack" -msgstr "" +msgstr "編輯您的入門包" #: src/screens/Onboarding/index.tsx:31 #: src/screens/Onboarding/state.ts:86 @@ -1848,9 +1873,9 @@ msgstr "教育" #: src/components/dialogs/ThreadgateEditor.tsx:98 msgid "Either choose \"Everybody\" or \"Nobody\"" -msgstr "" +msgstr "選擇「所有人」或「沒有人」" -#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "電子郵件" @@ -1876,7 +1901,7 @@ msgstr "電子郵件已更新" msgid "Email verified" msgstr "電子郵件已驗證" -#: src/view/screens/Settings/index.tsx:349 +#: src/view/screens/Settings/index.tsx:350 msgid "Email:" msgstr "電子郵件:" @@ -1929,6 +1954,10 @@ msgstr "啟用" msgid "End of feed" 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 "入門指南已結束,沒有進一步的選項。若仍需取得更多選項請返回上一步,或點擊跳過。" + #: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "輸入此應用程式專用密碼的名稱" @@ -1963,7 +1992,7 @@ msgid "Enter your birth date" msgstr "輸入您的出生日期" #: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:92 +#: src/screens/Signup/StepInfo/index.tsx:152 msgid "Enter your email address" msgstr "輸入您的電子郵件地址" @@ -1983,11 +2012,11 @@ msgstr "輸入您的用戶名稱和密碼" msgid "Error occurred while saving file" msgstr "儲存檔案時發生錯誤" -#: src/screens/Signup/StepCaptcha/index.tsx:51 +#: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." msgstr "Captcha 給出了錯誤的回應。" -#: src/screens/Onboarding/StepInterests/index.tsx:197 +#: src/screens/Onboarding/StepInterests/index.tsx:216 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "錯誤:" @@ -2042,7 +2071,7 @@ msgstr "退出輸入搜索查詢" msgid "Expand alt text" msgstr "展開替代文字" -#: src/view/com/notifications/FeedItem.tsx:227 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" msgstr "展開用戶清單" @@ -2059,12 +2088,12 @@ msgstr "露骨或可能令人不安的媒體內容。" msgid "Explicit sexual images." msgstr "露骨的色情圖片。" -#: src/view/screens/Settings/index.tsx:786 +#: src/view/screens/Settings/index.tsx:787 msgid "Export my data" msgstr "匯出我的資料" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:797 +#: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" msgstr "匯出我的資料" @@ -2078,13 +2107,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:290 +#: src/Navigation.tsx:293 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/view/screens/Settings/index.tsx:680 msgid "External Media Preferences" msgstr "外部媒體偏好" -#: src/view/screens/Settings/index.tsx:670 +#: src/view/screens/Settings/index.tsx:671 msgid "External media settings" msgstr "外部媒體設定" @@ -2096,7 +2125,7 @@ msgstr "建立應用程式專用密碼失敗。" #: src/screens/StarterPack/Wizard/index.tsx:230 #: src/screens/StarterPack/Wizard/index.tsx:238 msgid "Failed to create starter pack" -msgstr "" +msgstr "無法建立入門包" #: src/view/com/modals/CreateOrEditList.tsx:194 msgid "Failed to create the list. Check your internet connection and try again." @@ -2110,9 +2139,9 @@ msgstr "無法刪除訊息" msgid "Failed to delete post, please try again" msgstr "無法刪除貼文,請重試" -#: src/screens/StarterPack/StarterPackScreen.tsx:597 +#: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" -msgstr "" +msgstr "無法刪除入門包" #: src/view/screens/Search/Explore.tsx:426 #: src/view/screens/Search/Explore.tsx:454 @@ -2154,7 +2183,7 @@ msgstr "無法提交申訴,請重試。" msgid "Failed to toggle thread mute, please try again" msgstr "無法將討論串設為靜音,請重試" -#: src/components/FeedCard.tsx:285 +#: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" msgstr "無法更新動態" @@ -2163,34 +2192,31 @@ msgstr "無法更新動態" msgid "Failed to update settings" msgstr "無法更新設定" -#: src/Navigation.tsx:211 +#: src/Navigation.tsx:214 msgid "Feed" msgstr "動態" -#: src/components/FeedCard.tsx:161 +#: src/components/FeedCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "{0} 建立的動態源" -#: src/view/screens/Feeds.tsx:675 -#~ msgid "Feed offline" -#~ msgstr "動態源已離線" - #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Feed toggle" -msgstr "" +msgstr "切換動態源" -#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "意見回饋" -#: src/Navigation.tsx:320 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 +#: src/Navigation.tsx:323 +#: 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:373 +#: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" @@ -2200,7 +2226,7 @@ msgstr "動態源" msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "動態源是一種自訂演算法,使用者只需掌握一點開發技巧即可輕鬆構建。更多資訊請<0/>。" -#: src/components/FeedCard.tsx:282 +#: src/components/FeedCard.tsx:266 msgid "Feeds updated!" msgstr "動態已更新!" @@ -2216,7 +2242,7 @@ msgstr "文件儲存成功!" msgid "Filter from feeds" msgstr "動態源中的篩選" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 msgid "Finalizing" msgstr "正在完成" @@ -2226,6 +2252,10 @@ msgstr "正在完成" msgid "Find accounts to follow" msgstr "尋找一些帳號來跟隨" +#: src/tours/HomeTour.tsx:88 +msgid "Find more feeds and accounts to follow in the Explore page." +msgstr "在探索頁面中尋找更多想要追蹤的動態源和帳號。" + #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "在 Bluesky 上尋找貼文和用戶" @@ -2240,13 +2270,17 @@ msgstr "微調討論串。" #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" -msgstr "" +msgstr "完成" + +#: src/tours/Tooltip.tsx:149 +msgid "Finish tour and begin using the application" +msgstr "完成導覽並開始使用程式" #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "健康" -#: src/screens/Onboarding/StepFinished.tsx:269 +#: src/screens/Onboarding/StepFinished.tsx:277 msgid "Flexible" msgstr "靈活" @@ -2259,6 +2293,8 @@ msgstr "水平翻轉" msgid "Flip vertically" msgstr "垂直翻轉" +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:318 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2281,15 +2317,19 @@ msgstr "跟隨 {0}" msgid "Follow {name}" msgstr "跟隨 {name}" +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "跟隨 7 個帳號" + #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" msgstr "跟隨帳號" -#: src/screens/StarterPack/StarterPackScreen.tsx:345 -#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:405 +#: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" -msgstr "" +msgstr "全部跟隨" #: src/view/com/post-thread/PostThreadFollowBtn.tsx:144 msgid "Follow Back" @@ -2299,7 +2339,7 @@ msgstr "回追蹤" msgid "Follow more accounts to get connected to your interests and build your network." msgstr "跟隨更多帳號以瞭解您的興趣,並建立您的社群網路。" -#: src/view/com/profile/ProfileCard.tsx:227 +#: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" msgstr "由 {0} 跟隨" @@ -2327,16 +2367,20 @@ msgstr "已跟隨的用戶" msgid "Followed users only" msgstr "僅限已跟隨的用戶" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:197 msgid "followed you" msgstr "已跟隨您" +#: src/view/com/notifications/FeedItem.tsx:195 +msgid "followed you back" +msgstr "回跟" + #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "跟隨者" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" msgstr "您所認識的這些人也跟隨了 @{0}" @@ -2345,12 +2389,14 @@ msgstr "您所認識的這些人也跟隨了 @{0}" msgid "Followers you know" msgstr "您也認識的跟隨者" +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:312 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:630 +#: src/view/screens/Feeds.tsx:631 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" @@ -2364,21 +2410,25 @@ msgstr "已跟隨 {0}" msgid "Following {name}" msgstr "已跟隨 {name}" -#: src/view/screens/Settings/index.tsx:573 +#: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" msgstr "「Following」動態源偏好" -#: src/Navigation.tsx:277 +#: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "Following Feed Preferences" msgstr "「Following」動態源偏好" +#: src/tours/HomeTour.tsx:59 +msgid "Following shows the latest posts from people you follow." +msgstr "「Following」動態源顯示您跟隨用戶的最新貼文。" + #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "跟隨您" -#: src/view/com/profile/ProfileCard.tsx:152 +#: src/components/Pills.tsx:165 msgid "Follows You" msgstr "跟隨您" @@ -2400,11 +2450,11 @@ msgstr "為了保護您的帳號安全,您將無法再次查看此內容。如 msgid "Forgot Password" msgstr "忘記密碼" -#: src/screens/Login/LoginForm.tsx:227 +#: src/screens/Login/LoginForm.tsx:246 msgid "Forgot password?" msgstr "忘記密碼?" -#: src/screens/Login/LoginForm.tsx:238 +#: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" msgstr "忘記?" @@ -2427,7 +2477,7 @@ msgstr "相簿" #: src/components/StarterPack/ProfileStarterPacks.tsx:279 msgid "Generate a starter pack" -msgstr "" +msgstr "建立入門包" #: src/components/dms/MessagesNUX.tsx:168 msgid "Get started" @@ -2438,6 +2488,10 @@ msgstr "開始" msgid "Get Started" msgstr "開始" +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "開始吧" + #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" msgstr "GIF" @@ -2452,37 +2506,41 @@ msgstr "明顯違反法律或服務條款" #: src/components/moderation/ScreenHider.tsx:151 #: src/components/moderation/ScreenHider.tsx:160 -#: src/view/com/auth/LoggedOut.tsx:78 -#: src/view/com/auth/LoggedOut.tsx:79 +#: src/view/com/auth/LoggedOut.tsx:80 +#: src/view/com/auth/LoggedOut.tsx:81 #: src/view/screens/NotFound.tsx:55 #: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "返回" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:656 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 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/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:225 +#: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" msgstr "返回上一步" #: src/screens/StarterPack/Wizard/index.tsx:300 msgid "Go back to the previous step" -msgstr "" +msgstr "返回上一步" #: src/view/screens/NotFound.tsx:55 msgid "Go home" @@ -2505,6 +2563,10 @@ msgstr "前往下一步" msgid "Go to profile" msgstr "前往個人檔案" +#: src/tours/Tooltip.tsx:138 +msgid "Go to the next step of the tour" +msgstr "前往導覽的下一步" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "前往用戶的個人檔案" @@ -2513,6 +2575,10 @@ msgstr "前往用戶的個人檔案" msgid "Graphic Media" msgstr "不適宜的圖像媒體" +#: src/state/shell/progress-guide.tsx:167 +msgid "Half way there!" +msgstr "已經完成一半了!" + #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" msgstr "帳號代碼" @@ -2525,19 +2591,19 @@ msgstr "觸覺" msgid "Harassment, trolling, or intolerance" msgstr "騷擾、惡作劇或其他無法容忍的行為" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:308 msgid "Hashtag" msgstr "標籤" -#: src/components/RichText.tsx:216 +#: src/components/RichText.tsx:218 msgid "Hashtag: #{tag}" msgstr "標籤:#{tag}" -#: src/screens/Signup/index.tsx:272 +#: src/screens/Signup/index.tsx:167 msgid "Having trouble?" msgstr "遇到問題?" -#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/desktop/RightNav.tsx:99 #: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "幫助" @@ -2561,7 +2627,7 @@ msgstr "這是您的應用程式專用密碼。" msgid "Hide" msgstr "隱藏" -#: src/view/com/notifications/FeedItem.tsx:433 +#: src/view/com/notifications/FeedItem.tsx:444 msgctxt "action" msgid "Hide" msgstr "隱藏" @@ -2580,7 +2646,7 @@ msgstr "隱藏內容" msgid "Hide this post?" msgstr "隱藏這則貼文?" -#: src/view/com/notifications/FeedItem.tsx:424 +#: src/view/com/notifications/FeedItem.tsx:435 msgid "Hide user list" msgstr "隱藏用戶列表" @@ -2612,10 +2678,10 @@ msgstr "抱歉,看起來我們在載入這些資料時遇到了問題,請參 msgid "Hmmmm, we couldn't load that moderation service." msgstr "抱歉,我們無法載入該內容管理服務。" -#: src/Navigation.tsx:511 -#: src/Navigation.tsx:531 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: src/Navigation.tsx:519 +#: src/Navigation.tsx:539 +#: 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 msgid "Home" @@ -2626,8 +2692,8 @@ msgid "Host:" msgstr "主機:" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:160 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:180 +#: src/screens/Signup/StepInfo/index.tsx:106 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "託管服務供應商" @@ -2697,7 +2763,7 @@ msgstr "圖片替代文字" #: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" -msgstr "" +msgstr "圖片已儲存至您的圖片庫!" #: src/lib/moderation/useReportOptions.ts:49 msgid "Impersonation or false claims about identity or affiliation" @@ -2727,19 +2793,15 @@ msgstr "輸入新密碼" msgid "Input password for account deletion" msgstr "輸入密碼以刪除帳號" -#: src/screens/Login/LoginForm.tsx:266 +#: src/screens/Login/LoginForm.tsx:286 msgid "Input the code which has been emailed to you" msgstr "輸入寄送至您電子郵件地址的驗證碼" -#: src/screens/Login/LoginForm.tsx:221 -msgid "Input the password tied to {identifier}" -msgstr "輸入與 {identifier} 關聯的密碼" - -#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Login/LoginForm.tsx:215 msgid "Input the username or email address you used at signup" msgstr "輸入註冊時使用的用戶名稱或電子郵件地址" -#: src/screens/Login/LoginForm.tsx:220 +#: src/screens/Login/LoginForm.tsx:241 msgid "Input your password" msgstr "輸入您的密碼" @@ -2747,7 +2809,7 @@ msgstr "輸入您的密碼" msgid "Input your preferred hosting provider" msgstr "輸入您的託管服務供應商" -#: src/screens/Signup/StepHandle.tsx:63 +#: src/screens/Signup/StepHandle.tsx:111 msgid "Input your user handle" msgstr "輸入您的帳號代碼" @@ -2755,7 +2817,7 @@ msgstr "輸入您的帳號代碼" msgid "Introducing Direct Messages" msgstr "為您隆重介紹「私人訊息」" -#: src/screens/Login/LoginForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:140 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "無效的雙重驗證碼。" @@ -2764,7 +2826,7 @@ msgstr "無效的雙重驗證碼。" msgid "Invalid or unsupported post record" msgstr "無效或不支援的貼文紀錄" -#: src/screens/Login/LoginForm.tsx:140 +#: src/screens/Login/LoginForm.tsx:145 msgid "Invalid username or password" msgstr "用戶名稱或密碼無效" @@ -2772,11 +2834,11 @@ msgstr "用戶名稱或密碼無效" msgid "Invite a Friend" msgstr "邀請朋友" -#: src/screens/Signup/StepInfo/index.tsx:58 +#: src/screens/Signup/StepInfo/index.tsx:124 msgid "Invite code" msgstr "邀請碼" -#: src/screens/Signup/state.ts:275 +#: src/screens/Signup/state.ts:251 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "邀請碼無效。請檢查您輸入的內容是否正確,然後重試。" @@ -2790,32 +2852,34 @@ msgstr "邀請碼:1 個可用" #: src/components/StarterPack/ShareDialog.tsx:96 msgid "Invite people to this starter pack!" -msgstr "" +msgstr "用這個入門包來邀請他人!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:35 msgid "Invite your friends to follow your favorite feeds and people" -msgstr "" +msgstr "邀請您的朋友跟隨您喜歡的動態源和人物" #: src/screens/StarterPack/Wizard/StepDetails.tsx:32 msgid "Invites, but personal" -msgstr "" +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:200 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackScreen.tsx:432 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" -msgstr "" +msgstr "加入 Bluesky" #: src/components/StarterPack/QrCode.tsx:56 msgid "Join the conversation" -msgstr "" +msgstr "加入對話" #: src/screens/Onboarding/index.tsx:21 #: src/screens/Onboarding/state.ts:89 @@ -2850,16 +2914,16 @@ msgstr "您內容上的標記" msgid "Language selection" msgstr "語言選擇" -#: src/view/screens/Settings/index.tsx:530 +#: src/view/screens/Settings/index.tsx:531 msgid "Language settings" msgstr "語言設定" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:155 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "語言設定" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Languages" msgstr "語言" @@ -2919,35 +2983,45 @@ msgstr "離開 Bluesky" msgid "left to go." msgstr "個人在排在您前面。" -#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:309 msgid "Legacy storage cleared, you need to restart the app now." msgstr "遺留資料已清除,您需要立即重新啟動應用程式。" #: src/components/StarterPack/ProfileStarterPacks.tsx:295 msgid "Let me choose" -msgstr "" +msgstr "讓我選擇" #: src/screens/Login/index.tsx:130 #: src/screens/Login/index.tsx:145 msgid "Let's get your password reset!" msgstr "讓我們來重設您的密碼吧!" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 +#: src/tours/Tooltip.tsx:151 msgid "Let's go!" msgstr "讓我們開始吧!" -#: src/view/screens/Settings/index.tsx:452 +#: src/view/screens/Settings/index.tsx:453 msgid "Light" msgstr "亮色" +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "喜歡 10 個貼文" + +#: src/state/shell/progress-guide.tsx:163 +#: src/state/shell/progress-guide.tsx:168 +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 msgid "Like this feed" msgstr "對這個動態源按喜歡" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:216 -#: src/Navigation.tsx:221 +#: src/Navigation.tsx:219 +#: src/Navigation.tsx:224 msgid "Liked by" msgstr "按喜歡的用戶" @@ -2957,11 +3031,11 @@ msgstr "按喜歡的用戶" msgid "Liked By" msgstr "按喜歡的用戶" -#: src/view/com/notifications/FeedItem.tsx:190 +#: src/view/com/notifications/FeedItem.tsx:201 msgid "liked your custom feed" msgstr "對您的自訂動態源表示喜歡" -#: src/view/com/notifications/FeedItem.tsx:182 +#: src/view/com/notifications/FeedItem.tsx:185 msgid "liked your post" msgstr "已喜歡您的貼文" @@ -2973,7 +3047,7 @@ msgstr "喜歡" msgid "Likes on this post" msgstr "這條貼文的喜歡數" -#: src/Navigation.tsx:185 +#: src/Navigation.tsx:188 msgid "List" msgstr "列表" @@ -2985,7 +3059,7 @@ msgstr "列表頭像" msgid "List blocked" msgstr "列表已封鎖" -#: src/components/FeedCard.tsx:155 +#: src/components/ListCard.tsx:113 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "列表由 {0} 建立" @@ -3010,10 +3084,10 @@ msgstr "已解除封鎖的列表" msgid "List unmuted" msgstr "已解除靜音的列表" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:125 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/desktop/LeftNav.tsx:385 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 msgid "Lists" @@ -3050,7 +3124,7 @@ msgstr "載入新的貼文" msgid "Loading..." msgstr "載入中…" -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:239 msgid "Log" msgstr "日誌" @@ -3074,7 +3148,7 @@ msgstr "登出可見性" msgid "Login to account that is not listed" msgstr "登入未列出的帳號" -#: src/components/RichText.tsx:217 +#: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" msgstr "長按開啟 #{tag} 的標籤選單" @@ -3096,7 +3170,7 @@ msgstr "您看起來需要「Following」動態源,<0>點選這裡來新增。 #: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" -msgstr "" +msgstr "為我製作一個" #: src/view/com/modals/LinkWarning.tsx:79 msgid "Make sure this is where you intend to go!" @@ -3155,7 +3229,7 @@ msgstr "訊息太長了" msgid "Message settings" msgstr "訊息設定" -#: src/Navigation.tsx:526 +#: src/Navigation.tsx:534 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3166,9 +3240,9 @@ msgstr "訊息" msgid "Misleading Account" msgstr "誤導性帳號" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:130 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Moderation" msgstr "內容管理" @@ -3176,7 +3250,7 @@ msgstr "內容管理" msgid "Moderation details" msgstr "內容管理詳情" -#: src/components/FeedCard.tsx:157 +#: src/components/ListCard.tsx:109 #: src/view/com/lists/ListCard.tsx:95 #: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" @@ -3204,16 +3278,16 @@ msgstr "內容管理列表已更新" msgid "Moderation lists" msgstr "內容管理列表" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "內容管理列表" -#: src/view/screens/Settings/index.tsx:555 +#: src/view/screens/Settings/index.tsx:556 msgid "Moderation settings" msgstr "內容管理設定" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:234 msgid "Moderation states" msgstr "內容管理狀態" @@ -3244,7 +3318,11 @@ msgstr "最多喜歡數優先" #: src/screens/Onboarding/state.ts:90 msgid "Movies" -msgstr "" +msgstr "電影" + +#: src/screens/Onboarding/state.ts:91 +msgid "Music" +msgstr "音樂" #: src/components/TagMenu/index.tsx:249 msgid "Mute" @@ -3314,7 +3392,7 @@ msgstr "已靜音" msgid "Muted accounts" msgstr "已靜音帳號" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "已靜音帳號" @@ -3340,19 +3418,19 @@ msgstr "封鎖是私人的。被封鎖的帳號可以與您互動,但您將無 msgid "My Birthday" msgstr "我的生日" -#: src/view/screens/Feeds.tsx:718 +#: src/view/screens/Feeds.tsx:731 msgid "My Feeds" msgstr "我的動態源" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "我的個人檔案" -#: src/view/screens/Settings/index.tsx:616 +#: src/view/screens/Settings/index.tsx:617 msgid "My saved feeds" msgstr "我儲存的動態源" -#: src/view/screens/Settings/index.tsx:622 +#: src/view/screens/Settings/index.tsx:623 msgid "My Saved Feeds" msgstr "我儲存的動態源" @@ -3373,16 +3451,20 @@ msgid "Name or Description Violates Community Standards" msgstr "名稱或描述違反社群標準" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:92 msgid "Nature" msgstr "自然" +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "跳至 {0}" + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" -msgstr "" +msgstr "切換到入門包" #: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:332 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "切換到下一畫面" @@ -3395,7 +3477,7 @@ msgstr "切換到您的個人檔案" msgid "Need to report a copyright violation?" msgstr "需要檢舉侵權嗎?" -#: src/screens/Onboarding/StepFinished.tsx:257 +#: src/screens/Onboarding/StepFinished.tsx:265 msgid "Never lose access to your followers or data." msgstr "永遠不會失去對您的跟隨者或資料的存取權。" @@ -3439,17 +3521,17 @@ msgctxt "action" msgid "New post" msgstr "新貼文" -#: src/view/screens/Feeds.tsx:580 +#: 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/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/shell/desktop/LeftNav.tsx:278 msgid "New post" msgstr "新貼文" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:284 msgctxt "action" msgid "New Post" msgstr "新貼文" @@ -3467,21 +3549,22 @@ msgid "Newest replies first" msgstr "最新回覆優先" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:93 msgid "News" msgstr "新聞" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:311 -#: src/screens/Login/LoginForm.tsx:318 +#: src/screens/Login/LoginForm.tsx:331 +#: src/screens/Login/LoginForm.tsx:338 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:258 +#: src/screens/Signup/BackNextButtons.tsx:66 #: src/screens/StarterPack/Wizard/index.tsx:184 #: src/screens/StarterPack/Wizard/index.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:359 #: src/screens/StarterPack/Wizard/index.tsx:366 +#: src/tours/Tooltip.tsx:139 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3516,13 +3599,13 @@ msgstr "未找到精選 GIF,Tenor 可能發生問題。" #: src/screens/StarterPack/Wizard/StepFeeds.tsx:120 msgid "No feeds found. Try searching for something else." -msgstr "" +msgstr "沒有找到動態。嘗試其他搜尋。" #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "不再跟隨 {0}" -#: src/screens/Signup/StepHandle.tsx:115 +#: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" msgstr "不超過 253 個字符" @@ -3562,7 +3645,7 @@ msgstr "沒有結果" msgid "No results found" msgstr "未找到結果" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" msgstr "未找到「{query}」的結果" @@ -3598,13 +3681,13 @@ 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 "非色情內容裸體" -#: src/Navigation.tsx:117 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "未找到" @@ -3616,7 +3699,7 @@ msgstr "暫時不需要" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:315 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "關於分享的注意事項" @@ -3636,11 +3719,11 @@ msgstr "通知音效" msgid "Notification Sounds" msgstr "通知音效" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:529 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 +#: 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 msgid "Notifications" @@ -3672,7 +3755,7 @@ msgstr "顯示" msgid "Oh no!" msgstr "糟糕!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:152 msgid "Oh no! Something went wrong." msgstr "糟糕!發生了一些錯誤。" @@ -3690,16 +3773,20 @@ msgstr "最舊的回覆優先" #: src/components/StarterPack/QrCode.tsx:69 msgid "on" -msgstr "" +msgstr "在" #: src/lib/hooks/useTimeAgo.ts:81 msgid "on {str}" msgstr "在 {str}" -#: src/view/screens/Settings/index.tsx:256 +#: src/view/screens/Settings/index.tsx:257 msgid "Onboarding reset" msgstr "重新開始引導流程" +#: src/tours/Tooltip.tsx:118 +msgid "Onboarding tour step {0}: {1}" +msgstr "入門指南步驟 {0}:{1}" + #: src/view/com/composer/Composer.tsx:522 msgid "One or more images is missing alt text." msgstr "至少有一張圖片缺失了替代文字。" @@ -3712,7 +3799,7 @@ msgstr "僅支援 .jpg 或 .png 格式的圖片" msgid "Only {0} can reply" msgstr "只有{0}可以回覆" -#: src/screens/Signup/StepHandle.tsx:98 +#: src/screens/Signup/StepHandle.tsx:149 msgid "Only contains letters, numbers, and hyphens" msgstr "只包含字母、數字和連字符" @@ -3728,7 +3815,7 @@ msgstr "糟糕,發生了錯誤!" msgid "Oops!" msgstr "糟糕!" -#: src/screens/Onboarding/StepFinished.tsx:253 +#: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" msgstr "開啟" @@ -3754,7 +3841,7 @@ msgstr "開啟表情符號選擇器" msgid "Open feed options menu" msgstr "開啟動態選項選單" -#: src/view/screens/Settings/index.tsx:736 +#: src/view/screens/Settings/index.tsx:737 msgid "Open links with in-app browser" msgstr "在內建瀏覽器中開啟連結" @@ -3774,16 +3861,16 @@ msgstr "開啟導覽" msgid "Open post options menu" msgstr "開啟貼文選項選單" -#: src/screens/StarterPack/StarterPackScreen.tsx:451 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Open starter pack menu" -msgstr "" +msgstr "開啟入門包選單" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:861 +#: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" msgstr "開啟故事書頁面" -#: src/view/screens/Settings/index.tsx:848 +#: src/view/screens/Settings/index.tsx:849 msgid "Open system log" msgstr "開啟系統日誌" @@ -3793,9 +3880,9 @@ msgstr "開啟 {numItems} 個選項" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 msgid "Opens a dialog to choose who can reply to this thread" -msgstr "" +msgstr "開啟對話窗來選擇哪些人可以回覆此討論串" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Opens accessibility settings" msgstr "開啟無障礙設定" @@ -3807,7 +3894,7 @@ msgstr "開啟除錯項目的額外詳細資訊" msgid "Opens camera on device" msgstr "開啟裝置相機" -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Opens chat settings" msgstr "開啟對話設定" @@ -3815,7 +3902,7 @@ msgstr "開啟對話設定" msgid "Opens composer" msgstr "開啟編輯器" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Opens configurable language settings" msgstr "開啟可以更改的語言設定" @@ -3823,7 +3910,7 @@ msgstr "開啟可以更改的語言設定" msgid "Opens device photo gallery" msgstr "開啟裝置相簿" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" msgstr "開啟外部連結嵌入設定" @@ -3845,27 +3932,27 @@ msgstr "開啟 GIF 選擇對話框" msgid "Opens list of invite codes" msgstr "開啟邀請碼列表" -#: src/view/screens/Settings/index.tsx:808 +#: src/view/screens/Settings/index.tsx:809 msgid "Opens modal for account deactivation confirmation" msgstr "開啟帳號刪除的確認彈窗" -#: src/view/screens/Settings/index.tsx:830 +#: src/view/screens/Settings/index.tsx:831 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "開啟帳號刪除的確認彈窗。需要電子郵件驗證碼" -#: src/view/screens/Settings/index.tsx:765 +#: src/view/screens/Settings/index.tsx:766 msgid "Opens modal for changing your Bluesky password" msgstr "開啟修改 Bluesky 密碼的彈窗" -#: src/view/screens/Settings/index.tsx:720 +#: src/view/screens/Settings/index.tsx:721 msgid "Opens modal for choosing a new Bluesky handle" msgstr "開啟建立新 Bluesky 帳號代碼的彈窗" -#: src/view/screens/Settings/index.tsx:788 +#: src/view/screens/Settings/index.tsx:789 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "開啟下載 Bluesky 帳號數據(存儲庫)的彈窗" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Opens modal for email verification" msgstr "開啟驗證電子郵件的彈窗" @@ -3873,23 +3960,23 @@ msgstr "開啟驗證電子郵件的彈窗" msgid "Opens modal for using custom domain" msgstr "開啟使用自訂網域的彈窗" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Opens moderation settings" msgstr "開啟內容管理設定" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:247 msgid "Opens password reset form" msgstr "開啟密碼重設表單" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "Opens screen with all saved feeds" msgstr "開啟包含所有已儲存的動態源之畫面" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "Opens the app password settings" msgstr "開啟應用程式專用密碼設定畫面" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Opens the Following feed preferences" msgstr "開啟「Following」動態源偏好" @@ -3897,20 +3984,20 @@ msgstr "開啟「Following」動態源偏好" msgid "Opens the linked website" 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 "Opens the storybook page" msgstr "開啟故事書頁面" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" msgstr "開啟系統日誌頁面" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Opens the threads preferences" msgstr "開啟討論串偏好" -#: src/view/com/notifications/FeedItem.tsx:513 +#: src/view/com/notifications/FeedItem.tsx:524 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "開啟這個個人檔案" @@ -3961,8 +4048,8 @@ msgstr "頁面不存在" msgid "Page Not Found" msgstr "頁面不存在" -#: src/screens/Login/LoginForm.tsx:204 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Signup/StepInfo/index.tsx:162 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -3984,15 +4071,16 @@ msgstr "密碼已更新!" msgid "Pause" msgstr "暫停" +#: src/screens/StarterPack/StarterPackScreen.tsx:170 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "用戶" -#: src/Navigation.tsx:172 +#: src/Navigation.tsx:175 msgid "People followed by @{0}" msgstr "被 @{0} 跟隨的人" -#: src/Navigation.tsx:165 +#: src/Navigation.tsx:168 msgid "People following @{0}" msgstr "跟隨 @{0} 的人" @@ -4006,16 +4094,16 @@ msgstr "相簿權限已遭拒絕,請在系統設定中啟用。" #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" -msgstr "" +msgstr "切換帳號" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:94 msgid "Pets" msgstr "寵物" -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:95 msgid "Photography" -msgstr "" +msgstr "攝影" #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." @@ -4059,15 +4147,16 @@ msgstr "播放影片" msgid "Plays the GIF" msgstr "播放 GIF" -#: src/screens/Signup/state.ts:234 +#: src/screens/Signup/state.ts:210 msgid "Please choose your handle." msgstr "請設定您的帳號代碼。" -#: src/screens/Signup/state.ts:227 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:81 msgid "Please choose your password." msgstr "請設定您的密碼。" -#: src/screens/Signup/state.ts:248 +#: src/screens/Signup/state.ts:224 msgid "Please complete the verification captcha." msgstr "請完成 Captcha 驗證。" @@ -4087,10 +4176,15 @@ msgstr "請輸入此應用程式專用密碼的唯一名稱,或使用我們提 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "請輸入有效的文字或標籤進行靜音" -#: src/screens/Signup/state.ts:213 +#: src/screens/Signup/state.ts:189 +#: src/screens/Signup/StepInfo/index.tsx:69 msgid "Please enter your email." msgstr "請輸入您的電子郵件。" +#: src/screens/Signup/StepInfo/index.tsx:63 +msgid "Please enter your invite code." +msgstr "請輸入您的邀請碼。" + #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" msgstr "請輸入您的密碼:" @@ -4117,7 +4211,7 @@ msgid "Please wait for your link card to finish loading" msgstr "請等待您的連結預覽載入完畢" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:96 msgid "Politics" msgstr "政治" @@ -4140,9 +4234,9 @@ msgstr "貼文" msgid "Post by {0}" msgstr "{0} 的貼文" -#: src/Navigation.tsx:191 -#: src/Navigation.tsx:198 -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:194 +#: src/Navigation.tsx:201 +#: src/Navigation.tsx:208 msgid "Post by @{0}" msgstr "@{0} 的貼文" @@ -4181,6 +4275,7 @@ msgstr "找不到貼文" msgid "posts" msgstr "貼文" +#: src/screens/StarterPack/StarterPackScreen.tsx:172 #: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "貼文" @@ -4208,7 +4303,7 @@ msgstr "按下以更改託管服務供應商" #: src/components/Error.tsx:85 #: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/index.tsx:238 +#: src/screens/Signup/BackNextButtons.tsx:46 msgid "Press to retry" msgstr "按下以重試" @@ -4228,15 +4323,15 @@ msgstr "主要語言" msgid "Prioritize Your Follows" msgstr "優先顯示跟隨者" -#: src/view/screens/Settings/index.tsx:654 -#: src/view/shell/desktop/RightNav.tsx:77 +#: src/view/screens/Settings/index.tsx:655 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "隱私" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 +#: src/view/screens/Settings/index.tsx:958 #: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "隱私政策" @@ -4254,8 +4349,8 @@ msgstr "處理中…" msgid "profile" msgstr "個人檔案" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 +#: 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 @@ -4266,11 +4361,11 @@ msgstr "個人檔案" msgid "Profile updated" msgstr "個人檔案已更新" -#: src/view/screens/Settings/index.tsx:1021 +#: src/view/screens/Settings/index.tsx:1022 msgid "Protect your account by verifying your email." msgstr "通過驗證電子郵件地址來保護您的帳號。" -#: src/screens/Onboarding/StepFinished.tsx:239 +#: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" msgstr "公開內容" @@ -4292,15 +4387,19 @@ msgstr "發佈回覆" #: src/components/StarterPack/QrCodeDialog.tsx:125 msgid "QR code copied to your clipboard!" -msgstr "" +msgstr "QR Code 已複製到您的剪貼簿!" #: src/components/StarterPack/QrCodeDialog.tsx:103 msgid "QR code has been downloaded!" -msgstr "" +msgstr "QR Code 下載成功!" #: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" -msgstr "" +msgstr "QR Code 已儲存至您的圖片庫!" + +#: src/tours/Tooltip.tsx:111 +msgid "Quick tip" +msgstr "小建議" #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 @@ -4338,7 +4437,7 @@ msgid "Reload conversations" msgstr "重新載入對話" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:325 +#: src/components/FeedCard.tsx:309 #: src/components/StarterPack/Wizard/WizardListCard.tsx:95 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 @@ -4351,7 +4450,7 @@ msgstr "刪除" #: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" -msgstr "" +msgstr "從您的入門包刪除 {displayName}" #: src/view/com/util/AccountDropdownBtn.tsx:22 msgid "Remove account" @@ -4387,7 +4486,7 @@ msgstr "刪除動態源?" msgid "Remove from my feeds" msgstr "從我的動態源中刪除" -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:304 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "從我的動態源中刪除?" @@ -4461,13 +4560,9 @@ msgstr "回覆" msgid "Replies disabled" msgstr "回覆已被停用" -#: src/view/com/threadgate/WhoCanReply.tsx:123 -#~ msgid "Replies on this thread are disabled" -#~ msgstr "此討論串的回覆已停用" - #: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" -msgstr "此討論串的回覆已停用。" +msgstr "此討論串的回覆已停用" #: src/view/com/composer/Composer.tsx:494 msgctxt "action" @@ -4528,10 +4623,10 @@ msgstr "檢舉訊息" msgid "Report post" msgstr "檢舉貼文" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 -#: src/screens/StarterPack/StarterPackScreen.tsx:507 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 msgid "Report starter pack" -msgstr "" +msgstr "檢舉入門包" #: src/components/ReportDialog/SelectReportOptionView.tsx:43 msgid "Report this content" @@ -4557,7 +4652,7 @@ msgstr "檢舉這則貼文" #: src/components/ReportDialog/SelectReportOptionView.tsx:59 msgid "Report this starter pack" -msgstr "" +msgstr "檢舉這個入門包" #: src/components/ReportDialog/SelectReportOptionView.tsx:47 msgid "Report this user" @@ -4575,7 +4670,7 @@ msgstr "轉貼" msgid "Repost" msgstr "轉貼" -#: src/screens/StarterPack/StarterPackScreen.tsx:446 +#: src/screens/StarterPack/StarterPackScreen.tsx:524 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4594,7 +4689,7 @@ msgstr "由 {0} 轉貼" msgid "Reposted by <0><1/>" msgstr "由 <0><1/> 轉貼" -#: src/view/com/notifications/FeedItem.tsx:184 +#: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "轉貼您的貼文" @@ -4620,7 +4715,7 @@ msgstr "要求發佈前提供替代文字" msgid "Require email code to log into your account" msgstr "登入時要求電子郵件驗證碼" -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" msgstr "此供應商要求必填" @@ -4637,8 +4732,8 @@ msgstr "重設碼" msgid "Reset Code" msgstr "重設碼" -#: src/view/screens/Settings/index.tsx:900 -#: src/view/screens/Settings/index.tsx:903 +#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" msgstr "重設初始設定進行狀態" @@ -4646,20 +4741,20 @@ msgstr "重設初始設定進行狀態" msgid "Reset password" msgstr "重設密碼" -#: src/view/screens/Settings/index.tsx:880 -#: src/view/screens/Settings/index.tsx:883 +#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:884 msgid "Reset preferences state" msgstr "重設偏好狀態" -#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" msgstr "重設初始設定狀態" -#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" msgstr "重設偏好狀態" -#: src/screens/Login/LoginForm.tsx:292 +#: src/screens/Login/LoginForm.tsx:312 msgid "Retries login" msgstr "重試登入" @@ -4672,19 +4767,19 @@ msgstr "重試上次出錯的操作" #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:291 -#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:311 +#: src/screens/Login/LoginForm.tsx:318 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Signup/BackNextButtons.tsx:52 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "重試" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:650 +#: src/screens/StarterPack/StarterPackScreen.tsx:728 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "返回上一頁" @@ -4734,7 +4829,7 @@ msgstr "儲存帳號代碼更改" #: src/components/StarterPack/ShareDialog.tsx:150 #: src/components/StarterPack/ShareDialog.tsx:157 msgid "Save image" -msgstr "" +msgstr "儲存圖片" #: src/view/com/modals/crop-image/CropImage.web.tsx:169 msgid "Save image crop" @@ -4742,7 +4837,7 @@ msgstr "儲存圖片裁剪" #: src/components/StarterPack/QrCodeDialog.tsx:178 msgid "Save QR code" -msgstr "" +msgstr "儲存 QR Code" #: src/view/screens/ProfileFeed.tsx:333 #: src/view/screens/ProfileFeed.tsx:339 @@ -4776,13 +4871,13 @@ msgstr "儲存圖片裁剪設定" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:372 -#: src/view/com/notifications/FeedItem.tsx:397 +#: src/view/com/notifications/FeedItem.tsx:383 +#: src/view/com/notifications/FeedItem.tsx:408 msgid "Say hello!" msgstr "說句「你好!👋」" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:97 msgid "Science" msgstr "科學" @@ -4791,16 +4886,16 @@ msgid "Scroll to top" msgstr "滾動到頂部" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:516 -#: src/view/com/auth/LoggedOut.tsx:119 +#: src/Navigation.tsx:524 +#: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 #: src/view/screens/Search/Search.tsx:791 #: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 +#: 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 @@ -4826,10 +4921,10 @@ msgstr "搜尋所有具有標籤 {displayTag} 的貼文" #: src/screens/StarterPack/Wizard/index.tsx:491 msgid "Search for feeds that you want to suggest to others." -msgstr "" +msgstr "搜尋您想推薦給別人的動態源。" -#: src/view/com/auth/LoggedOut.tsx:101 -#: src/view/com/auth/LoggedOut.tsx:102 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:107 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "搜尋用戶" @@ -4937,11 +5032,11 @@ msgstr "選擇您希望訂閱動態源中所包含的語言。未選擇任何語 msgid "Select your app language for the default text to display in the app." msgstr "選擇應用程式中的預設語言。" -#: src/screens/Signup/StepInfo/index.tsx:135 +#: src/screens/Signup/StepInfo/index.tsx:192 msgid "Select your date of birth" msgstr "選擇您的出生日期" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:225 msgid "Select your interests from the options below" msgstr "從下面選擇您感興趣的選項" @@ -5046,23 +5141,23 @@ msgstr "設定您的帳號" msgid "Sets Bluesky username" msgstr "設定 Bluesky 帳號代碼" -#: src/view/screens/Settings/index.tsx:461 +#: src/view/screens/Settings/index.tsx:462 msgid "Sets color theme to dark" msgstr "將色彩主題設定為深色" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Sets color theme to light" msgstr "將色彩主題設定為亮色" -#: src/view/screens/Settings/index.tsx:448 +#: src/view/screens/Settings/index.tsx:449 msgid "Sets color theme to system setting" msgstr "將色彩主題設定為跟隨系統" -#: src/view/screens/Settings/index.tsx:487 +#: src/view/screens/Settings/index.tsx:488 msgid "Sets dark theme to the dark theme" msgstr "將深色主題設定為深色" -#: src/view/screens/Settings/index.tsx:480 +#: src/view/screens/Settings/index.tsx:481 msgid "Sets dark theme to the dim theme" msgstr "將深色主題設定為昏暗" @@ -5082,9 +5177,9 @@ msgstr "將圖片比例設定為高" msgid "Sets image aspect ratio to wide" msgstr "將圖片比例設定為寬" -#: src/Navigation.tsx:147 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:395 +#: src/Navigation.tsx:150 +#: src/view/screens/Settings/index.tsx:333 +#: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:559 #: src/view/shell/Drawer.tsx:560 msgid "Settings" @@ -5099,13 +5194,13 @@ msgid "Sexually Suggestive" msgstr "性暗示" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:340 -#: src/screens/StarterPack/StarterPackScreen.tsx:493 +#: 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/post-ctrls/PostCtrls.tsx:304 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "分享" @@ -5125,7 +5220,7 @@ msgstr "分享一個趣聞!📰" #: src/view/com/profile/ProfileMenu.tsx:377 #: src/view/com/util/forms/PostDropdownBtn.tsx:461 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:320 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "仍然分享" @@ -5136,9 +5231,9 @@ msgstr "分享動態源" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" -msgstr "" +msgstr "分享連結" #: src/view/com/modals/LinkWarning.tsx:89 #: src/view/com/modals/LinkWarning.tsx:95 @@ -5147,20 +5242,20 @@ msgstr "分享連結" #: src/components/StarterPack/ShareDialog.tsx:87 msgid "Share link dialog" -msgstr "" +msgstr "分享連結對話窗" #: src/components/StarterPack/ShareDialog.tsx:134 #: src/components/StarterPack/ShareDialog.tsx:145 msgid "Share QR code" -msgstr "" +msgstr "分享 QR Code" -#: src/screens/StarterPack/StarterPackScreen.tsx:333 +#: src/screens/StarterPack/StarterPackScreen.tsx:393 msgid "Share this starter pack" -msgstr "" +msgstr "分享這個入門包" #: src/components/StarterPack/ShareDialog.tsx:99 msgid "Share this starter pack and help people join your community on Bluesky." -msgstr "" +msgstr "分享這個入門包,以幫助別人加入你在 Bluesky 的社群。" #: src/components/dms/ChatEmptyPill.tsx:34 msgid "Share your favorite feed!" @@ -5173,11 +5268,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:381 +#: src/view/screens/Settings/index.tsx:382 msgid "Show" msgstr "顯示" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "顯示替代文字" @@ -5264,17 +5359,17 @@ msgstr "在您的動態中顯示來自 {0} 的貼文" #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:100 #: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Login/LoginForm.tsx:177 #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.tsx:72 #: src/view/com/auth/SplashScreen.web.tsx:112 #: src/view/com/auth/SplashScreen.web.tsx:121 -#: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 #: src/view/shell/bottom-bar/BottomBar.tsx:315 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/bottom-bar/BottomBar.tsx:318 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:210 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5302,12 +5397,12 @@ msgstr "登入 Bluesky 或建立新帳號" msgid "Sign out" msgstr "登出" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 #: src/view/shell/bottom-bar/BottomBar.tsx:305 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBar.tsx:306 +#: src/view/shell/bottom-bar/BottomBar.tsx:308 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:200 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5323,7 +5418,7 @@ msgstr "註冊或登入即可參與對話" msgid "Sign-in Required" msgstr "需要登入" -#: src/view/screens/Settings/index.tsx:391 +#: src/view/screens/Settings/index.tsx:392 msgid "Signed in as" msgstr "登入身分" @@ -5332,21 +5427,21 @@ msgstr "登入身分" msgid "Signed in as @{0}" msgstr "以 @{0} 身分登入" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "signed up with your starter pack" -msgstr "" +msgstr "用您的入門包註冊" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 msgid "Signup without a starter pack" -msgstr "" +msgstr "不使用入門包註冊" -#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:264 #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "跳過" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:261 msgid "Skip this flow" msgstr "跳過此流程" @@ -5355,15 +5450,15 @@ msgstr "跳過此流程" msgid "Software Dev" msgstr "軟體開發" +#: src/components/FeedInterstitials.tsx:306 +msgid "Some other feeds you might like" +msgstr "其他你可能喜歡的動態源" + #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "僅部分人可以回覆" -#: src/screens/StarterPack/Wizard/index.tsx:203 -#~ msgid "Some subtitle" -#~ msgstr "" - #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "發生了一些問題" @@ -5379,8 +5474,8 @@ msgstr "發生了一些問題,請重試" msgid "Something went wrong, please try again." msgstr "發生了一些問題,請重試。" -#: src/App.native.tsx:96 -#: src/App.web.tsx:78 +#: src/App.native.tsx:98 +#: src/App.web.tsx:80 msgid "Sorry! Your session expired. Please log in again." msgstr "抱歉!您的登入會話已過期。請重新登入。" @@ -5406,7 +5501,7 @@ msgid "Spam; excessive mentions or replies" msgstr "垃圾訊息、過多的提及或回覆" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:98 msgid "Sports" msgstr "運動" @@ -5426,42 +5521,47 @@ msgstr "與 {displayName} 開始對話" msgid "Start chatting" msgstr "開始對話" +#: src/tours/Tooltip.tsx:99 +msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +msgstr "開始入門指南吧!若需取得更多選項請點選下一步,或點選跳過。" + #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:328 +#: src/Navigation.tsx:333 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" -msgstr "" +msgstr "入門包" -#: src/components/StarterPack/StarterPackCard.tsx:65 +#: src/components/StarterPack/StarterPackCard.tsx:70 msgid "Starter pack by {0}" -msgstr "" +msgstr "由 {0} 建立的入門包" -#: src/screens/StarterPack/StarterPackScreen.tsx:614 +#: src/screens/StarterPack/StarterPackScreen.tsx:692 msgid "Starter pack is invalid" -msgstr "" +msgstr "無效的入門包" #: src/view/screens/Profile.tsx:214 msgid "Starter Packs" -msgstr "" +msgstr "入門包" #: src/components/StarterPack/ProfileStarterPacks.tsx:238 msgid "Starter packs let you easily share your favorite feeds and people with your friends." -msgstr "" +msgstr "入門包讓您輕鬆地分享您喜愛的動態源與人物給您的朋友。" -#: src/view/screens/Settings/index.tsx:963 +#: src/view/screens/Settings/index.tsx:964 msgid "Status Page" msgstr "服務運作狀態頁面" -#: src/screens/Signup/index.tsx:192 +#: src/screens/Signup/index.tsx:125 msgid "Step {0} of {1}" msgstr "第 {0} 步(共 {1} 步)" -#: src/view/screens/Settings/index.tsx:304 +#: src/view/screens/Settings/index.tsx:305 msgid "Storage cleared, you need to restart the app now." msgstr "已清除儲存資料,您需要立即重啟應用程式。" -#: src/Navigation.tsx:226 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:229 +#: src/view/screens/Settings/index.tsx:864 msgid "Storybook" msgstr "故事書" @@ -5496,6 +5596,7 @@ msgstr "訂閱這個列表" msgid "Suggested accounts" msgstr "推薦的帳號" +#: src/components/FeedInterstitials.tsx:178 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "為您推薦" @@ -5504,7 +5605,7 @@ msgstr "為您推薦" msgid "Suggestive" msgstr "性暗示" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:244 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5515,6 +5616,10 @@ msgstr "支援" msgid "Switch Account" msgstr "切換帳號" +#: src/tours/HomeTour.tsx:48 +msgid "Switch between feeds to control your experience." +msgstr "在動態源之間切換以掌控您的體驗。" + #: src/view/screens/Settings/index.tsx:160 msgid "Switch to {0}" msgstr "切換到 {0}" @@ -5523,11 +5628,11 @@ msgstr "切換到 {0}" msgid "Switches the account you are logged in to" msgstr "切換您登入的帳號" -#: src/view/screens/Settings/index.tsx:445 +#: src/view/screens/Settings/index.tsx:446 msgid "System" msgstr "系統" -#: src/view/screens/Settings/index.tsx:851 +#: src/view/screens/Settings/index.tsx:852 msgid "System log" msgstr "系統日誌" @@ -5543,12 +5648,24 @@ msgstr "標籤選單:{displayTag}" msgid "Tall" msgstr "高" +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "點擊以跳過" + #: src/view/com/util/images/AutoSizedImage.tsx:70 msgid "Tap to view fully" msgstr "點擊查看完整內容" +#: src/state/shell/progress-guide.tsx:172 +msgid "Task complete - 10 likes!" +msgstr "任務完成 - 10 個喜歡!" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "讓我們的演算法知道你喜歡什麼" + #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:99 msgid "Tech" msgstr "科技" @@ -5558,15 +5675,15 @@ msgstr "說個笑話!🤡" #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" -msgstr "" +msgstr "告訴我們更多" -#: src/view/shell/desktop/RightNav.tsx:86 +#: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "條款" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:254 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/Settings/index.tsx:952 #: src/view/screens/TermsOfService.tsx:29 #: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" @@ -5597,16 +5714,18 @@ msgstr "謝謝,您的檢舉已提交。" msgid "That contains the following:" msgstr "其中包含以下內容:" -#: src/screens/Signup/index.tsx:100 +#: src/screens/Signup/StepHandle.tsx:50 msgid "That handle is already taken." msgstr "這個帳號代碼已被使用。" -#: src/screens/StarterPack/StarterPackScreen.tsx:105 -#: src/screens/StarterPack/StarterPackScreen.tsx:106 +#: src/screens/StarterPack/StarterPackScreen.tsx:96 +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:136 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." -msgstr "" +msgstr "找不到那個入門包。" #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 #: src/view/com/profile/ProfileMenu.tsx:353 @@ -5621,9 +5740,14 @@ msgstr "社群準則已移動到 <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "版權政策已移動到 <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +#: src/state/shell/progress-guide.tsx:173 +#: src/state/shell/progress-guide.tsx:178 +msgid "The Discover feed now knows what you like" +msgstr "「Discover」動態源現在知道您喜歡什麼" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." -msgstr "" +msgstr "使用應用程式的體驗會更好。現在就下載 Bluesky,我們將從你離開的地方繼續。" #: src/view/com/posts/FeedShutdownMsg.tsx:66 msgid "The feed has been replaced with Discover." @@ -5650,9 +5774,9 @@ msgstr "這則貼文可能已被刪除。" msgid "The Privacy Policy has been moved to <0/>" msgstr "隱私政策已移動到 <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:624 +#: src/screens/StarterPack/StarterPackScreen.tsx:702 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." -msgstr "" +msgstr "您正在嘗試查看的入門包無效。您可以考慮刪除這個入門包。" #: src/view/screens/Support.tsx:36 msgid "The support form has been moved. If you need help, please <0/> or visit {HELP_DESK_URL} to get in touch with us." @@ -5704,7 +5828,7 @@ msgstr "連線伺服器時出現問題" msgid "There was an issue fetching notifications. Tap here to try again." msgstr "取得通知時發生問題,點擊這裡重試。" -#: src/view/com/posts/Feed.tsx:299 +#: src/view/com/posts/Feed.tsx:476 msgid "There was an issue fetching posts. Tap here to try again." msgstr "取得貼文時發生問題,點擊這裡重試。" @@ -5874,7 +5998,7 @@ msgid "This post has been deleted." msgstr "這則貼文已被刪除。" #: src/view/com/util/forms/PostDropdownBtn.tsx:458 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:317 +#: 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 "只有登入用戶能見到這則貼文,未登入的人將看不到它。" @@ -5931,24 +6055,24 @@ 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:594 +#: src/view/screens/Settings/index.tsx:595 msgid "Thread preferences" msgstr "討論串偏好" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/Settings/index.tsx:605 msgid "Thread Preferences" msgstr "討論串偏好" #: src/components/WhoCanReply.tsx:109 msgid "Thread settings updated" -msgstr "" +msgstr "討論串設定已更新" #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "樹狀顯示模式" -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:287 msgid "Threads Preferences" msgstr "討論串偏好" @@ -5999,11 +6123,11 @@ msgctxt "action" msgid "Try again" msgstr "重試" -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:100 msgid "TV" -msgstr "" +msgstr "電視節目" -#: src/view/screens/Settings/index.tsx:745 +#: src/view/screens/Settings/index.tsx:746 msgid "Two-factor authentication" msgstr "雙重驗證" @@ -6025,16 +6149,16 @@ msgstr "取消靜音列表" #: src/screens/Login/ForgotPasswordForm.tsx:74 #: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:79 +#: src/screens/Signup/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "無法連線到服務,請檢查您的網路連線。" -#: src/screens/StarterPack/StarterPackScreen.tsx:548 +#: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Unable to delete" -msgstr "" +msgstr "無法刪除" #: src/components/dms/MessagesListBlockedFooter.tsx:89 #: src/components/dms/MessagesListBlockedFooter.tsx:96 @@ -6285,7 +6409,7 @@ msgstr "已更新用戶列表" msgid "User Lists" msgstr "用戶列表" -#: src/screens/Login/LoginForm.tsx:177 +#: src/screens/Login/LoginForm.tsx:197 msgid "Username or email address" msgstr "帳號代碼或電子郵件地址" @@ -6320,15 +6444,15 @@ msgstr "值:" msgid "Verify DNS Record" msgstr "驗證 DNS 紀錄" -#: src/view/screens/Settings/index.tsx:982 +#: src/view/screens/Settings/index.tsx:983 msgid "Verify email" msgstr "驗證電子郵件" -#: src/view/screens/Settings/index.tsx:1007 +#: src/view/screens/Settings/index.tsx:1008 msgid "Verify my email" msgstr "驗證我的電子郵件" -#: src/view/screens/Settings/index.tsx:1016 +#: src/view/screens/Settings/index.tsx:1017 msgid "Verify My Email" msgstr "驗證我的電子郵件" @@ -6345,7 +6469,7 @@ msgstr "驗證文字檔案" msgid "Verify Your Email" msgstr "驗證您的電子郵件" -#: src/view/screens/Settings/index.tsx:935 +#: src/view/screens/Settings/index.tsx:936 msgid "Version {appVersion} {bundleInfo}" msgstr "版本 {appVersion} {bundleInfo}" @@ -6358,7 +6482,7 @@ msgstr "電子遊戲" msgid "View {0}'s avatar" msgstr "查看 {0} 的頭像" -#: src/view/com/notifications/FeedItem.tsx:234 +#: src/view/com/notifications/FeedItem.tsx:245 msgid "View {0}'s profile" msgstr "查看 {0} 的個人檔案" @@ -6407,7 +6531,7 @@ msgid "View users who like this feed" msgstr "查看喜歡此動態源的用戶" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "查看您的動態並探索更多內容" @@ -6442,7 +6566,7 @@ msgstr "我們無法載入這個對話" msgid "We estimate {estimatedTime} until your account is ready." msgstr "我們估計還需要 {estimatedTime} 才能準備好您的帳號。" -#: src/screens/Onboarding/StepFinished.tsx:231 +#: src/screens/Onboarding/StepFinished.tsx:239 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "我們希望您在此度過愉快的時光。請記住,Bluesky 是:" @@ -6462,7 +6586,7 @@ msgstr "我們無法載入您的出生日期偏好,請再試一次。" msgid "We were unable to load your configured labelers at this time." msgstr "我們目前無法載入您已設定的標記者。" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:157 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "我們無法連線到網際網路,請重試以繼續設定您的帳號。如果仍繼續失敗,您可以選擇跳過此流程。" @@ -6470,7 +6594,7 @@ msgstr "我們無法連線到網際網路,請重試以繼續設定您的帳號 msgid "We will let you know when your account is ready." msgstr "我們會在您的帳號準備好時通知您。" -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:162 msgid "We'll use this to help customize your experience." msgstr "我們將使用這些資訊來協助訂製您的體驗。" @@ -6478,7 +6602,7 @@ msgstr "我們將使用這些資訊來協助訂製您的體驗。" msgid "We're having network issues, try again" msgstr "我們遇到網路問題,請重試" -#: src/screens/Signup/index.tsx:155 +#: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" msgstr "我們非常高興您加入我們!" @@ -6513,15 +6637,15 @@ msgstr "歡迎回來!" #: src/components/NewskieDialog.tsx:103 msgid "Welcome, friend!" -msgstr "" +msgstr "歡迎,朋友!" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" msgstr "您感興趣的是什麼?" #: src/screens/StarterPack/Wizard/StepDetails.tsx:42 msgid "What do you want to call your starter pack?" -msgstr "" +msgstr "您想將您的入門包命名為什麼?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 @@ -6581,7 +6705,7 @@ msgstr "為什麼應該審查這則貼文?" #: src/components/ReportDialog/SelectReportOptionView.tsx:60 msgid "Why should this starter pack be reviewed?" -msgstr "" +msgstr "為什麼應該審查這個入門包?" #: src/components/ReportDialog/SelectReportOptionView.tsx:48 msgid "Why should this user be reviewed?" @@ -6606,7 +6730,7 @@ msgid "Write your reply" msgstr "撰寫您的回覆" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:101 msgid "Writers" msgstr "作家" @@ -6625,9 +6749,9 @@ msgstr "開" msgid "Yes, deactivate" msgstr "確定並停用" -#: src/screens/StarterPack/StarterPackScreen.tsx:560 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 msgid "Yes, delete this starter pack" -msgstr "" +msgstr "是,刪除這個入門包" #: src/screens/Deactivated.tsx:150 msgid "Yes, reactivate my account" @@ -6637,13 +6761,13 @@ msgstr "確定並停用我的帳號" msgid "Yesterday, {time}" msgstr "昨天,{time}" -#: src/components/StarterPack/StarterPackCard.tsx:68 +#: src/components/StarterPack/StarterPackCard.tsx:73 msgid "you" -msgstr "" +msgstr "您" #: src/components/NewskieDialog.tsx:43 msgid "You" -msgstr "" +msgstr "您" #: src/screens/SignupQueued.tsx:136 msgid "You are in line." @@ -6768,7 +6892,7 @@ msgstr "已經到底部啦!" #: src/components/StarterPack/ProfileStarterPacks.tsx:235 msgid "You haven't created a starter pack yet!" -msgstr "" +msgstr "您還沒有建立任何入門包!" #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" @@ -6784,11 +6908,11 @@ msgstr "如果您覺得這些標記有誤,您可以提出申訴。" #: src/screens/StarterPack/Wizard/State.tsx:92 msgid "You may only add up to 50 feeds" -msgstr "" +msgstr "您最多只能新增 50 個動態源" #: src/screens/StarterPack/Wizard/State.tsx:77 msgid "You may only add up to 50 profiles" -msgstr "" +msgstr "您最多只能新增 50 個個人檔案" #: src/screens/Signup/StepInfo/Policies.tsx:79 msgid "You must be 13 years of age or older to sign up." @@ -6796,15 +6920,15 @@ msgstr "您必須年滿 13 歲才能註冊。" #: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." -msgstr "" +msgstr "您必須跟隨至少七個人才能建立入門包。" #: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" -msgstr "" +msgstr "您必須授予對圖片庫的存取權限才能儲存 QR Code" #: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." -msgstr "" +msgstr "您必須授予對圖片庫的存取權限才能儲存圖片。" #: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" @@ -6838,25 +6962,25 @@ msgstr "您:{defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "您:{short}" -#: src/screens/Signup/index.tsx:169 +#: 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:174 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users once you finish creating your account!" -msgstr "" +msgstr "當您完成帳號創建後,您將會跟隨建議的用戶!" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 msgid "You'll follow these people and {0} others" -msgstr "" +msgstr "您將會跟隨這些人物和其他 {0} 人" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 msgid "You'll follow these people right away" -msgstr "" +msgstr "您將會立即跟隨這些人物" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "You'll stay updated with these feeds" -msgstr "" +msgstr "你將透過這些動態源接收最新動態" #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:94 @@ -6869,7 +6993,7 @@ msgstr "輪到您了" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "您正在使用應用程式專用密碼登入。請使用您的主密碼登入,以繼續停用您的帳號。" -#: src/screens/Onboarding/StepFinished.tsx:228 +#: src/screens/Onboarding/StepFinished.tsx:236 msgid "You're ready to go!" msgstr "您已完成設定!" @@ -6882,7 +7006,7 @@ msgstr "您選擇在這則貼文中隱藏文字或標籤。" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "您已經瀏覽完貼文啦!跟隨其他帳號吧。" -#: src/screens/Signup/index.tsx:202 +#: src/screens/Signup/index.tsx:135 msgid "Your account" msgstr "您的帳號" @@ -6894,7 +7018,7 @@ msgstr "您的帳號已刪除" 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」檔案。該檔案包含了所有公開的資料紀錄,但不包括嵌入媒體,例如圖片或您的私人資料,目前這些資料必須另外擷取。" -#: src/screens/Signup/StepInfo/index.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" msgstr "您的生日" @@ -6907,7 +7031,8 @@ msgid "Your choice will be saved, but can be changed later in settings." msgstr "您的選擇將被儲存,但可以稍後在設定中更改。" #: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "您的電子郵件地址似乎無效。" @@ -6920,11 +7045,15 @@ msgstr "您的電子郵件地址已更新但尚未驗證。作為下一步,請 msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "您的電子郵件地址尚未驗證。這是一個我們建議的重要安全步驟。" +#: src/state/shell/progress-guide.tsx:162 +msgid "Your first like!" +msgstr "你的第一個喜歡!" + #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "您的「Following」動態源是空的!跟隨更多用戶來看看發生了什麼事情。" -#: src/screens/Signup/StepHandle.tsx:73 +#: src/screens/Signup/StepHandle.tsx:122 msgid "Your full handle will be" msgstr "您的完整帳號代碼將修改為" @@ -6944,7 +7073,7 @@ msgstr "您的密碼已成功更改!" msgid "Your post has been published" msgstr "您的貼文已發佈" -#: src/screens/Onboarding/StepFinished.tsx:243 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "您的貼文、按喜歡和封鎖是公開可見的,而靜音是私人的。" @@ -6964,6 +7093,6 @@ msgstr "您的回覆已發佈" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "您的檢舉將發送至 Bluesky 內容管理服務" -#: src/screens/Signup/index.tsx:204 +#: src/screens/Signup/index.tsx:137 msgid "Your user handle" msgstr "您的帳號代碼" From f45193783e9754ed60b770b8ada6dfe082c1d885 Mon Sep 17 00:00:00 2001 From: Minseo Lee Date: Sat, 6 Jul 2024 04:32:02 +0900 Subject: [PATCH 086/153] Update Korean localization (#4646) * Update messages.po * Update messages.po * Update messages.po * Update messages.po * Update messages.po * Update messages.po * Update messages.po * Update messages.po * Update messages.po * Update messages.po * Update messages.po * Update messages.po --- src/locale/locales/ko/messages.po | 1133 ++++++++++++++++------------- 1 file changed, 635 insertions(+), 498 deletions(-) diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po index 4a46016618..55a8706219 100644 --- a/src/locale/locales/ko/messages.po +++ b/src/locale/locales/ko/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ko\n" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-06-19 10:55+0900\n" +"PO-Revision-Date: 2024-07-05 09:53+0900\n" "Last-Translator: quiple\n" "Language-Team: quiple, lens0021, HaruChanHeart, hazzzi, heartade\n" "Plural-Forms: \n" @@ -21,7 +21,7 @@ msgstr "(임베드 콘텐츠 포함)" msgid "(no email)" msgstr "(이메일 없음)" -#: src/view/com/notifications/FeedItem.tsx:283 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "외 {0, plural, other {{formattedCount}}}명" @@ -47,7 +47,7 @@ msgstr "팔로워" msgid "{0, plural, one {following} other {following}}" msgstr "팔로우 중" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:259 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "좋아요 ({0, plural, other {#}}개)" @@ -55,7 +55,7 @@ msgstr "좋아요 ({0, plural, other {#}}개)" msgid "{0, plural, one {like} other {likes}}" msgstr "좋아요" -#: src/components/FeedCard.tsx:216 +#: 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, other {#}}명의 사용자가 좋아함" @@ -64,7 +64,7 @@ msgstr "{0, plural, other {#}}명의 사용자가 좋아함" msgid "{0, plural, one {post} other {posts}}" msgstr "게시물" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:217 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "답글 ({0, plural, other {#}}개)" @@ -72,17 +72,17 @@ msgstr "답글 ({0, plural, other {#}}개)" msgid "{0, plural, one {repost} other {reposts}}" msgstr "재게시" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:262 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "좋아요 취소 ({0, plural, other {#}}개)" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" -msgstr "" +msgstr "이번 주에 {0}명이 가입함" -#: src/screens/StarterPack/StarterPackScreen.tsx:378 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" -msgstr "" +msgstr "{0}명이 이 스타터 팩을 사용했습니다!" #: src/view/com/util/UserAvatar.tsx:419 msgid "{0}'s avatar" @@ -90,7 +90,7 @@ msgstr "{0} 님의 아바타" #: src/screens/StarterPack/Wizard/StepDetails.tsx:68 msgid "{0}'s favorite feeds and people - join me!" -msgstr "" +msgstr "{0} 님이 좋아하는 피드 및 사람들 - 함께하세요!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:47 msgid "{0}'s starter pack" @@ -132,7 +132,7 @@ msgstr "시간" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "분" -#: src/components/ProfileHoverCard/index.web.tsx:503 +#: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} 팔로우 중" @@ -153,11 +153,11 @@ msgstr "{numUnreadNotifications}개 읽지 않음" #: src/components/NewskieDialog.tsx:116 msgid "{profileName} joined Bluesky {0} ago" -msgstr "{profileName} 님은 {0} 전에 Bluesky에 가입했습니다." +msgstr "{profileName} 님은 {0} 전에 Bluesky에 가입했습니다" #: src/components/NewskieDialog.tsx:111 msgid "{profileName} joined Bluesky using a starter pack {0} ago" -msgstr "" +msgstr "{profileName} 님은 {0} 전에 스타터 팩을 사용하여 Bluesky에 가입했습니다" #: 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}}" @@ -167,19 +167,15 @@ msgstr "{value, plural, =0 {모든 답글 표시} other {좋아요가 #개 이 msgid "<0/> members" msgstr "<0/>의 멤버" -#: 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} 외 {2, plural, other {#}}명이 스타터 팩에 포함됩니다" #: 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 "" +msgstr "<0>{0}, <1>{1} 외 {2, plural, other {#}}개가 스타터 팩에 포함됩니다" #: src/view/shell/Drawer.tsx:101 msgid "<0>{0} {1, plural, one {follower} other {followers}}" @@ -191,11 +187,11 @@ msgstr "<0>{0} 팔로우 중" #: src/screens/StarterPack/Wizard/index.tsx:507 msgid "<0>{0} and<1> <2>{1} are included in your starter pack" -msgstr "" +msgstr "<0>{0} 및<1> <2>{1}이(가) 스타터 팩에 포함됩니다" #: src/screens/StarterPack/Wizard/index.tsx:500 msgid "<0>{0} is included in your starter pack" -msgstr "" +msgstr "<0>{0}이(가) 스타터 팩에 포함됩니다" #: src/view/com/modals/SelfLabel.tsx:135 msgid "<0>Not Applicable. This warning is only available for posts with media attached." @@ -203,16 +199,20 @@ msgstr "<0>해당 없음. 이 경고는 미디어가 첨부된 게시물에 #: src/screens/StarterPack/Wizard/index.tsx:457 msgid "<0>You and<1> <2>{0} are included in your starter pack" -msgstr "" +msgstr "<0>나와<1> <2>{0} 님이 스타터 팩에 포함됩니다" #: src/screens/Profile/Header/Handle.tsx:50 msgid "⚠Invalid Handle" msgstr "⚠잘못된 핸들" -#: src/screens/Login/LoginForm.tsx:247 +#: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" msgstr "2단계 인증" +#: src/tours/Tooltip.tsx:70 +msgid "A help tooltip" +msgstr "도움말 툴팁" + #: src/view/com/util/ViewHeader.tsx:93 #: src/view/screens/Search/Search.tsx:684 msgid "Access navigation links and settings" @@ -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:518 +#: src/view/screens/Settings/index.tsx:519 msgid "Accessibility" msgstr "접근성" -#: src/view/screens/Settings/index.tsx:509 +#: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" msgstr "접근성 설정" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "접근성 설정" -#: src/screens/Login/LoginForm.tsx:170 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:190 +#: src/view/screens/Settings/index.tsx:346 +#: src/view/screens/Settings/index.tsx:753 msgid "Account" msgstr "계정" @@ -293,11 +293,11 @@ msgstr "추가" #: src/screens/StarterPack/Wizard/index.tsx:568 msgid "Add {0} more to continue" -msgstr "" +msgstr "계속하려면 {0}개 더 추가하기" #: src/components/StarterPack/Wizard/WizardListCard.tsx:59 msgid "Add {displayName} to starter pack" -msgstr "" +msgstr "스타터 팩에 {displayName} 추가" #: src/view/com/modals/SelfLabel.tsx:57 msgid "Add a content warning" @@ -309,8 +309,8 @@ msgstr "이 리스트에 사용자 추가" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:422 -#: src/view/screens/Settings/index.tsx:431 +#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:432 msgid "Add account" msgstr "계정 추가" @@ -337,17 +337,13 @@ msgstr "구성 설정에 뮤트 단어 추가" msgid "Add muted words and tags" msgstr "뮤트할 단어 및 태그 추가" -#: src/screens/StarterPack/Wizard/index.tsx:197 -#~ msgid "Add people to your starter pack that you think others will enjoy following" -#~ msgstr "" - #: src/screens/Home/NoFeedsPinned.tsx:99 msgid "Add recommended feeds" msgstr "추천 피드 추가" #: src/screens/StarterPack/Wizard/index.tsx:488 msgid "Add some feeds to your starter pack!" -msgstr "" +msgstr "스타터 팩에 피드를 추가해 보세요!" #: src/screens/Feeds/NoFollowingFeed.tsx:41 msgid "Add the default feed of only people you follow" @@ -357,7 +353,7 @@ msgstr "내가 팔로우하는 사람의 기본 피드만 추가하기" msgid "Add the following DNS record to your domain:" msgstr "도메인에 다음 DNS 레코드를 추가하세요:" -#: src/components/FeedCard.tsx:305 +#: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" msgstr "이 피드를 내 피드에 추가하기" @@ -390,22 +386,26 @@ msgstr "성인 콘텐츠" #: src/screens/Moderation/index.tsx:356 msgid "Adult content can only be enabled via the Web at <0>bsky.app." -msgstr "" +msgstr "성인 콘텐츠는 <0>bsky.app에서 웹을 통해서만 활성화할 수 있습니다." #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." msgstr "성인 콘텐츠가 비활성화되어 있습니다." #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Advanced" msgstr "고급" -#: src/screens/StarterPack/StarterPackScreen.tsx:301 +#: src/state/shell/progress-guide.tsx:176 +msgid "Algorithm training complete!" +msgstr "알고리즘 훈련 완료!" + +#: src/screens/StarterPack/StarterPackScreen.tsx:360 msgid "All accounts have been followed!" msgstr "모든 계정을 팔로우했습니다" -#: src/view/screens/Feeds.tsx:721 +#: src/view/screens/Feeds.tsx:734 msgid "All the feeds you've saved, right in one place." 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:177 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 msgid "ALT" msgstr "ALT" @@ -440,7 +440,7 @@ msgstr "ALT" msgid "Alt text" msgstr "대체 텍스트" -#: src/view/com/util/post-embeds/GifEmbed.tsx:183 +#: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" msgstr "대체 텍스트" @@ -463,18 +463,14 @@ msgstr "오류 발생" #: 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 "스타터 팩을 만드는 동안 오류가 발생했습니다. 다시 시도하시겠습니까?" #: src/components/StarterPack/QrCodeDialog.tsx:70 #: src/components/StarterPack/ShareDialog.tsx:78 msgid "An error occurred while saving the QR code!" msgstr "QR 코드를 저장하는 동안 오류가 발생했습니다" -#: src/screens/StarterPack/StarterPackScreen.tsx:303 +#: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" msgstr "모두 팔로우하려고 하는 동안 오류가 발생했습니다" @@ -484,6 +480,8 @@ msgstr "어떤 옵션에도 포함되지 않는 문제" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:294 +#: src/components/ProfileCard.tsx:306 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -491,12 +489,12 @@ msgstr "어떤 옵션에도 포함되지 않는 문제" msgid "An issue occurred, please try again." msgstr "문제가 발생했습니다. 다시 시도해 주세요." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" msgstr "알 수 없는 오류가 발생했습니다" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:280 +#: src/view/com/notifications/FeedItem.tsx:291 msgid "and" msgstr "및" @@ -505,7 +503,7 @@ msgstr "및" msgid "Animals" msgstr "동물" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" msgstr "움직이는 GIF" @@ -529,13 +527,13 @@ msgstr "앱 비밀번호 이름에는 문자, 숫자, 공백, 대시, 밑줄만 msgid "App Password names must be at least 4 characters long." msgstr "앱 비밀번호 이름은 4자 이상이어야 합니다." -#: src/view/screens/Settings/index.tsx:697 +#: src/view/screens/Settings/index.tsx:698 msgid "App password settings" msgstr "앱 비밀번호 설정" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:269 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/view/screens/Settings/index.tsx:707 msgid "App Passwords" msgstr "앱 비밀번호" @@ -560,7 +558,7 @@ msgstr "이의신청 제출함" msgid "Appeal this decision" msgstr "이 결정에 이의신청" -#: src/view/screens/Settings/index.tsx:439 +#: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "모양" @@ -569,7 +567,7 @@ msgstr "모양" msgid "Apply default recommended feeds" msgstr "기본 추천 피드 적용하기" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Are you sure you want delete this starter pack?" msgstr "이 스타터 팩을 삭제하시겠습니까?" @@ -589,7 +587,7 @@ msgstr "정말 이 대화에서 나가시겠습니까? 나에게 보이는 메 msgid "Are you sure you want to remove {0} from your feeds?" msgstr "피드에서 {0}을(를) 제거하시겠습니까?" -#: src/components/FeedCard.tsx:322 +#: src/components/FeedCard.tsx:306 msgid "Are you sure you want to remove this from your feeds?" msgstr "내 피드에서 이 피드를 삭제하시겠습니까?" @@ -614,7 +612,7 @@ msgstr "예술" msgid "Artistic or non-erotic nudity." msgstr "선정적이지 않거나 예술적인 노출." -#: src/screens/Signup/StepHandle.tsx:119 +#: src/screens/Signup/StepHandle.tsx:170 msgid "At least 3 characters" msgstr "3자 이상" @@ -625,20 +623,21 @@ msgstr "3자 이상" #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:278 -#: src/screens/Login/LoginForm.tsx:284 +#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:304 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/index.tsx:231 +#: 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:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "기본" @@ -646,7 +645,7 @@ msgstr "기본" msgid "Birthday" msgstr "생년월일" -#: src/view/screens/Settings/index.tsx:377 +#: src/view/screens/Settings/index.tsx:378 msgid "Birthday:" msgstr "생년월일:" @@ -690,7 +689,7 @@ msgstr "차단됨" msgid "Blocked accounts" msgstr "차단한 계정" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:145 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "차단한 계정" @@ -732,9 +731,13 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky는 호스팅 제공자를 선택할 수 있는 개방형 네트워크입니다. 개발자를 위한 사용자 지정 호스팅이 베타 버전으로 제공됩니다." +#: src/components/ProgressGuide/List.tsx:55 +msgid "Bluesky is better with friends!" +msgstr "Bluesky는 친구와 함께하면 더 좋답니다!" + #: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." -msgstr "" +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." @@ -753,6 +756,24 @@ msgstr "이미지 흐리게 및 피드에서 필터링" msgid "Books" msgstr "책" +#: src/components/FeedInterstitials.tsx:274 +msgid "Browse more accounts on the Explore page" +msgstr "탐색 페이지에서 더 많은 계정 찾아보기" + +#: src/components/FeedInterstitials.tsx:400 +msgid "Browse more feeds on the Explore page" +msgstr "탐색 페이지에서 더 많은 피드 찾아보기" + +#: src/components/FeedInterstitials.tsx:263 +#: src/components/FeedInterstitials.tsx:389 +msgid "Browse more suggestions" +msgstr "더 많은 추천 찾아보기" + +#: src/components/FeedInterstitials.tsx:282 +#: src/components/FeedInterstitials.tsx:409 +msgid "Browse more suggestions on the Explore page" +msgstr "탐색 페이지에서 더 많은 추천 찾아보기" + #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" @@ -863,17 +884,17 @@ msgstr "연결된 웹사이트를 여는 것을 취소합니다" msgid "Change" msgstr "변경" -#: src/view/screens/Settings/index.tsx:371 +#: src/view/screens/Settings/index.tsx:372 msgctxt "action" msgid "Change" msgstr "변경" -#: src/view/screens/Settings/index.tsx:718 +#: src/view/screens/Settings/index.tsx:719 msgid "Change handle" msgstr "핸들 변경" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change Handle" msgstr "핸들 변경" @@ -881,12 +902,12 @@ msgstr "핸들 변경" msgid "Change my email" msgstr "내 이메일 변경하기" -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/index.tsx:764 msgid "Change password" msgstr "비밀번호 변경" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Change Password" msgstr "비밀번호 변경" @@ -898,9 +919,9 @@ msgstr "게시물 언어를 {0}(으)로 변경" msgid "Change Your Email" msgstr "이메일 변경" -#: src/Navigation.tsx:310 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:313 +#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" msgstr "대화" @@ -910,14 +931,14 @@ msgstr "대화 뮤트됨" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:318 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" msgstr "대화 설정" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" msgstr "대화 설정" @@ -930,35 +951,39 @@ msgstr "대화 언뮤트됨" msgid "Check my status" msgstr "내 상태 확인" -#: src/screens/Login/LoginForm.tsx:271 +#: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." msgstr "이메일에서 로그인 코드를 확인한 후 여기에 입력하세요." #: src/view/com/modals/DeleteAccount.tsx:231 msgid "Check your inbox for an email with the confirmation code to enter below:" -msgstr "받은 편지함에서 아래에 입력하는 인증 코드가 포함된 이메일이 있는지 확인하세요:" +msgstr "받은 편지함에서 아래에 입력할 인증 코드가 포함된 이메일이 있는지 확인하세요." -#: src/view/com/modals/Threadgate.tsx:75 -#~ msgid "Choose \"Everybody\" or \"Nobody\"" -#~ msgstr "\"모두\" 또는 \"없음\"을 선택하세요." +#: src/screens/Onboarding/StepInterests/index.tsx:190 +msgid "Choose 3 or more:" +msgstr "3개 이상 선택하세요." + +#: src/screens/Onboarding/StepInterests/index.tsx:325 +msgid "Choose at least {0} more" +msgstr "최소 {0}개 이상 선택하세요" #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" -msgstr "" +msgstr "피드 선택" #: src/components/StarterPack/ProfileStarterPacks.tsx:290 msgid "Choose for me" -msgstr "" +msgstr "임의로 선택하기" #: src/screens/StarterPack/Wizard/index.tsx:187 msgid "Choose People" -msgstr "" +msgstr "사람들 선택" #: src/view/com/auth/server-input/index.tsx:79 msgid "Choose Service" msgstr "서비스 선택" -#: src/screens/Onboarding/StepFinished.tsx:273 +#: src/screens/Onboarding/StepFinished.tsx:281 msgid "Choose the algorithms that power your custom feeds." msgstr "맞춤 피드를 구동할 알고리즘을 선택하세요." @@ -969,25 +994,25 @@ msgstr "이 색상을 아바타로 선택" #: src/components/dialogs/ThreadgateEditor.tsx:91 #: src/components/dialogs/ThreadgateEditor.tsx:95 msgid "Choose who can reply" -msgstr "" +msgstr "답글을 달 수 있는 사람 선택하기" -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" msgstr "비밀번호를 입력하세요" -#: src/view/screens/Settings/index.tsx:910 +#: src/view/screens/Settings/index.tsx:911 msgid "Clear all legacy storage data" msgstr "모든 레거시 스토리지 데이터 지우기" -#: src/view/screens/Settings/index.tsx:913 +#: src/view/screens/Settings/index.tsx:914 msgid "Clear all legacy storage data (restart after this)" msgstr "모든 레거시 스토리지 데이터 지우기 (이후 다시 시작)" -#: src/view/screens/Settings/index.tsx:922 +#: src/view/screens/Settings/index.tsx:923 msgid "Clear all storage data" msgstr "모든 스토리지 데이터 지우기" -#: src/view/screens/Settings/index.tsx:925 +#: src/view/screens/Settings/index.tsx:926 msgid "Clear all storage data (restart after this)" msgstr "모든 스토리지 데이터 지우기 (이후 다시 시작)" @@ -996,11 +1021,11 @@ msgstr "모든 스토리지 데이터 지우기 (이후 다시 시작)" msgid "Clear search query" msgstr "검색어 지우기" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" msgstr "모든 레거시 스토리지 데이터를 지웁니다" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" msgstr "모든 스토리지 데이터를 지웁니다" @@ -1041,7 +1066,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:189 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "Close" msgstr "닫기" @@ -1104,11 +1129,11 @@ msgstr "게시물 작성 상자를 닫고 게시물 초안을 삭제합니다" msgid "Closes viewer for header image" msgstr "헤더 이미지 뷰어를 닫습니다" -#: src/view/com/notifications/FeedItem.tsx:226 +#: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" msgstr "사용자 목록 접기" -#: src/view/com/notifications/FeedItem.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:437 msgid "Collapses list of users for a given notification" msgstr "이 알림에 대한 사용자 목록을 축소합니다" @@ -1122,16 +1147,16 @@ msgstr "코미디" msgid "Comics" msgstr "만화" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:259 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "커뮤니티 가이드라인" -#: src/screens/Onboarding/StepFinished.tsx:286 +#: src/screens/Onboarding/StepFinished.tsx:294 msgid "Complete onboarding and start using your account" msgstr "온보딩 완료 후 계정 사용 시작" -#: src/screens/Signup/index.tsx:206 +#: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" msgstr "챌린지 완료하기" @@ -1184,7 +1209,7 @@ msgstr "나이를 확인하세요:" msgid "Confirm your birthdate" msgstr "생년월일 확인" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:272 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 @@ -1194,11 +1219,11 @@ msgstr "생년월일 확인" msgid "Confirmation code" msgstr "인증 코드" -#: src/screens/Login/LoginForm.tsx:305 +#: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." msgstr "연결 중…" -#: src/screens/Signup/index.tsx:276 +#: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "지원에 연락하기" @@ -1235,7 +1260,7 @@ msgstr "콘텐츠 경고" msgid "Context menu backdrop, click to close the menu." msgstr "컨텍스트 메뉴 배경을 클릭하여 메뉴를 닫습니다." -#: src/screens/Onboarding/StepInterests/index.tsx:258 +#: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "계속" @@ -1248,9 +1273,9 @@ msgstr "{0}(으)로 계속하기 (현재 로그인)" msgid "Continue thread..." msgstr "스레드 더 보기..." -#: src/screens/Onboarding/StepInterests/index.tsx:255 +#: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/index.tsx:251 +#: src/screens/Signup/BackNextButtons.tsx:59 msgid "Continue to next step" msgstr "다음 단계로 계속하기" @@ -1267,7 +1292,7 @@ msgstr "요리" msgid "Copied" msgstr "복사됨" -#: src/view/screens/Settings/index.tsx:263 +#: src/view/screens/Settings/index.tsx:264 msgid "Copied build version to clipboard" msgstr "빌드 버전 클립보드에 복사됨" @@ -1276,7 +1301,7 @@ msgstr "빌드 버전 클립보드에 복사됨" #: 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/post-ctrls/PostCtrls.tsx:350 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "클립보드에 복사됨" @@ -1304,7 +1329,7 @@ msgstr "코드 복사" #: src/components/StarterPack/ShareDialog.tsx:123 msgid "Copy link" -msgstr "" +msgstr "링크 복사" #: src/components/StarterPack/ShareDialog.tsx:130 msgid "Copy Link" @@ -1333,7 +1358,7 @@ msgstr "게시물 텍스트 복사" msgid "Copy QR code" msgstr "QR 코드 복사" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "저작권 정책" @@ -1363,7 +1388,7 @@ msgstr "만들기" msgid "Create a new account" msgstr "새 계정 만들기" -#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" msgstr "새 Bluesky 계정을 만듭니다" @@ -1373,7 +1398,7 @@ msgstr "스타터 팩 QR 코드 만들기" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:338 msgid "Create a starter pack" msgstr "스타터 팩 만들기" @@ -1381,7 +1406,7 @@ msgstr "스타터 팩 만들기" msgid "Create a starter pack for me" msgstr "나를 위한 스타터 팩 만들기" -#: src/screens/Signup/index.tsx:154 +#: src/screens/Signup/index.tsx:88 msgid "Create Account" msgstr "계정 만들기" @@ -1396,7 +1421,7 @@ msgstr "대신 아바타 만들기" #: src/components/StarterPack/ProfileStarterPacks.tsx:172 msgid "Create another" -msgstr "" +msgstr "다른 스타터 팩 만들기" #: src/view/com/modals/AddAppPasswords.tsx:242 msgid "Create App Password" @@ -1407,10 +1432,6 @@ msgstr "앱 비밀번호 만들기" msgid "Create new account" msgstr "새 계정 만들기" -#: src/components/StarterPack/ShareDialog.tsx:158 -#~ msgid "Create QR code" -#~ msgstr "QR 코드 만들기" - #: src/components/ReportDialog/SelectReportOptionView.tsx:101 msgid "Create report for {0}" msgstr "{0}에 대한 신고 작성하기" @@ -1433,7 +1454,7 @@ msgstr "사용자 지정" msgid "Custom domain" msgstr "사용자 지정 도메인" -#: src/view/screens/Feeds.tsx:747 +#: src/view/screens/Feeds.tsx:760 #: src/view/screens/Search/Explore.tsx:390 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "커뮤니티에서 구축한 맞춤 피드는 새로운 경험을 제공하고 좋아하는 콘텐츠를 찾을 수 있도록 도와줍니다." @@ -1442,8 +1463,8 @@ msgstr "커뮤니티에서 구축한 맞춤 피드는 새로운 경험을 제공 msgid "Customize media from external sites." msgstr "외부 사이트 미디어를 사용자 지정합니다." -#: src/view/screens/Settings/index.tsx:458 -#: src/view/screens/Settings/index.tsx:484 +#: src/view/screens/Settings/index.tsx:459 +#: src/view/screens/Settings/index.tsx:485 msgid "Dark" msgstr "어두움" @@ -1451,24 +1472,24 @@ msgstr "어두움" msgid "Dark mode" msgstr "어두운 모드" -#: src/view/screens/Settings/index.tsx:471 +#: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" msgstr "어두운 테마" -#: src/screens/Signup/StepInfo/index.tsx:134 +#: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" msgstr "생년월일" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" msgstr "계정 비활성화" -#: src/view/screens/Settings/index.tsx:818 +#: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" msgstr "내 계정 비활성화" -#: src/view/screens/Settings/index.tsx:873 +#: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" msgstr "검토 디버그" @@ -1477,16 +1498,16 @@ msgid "Debug panel" msgstr "디버그 패널" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:484 -#: src/screens/StarterPack/StarterPackScreen.tsx:563 -#: src/screens/StarterPack/StarterPackScreen.tsx:643 +#: 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/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "삭제" -#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:829 msgid "Delete account" msgstr "계정 삭제" @@ -1502,8 +1523,8 @@ msgstr "앱 비밀번호 삭제" msgid "Delete app password?" msgstr "앱 비밀번호를 삭제하시겠습니까?" -#: src/view/screens/Settings/index.tsx:890 -#: src/view/screens/Settings/index.tsx:893 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" msgstr "대화 신고 기록 삭제" @@ -1527,7 +1548,7 @@ msgstr "내게 보이는 메시지 삭제" msgid "Delete my account" msgstr "내 계정 삭제" -#: src/view/screens/Settings/index.tsx:840 +#: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" msgstr "내 계정 삭제…" @@ -1536,14 +1557,14 @@ msgstr "내 계정 삭제…" msgid "Delete post" msgstr "게시물 삭제" -#: src/screens/StarterPack/StarterPackScreen.tsx:478 -#: src/screens/StarterPack/StarterPackScreen.tsx:634 +#: src/screens/StarterPack/StarterPackScreen.tsx:556 +#: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" msgstr "스타터 팩 삭제" -#: src/screens/StarterPack/StarterPackScreen.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" -msgstr "스타터 팩을 삭제하시겠습니까?" +msgstr "스타터 팩 삭제" #: src/view/screens/ProfileList.tsx:662 msgid "Delete this list?" @@ -1561,7 +1582,7 @@ msgstr "삭제됨" msgid "Deleted post." msgstr "삭제된 게시물." -#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" msgstr "대화 신고 기록을 삭제합니다" @@ -1580,7 +1601,7 @@ msgstr "설명이 포함된 대체 텍스트" msgid "Did you want to say anything?" msgstr "하고 싶은 말이 없나요?" -#: src/view/screens/Settings/index.tsx:477 +#: src/view/screens/Settings/index.tsx:478 msgid "Dim" msgstr "어둑함" @@ -1622,6 +1643,10 @@ msgstr "초안 삭제" msgid "Discourage apps from showing my account to logged-out users" msgstr "앱이 로그아웃한 사용자에게 내 계정을 표시하지 않도록 설정하기" +#: src/tours/HomeTour.tsx:70 +msgid "Discover learns which posts you like as you browse." +msgstr "Discover 피드는 탐색하며 내가 어떤 게시물을 좋아하는지 학습합니다." + #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -1631,10 +1656,14 @@ msgstr "새로운 맞춤 피드 찾아보기" msgid "Discover new feeds" msgstr "새 피드 발견하기" -#: src/view/screens/Feeds.tsx:744 +#: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" msgstr "새 피드 발견하기" +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "시작하기 가이드 닫기" + #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" msgstr "더 큰 대체 텍스트 배지 표시" @@ -1655,7 +1684,7 @@ msgstr "DNS 패널" msgid "Does not include nudity." msgstr "노출을 포함하지 않습니다." -#: src/screens/Signup/StepHandle.tsx:105 +#: src/screens/Signup/StepHandle.tsx:156 msgid "Doesn't begin or end with a hyphen" msgstr "하이픈으로 시작하거나 끝나지 않음" @@ -1700,7 +1729,7 @@ msgstr "완료" msgid "Done{extraText}" msgstr "완료{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" msgstr "Bluesky 다운로드" @@ -1709,7 +1738,7 @@ msgstr "Bluesky 다운로드" msgid "Download CAR file" msgstr "CAR 파일 다운로드" -#: src/view/com/composer/text-input/TextInput.web.tsx:272 +#: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" msgstr "드롭하여 이미지 추가" @@ -1753,11 +1782,11 @@ msgstr "예: 반복적으로 광고 답글을 다는 계정." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "각 코드는 한 번만 사용할 수 있습니다. 주기적으로 더 많은 초대 코드를 받게 됩니다." -#: src/screens/StarterPack/StarterPackScreen.tsx:473 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "편집" @@ -1773,12 +1802,12 @@ msgstr "아바타 편집" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:117 msgid "Edit Feeds" -msgstr "피드 편집" +msgstr "피드 편집하기" #: src/view/com/composer/photos/Gallery.tsx:151 #: src/view/com/modals/EditImage.tsx:208 msgid "Edit image" -msgstr "이미지 편집" +msgstr "이미지 편집하기" #: src/view/screens/ProfileList.tsx:459 msgid "Edit list details" @@ -1788,20 +1817,20 @@ msgstr "리스트 세부 정보 편집" msgid "Edit Moderation List" msgstr "검토 리스트 편집" -#: src/Navigation.tsx:271 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 +#: src/Navigation.tsx:274 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "내 피드 편집" #: src/view/com/modals/EditProfile.tsx:153 msgid "Edit my profile" -msgstr "내 프로필 편집" +msgstr "내 프로필 편집하기" #: src/components/StarterPack/Wizard/WizardEditListDialog.tsx:115 msgid "Edit People" -msgstr "사람들 편집" +msgstr "사람들 편집하기" #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:181 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:179 @@ -1813,7 +1842,7 @@ msgstr "프로필 편집" msgid "Edit Profile" msgstr "프로필 편집" -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" msgstr "스타터 팩 편집" @@ -1833,7 +1862,7 @@ msgstr "내 표시 이름 편집" msgid "Edit your profile description" msgstr "내 프로필 설명 편집" -#: src/Navigation.tsx:335 +#: src/Navigation.tsx:343 msgid "Edit your starter pack" msgstr "스타터 팩 편집" @@ -1844,9 +1873,9 @@ msgstr "교육" #: src/components/dialogs/ThreadgateEditor.tsx:98 msgid "Either choose \"Everybody\" or \"Nobody\"" -msgstr "" +msgstr "\"모두\" 또는 \"없음\"을 선택합니다." -#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "이메일" @@ -1872,7 +1901,7 @@ msgstr "이메일 변경됨" msgid "Email verified" msgstr "이메일 확인됨" -#: src/view/screens/Settings/index.tsx:349 +#: src/view/screens/Settings/index.tsx:350 msgid "Email:" msgstr "이메일:" @@ -1925,6 +1954,10 @@ msgstr "사용" msgid "End of feed" 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 "온보딩 투어 창이 종료됐습니다. 앞으로 이동하지 마세요. 대신 뒤로 이동하여 더 많은 옵션을 보거나 건너뛰려면 누르세요." + #: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "이 앱 비밀번호의 이름 입력" @@ -1959,7 +1992,7 @@ msgid "Enter your birth date" msgstr "생년월일을 입력하세요" #: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:92 +#: src/screens/Signup/StepInfo/index.tsx:152 msgid "Enter your email address" msgstr "이메일 주소를 입력하세요" @@ -1979,11 +2012,11 @@ msgstr "사용자 이름 및 비밀번호 입력" msgid "Error occurred while saving file" msgstr "파일을 저장하는 동안 오류가 발생했습니다" -#: src/screens/Signup/StepCaptcha/index.tsx:51 +#: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." msgstr "캡차 응답을 수신하는 동안 오류가 발생했습니다." -#: src/screens/Onboarding/StepInterests/index.tsx:197 +#: src/screens/Onboarding/StepInterests/index.tsx:216 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "오류:" @@ -2038,7 +2071,7 @@ msgstr "검색어 입력을 종료합니다" msgid "Expand alt text" msgstr "대체 텍스트 확장" -#: src/view/com/notifications/FeedItem.tsx:227 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" msgstr "사용자 목록 펼치기" @@ -2055,12 +2088,12 @@ msgstr "노골적이거나 불쾌감을 줄 수 있는 미디어." msgid "Explicit sexual images." msgstr "노골적인 성적 이미지." -#: src/view/screens/Settings/index.tsx:786 +#: src/view/screens/Settings/index.tsx:787 msgid "Export my data" msgstr "내 데이터 내보내기" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:797 +#: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" msgstr "내 데이터 내보내기" @@ -2074,13 +2107,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:290 +#: src/Navigation.tsx:293 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/view/screens/Settings/index.tsx:680 msgid "External Media Preferences" msgstr "외부 미디어 설정" -#: src/view/screens/Settings/index.tsx:670 +#: src/view/screens/Settings/index.tsx:671 msgid "External media settings" msgstr "외부 미디어 설정" @@ -2106,7 +2139,7 @@ msgstr "메시지를 삭제하지 못했습니다" msgid "Failed to delete post, please try again" msgstr "게시물을 삭제하지 못했습니다. 다시 시도해 주세요" -#: src/screens/StarterPack/StarterPackScreen.tsx:597 +#: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" msgstr "스타터 팩을 삭제하지 못했습니다" @@ -2150,7 +2183,7 @@ msgstr "이의신청을 제출하지 못했습니다. 다시 시도해 주세요 msgid "Failed to toggle thread mute, please try again" msgstr "스레드 뮤트를 전환하지 못했습니다. 다시 시도해 주세요" -#: src/components/FeedCard.tsx:285 +#: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" msgstr "피드를 업데이트하지 못했습니다" @@ -2159,11 +2192,11 @@ msgstr "피드를 업데이트하지 못했습니다" msgid "Failed to update settings" msgstr "설정을 업데이트하지 못했습니다" -#: src/Navigation.tsx:211 +#: src/Navigation.tsx:214 msgid "Feed" msgstr "피드" -#: src/components/FeedCard.tsx:161 +#: src/components/FeedCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "{0} 님의 피드" @@ -2172,17 +2205,18 @@ msgstr "{0} 님의 피드" msgid "Feed toggle" msgstr "피드 켜거나 끄기" -#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "피드백" -#: src/Navigation.tsx:320 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 +#: src/Navigation.tsx:323 +#: 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:373 +#: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" @@ -2192,7 +2226,7 @@ msgstr "피드" msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "피드는 사용자가 약간의 코딩 전문 지식만으로 구축할 수 있는 맞춤 알고리즘입니다. <0/>에서 자세한 내용을 확인하세요." -#: src/components/FeedCard.tsx:282 +#: src/components/FeedCard.tsx:266 msgid "Feeds updated!" msgstr "피드 업데이트됨" @@ -2208,7 +2242,7 @@ msgstr "파일을 성공적으로 저장했습니다!" msgid "Filter from feeds" msgstr "피드에서 필터링" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 msgid "Finalizing" msgstr "마무리 중" @@ -2218,6 +2252,10 @@ msgstr "마무리 중" msgid "Find accounts to follow" msgstr "팔로우할 계정 찾아보기" +#: src/tours/HomeTour.tsx:88 +msgid "Find more feeds and accounts to follow in the Explore page." +msgstr "탐색 페이지에서 팔로우할 피드와 계정을 더 찾아보세요." + #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "Bluesky에서 게시물 및 사용자 찾기" @@ -2232,13 +2270,17 @@ msgstr "대화 스레드를 미세 조정합니다." #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Finish" -msgstr "종료" +msgstr "완료" + +#: src/tours/Tooltip.tsx:149 +msgid "Finish tour and begin using the application" +msgstr "투어 완료 및 애플리케이션 시작" #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "건강" -#: src/screens/Onboarding/StepFinished.tsx:269 +#: src/screens/Onboarding/StepFinished.tsx:277 msgid "Flexible" msgstr "유연성" @@ -2251,6 +2293,8 @@ msgstr "가로로 뒤집기" msgid "Flip vertically" msgstr "세로로 뒤집기" +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:318 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2273,13 +2317,17 @@ msgstr "{0} 님을 팔로우" msgid "Follow {name}" msgstr "{name} 님을 팔로우" +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "7개 계정 팔로우하기" + #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" msgstr "계정 팔로우" -#: src/screens/StarterPack/StarterPackScreen.tsx:345 -#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:405 +#: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" msgstr "모두 팔로우" @@ -2291,7 +2339,7 @@ msgstr "맞팔로우" msgid "Follow more accounts to get connected to your interests and build your network." msgstr "더 많은 계정을 팔로우하고 관심 분야를 연결하여 네트워크를 구축하세요." -#: src/view/com/profile/ProfileCard.tsx:227 +#: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" msgstr "{0} 님이 팔로우함" @@ -2319,16 +2367,20 @@ msgstr "팔로우한 사용자" msgid "Followed users only" msgstr "팔로우한 사용자만" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:197 msgid "followed you" msgstr "이(가) 나를 팔로우했습니다" +#: src/view/com/notifications/FeedItem.tsx:195 +msgid "followed you back" +msgstr "이(가) 나를 맞팔로우했습니다" + #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "팔로워" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" msgstr "내가 아는 @{0} 님의 팔로워" @@ -2337,12 +2389,14 @@ msgstr "내가 아는 @{0} 님의 팔로워" msgid "Followers you know" msgstr "내가 아는 팔로워" +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:312 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:630 +#: src/view/screens/Feeds.tsx:631 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" @@ -2356,21 +2410,25 @@ msgstr "{0} 님을 팔로우했습니다" msgid "Following {name}" msgstr "{name} 님을 팔로우했습니다" -#: src/view/screens/Settings/index.tsx:573 +#: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" msgstr "팔로우 중 피드 설정" -#: src/Navigation.tsx:277 +#: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "Following Feed Preferences" msgstr "팔로우 중 피드 설정" +#: src/tours/HomeTour.tsx:59 +msgid "Following shows the latest posts from people you follow." +msgstr "팔로우 중 피드는 내가 팔로우하는 사람들의 최신 게시물을 표시합니다." + #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "나를 팔로우함" -#: src/view/com/profile/ProfileCard.tsx:152 +#: src/components/Pills.tsx:165 msgid "Follows You" msgstr "나를 팔로우함" @@ -2392,11 +2450,11 @@ msgstr "보안상의 이유로 이 비밀번호는 다시 볼 수 없습니다. msgid "Forgot Password" msgstr "비밀번호 분실" -#: src/screens/Login/LoginForm.tsx:227 +#: src/screens/Login/LoginForm.tsx:246 msgid "Forgot password?" msgstr "비밀번호를 잊으셨나요?" -#: src/screens/Login/LoginForm.tsx:238 +#: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" msgstr "분실" @@ -2430,6 +2488,10 @@ msgstr "시작하기" msgid "Get Started" msgstr "시작하기" +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "시작하기" + #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" msgstr "GIF" @@ -2444,31 +2506,35 @@ msgstr "명백한 법률 또는 서비스 이용약관 위반 행위" #: src/components/moderation/ScreenHider.tsx:151 #: src/components/moderation/ScreenHider.tsx:160 -#: src/view/com/auth/LoggedOut.tsx:78 -#: src/view/com/auth/LoggedOut.tsx:79 +#: src/view/com/auth/LoggedOut.tsx:80 +#: src/view/com/auth/LoggedOut.tsx:81 #: src/view/screens/NotFound.tsx:55 #: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "뒤로" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:656 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 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/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:225 +#: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" msgstr "이전 단계로 돌아가기" @@ -2497,6 +2563,10 @@ msgstr "다음" msgid "Go to profile" msgstr "프로필로 가기" +#: src/tours/Tooltip.tsx:138 +msgid "Go to the next step of the tour" +msgstr "둘러보기 다음 단계로 이동" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "사용자의 프로필로 가기" @@ -2505,6 +2575,10 @@ msgstr "사용자의 프로필로 가기" msgid "Graphic Media" msgstr "그래픽 미디어" +#: src/state/shell/progress-guide.tsx:166 +msgid "Half way there!" +msgstr "절반은 완료!" + #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" msgstr "핸들" @@ -2517,19 +2591,19 @@ msgstr "햅틱" msgid "Harassment, trolling, or intolerance" msgstr "괴롭힘, 분쟁 유발 또는 차별" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:308 msgid "Hashtag" msgstr "해시태그" -#: src/components/RichText.tsx:216 +#: src/components/RichText.tsx:218 msgid "Hashtag: #{tag}" msgstr "해시태그: #{tag}" -#: src/screens/Signup/index.tsx:272 +#: src/screens/Signup/index.tsx:167 msgid "Having trouble?" msgstr "문제가 있나요?" -#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/desktop/RightNav.tsx:99 #: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "도움말" @@ -2553,7 +2627,7 @@ msgstr "앱 비밀번호입니다." msgid "Hide" msgstr "숨기기" -#: src/view/com/notifications/FeedItem.tsx:433 +#: src/view/com/notifications/FeedItem.tsx:444 msgctxt "action" msgid "Hide" msgstr "숨기기" @@ -2572,7 +2646,7 @@ msgstr "콘텐츠 숨기기" msgid "Hide this post?" msgstr "이 게시물을 숨기시겠습니까?" -#: src/view/com/notifications/FeedItem.tsx:424 +#: src/view/com/notifications/FeedItem.tsx:435 msgid "Hide user list" msgstr "사용자 리스트 숨기기" @@ -2604,10 +2678,10 @@ msgstr "이 데이터를 불러오는 데 문제가 있는 것 같습니다. 자 msgid "Hmmmm, we couldn't load that moderation service." msgstr "검토 서비스를 불러올 수 없습니다." -#: src/Navigation.tsx:511 -#: src/Navigation.tsx:531 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: src/Navigation.tsx:519 +#: src/Navigation.tsx:539 +#: 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 msgid "Home" @@ -2618,8 +2692,8 @@ msgid "Host:" msgstr "호스트:" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:160 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:180 +#: src/screens/Signup/StepInfo/index.tsx:106 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "호스팅 제공자" @@ -2640,7 +2714,7 @@ msgstr "인증 코드가 있습니다" #: src/view/com/modals/ChangeHandle.tsx:278 msgid "I have my own domain" -msgstr "도메인을 가지고 있음" +msgstr "내 도메인을 가지고 있습니다" #: src/components/dms/BlockedByListDialog.tsx:56 #: src/components/dms/ReportConversationPrompt.tsx:22 @@ -2689,7 +2763,7 @@ msgstr "이미지 대체 텍스트" #: src/components/StarterPack/ShareDialog.tsx:75 msgid "Image saved to your camera roll!" -msgstr "이미지를 앨범에 저장했습니다." +msgstr "이미지를 사진 보관함에 저장했습니다" #: src/lib/moderation/useReportOptions.ts:49 msgid "Impersonation or false claims about identity or affiliation" @@ -2719,19 +2793,15 @@ msgstr "새 비밀번호를 입력합니다" msgid "Input password for account deletion" msgstr "계정을 삭제하기 위해 비밀번호를 입력합니다" -#: src/screens/Login/LoginForm.tsx:266 +#: src/screens/Login/LoginForm.tsx:286 msgid "Input the code which has been emailed to you" msgstr "이메일로 전송된 코드를 입력합니다" -#: src/screens/Login/LoginForm.tsx:221 -msgid "Input the password tied to {identifier}" -msgstr "{identifier}에 연결된 비밀번호를 입력합니다" - -#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Login/LoginForm.tsx:215 msgid "Input the username or email address you used at signup" msgstr "가입 시 사용한 사용자 이름 또는 이메일 주소를 입력합니다" -#: src/screens/Login/LoginForm.tsx:220 +#: src/screens/Login/LoginForm.tsx:241 msgid "Input your password" msgstr "비밀번호를 입력합니다" @@ -2739,7 +2809,7 @@ msgstr "비밀번호를 입력합니다" msgid "Input your preferred hosting provider" msgstr "선호하는 호스팅 제공자를 입력합니다" -#: src/screens/Signup/StepHandle.tsx:63 +#: src/screens/Signup/StepHandle.tsx:111 msgid "Input your user handle" msgstr "사용자 핸들을 입력합니다" @@ -2747,7 +2817,7 @@ msgstr "사용자 핸들을 입력합니다" msgid "Introducing Direct Messages" msgstr "다이렉트 메시지 소개" -#: src/screens/Login/LoginForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:140 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "잘못된 2단계 인증 코드입니다." @@ -2756,7 +2826,7 @@ msgstr "잘못된 2단계 인증 코드입니다." msgid "Invalid or unsupported post record" msgstr "유효하지 않거나 지원되지 않는 게시물 기록" -#: src/screens/Login/LoginForm.tsx:140 +#: src/screens/Login/LoginForm.tsx:145 msgid "Invalid username or password" msgstr "잘못된 사용자 이름 또는 비밀번호" @@ -2764,11 +2834,11 @@ msgstr "잘못된 사용자 이름 또는 비밀번호" msgid "Invite a Friend" msgstr "친구 초대하기" -#: src/screens/Signup/StepInfo/index.tsx:58 +#: src/screens/Signup/StepInfo/index.tsx:124 msgid "Invite code" msgstr "초대 코드" -#: src/screens/Signup/state.ts:275 +#: src/screens/Signup/state.ts:251 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "초대 코드가 올바르지 않습니다. 코드를 올바르게 입력했는지 확인한 후 다시 시도하세요." @@ -2786,22 +2856,24 @@ msgstr "이 스타터 팩을 사용할 사람들을 초대하세요!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:35 msgid "Invite your friends to follow your favorite feeds and people" -msgstr "" +msgstr "친구를 초대하여 좋아하는 피드와 사람들을 팔로우할 수 있게 합니다." #: src/screens/StarterPack/Wizard/StepDetails.tsx:32 msgid "Invites, but personal" -msgstr "" +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:200 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackScreen.tsx:432 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" msgstr "Bluesky 가입하기" @@ -2842,16 +2914,16 @@ msgstr "내 콘텐츠의 라벨" msgid "Language selection" msgstr "언어 선택" -#: src/view/screens/Settings/index.tsx:530 +#: src/view/screens/Settings/index.tsx:531 msgid "Language settings" msgstr "언어 설정" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:155 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "언어 설정" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Languages" msgstr "언어" @@ -2911,7 +2983,7 @@ msgstr "Bluesky 떠나기" msgid "left to go." msgstr "명 남았습니다." -#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:309 msgid "Legacy storage cleared, you need to restart the app now." msgstr "레거시 스토리지가 지워졌으며 지금 앱을 다시 시작해야 합니다." @@ -2924,22 +2996,32 @@ msgstr "직접 선택하기" msgid "Let's get your password reset!" msgstr "비밀번호를 재설정해 봅시다!" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 +#: src/tours/Tooltip.tsx:151 msgid "Let's go!" msgstr "출발!" -#: src/view/screens/Settings/index.tsx:452 +#: src/view/screens/Settings/index.tsx:453 msgid "Light" msgstr "밝음" +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "10개 게시물에 좋아요 누르기" + +#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:167 +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 msgid "Like this feed" msgstr "이 피드에 좋아요 표시" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:216 -#: src/Navigation.tsx:221 +#: src/Navigation.tsx:219 +#: src/Navigation.tsx:224 msgid "Liked by" msgstr "좋아요 표시한 사용자" @@ -2949,11 +3031,11 @@ msgstr "좋아요 표시한 사용자" msgid "Liked By" msgstr "좋아요 표시한 사용자" -#: src/view/com/notifications/FeedItem.tsx:190 +#: src/view/com/notifications/FeedItem.tsx:201 msgid "liked your custom feed" msgstr "이(가) 내 맞춤 피드를 좋아합니다" -#: src/view/com/notifications/FeedItem.tsx:182 +#: src/view/com/notifications/FeedItem.tsx:185 msgid "liked your post" msgstr "이(가) 내 게시물을 좋아합니다" @@ -2965,7 +3047,7 @@ msgstr "좋아요" msgid "Likes on this post" msgstr "이 게시물을 좋아요 표시합니다" -#: src/Navigation.tsx:185 +#: src/Navigation.tsx:188 msgid "List" msgstr "리스트" @@ -2977,7 +3059,7 @@ msgstr "리스트 아바타" msgid "List blocked" msgstr "리스트 차단됨" -#: src/components/FeedCard.tsx:155 +#: src/components/ListCard.tsx:113 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "{0} 님의 리스트" @@ -3002,10 +3084,10 @@ msgstr "리스트 차단 해제됨" msgid "List unmuted" msgstr "리스트 언뮤트됨" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:125 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/desktop/LeftNav.tsx:385 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 msgid "Lists" @@ -3042,7 +3124,7 @@ msgstr "새 게시물 불러오기" msgid "Loading..." msgstr "불러오는 중…" -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:239 msgid "Log" msgstr "로그" @@ -3066,7 +3148,7 @@ msgstr "로그아웃 표시" msgid "Login to account that is not listed" msgstr "목록에 없는 계정으로 로그인" -#: src/components/RichText.tsx:217 +#: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" msgstr "길게 눌러 #{tag}에 대한 태그 메뉴를 엽니다" @@ -3088,7 +3170,7 @@ msgstr "팔로우 중 피드가 누락된 것 같습니다. <0>이곳을 클릭 #: src/components/StarterPack/ProfileStarterPacks.tsx:254 msgid "Make one for me" -msgstr "" +msgstr "나를 위해 만들기" #: src/view/com/modals/LinkWarning.tsx:79 msgid "Make sure this is where you intend to go!" @@ -3147,7 +3229,7 @@ msgstr "메시지가 너무 깁니다" msgid "Message settings" msgstr "메시지 설정" -#: src/Navigation.tsx:526 +#: src/Navigation.tsx:534 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3158,9 +3240,9 @@ msgstr "메시지" msgid "Misleading Account" msgstr "오해의 소지가 있는 계정" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:130 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Moderation" msgstr "검토" @@ -3168,7 +3250,7 @@ msgstr "검토" msgid "Moderation details" msgstr "검토 세부 정보" -#: src/components/FeedCard.tsx:157 +#: src/components/ListCard.tsx:109 #: src/view/com/lists/ListCard.tsx:95 #: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" @@ -3196,16 +3278,16 @@ msgstr "검토 리스트 업데이트됨" msgid "Moderation lists" msgstr "검토 리스트" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "검토 리스트" -#: src/view/screens/Settings/index.tsx:555 +#: src/view/screens/Settings/index.tsx:556 msgid "Moderation settings" msgstr "검토 설정" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:234 msgid "Moderation states" msgstr "검토 상태" @@ -3236,7 +3318,11 @@ msgstr "좋아요 많은 순" #: src/screens/Onboarding/state.ts:90 msgid "Movies" -msgstr "" +msgstr "영화" + +#: src/screens/Onboarding/state.ts:91 +msgid "Music" +msgstr "음악" #: src/components/TagMenu/index.tsx:249 msgid "Mute" @@ -3306,7 +3392,7 @@ msgstr "뮤트됨" msgid "Muted accounts" msgstr "뮤트한 계정" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "뮤트한 계정" @@ -3332,19 +3418,19 @@ msgstr "뮤트 목록은 비공개입니다. 뮤트한 계정은 나와 상호 msgid "My Birthday" msgstr "내 생년월일" -#: src/view/screens/Feeds.tsx:718 +#: src/view/screens/Feeds.tsx:731 msgid "My Feeds" msgstr "내 피드" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "내 프로필" -#: src/view/screens/Settings/index.tsx:616 +#: src/view/screens/Settings/index.tsx:617 msgid "My saved feeds" msgstr "내 저장한 피드" -#: src/view/screens/Settings/index.tsx:622 +#: src/view/screens/Settings/index.tsx:623 msgid "My Saved Feeds" msgstr "내 저장한 피드" @@ -3365,16 +3451,20 @@ msgid "Name or Description Violates Community Standards" msgstr "이름 또는 설명이 커뮤니티 기준을 위반함" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:92 msgid "Nature" msgstr "자연" +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "{0}(으)로 이동" + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" -msgstr "" +msgstr "스타터 팩으로 이동합니다" #: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:332 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "다음 화면으로 이동합니다" @@ -3387,9 +3477,9 @@ msgstr "내 프로필로 이동합니다" msgid "Need to report a copyright violation?" msgstr "저작권 위반을 신고해야 하나요?" -#: src/screens/Onboarding/StepFinished.tsx:257 +#: src/screens/Onboarding/StepFinished.tsx:265 msgid "Never lose access to your followers or data." -msgstr "팔로워 또는 데이터에 대한 접근 권한을 잃지 마세요." +msgstr "팔로워 또는 데이터에 대한 접근 권한을 잃지 않습니다." #: src/view/com/modals/ChangeHandle.tsx:515 msgid "Nevermind, create a handle for me" @@ -3431,17 +3521,17 @@ msgctxt "action" msgid "New post" msgstr "새 게시물" -#: src/view/screens/Feeds.tsx:580 +#: 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/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/shell/desktop/LeftNav.tsx:278 msgid "New post" msgstr "새 게시물" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:284 msgctxt "action" msgid "New Post" msgstr "새 게시물" @@ -3459,21 +3549,22 @@ msgid "Newest replies first" msgstr "새로운 순" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:93 msgid "News" msgstr "뉴스" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:311 -#: src/screens/Login/LoginForm.tsx:318 +#: src/screens/Login/LoginForm.tsx:331 +#: src/screens/Login/LoginForm.tsx:338 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:258 +#: src/screens/Signup/BackNextButtons.tsx:66 #: src/screens/StarterPack/Wizard/index.tsx:184 #: src/screens/StarterPack/Wizard/index.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:359 #: src/screens/StarterPack/Wizard/index.tsx:366 +#: src/tours/Tooltip.tsx:139 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3514,7 +3605,7 @@ msgstr "피드를 찾을 수 없습니다. 다른 피드를 검색해 보세요. msgid "No longer following {0}" msgstr "더 이상 {0} 님을 팔로우하지 않음" -#: src/screens/Signup/StepHandle.tsx:115 +#: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" msgstr "253자를 초과하지 않음" @@ -3526,7 +3617,7 @@ msgstr "아직 메시지가 없습니다" msgid "No more conversations to show" msgstr "더 이상 표시할 대화가 없습니다" -#: src/view/com/notifications/Feed.tsx:118 +#: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "아직 알림이 없습니다." @@ -3554,7 +3645,7 @@ msgstr "결과 없음" msgid "No results found" msgstr "결과를 찾을 수 없음" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" msgstr "\"{query}\"에 대한 결과를 찾을 수 없습니다" @@ -3596,7 +3687,7 @@ msgstr "아무도 찾을 수 없습니다. 다른 사용자를 검색해 보세 msgid "Non-sexual Nudity" msgstr "선정적이지 않은 노출" -#: src/Navigation.tsx:117 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "찾을 수 없음" @@ -3608,7 +3699,7 @@ msgstr "나중에 하기" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:315 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "공유 관련 참고 사항" @@ -3628,11 +3719,11 @@ msgstr "알림음" msgid "Notification Sounds" msgstr "알림음" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:529 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 +#: 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 msgid "Notifications" @@ -3664,7 +3755,7 @@ msgstr "끄기" msgid "Oh no!" msgstr "이런!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:152 msgid "Oh no! Something went wrong." msgstr "이런! 뭔가 잘못되었습니다." @@ -3688,10 +3779,14 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:256 +#: src/view/screens/Settings/index.tsx:257 msgid "Onboarding reset" msgstr "온보딩 재설정" +#: src/tours/Tooltip.tsx:118 +msgid "Onboarding tour step {0}: {1}" +msgstr "온보딩 투어 단계 {0}: {1}" + #: src/view/com/composer/Composer.tsx:522 msgid "One or more images is missing alt text." msgstr "하나 이상의 이미지에 대체 텍스트가 누락되었습니다." @@ -3704,7 +3799,7 @@ msgstr ".jpg 및 .png 파일만 지원합니다" msgid "Only {0} can reply" msgstr "{0}만 답글을 달 수 있음" -#: src/screens/Signup/StepHandle.tsx:98 +#: src/screens/Signup/StepHandle.tsx:149 msgid "Only contains letters, numbers, and hyphens" msgstr "문자, 숫자, 하이픈만 포함" @@ -3720,7 +3815,7 @@ msgstr "이런, 뭔가 잘못되었습니다!" msgid "Oops!" msgstr "이런!" -#: src/screens/Onboarding/StepFinished.tsx:253 +#: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" msgstr "공개성" @@ -3746,7 +3841,7 @@ msgstr "이모티콘 선택기 열기" msgid "Open feed options menu" msgstr "피드 옵션 메뉴 열기" -#: src/view/screens/Settings/index.tsx:736 +#: src/view/screens/Settings/index.tsx:737 msgid "Open links with in-app browser" msgstr "링크를 인앱 브라우저로 열기" @@ -3766,16 +3861,16 @@ msgstr "내비게이션 열기" msgid "Open post options menu" msgstr "게시물 옵션 메뉴 열기" -#: src/screens/StarterPack/StarterPackScreen.tsx:451 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Open starter pack menu" msgstr "스타터 팩 메뉴 열기" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:861 +#: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" msgstr "스토리북 페이지 열기" -#: src/view/screens/Settings/index.tsx:848 +#: src/view/screens/Settings/index.tsx:849 msgid "Open system log" msgstr "시스템 로그 열기" @@ -3785,9 +3880,9 @@ msgstr "{numItems}번째 옵션을 엽니다" #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:60 msgid "Opens a dialog to choose who can reply to this thread" -msgstr "" +msgstr "이 스레드에 답글을 달 수 있는 사람을 선택하는 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Opens accessibility settings" msgstr "접근성 설정을 엽니다" @@ -3799,7 +3894,7 @@ msgstr "디버그 항목에 대한 추가 세부 정보를 엽니다" msgid "Opens camera on device" msgstr "기기에서 카메라를 엽니다" -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Opens chat settings" msgstr "대화 설정을 엽니다" @@ -3807,7 +3902,7 @@ msgstr "대화 설정을 엽니다" msgid "Opens composer" msgstr "답글 작성 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Opens configurable language settings" msgstr "구성 가능한 언어 설정을 엽니다" @@ -3815,7 +3910,7 @@ msgstr "구성 가능한 언어 설정을 엽니다" msgid "Opens device photo gallery" msgstr "기기의 사진 갤러리를 엽니다" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" msgstr "외부 임베드 설정을 엽니다" @@ -3837,27 +3932,27 @@ msgstr "GIF 선택 대화 상자를 엽니다" msgid "Opens list of invite codes" msgstr "초대 코드 목록을 엽니다" -#: src/view/screens/Settings/index.tsx:808 +#: src/view/screens/Settings/index.tsx:809 msgid "Opens modal for account deactivation confirmation" msgstr "계정 비활성화 확인을 위한 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:830 +#: src/view/screens/Settings/index.tsx:831 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "계정 삭제 확인을 위한 대화 상자를 엽니다. 이메일 코드가 필요합니다" -#: src/view/screens/Settings/index.tsx:765 +#: src/view/screens/Settings/index.tsx:766 msgid "Opens modal for changing your Bluesky password" msgstr "Bluesky 비밀번호 변경을 위한 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:720 +#: src/view/screens/Settings/index.tsx:721 msgid "Opens modal for choosing a new Bluesky handle" msgstr "새로운 Bluesky 핸들을 선택하기 위한 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:788 +#: src/view/screens/Settings/index.tsx:789 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Bluesky 계정 데이터(저장소)를 다운로드하기 위한 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Opens modal for email verification" msgstr "이메일 인증을 위한 대화 상자를 엽니다" @@ -3865,23 +3960,23 @@ msgstr "이메일 인증을 위한 대화 상자를 엽니다" msgid "Opens modal for using custom domain" msgstr "사용자 지정 도메인을 사용하기 위한 대화 상자를 엽니다" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Opens moderation settings" msgstr "검토 설정을 엽니다" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:247 msgid "Opens password reset form" msgstr "비밀번호 재설정 양식을 엽니다" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "Opens screen with all saved feeds" msgstr "모든 저장한 피드 화면을 엽니다" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "Opens the app password settings" msgstr "비밀번호 설정을 엽니다" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Opens the Following feed preferences" msgstr "팔로우 중 피드 설정을 엽니다" @@ -3889,20 +3984,20 @@ msgstr "팔로우 중 피드 설정을 엽니다" msgid "Opens the linked website" 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 "Opens the storybook page" msgstr "스토리북 페이지를 엽니다" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" msgstr "시스템 로그 페이지를 엽니다" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Opens the threads preferences" msgstr "스레드 설정을 엽니다" -#: src/view/com/notifications/FeedItem.tsx:513 +#: src/view/com/notifications/FeedItem.tsx:524 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "이 프로필을 엽니다" @@ -3914,11 +4009,11 @@ msgstr "{numItems}개 중 {0}번째 옵션" #: src/components/dms/ReportDialog.tsx:183 #: src/components/ReportDialog/SubmitView.tsx:162 msgid "Optionally provide additional information below:" -msgstr "선택 사항으로 아래에 추가 정보를 입력하세요:" +msgstr "선택 사항으로 아래에 추가 정보를 입력하세요." #: src/components/dialogs/ThreadgateEditor.tsx:115 msgid "Or combine these options:" -msgstr "또는 다음 옵션을 결합하세요:" +msgstr "또는 다음 옵션을 결합하세요." #: src/screens/Deactivated.tsx:211 msgid "Or, continue with another account." @@ -3953,8 +4048,8 @@ msgstr "페이지를 찾을 수 없음" msgid "Page Not Found" msgstr "페이지를 찾을 수 없음" -#: src/screens/Login/LoginForm.tsx:204 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Signup/StepInfo/index.tsx:162 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -3976,38 +4071,39 @@ msgstr "비밀번호 변경됨" msgid "Pause" msgstr "일시 정지" +#: src/screens/StarterPack/StarterPackScreen.tsx:170 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "사람들" -#: src/Navigation.tsx:172 +#: src/Navigation.tsx:175 msgid "People followed by @{0}" msgstr "@{0} 님이 팔로우한 사람들" -#: src/Navigation.tsx:165 +#: src/Navigation.tsx:168 msgid "People following @{0}" msgstr "@{0} 님을 팔로우하는 사람들" #: src/view/com/lightbox/Lightbox.tsx:69 msgid "Permission to access camera roll is required." -msgstr "앨범에 접근할 수 있는 권한이 필요합니다." +msgstr "사진 보관함에 접근할 수 있는 권한이 필요합니다." #: src/view/com/lightbox/Lightbox.tsx:75 msgid "Permission to access camera roll was denied. Please enable it in your system settings." -msgstr "앨범에 접근할 수 있는 권한이 거부되었습니다. 시스템 설정에서 활성화하세요." +msgstr "사진 보관함에 접근할 수 있는 권한이 거부되었습니다. 시스템 설정에서 활성화하세요." #: src/components/StarterPack/Wizard/WizardListCard.tsx:55 msgid "Person toggle" msgstr "사람 켜거나 끄기" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:94 msgid "Pets" msgstr "반려동물" -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:95 msgid "Photography" -msgstr "" +msgstr "사진" #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." @@ -4051,15 +4147,16 @@ msgstr "동영상 재생" msgid "Plays the GIF" msgstr "GIF를 재생합니다" -#: src/screens/Signup/state.ts:234 +#: src/screens/Signup/state.ts:210 msgid "Please choose your handle." msgstr "핸들을 입력하세요." -#: src/screens/Signup/state.ts:227 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:81 msgid "Please choose your password." msgstr "비밀번호를 입력하세요." -#: src/screens/Signup/state.ts:248 +#: src/screens/Signup/state.ts:224 msgid "Please complete the verification captcha." msgstr "인증 캡차를 완료해 주세요." @@ -4079,13 +4176,18 @@ msgstr "이 앱 비밀번호에 대해 고유한 이름을 입력하거나 무 msgid "Please enter a valid word, tag, or phrase to mute" msgstr "뮤트할 단어나 태그 또는 문구를 입력하세요" -#: src/screens/Signup/state.ts:213 +#: src/screens/Signup/state.ts:189 +#: src/screens/Signup/StepInfo/index.tsx:69 msgid "Please enter your email." msgstr "이메일을 입력하세요." +#: src/screens/Signup/StepInfo/index.tsx:63 +msgid "Please enter your invite code." +msgstr "초대 코드를 입력하세요." + #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" -msgstr "비밀번호도 입력해 주세요:" +msgstr "비밀번호를 입력하세요." #: src/components/moderation/LabelsOnMeDialog.tsx:256 msgid "Please explain why you think this label was incorrectly applied by {0}" @@ -4109,7 +4211,7 @@ msgid "Please wait for your link card to finish loading" msgstr "링크 카드를 완전히 불러올 때까지 기다려주세요" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:96 msgid "Politics" msgstr "정치" @@ -4132,9 +4234,9 @@ msgstr "게시물" msgid "Post by {0}" msgstr "{0} 님의 게시물" -#: src/Navigation.tsx:191 -#: src/Navigation.tsx:198 -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:194 +#: src/Navigation.tsx:201 +#: src/Navigation.tsx:208 msgid "Post by @{0}" msgstr "@{0} 님의 게시물" @@ -4173,6 +4275,7 @@ msgstr "게시물을 찾을 수 없음" msgid "posts" msgstr "게시물" +#: src/screens/StarterPack/StarterPackScreen.tsx:172 #: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "게시물" @@ -4200,7 +4303,7 @@ msgstr "호스팅 제공자를 변경하려면 누릅니다" #: src/components/Error.tsx:85 #: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/index.tsx:238 +#: src/screens/Signup/BackNextButtons.tsx:46 msgid "Press to retry" msgstr "다시 시도하려면 누르기" @@ -4220,15 +4323,15 @@ msgstr "주 언어" msgid "Prioritize Your Follows" msgstr "내 팔로우 먼저 표시" -#: src/view/screens/Settings/index.tsx:654 -#: src/view/shell/desktop/RightNav.tsx:77 +#: src/view/screens/Settings/index.tsx:655 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "개인정보" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 +#: src/view/screens/Settings/index.tsx:958 #: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "개인정보 처리방침" @@ -4246,8 +4349,8 @@ msgstr "처리 중…" msgid "profile" msgstr "프로필" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 +#: 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 @@ -4258,11 +4361,11 @@ msgstr "프로필" msgid "Profile updated" msgstr "프로필 업데이트됨" -#: src/view/screens/Settings/index.tsx:1021 +#: src/view/screens/Settings/index.tsx:1022 msgid "Protect your account by verifying your email." msgstr "이메일을 인증하여 계정을 보호하세요." -#: src/screens/Onboarding/StepFinished.tsx:239 +#: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" msgstr "공공성" @@ -4292,7 +4395,11 @@ msgstr "QR 코드를 다운로드했습니다." #: src/components/StarterPack/QrCodeDialog.tsx:104 msgid "QR code saved to your camera roll!" -msgstr "QR 코드를 앨범에 저장했습니다." +msgstr "QR 코드를 사진 보관함에 저장했습니다." + +#: src/tours/Tooltip.tsx:111 +msgid "Quick tip" +msgstr "빠른 팁" #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 @@ -4330,7 +4437,7 @@ msgid "Reload conversations" msgstr "대화 다시 불러오기" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:325 +#: src/components/FeedCard.tsx:309 #: src/components/StarterPack/Wizard/WizardListCard.tsx:95 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 @@ -4343,7 +4450,7 @@ msgstr "제거" #: src/components/StarterPack/Wizard/WizardListCard.tsx:58 msgid "Remove {displayName} from starter pack" -msgstr "{displayName} 님을 스타터 팩에서 제거" +msgstr "스타터 팩에서 {displayName} 제거" #: src/view/com/util/AccountDropdownBtn.tsx:22 msgid "Remove account" @@ -4379,7 +4486,7 @@ msgstr "피드를 제거하시겠습니까?" msgid "Remove from my feeds" msgstr "내 피드에서 제거" -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:304 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "내 피드에서 제거하시겠습니까?" @@ -4453,10 +4560,6 @@ msgstr "답글" msgid "Replies disabled" msgstr "답글 비활성화됨" -#: src/view/com/threadgate/WhoCanReply.tsx:123 -#~ msgid "Replies on this thread are disabled" -#~ msgstr "이 스레드에 대한 답글이 비활성화됨" - #: src/components/WhoCanReply.tsx:242 msgid "Replies to this thread are disabled" msgstr "이 스레드에 대한 답글이 비활성화됨" @@ -4520,8 +4623,8 @@ msgstr "메시지 신고" msgid "Report post" msgstr "게시물 신고" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 -#: src/screens/StarterPack/StarterPackScreen.tsx:507 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 msgid "Report starter pack" msgstr "스타터 팩 신고" @@ -4567,7 +4670,7 @@ msgstr "재게시" msgid "Repost" msgstr "재게시" -#: src/screens/StarterPack/StarterPackScreen.tsx:446 +#: src/screens/StarterPack/StarterPackScreen.tsx:524 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4586,7 +4689,7 @@ msgstr "{0} 님이 재게시함" msgid "Reposted by <0><1/>" msgstr "<0><1/> 님이 재게시함" -#: src/view/com/notifications/FeedItem.tsx:184 +#: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "이(가) 내 게시물을 재게시했습니다" @@ -4612,7 +4715,7 @@ msgstr "게시하기 전 대체 텍스트 필수" msgid "Require email code to log into your account" msgstr "계정에 로그인할 때 이메일 코드 필수" -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" msgstr "이 제공자에서 필수" @@ -4629,8 +4732,8 @@ msgstr "재설정 코드" msgid "Reset Code" msgstr "재설정 코드" -#: src/view/screens/Settings/index.tsx:900 -#: src/view/screens/Settings/index.tsx:903 +#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" msgstr "온보딩 상태 초기화" @@ -4638,20 +4741,20 @@ msgstr "온보딩 상태 초기화" msgid "Reset password" msgstr "비밀번호 재설정" -#: src/view/screens/Settings/index.tsx:880 -#: src/view/screens/Settings/index.tsx:883 +#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:884 msgid "Reset preferences state" msgstr "설정 상태 초기화" -#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" msgstr "온보딩 상태 초기화" -#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" msgstr "설정 상태 초기화" -#: src/screens/Login/LoginForm.tsx:292 +#: src/screens/Login/LoginForm.tsx:312 msgid "Retries login" msgstr "로그인을 다시 시도합니다" @@ -4664,19 +4767,19 @@ msgstr "오류가 발생한 마지막 작업을 다시 시도합니다" #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:291 -#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:311 +#: src/screens/Login/LoginForm.tsx:318 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Signup/BackNextButtons.tsx:52 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "다시 시도" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:650 +#: src/screens/StarterPack/StarterPackScreen.tsx:728 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "이전 페이지로 돌아갑니다" @@ -4747,7 +4850,7 @@ msgstr "저장한 피드" #: src/view/com/lightbox/Lightbox.tsx:84 msgid "Saved to your camera roll" -msgstr "내 앨범에 저장됨" +msgstr "내 사진 보관함에 저장됨" #: src/view/screens/ProfileFeed.tsx:201 #: src/view/screens/ProfileList.tsx:300 @@ -4768,13 +4871,13 @@ msgstr "이미지 자르기 설정을 저장합니다" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:372 -#: src/view/com/notifications/FeedItem.tsx:397 +#: src/view/com/notifications/FeedItem.tsx:383 +#: src/view/com/notifications/FeedItem.tsx:408 msgid "Say hello!" msgstr "인사해 보세요!" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:97 msgid "Science" msgstr "과학" @@ -4783,16 +4886,16 @@ msgid "Scroll to top" msgstr "맨 위로 스크롤" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:516 -#: src/view/com/auth/LoggedOut.tsx:119 +#: src/Navigation.tsx:524 +#: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 #: src/view/screens/Search/Search.tsx:791 #: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 +#: 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 @@ -4820,8 +4923,8 @@ msgstr "{displayTag} 태그를 사용한 모든 게시물 검색" msgid "Search for feeds that you want to suggest to others." msgstr "다른 사람에게 추천할 피드를 검색하세요." -#: src/view/com/auth/LoggedOut.tsx:101 -#: src/view/com/auth/LoggedOut.tsx:102 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:107 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "사용자 검색하기" @@ -4929,11 +5032,11 @@ msgstr "구독하는 피드에 포함할 언어를 선택합니다. 선택하지 msgid "Select your app language for the default text to display in the app." msgstr "앱에 표시되는 기본 텍스트 언어를 선택합니다." -#: src/screens/Signup/StepInfo/index.tsx:135 +#: src/screens/Signup/StepInfo/index.tsx:192 msgid "Select your date of birth" msgstr "생년월일을 선택하세요" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:225 msgid "Select your interests from the options below" msgstr "아래 옵션에서 관심사를 선택하세요" @@ -5038,23 +5141,23 @@ msgstr "계정 설정하기" msgid "Sets Bluesky username" msgstr "Bluesky 사용자 이름을 설정합니다" -#: src/view/screens/Settings/index.tsx:461 +#: src/view/screens/Settings/index.tsx:462 msgid "Sets color theme to dark" msgstr "색상 테마를 어두움으로 설정합니다" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Sets color theme to light" msgstr "색상 테마를 밝음으로 설정합니다" -#: src/view/screens/Settings/index.tsx:448 +#: src/view/screens/Settings/index.tsx:449 msgid "Sets color theme to system setting" msgstr "색상 테마를 시스템 설정에 맞춥니다" -#: src/view/screens/Settings/index.tsx:487 +#: src/view/screens/Settings/index.tsx:488 msgid "Sets dark theme to the dark theme" msgstr "어두운 테마를 완전히 어둡게 설정합니다" -#: src/view/screens/Settings/index.tsx:480 +#: src/view/screens/Settings/index.tsx:481 msgid "Sets dark theme to the dim theme" msgstr "어두운 테마를 살짝 밝게 설정합니다" @@ -5074,9 +5177,9 @@ msgstr "이미지 비율을 세로로 길게 설정합니다" msgid "Sets image aspect ratio to wide" msgstr "이미지 비율을 가로로 길게 설정합니다" -#: src/Navigation.tsx:147 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:395 +#: src/Navigation.tsx:150 +#: src/view/screens/Settings/index.tsx:333 +#: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:559 #: src/view/shell/Drawer.tsx:560 msgid "Settings" @@ -5091,13 +5194,13 @@ msgid "Sexually Suggestive" msgstr "외설적" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:340 -#: src/screens/StarterPack/StarterPackScreen.tsx:493 +#: 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/post-ctrls/PostCtrls.tsx:304 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "공유" @@ -5117,7 +5220,7 @@ msgstr "재미있는 사실을 전하세요!" #: src/view/com/profile/ProfileMenu.tsx:377 #: src/view/com/util/forms/PostDropdownBtn.tsx:461 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:320 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "무시하고 공유" @@ -5128,7 +5231,7 @@ msgstr "피드 공유" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "링크 공유" @@ -5144,9 +5247,9 @@ msgstr "링크 공유 대화 상자" #: src/components/StarterPack/ShareDialog.tsx:134 #: src/components/StarterPack/ShareDialog.tsx:145 msgid "Share QR code" -msgstr "" +msgstr "QR 코드 공유" -#: src/screens/StarterPack/StarterPackScreen.tsx:333 +#: src/screens/StarterPack/StarterPackScreen.tsx:393 msgid "Share this starter pack" msgstr "이 스타터 팩 공유하기" @@ -5165,11 +5268,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:381 +#: src/view/screens/Settings/index.tsx:382 msgid "Show" msgstr "표시" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "대체 텍스트 표시" @@ -5256,17 +5359,17 @@ msgstr "피드에 {0} 님의 게시물을 표시합니다" #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:100 #: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Login/LoginForm.tsx:177 #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.tsx:72 #: src/view/com/auth/SplashScreen.web.tsx:112 #: src/view/com/auth/SplashScreen.web.tsx:121 -#: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 #: src/view/shell/bottom-bar/BottomBar.tsx:315 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/bottom-bar/BottomBar.tsx:318 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:210 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5294,12 +5397,12 @@ msgstr "Bluesky에 로그인하거나 새 계정 만들기" msgid "Sign out" msgstr "로그아웃" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 #: src/view/shell/bottom-bar/BottomBar.tsx:305 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBar.tsx:306 +#: src/view/shell/bottom-bar/BottomBar.tsx:308 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:200 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5315,7 +5418,7 @@ msgstr "가입 또는 로그인하여 대화에 참여하세요" msgid "Sign-in Required" msgstr "로그인 필요" -#: src/view/screens/Settings/index.tsx:391 +#: src/view/screens/Settings/index.tsx:392 msgid "Signed in as" msgstr "로그인한 계정" @@ -5324,21 +5427,21 @@ msgstr "로그인한 계정" msgid "Signed in as @{0}" msgstr "@{0}(으)로 로그인했습니다" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "signed up with your starter pack" msgstr "(이)가 내 스타터 팩으로 가입했습니다" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 msgid "Signup without a starter pack" msgstr "스타터 팩 없이 가입하기" -#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:264 #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "건너뛰기" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:261 msgid "Skip this flow" msgstr "이 단계 건너뛰기" @@ -5347,15 +5450,15 @@ msgstr "이 단계 건너뛰기" msgid "Software Dev" msgstr "소프트웨어 개발" +#: src/components/FeedInterstitials.tsx:371 +msgid "Some other feeds you might like" +msgstr "좋아할 만한 다른 피드" + #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" msgstr "일부 사람들이 답글을 달 수 있음" -#: src/screens/StarterPack/Wizard/index.tsx:203 -#~ msgid "Some subtitle" -#~ msgstr "적당한 부제목" - #: src/screens/Messages/Conversation/index.tsx:106 msgid "Something went wrong" msgstr "알 수 없는 오류가 발생했습니다" @@ -5371,8 +5474,8 @@ msgstr "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요" msgid "Something went wrong, please try again." msgstr "알 수 없는 오류가 발생했습니다. 다시 시도해 주세요." -#: src/App.native.tsx:96 -#: src/App.web.tsx:78 +#: src/App.native.tsx:98 +#: src/App.web.tsx:80 msgid "Sorry! Your session expired. Please log in again." msgstr "죄송합니다. 세션이 만료되었습니다. 다시 로그인해 주세요." @@ -5398,7 +5501,7 @@ msgid "Spam; excessive mentions or replies" msgstr "스팸, 과도한 멘션 또는 답글" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:98 msgid "Sports" msgstr "스포츠" @@ -5418,17 +5521,22 @@ msgstr "{displayName} 님과 대화 시작하기" msgid "Start chatting" msgstr "대화 시작하기" +#: src/tours/Tooltip.tsx:99 +msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +msgstr "온보딩 투어 창을 시작합니다. 뒤로 이동하지 마세요. 대신 앞으로 이동하여 더 많은 옵션을 보거나 건너뛰려면 누르세요." + #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:328 +#: src/Navigation.tsx:333 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "스타터 팩" -#: src/components/StarterPack/StarterPackCard.tsx:65 +#: src/components/StarterPack/StarterPackCard.tsx:70 msgid "Starter pack by {0}" msgstr "{0} 님의 스타터 팩" -#: src/screens/StarterPack/StarterPackScreen.tsx:614 +#: src/screens/StarterPack/StarterPackScreen.tsx:692 msgid "Starter pack is invalid" msgstr "스타터 팩이 유효하지 않음" @@ -5438,22 +5546,22 @@ msgstr "스타터 팩" #: src/components/StarterPack/ProfileStarterPacks.tsx:238 msgid "Starter packs let you easily share your favorite feeds and people with your friends." -msgstr "" +msgstr "스타터 팩을 사용하면 좋아하는 피드와 사람들을 친구들과 쉽게 공유할 수 있습니다." -#: src/view/screens/Settings/index.tsx:963 +#: src/view/screens/Settings/index.tsx:964 msgid "Status Page" msgstr "상태 페이지" -#: src/screens/Signup/index.tsx:192 +#: src/screens/Signup/index.tsx:125 msgid "Step {0} of {1}" msgstr "{1}단계 중 {0}단계" -#: src/view/screens/Settings/index.tsx:304 +#: src/view/screens/Settings/index.tsx:305 msgid "Storage cleared, you need to restart the app now." msgstr "스토리지가 지워졌으며 지금 앱을 다시 시작해야 합니다." -#: src/Navigation.tsx:226 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:229 +#: src/view/screens/Settings/index.tsx:864 msgid "Storybook" msgstr "스토리북" @@ -5488,6 +5596,7 @@ msgstr "이 리스트 구독하기" msgid "Suggested accounts" msgstr "추천 계정" +#: src/components/FeedInterstitials.tsx:243 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "나를 위한 추천" @@ -5496,7 +5605,7 @@ msgstr "나를 위한 추천" msgid "Suggestive" msgstr "외설적" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:244 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5507,6 +5616,10 @@ msgstr "지원" msgid "Switch Account" msgstr "계정 전환" +#: src/tours/HomeTour.tsx:48 +msgid "Switch between feeds to control your experience." +msgstr "피드 사이를 전환하여 내 환경을 제어할 수 있습니다." + #: src/view/screens/Settings/index.tsx:160 msgid "Switch to {0}" msgstr "{0}(으)로 전환" @@ -5515,11 +5628,11 @@ msgstr "{0}(으)로 전환" msgid "Switches the account you are logged in to" msgstr "로그인한 계정을 전환합니다" -#: src/view/screens/Settings/index.tsx:445 +#: src/view/screens/Settings/index.tsx:446 msgid "System" msgstr "시스템" -#: src/view/screens/Settings/index.tsx:851 +#: src/view/screens/Settings/index.tsx:852 msgid "System log" msgstr "시스템 로그" @@ -5535,12 +5648,24 @@ msgstr "태그 메뉴: {displayTag}" msgid "Tall" msgstr "세로" +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "눌러서 닫기" + #: src/view/com/util/images/AutoSizedImage.tsx:70 msgid "Tap to view fully" msgstr "탭하여 전체 크기로 봅니다" +#: src/state/shell/progress-guide.tsx:171 +msgid "Task complete - 10 likes!" +msgstr "작업 완료 - 10개 좋아요!" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "무엇을 좋아하는지 알고리즘에게 알려주세요" + #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:99 msgid "Tech" msgstr "기술" @@ -5550,15 +5675,15 @@ msgstr "농담해 보세요!" #: src/screens/StarterPack/Wizard/StepDetails.tsx:63 msgid "Tell us a little more" -msgstr "" +msgstr "좀 더 자세히 알려주세요" -#: src/view/shell/desktop/RightNav.tsx:86 +#: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "이용약관" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:254 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/Settings/index.tsx:952 #: src/view/screens/TermsOfService.tsx:29 #: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" @@ -5589,16 +5714,18 @@ msgstr "감사합니다. 신고를 전송했습니다." msgid "That contains the following:" msgstr "텍스트 파일 내용:" -#: src/screens/Signup/index.tsx:100 +#: src/screens/Signup/StepHandle.tsx:50 msgid "That handle is already taken." msgstr "이 핸들은 이미 사용 중입니다." -#: src/screens/StarterPack/StarterPackScreen.tsx:105 -#: src/screens/StarterPack/StarterPackScreen.tsx:106 +#: src/screens/StarterPack/StarterPackScreen.tsx:96 +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:136 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." -msgstr "" +msgstr "스타터 팩을 찾을 수 없습니다." #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:310 #: src/view/com/profile/ProfileMenu.tsx:353 @@ -5613,9 +5740,14 @@ msgstr "커뮤니티 가이드라인을 <0/>(으)로 이동했습니다" msgid "The Copyright Policy has been moved to <0/>" msgstr "저작권 정책을 <0/>(으)로 이동했습니다" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:177 +msgid "The Discover feed now knows what you like" +msgstr "이제 Discover 피드는 사용자가 무엇을 좋아하는지 알게 됩니다" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." -msgstr "" +msgstr "앱에서 더 나은 환경을 경험하세요. 지금 Bluesky를 다운로드하면 중단한 부분부터 다시 시작합니다." #: src/view/com/posts/FeedShutdownMsg.tsx:66 msgid "The feed has been replaced with Discover." @@ -5642,7 +5774,7 @@ msgstr "게시물이 삭제되었을 수 있습니다." msgid "The Privacy Policy has been moved to <0/>" msgstr "개인정보 처리방침을 <0/>(으)로 이동했습니다" -#: src/screens/StarterPack/StarterPackScreen.tsx:624 +#: src/screens/StarterPack/StarterPackScreen.tsx:702 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "이 스타터 팩은 유효하지 않습니다. 대신 이 스타터 팩을 삭제할 수 있습니다." @@ -5692,11 +5824,11 @@ msgstr "서버에 연결하는 동안 문제가 발생했습니다" msgid "There was an issue contacting your server" msgstr "서버에 연결하는 동안 문제가 발생했습니다" -#: src/view/com/notifications/Feed.tsx:126 +#: src/view/com/notifications/Feed.tsx:125 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "알림을 가져오는 동안 문제가 발생했습니다. 이곳을 탭하여 다시 시도하세요." -#: src/view/com/posts/Feed.tsx:299 +#: src/view/com/posts/Feed.tsx:459 msgid "There was an issue fetching posts. Tap here to try again." msgstr "게시물을 가져오는 동안 문제가 발생했습니다. 이곳을 탭하여 다시 시도하세요." @@ -5866,7 +5998,7 @@ msgid "This post has been deleted." msgstr "이 게시물은 삭제되었습니다." #: src/view/com/util/forms/PostDropdownBtn.tsx:458 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:317 +#: 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 "이 게시물은 로그인한 사용자에게만 표시됩니다. 로그인하지 않은 사용자에게는 표시되지 않습니다." @@ -5923,24 +6055,24 @@ 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:594 +#: src/view/screens/Settings/index.tsx:595 msgid "Thread preferences" msgstr "스레드 설정" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/Settings/index.tsx:605 msgid "Thread Preferences" msgstr "스레드 설정" #: src/components/WhoCanReply.tsx:109 msgid "Thread settings updated" -msgstr "" +msgstr "스레드 설정 업데이트됨" #: src/view/screens/PreferencesThreads.tsx:119 msgid "Threaded Mode" msgstr "스레드 모드" -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:287 msgid "Threads Preferences" msgstr "스레드 설정" @@ -5991,11 +6123,11 @@ msgctxt "action" msgid "Try again" msgstr "다시 시도" -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:100 msgid "TV" -msgstr "" +msgstr "TV" -#: src/view/screens/Settings/index.tsx:745 +#: src/view/screens/Settings/index.tsx:746 msgid "Two-factor authentication" msgstr "2단계 인증" @@ -6017,14 +6149,14 @@ msgstr "리스트 언뮤트" #: src/screens/Login/ForgotPasswordForm.tsx:74 #: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:79 +#: src/screens/Signup/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "서비스에 연결할 수 없습니다. 인터넷 연결을 확인하세요." -#: src/screens/StarterPack/StarterPackScreen.tsx:548 +#: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Unable to delete" msgstr "삭제할 수 없음" @@ -6277,7 +6409,7 @@ msgstr "사용자 리스트 업데이트됨" msgid "User Lists" msgstr "사용자 리스트" -#: src/screens/Login/LoginForm.tsx:177 +#: src/screens/Login/LoginForm.tsx:197 msgid "Username or email address" msgstr "사용자 이름 또는 이메일 주소" @@ -6312,15 +6444,15 @@ msgstr "값:" msgid "Verify DNS Record" msgstr "DNS 레코드 인증" -#: src/view/screens/Settings/index.tsx:982 +#: src/view/screens/Settings/index.tsx:983 msgid "Verify email" msgstr "이메일 인증" -#: src/view/screens/Settings/index.tsx:1007 +#: src/view/screens/Settings/index.tsx:1008 msgid "Verify my email" msgstr "내 이메일 인증하기" -#: src/view/screens/Settings/index.tsx:1016 +#: src/view/screens/Settings/index.tsx:1017 msgid "Verify My Email" msgstr "내 이메일 인증하기" @@ -6337,7 +6469,7 @@ msgstr "텍스트 파일 인증" msgid "Verify Your Email" msgstr "이메일 인증하기" -#: src/view/screens/Settings/index.tsx:935 +#: src/view/screens/Settings/index.tsx:936 msgid "Version {appVersion} {bundleInfo}" msgstr "버전 {appVersion} {bundleInfo}" @@ -6350,7 +6482,7 @@ msgstr "비디오 게임" msgid "View {0}'s avatar" msgstr "{0} 님의 아바타를 봅니다" -#: src/view/com/notifications/FeedItem.tsx:234 +#: src/view/com/notifications/FeedItem.tsx:245 msgid "View {0}'s profile" msgstr "{0} 님의 프로필 보기" @@ -6399,7 +6531,7 @@ msgid "View users who like this feed" msgstr "이 피드를 좋아하는 사용자 보기" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "내 피드를 보거나 새 피드를 탐색합니다" @@ -6434,9 +6566,9 @@ msgstr "이 대화를 불러올 수 없습니다" msgid "We estimate {estimatedTime} until your account is ready." msgstr "계정이 준비될 때까지 {estimatedTime}이(가) 걸릴 것으로 예상됩니다." -#: src/screens/Onboarding/StepFinished.tsx:231 +#: src/screens/Onboarding/StepFinished.tsx:239 msgid "We hope you have a wonderful time. Remember, Bluesky is:" -msgstr "즐거운 시간 되시기 바랍니다. Bluesky의 다음 특징을 기억하세요:" +msgstr "즐거운 시간 되시기 바랍니다. Bluesky의 다음 특징을 기억하세요." #: src/view/com/posts/DiscoverFallbackHeader.tsx:29 msgid "We ran out of posts from your follows. Here's the latest from <0/>." @@ -6454,7 +6586,7 @@ msgstr "생년월일 설정을 불러올 수 없습니다. 다시 시도해 주 msgid "We were unable to load your configured labelers at this time." msgstr "현재 구성된 라벨러를 불러올 수 없습니다." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:157 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "연결하지 못했습니다. 계정 설정을 계속하려면 다시 시도해 주세요. 계속 실패하면 이 과정을 건너뛸 수 있습니다." @@ -6462,7 +6594,7 @@ msgstr "연결하지 못했습니다. 계정 설정을 계속하려면 다시 msgid "We will let you know when your account is ready." msgstr "계정이 준비되면 알려드리겠습니다." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:162 msgid "We'll use this to help customize your experience." msgstr "이를 통해 사용자 환경을 맞춤 설정할 수 있습니다." @@ -6470,7 +6602,7 @@ msgstr "이를 통해 사용자 환경을 맞춤 설정할 수 있습니다." msgid "We're having network issues, try again" msgstr "네트워크 문제가 발생했습니다. 다시 시도하세요" -#: src/screens/Signup/index.tsx:155 +#: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" msgstr "함께하게 되어 정말 기뻐요!" @@ -6505,15 +6637,15 @@ msgstr "다시 돌아오셨군요!" #: src/components/NewskieDialog.tsx:103 msgid "Welcome, friend!" -msgstr "" +msgstr "잘 오셨습니다!" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" msgstr "어떤 관심사가 있으신가요?" #: src/screens/StarterPack/Wizard/StepDetails.tsx:42 msgid "What do you want to call your starter pack?" -msgstr "" +msgstr "스타터 팩의 이름을 무엇으로 할까요?" #: src/view/com/auth/SplashScreen.tsx:40 #: src/view/com/auth/SplashScreen.web.tsx:86 @@ -6598,7 +6730,7 @@ msgid "Write your reply" msgstr "답글 작성하기" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:101 msgid "Writers" msgstr "작가" @@ -6617,9 +6749,9 @@ msgstr "예" msgid "Yes, deactivate" msgstr "비활성화" -#: src/screens/StarterPack/StarterPackScreen.tsx:560 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 msgid "Yes, delete this starter pack" -msgstr "" +msgstr "예, 이 스타터 팩을 삭제합니다" #: src/screens/Deactivated.tsx:150 msgid "Yes, reactivate my account" @@ -6629,13 +6761,13 @@ msgstr "내 계정 재활성화" msgid "Yesterday, {time}" msgstr "어제 {time}" -#: src/components/StarterPack/StarterPackCard.tsx:68 +#: src/components/StarterPack/StarterPackCard.tsx:73 msgid "you" msgstr "나" #: src/components/NewskieDialog.tsx:43 msgid "You" -msgstr "" +msgstr "나" #: src/screens/SignupQueued.tsx:136 msgid "You are in line." @@ -6760,7 +6892,7 @@ msgstr "끝에 도달했습니다" #: src/components/StarterPack/ProfileStarterPacks.tsx:235 msgid "You haven't created a starter pack yet!" -msgstr "" +msgstr "아직 스타터 팩을 만들지 않았습니다." #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" @@ -6776,11 +6908,11 @@ msgstr "이 라벨이 잘못 지정되었다고 생각되면 이의신청할 수 #: src/screens/StarterPack/Wizard/State.tsx:92 msgid "You may only add up to 50 feeds" -msgstr "" +msgstr "피드는 최대 50개까지 추가할 수 있습니다" #: src/screens/StarterPack/Wizard/State.tsx:77 msgid "You may only add up to 50 profiles" -msgstr "" +msgstr "프로필은 최대 50개까지 추가할 수 있습니다" #: src/screens/Signup/StepInfo/Policies.tsx:79 msgid "You must be 13 years of age or older to sign up." @@ -6788,15 +6920,15 @@ msgstr "가입하려면 만 13세 이상이어야 합니다." #: src/components/StarterPack/ProfileStarterPacks.tsx:306 msgid "You must be following at least seven other people to generate a starter pack." -msgstr "" +msgstr "스타터 팩을 만들려면 최소 7명 이상의 다른 사람을 팔로우해야 합니다." #: src/components/StarterPack/QrCodeDialog.tsx:60 msgid "You must grant access to your photo library to save a QR code" -msgstr "" +msgstr "QR 코드를 저장하려면 사진 보관함에 대한 접근 권한을 부여해야 합니다" #: src/components/StarterPack/ShareDialog.tsx:68 msgid "You must grant access to your photo library to save the image." -msgstr "" +msgstr "이미지를 저장하려면 사진 보관함에 대한 접근 권한을 부여해야 합니다" #: src/components/ReportDialog/SubmitView.tsx:205 msgid "You must select at least one labeler for a report" @@ -6816,7 +6948,7 @@ 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}" @@ -6830,25 +6962,25 @@ msgstr "나: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "나: {short}" -#: src/screens/Signup/index.tsx:169 +#: 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:174 +#: src/screens/Signup/index.tsx:107 msgid "You'll follow the suggested users once you finish creating your account!" -msgstr "" +msgstr "계정 생성을 완료하면 추천 사용자를 팔로우하게 됩니다." -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 msgid "You'll follow these people and {0} others" -msgstr "" +msgstr "다음 사람들 외 {0}명을 팔로우하게 됩니다" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 msgid "You'll follow these people right away" -msgstr "" +msgstr "다음 사람들을 바로 팔로우하게 됩니다" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "You'll stay updated with these feeds" -msgstr "" +msgstr "다음 피드를 구독하게 됩니다" #: src/screens/SignupQueued.tsx:93 #: src/screens/SignupQueued.tsx:94 @@ -6861,7 +6993,7 @@ msgstr "대기 중입니다" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "앱 비밀번호로 로그인했습니다. 계정 비활성화를 계속하려면 원래 비밀번호로 로그인하세요." -#: src/screens/Onboarding/StepFinished.tsx:228 +#: src/screens/Onboarding/StepFinished.tsx:236 msgid "You're ready to go!" msgstr "준비가 끝났습니다!" @@ -6874,7 +7006,7 @@ msgstr "이 글에서 단어 또는 태그를 숨기도록 설정했습니다." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "피드 끝에 도달했습니다! 팔로우할 계정을 더 찾아보세요." -#: src/screens/Signup/index.tsx:202 +#: src/screens/Signup/index.tsx:135 msgid "Your account" msgstr "내 계정" @@ -6886,7 +7018,7 @@ msgstr "계정을 삭제했습니다" 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\" 파일로 다운로드할 수 있습니다. 이 파일에는 이미지와 같은 미디어 임베드나 별도로 가져와야 하는 비공개 데이터는 포함되지 않습니다." -#: src/screens/Signup/StepInfo/index.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" msgstr "생년월일" @@ -6899,7 +7031,8 @@ msgid "Your choice will be saved, but can be changed later in settings." msgstr "선택 사항은 저장되며 나중에 설정에서 변경할 수 있습니다." #: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "이메일이 잘못된 것 같습니다." @@ -6912,11 +7045,15 @@ msgstr "이메일이 변경되었지만 인증되지 않았습니다. 다음 단 msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "이메일이 아직 인증되지 않았습니다. 이는 중요한 보안 단계이므로 권장하는 사항입니다." +#: src/state/shell/progress-guide.tsx:161 +msgid "Your first like!" +msgstr "첫 좋아요!" + #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "팔로우 중 피드가 비어 있습니다. 더 많은 사용자를 팔로우하여 무슨 일이 일어나고 있는지 확인하세요." -#: src/screens/Signup/StepHandle.tsx:73 +#: src/screens/Signup/StepHandle.tsx:122 msgid "Your full handle will be" msgstr "내 전체 핸들:" @@ -6936,7 +7073,7 @@ msgstr "비밀번호를 성공적으로 변경했습니다." msgid "Your post has been published" msgstr "게시물을 게시했습니다" -#: src/screens/Onboarding/StepFinished.tsx:243 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "게시물, 좋아요, 차단 목록은 공개됩니다. 뮤트 목록은 공개되지 않습니다." @@ -6956,6 +7093,6 @@ msgstr "내 답글을 게시했습니다" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "신고가 Bluesky Moderation Service로 보내집니다." -#: src/screens/Signup/index.tsx:204 +#: src/screens/Signup/index.tsx:137 msgid "Your user handle" msgstr "내 사용자 핸들" From 8c52d74925ec2afd728d9d3c756adb4b5101ad2c Mon Sep 17 00:00:00 2001 From: Takayuki KUSANO <65759+tkusano@users.noreply.github.com> Date: Sat, 6 Jul 2024 04:32:31 +0900 Subject: [PATCH 087/153] Update Japanese translation (#4665) * Update Japanese translation * Updated Japanese translation * Update translation * Updated translation * Update translation * Update translation * Update translation. * Updated translation --- src/locale/locales/ja/messages.po | 170 +++++++++++++++++++++++++++--- 1 file changed, 158 insertions(+), 12 deletions(-) diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po index 775d8697c0..3b97ab285e 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-06-25 14:14+0900\n" +"PO-Revision-Date: 2024-07-04 13:07+0900\n" "Last-Translator: tkusano\n" "Language-Team: Hima-Zinn, tkusano, dolciss, oboenikui, noritada, middlingphys, hibiki, reindex-ot, haoyayoi, vyv03354\n" "Plural-Forms: \n" @@ -209,6 +209,10 @@ msgstr "⚠無効なハンドル" msgid "2FA Confirmation" msgstr "2要素認証の確認" +#: src/tours/Tooltip.tsx:70 +msgid "A help tooltip" +msgstr "ヘルプ・ツールチップ" + #: src/view/com/util/ViewHeader.tsx:93 #: src/view/screens/Search/Search.tsx:684 msgid "Access navigation links and settings" @@ -382,7 +386,7 @@ msgstr "成人向けコンテンツ" #: src/screens/Moderation/index.tsx:356 msgid "Adult content can only be enabled via the Web at <0>bsky.app." -msgstr "" +msgstr "成人向けコンテンツは<0>bsky.appのウェブ版からしか有効にできません。" #: src/components/moderation/LabelPreference.tsx:242 msgid "Adult content is disabled." @@ -393,6 +397,10 @@ msgstr "成人向けコンテンツは無効になっています。" msgid "Advanced" msgstr "高度な設定" +#: src/state/shell/progress-guide.tsx:177 +msgid "Algorithm training complete!" +msgstr "アルゴリズムのトレーニング完了!" + #: src/screens/StarterPack/StarterPackScreen.tsx:301 msgid "All accounts have been followed!" msgstr "すべてのアカウントをフォローしました!" @@ -720,6 +728,10 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky は、ホスティング プロバイダーを選択できるオープン ネットワークです。 カスタムホスティングは、開発者向けのベータ版で利用できるようになりました。" +#: src/components/ProgressGuide/List.tsx:55 +msgid "Bluesky is better with friends!" +msgstr "Blueskyは友達と一緒のほうが楽しい!" + #: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "Blueskyはあなたのつながっているユーザーからおすすめのアカウントを選びます。" @@ -741,6 +753,24 @@ msgstr "画像のぼかしとフィードからのフィルタリング" msgid "Books" msgstr "書籍" +#: src/components/FeedInterstitials.tsx:206 +msgid "Browse more accounts on the Explore page" +msgstr "検索ページでさらにアカウントを見る" + +#: src/components/FeedInterstitials.tsx:332 +msgid "Browse more feeds on the Explore page" +msgstr "検索ページでさらにフィードを見る" + +#: src/components/FeedInterstitials.tsx:195 +#: src/components/FeedInterstitials.tsx:321 +msgid "Browse more suggestions" +msgstr "さらにおすすめを見る" + +#: src/components/FeedInterstitials.tsx:214 +#: src/components/FeedInterstitials.tsx:341 +msgid "Browse more suggestions on the Explore page" +msgstr "検索ページでさらにおすすめを見る" + #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" @@ -926,6 +956,14 @@ msgstr "確認コードが記載されたメールを確認し、ここに入力 msgid "Check your inbox for an email with the confirmation code to enter below:" msgstr "入力したメールアドレスの受信トレイを確認して、以下に入力するための確認コードが記載されたメールが届いていないか確認してください:" +#: src/screens/Onboarding/StepInterests/index.tsx:190 +msgid "Choose 3 or more:" +msgstr "3つ以上選んでください:" + +#: src/screens/Onboarding/StepInterests/index.tsx:325 +msgid "Choose at least {0} more" +msgstr "少なくともさらに{0}つ選んでください" + #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" msgstr "フィードの選択" @@ -1602,6 +1640,10 @@ msgstr "下書きを削除しますか?" msgid "Discourage apps from showing my account to logged-out users" msgstr "アプリがログアウトしたユーザーに自分のアカウントを表示しないようにする" +#: src/tours/HomeTour.tsx:70 +msgid "Discover learns which posts you like as you browse." +msgstr "Discoverは閲覧中にどの投稿が好みなのかを学習します。" + #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -1615,6 +1657,10 @@ msgstr "新しいフィードを探す" msgid "Discover New Feeds" msgstr "新しいフィードを探す" +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "入門ガイドを消す" + #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" msgstr "大きなALTテキストのバッジを表示" @@ -1905,6 +1951,10 @@ msgstr "有効" msgid "End of feed" 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 "オンボーディングツアー・ウインドウ終了。先へ進まないでください。代わりに、戻って他のオプションを見るか、スキップしてください。" + #: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "このアプリパスワードの名前を入力" @@ -2198,6 +2248,10 @@ msgstr "最後に" msgid "Find accounts to follow" msgstr "フォローするアカウントを探す" +#: src/tours/HomeTour.tsx:88 +msgid "Find more feeds and accounts to follow in the Explore page." +msgstr "検索ページでフォローすべきフィードやアカウントを見つける。" + #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "投稿やユーザーをBlueskyで検索" @@ -2214,6 +2268,10 @@ msgstr "ディスカッションスレッドを微調整します。" msgid "Finish" msgstr "完了" +#: src/tours/Tooltip.tsx:149 +msgid "Finish tour and begin using the application" +msgstr "ツアーを終了してアプリを使用開始" + #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "フィットネス" @@ -2231,6 +2289,7 @@ msgstr "水平方向に反転" msgid "Flip vertically" msgstr "垂直方向に反転" +#. User is not following this account, click to follow #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2253,6 +2312,10 @@ msgstr "{0}をフォロー" msgid "Follow {name}" msgstr "{name}をフォロー" +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "7アカウントをフォロー" + #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" @@ -2303,6 +2366,10 @@ msgstr "自分がフォローしているユーザーのみ" msgid "followed you" msgstr "があなたをフォローしました" +#: src/view/com/notifications/FeedItem.tsx:195 +msgid "followed you back" +msgstr "があなたをフォローバックしました" + #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" @@ -2317,6 +2384,7 @@ msgstr "あなたが知っている@{0}のフォロワー" msgid "Followers you know" msgstr "あなたが知っているフォロワー" +#. User is following this account, click to unfollow #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2346,6 +2414,10 @@ msgstr "Followingフィードの設定" msgid "Following Feed Preferences" msgstr "Followingフィードの設定" +#: src/tours/HomeTour.tsx:59 +msgid "Following shows the latest posts from people you follow." +msgstr "Followingはフォローしてるユーザーの最新の投稿を表示します。" + #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "あなたをフォロー" @@ -2410,6 +2482,10 @@ msgstr "始める" msgid "Get Started" msgstr "開始" +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "入門" + #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" msgstr "GIF" @@ -2443,6 +2519,10 @@ 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 @@ -2477,6 +2557,10 @@ msgstr "次へ" msgid "Go to profile" msgstr "プロフィールへ" +#: src/tours/Tooltip.tsx:138 +msgid "Go to the next step of the tour" +msgstr "ツアーの次のステップへ移動" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "ユーザーのプロフィールへ移動" @@ -2485,6 +2569,10 @@ msgstr "ユーザーのプロフィールへ移動" msgid "Graphic Media" msgstr "生々しいメディア" +#: src/state/shell/progress-guide.tsx:167 +msgid "Half way there!" +msgstr "半分まで来ました!" + #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" msgstr "ハンドル" @@ -2703,10 +2791,6 @@ msgstr "アカウント削除のためにパスワードを入力" msgid "Input the code which has been emailed to you" msgstr "メールで送られたコードを入力" -#: src/screens/Login/LoginForm.tsx:221 -msgid "Input the password tied to {identifier}" -msgstr "{identifier}に紐づくパスワードを入力" - #: src/screens/Login/LoginForm.tsx:194 msgid "Input the username or email address you used at signup" msgstr "サインアップ時に使用したユーザー名またはメールアドレスを入力" @@ -2912,6 +2996,15 @@ msgstr "さあ始めましょう!" msgid "Light" msgstr "ライト" +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "10投稿をいいね" + +#: src/state/shell/progress-guide.tsx:163 +#: src/state/shell/progress-guide.tsx:168 +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 msgid "Like this feed" @@ -3216,7 +3309,11 @@ msgstr "いいねの数が多い順に返信を表示" #: src/screens/Onboarding/state.ts:90 msgid "Movies" -msgstr "" +msgstr "映画" + +#: src/screens/Onboarding/state.ts:91 +msgid "Music" +msgstr "音楽" #: src/components/TagMenu/index.tsx:249 msgid "Mute" @@ -3349,9 +3446,13 @@ msgstr "名前または説明がコミュニティ基準に違反" msgid "Nature" msgstr "自然" +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "{0}へ移動します" + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" -msgstr "" +msgstr "スターターパックへ移動します" #: src/screens/Login/ForgotPasswordForm.tsx:173 #: src/screens/Login/LoginForm.tsx:312 @@ -3672,6 +3773,10 @@ msgstr "{str}" msgid "Onboarding reset" msgstr "オンボーディングのリセット" +#: src/tours/Tooltip.tsx:118 +msgid "Onboarding tour step {0}: {1}" +msgstr "オンボーディングツアー ステップ {0}:{1}" + #: src/view/com/composer/Composer.tsx:522 msgid "One or more images is missing alt text." msgstr "1つもしくは複数の画像にALTテキストがありません。" @@ -3987,7 +4092,7 @@ msgstr "ペット" #: src/screens/Onboarding/state.ts:94 msgid "Photography" -msgstr "" +msgstr "写真" #: src/view/com/modals/SelfLabel.tsx:122 msgid "Pictures meant for adults." @@ -4063,6 +4168,10 @@ msgstr "ミュートにする有効な単語、タグ、フレーズを入力し msgid "Please enter your email." msgstr "メールアドレスを入力してください。" +#: src/screens/Signup/StepInfo/index.tsx:63 +msgid "Please enter your invite code." +msgstr "招待コードを入力してください。" + #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" msgstr "パスワードも入力してください:" @@ -4274,6 +4383,10 @@ msgstr "QRコードをダウンロードしました!" msgid "QR code saved to your camera roll!" msgstr "QRコードをカメラロールに保存しました!" +#: src/tours/Tooltip.tsx:111 +msgid "Quick tip" +msgstr "クイック・チップ" + #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:79 @@ -5323,6 +5436,10 @@ msgstr "この手順をスキップする" msgid "Software Dev" msgstr "ソフトウェア開発" +#: src/components/FeedInterstitials.tsx:303 +msgid "Some other feeds you might like" +msgstr "お好みかもしれない他のフィード" + #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" @@ -5390,6 +5507,10 @@ msgstr "{displayName}とのチャットを開始" msgid "Start chatting" msgstr "チャットを開始" +#: src/tours/Tooltip.tsx:99 +msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +msgstr "オンボーディングツアー・ウインドウ開始。前へ戻らないでください。代わりに、進んで他のオプションを見るか、スキップしてください。" + #: src/lib/generate-starterpack.ts:68 #: src/Navigation.tsx:325 #: src/screens/StarterPack/Wizard/index.tsx:183 @@ -5410,7 +5531,7 @@ msgstr "スターターパック" #: src/components/StarterPack/ProfileStarterPacks.tsx:238 msgid "Starter packs let you easily share your favorite feeds and people with your friends." -msgstr "" +msgstr "スターターパックを使ってお気に入りのフィードやユーザーを友人へ簡単に共有できます。" #: src/view/screens/Settings/index.tsx:963 msgid "Status Page" @@ -5479,6 +5600,10 @@ msgstr "サポート" msgid "Switch Account" msgstr "アカウントを切り替える" +#: src/tours/HomeTour.tsx:48 +msgid "Switch between feeds to control your experience." +msgstr "フィードを切り替えて、あなたの体験をコントロールしよう。" + #: src/view/screens/Settings/index.tsx:160 msgid "Switch to {0}" msgstr "{0}に切り替え" @@ -5507,10 +5632,22 @@ msgstr "タグメニュー:{displayTag}" msgid "Tall" msgstr "トール" +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "タップして消す" + #: src/view/com/util/images/AutoSizedImage.tsx:70 msgid "Tap to view fully" msgstr "タップして全体を表示" +#: src/state/shell/progress-guide.tsx:172 +msgid "Task complete - 10 likes!" +msgstr "タスク完了 - 10いいね!" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "アルゴリズムを鍛える" + #: src/screens/Onboarding/index.tsx:36 #: src/screens/Onboarding/state.ts:98 msgid "Tech" @@ -5585,6 +5722,11 @@ msgstr "コミュニティーガイドラインは<0/>に移動しました" msgid "The Copyright Policy has been moved to <0/>" msgstr "著作権ポリシーは<0/>に移動しました" +#: src/state/shell/progress-guide.tsx:173 +#: src/state/shell/progress-guide.tsx:178 +msgid "The Discover feed now knows what you like" +msgstr "Discoverフィードはあなたの好みを学習しました" + #: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "アプリのほうがより良い体験をすることができます。今すぐBlueskyをダウンロードして、中断したところから再開しましょう。" @@ -5965,7 +6107,7 @@ msgstr "再試行" #: src/screens/Onboarding/state.ts:99 msgid "TV" -msgstr "" +msgstr "テレビ" #: src/view/screens/Settings/index.tsx:745 msgid "Two-factor authentication" @@ -6732,7 +6874,7 @@ msgstr "最後まで到達しました" #: src/components/StarterPack/ProfileStarterPacks.tsx:235 msgid "You haven't created a starter pack yet!" -msgstr "" +msgstr "スターターパックをまだ作成していません!" #: src/components/dialogs/MutedWords.tsx:249 msgid "You haven't muted any words or tags yet" @@ -6884,6 +7026,10 @@ msgstr "メールアドレスは更新されましたが、確認されていま msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "メールアドレスはまだ確認されていません。これは、当社が推奨する重要なセキュリティステップです。" +#: src/state/shell/progress-guide.tsx:162 +msgid "Your first like!" +msgstr "最初のいいね!" + #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Followingフィードは空です!もっと多くのユーザーをフォローして、近況を確認しましょう。" From 149446a26e15747590d3e93202f31580d4f914b1 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Fri, 5 Jul 2024 12:33:48 -0700 Subject: [PATCH 088/153] Run intl:extract --- src/locale/locales/ca/messages.po | 961 +++++++++++++++----------- src/locale/locales/de/messages.po | 961 +++++++++++++++----------- src/locale/locales/en/messages.po | 961 +++++++++++++++----------- src/locale/locales/es/messages.po | 961 +++++++++++++++----------- src/locale/locales/fi/messages.po | 961 +++++++++++++++----------- src/locale/locales/fr/messages.po | 843 +++++++++++------------ src/locale/locales/ga/messages.po | 961 +++++++++++++++----------- src/locale/locales/hi/messages.po | 961 +++++++++++++++----------- src/locale/locales/id/messages.po | 962 ++++++++++++++++----------- src/locale/locales/it/messages.po | 961 +++++++++++++++----------- src/locale/locales/ja/messages.po | 837 +++++++++++------------ src/locale/locales/ko/messages.po | 26 +- src/locale/locales/pt-BR/messages.po | 961 +++++++++++++++----------- src/locale/locales/tr/messages.po | 961 +++++++++++++++----------- src/locale/locales/uk/messages.po | 961 +++++++++++++++----------- src/locale/locales/zh-CN/messages.po | 48 +- src/locale/locales/zh-TW/messages.po | 48 +- 17 files changed, 7718 insertions(+), 5617 deletions(-) diff --git a/src/locale/locales/ca/messages.po b/src/locale/locales/ca/messages.po index a26c437e96..e09b52e4e1 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:283 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" @@ -66,7 +66,7 @@ msgstr "{0, plural, one {seguidor} other {seguidors}}" msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {seguint} other {seguint}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:259 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {Like (# m'agrada)} other {Like (# m'agrades)}}" @@ -74,7 +74,7 @@ msgstr "{0, plural, one {Like (# m'agrada)} other {Like (# m'agrades)}}" msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {m'agrada} other {m'agrades}}" -#: src/components/FeedCard.tsx:216 +#: 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 {Li ha agradat a # user} other {Li ha agradat a # users}}" @@ -83,7 +83,7 @@ msgstr "{0, plural, one {Li ha agradat a # user} other {Li ha agradat a # users} msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {publicació} other {publicacions}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:217 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {Resposta per (# reply)} other {Resposta per (# replies)}}" @@ -91,7 +91,7 @@ msgstr "{0, plural, one {Resposta per (# reply)} other {Resposta per (# replies) msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {republicació} other {republicacions}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:262 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {Desmarca m'agrada (# like)} other {Desmarca m'agrada (# likes)}}" @@ -103,11 +103,11 @@ 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:222 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" msgstr "{0} s'han unit aquesta setmana" -#: src/screens/StarterPack/StarterPackScreen.tsx:378 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" msgstr "{0} persones han utilitzat aquest starter pack" @@ -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:503 +#: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} seguint" @@ -287,7 +287,7 @@ msgstr "<0>Tu i<1> <2>{0} esteu inclosos al teu starter pack" msgid "⚠Invalid Handle" msgstr "⚠Identificador invàlid" -#: src/screens/Login/LoginForm.tsx:247 +#: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" msgstr "Confirmació 2FA" @@ -295,6 +295,10 @@ msgstr "Confirmació 2FA" #~ msgid "A content warning has been applied to this {0}." #~ msgstr "S'ha aplicat una advertència de contingut a {0}." +#: 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 "Hi ha una nova versió d'aquesta aplicació. Actualitza-la per a continuar." @@ -309,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:518 +#: src/view/screens/Settings/index.tsx:519 msgid "Accessibility" msgstr "Accessibilitat" -#: src/view/screens/Settings/index.tsx:509 +#: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" msgstr "Configuració d'accessibilitat" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "Configuració d'accessibilitat" @@ -326,9 +330,9 @@ msgstr "Configuració d'accessibilitat" #~ msgid "account" #~ msgstr "compte" -#: src/screens/Login/LoginForm.tsx:170 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:190 +#: src/view/screens/Settings/index.tsx:346 +#: src/view/screens/Settings/index.tsx:753 msgid "Account" msgstr "Compte" @@ -399,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:422 -#: src/view/screens/Settings/index.tsx:431 +#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:432 msgid "Add account" msgstr "Afegeix un compte" @@ -468,7 +472,7 @@ msgstr "Afegeix el canal per defecte només de la gent que segueixes" msgid "Add the following DNS record to your domain:" msgstr "Afegeix el següent registre DNS al teu domini:" -#: src/components/FeedCard.tsx:305 +#: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" msgstr "Afegeix aquest canal als teus canals" @@ -516,15 +520,19 @@ 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:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Advanced" msgstr "Avançat" -#: src/screens/StarterPack/StarterPackScreen.tsx:301 +#: src/state/shell/progress-guide.tsx:176 +msgid "Algorithm training complete!" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:360 msgid "All accounts have been followed!" msgstr "S'han seguit tots els comptes!" -#: src/view/screens/Feeds.tsx:721 +#: src/view/screens/Feeds.tsx:734 msgid "All the feeds you've saved, right in one place." msgstr "Tots els canals que has desat, en un sol lloc." @@ -554,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:177 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 msgid "ALT" msgstr "ALT" @@ -564,7 +572,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Text alternatiu" -#: src/view/com/util/post-embeds/GifEmbed.tsx:183 +#: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" msgstr "Text alternatiu" @@ -602,7 +610,7 @@ msgstr "S'ha produït un error en desar el codi QR!" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "Hi ha hagut un error intentant esborrar el missatge. Torna-ho a provar." -#: src/screens/StarterPack/StarterPackScreen.tsx:303 +#: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" msgstr "S'ha produït un error en intentar seguir-ho tot" @@ -612,6 +620,8 @@ msgstr "Un problema que no està inclòs en aquestes opcions" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:309 +#: src/components/ProfileCard.tsx:329 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -619,12 +629,12 @@ msgstr "Un problema que no està inclòs en aquestes opcions" msgid "An issue occurred, please try again." msgstr "Hi ha hagut un problema, prova-ho de nou." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" msgstr "hi ha hagut un problema desconegut" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:280 +#: src/view/com/notifications/FeedItem.tsx:291 msgid "and" msgstr "i" @@ -633,7 +643,7 @@ msgstr "i" msgid "Animals" msgstr "Animals" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" msgstr "GIF animat" @@ -657,7 +667,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:697 +#: src/view/screens/Settings/index.tsx:698 msgid "App password settings" msgstr "Configuració de la contrasenya d'aplicació" @@ -665,9 +675,9 @@ msgstr "Configuració de la contrasenya d'aplicació" #~ msgid "App passwords" #~ msgstr "Contrasenyes de l'aplicació" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:269 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/view/screens/Settings/index.tsx:707 msgid "App Passwords" msgstr "Contrasenyes de l'aplicació" @@ -712,7 +722,7 @@ msgstr "Apel·la aquesta decisió" #~ msgid "Appeal this decision." #~ msgstr "Apel·la aquesta decisió." -#: src/view/screens/Settings/index.tsx:439 +#: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "Aparença" @@ -721,7 +731,7 @@ msgstr "Aparença" msgid "Apply default recommended feeds" msgstr "Aplica els canals recomanats per defecte" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Are you sure you want delete this starter pack?" msgstr "Segur que vols suprimir aquest starter pack?" @@ -749,7 +759,7 @@ msgstr "Estàs segur que vols abandonar aquesta conversa? Els missatge s'esborra msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Confirmes que vols eliminar {0} dels teus canals?" -#: src/components/FeedCard.tsx:322 +#: src/components/FeedCard.tsx:306 msgid "Are you sure you want to remove this from your feeds?" msgstr "Segur que vols eliminar-ho dels teus canals?" @@ -778,7 +788,7 @@ msgstr "Art" msgid "Artistic or non-erotic nudity." msgstr "Nuesa artística o no eròtica." -#: src/screens/Signup/StepHandle.tsx:119 +#: src/screens/Signup/StepHandle.tsx:170 msgid "At least 3 characters" msgstr "Almenys 3 caràcters" @@ -789,14 +799,15 @@ msgstr "Almenys 3 caràcters" #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:278 -#: src/screens/Login/LoginForm.tsx:284 +#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:304 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/index.tsx:231 +#: 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" @@ -811,7 +822,7 @@ msgstr "Endarrere" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Segons els teus interessos en {interestsText}" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "Conceptes bàsics" @@ -819,7 +830,7 @@ msgstr "Conceptes bàsics" msgid "Birthday" msgstr "Aniversari" -#: src/view/screens/Settings/index.tsx:377 +#: src/view/screens/Settings/index.tsx:378 msgid "Birthday:" msgstr "Aniversari:" @@ -867,7 +878,7 @@ msgstr "Bloquejada" msgid "Blocked accounts" msgstr "Comptes bloquejats" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:145 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Comptes bloquejats" @@ -909,6 +920,10 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky és una xarxa oberta on pots escollir el teu proveïdor d'allotjament. L'allotjament personalitzat està disponible en beta per a desenvolupadors." +#: 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." @@ -953,6 +968,24 @@ msgstr "Difumina les imatges i filtra-ho dels canals" msgid "Books" msgstr "Llibres" +#: src/components/FeedInterstitials.tsx:281 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:411 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:266 +#: src/components/FeedInterstitials.tsx:396 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:289 +#: src/components/FeedInterstitials.tsx:420 +msgid "Browse more suggestions on the Explore page" +msgstr "" + #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" @@ -1087,17 +1120,17 @@ msgstr "Cancel·la obrir la web enllaçada" msgid "Change" msgstr "Canvia" -#: src/view/screens/Settings/index.tsx:371 +#: src/view/screens/Settings/index.tsx:372 msgctxt "action" msgid "Change" msgstr "Canvia" -#: src/view/screens/Settings/index.tsx:718 +#: src/view/screens/Settings/index.tsx:719 msgid "Change handle" msgstr "Canvia l'identificador" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change Handle" msgstr "Canvia l'identificador" @@ -1105,12 +1138,12 @@ msgstr "Canvia l'identificador" msgid "Change my email" msgstr "Canvia el meu correu" -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/index.tsx:764 msgid "Change password" msgstr "Canvia la contrasenya" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Change Password" msgstr "Canvia la contrasenya" @@ -1126,9 +1159,9 @@ msgstr "Canvia l'idioma de la publicació a {0}" msgid "Change Your Email" msgstr "Canvia el teu correu" -#: src/Navigation.tsx:310 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:313 +#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" msgstr "Xat" @@ -1138,14 +1171,14 @@ msgstr "Xat silenciat" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:318 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" msgstr "Configuració del xat" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" msgstr "Configuració del xat" @@ -1170,7 +1203,7 @@ msgstr "Comprova el meu estat" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "Mira alguns usuaris recomanats. Segueix-los per a veure altres usuaris similars." -#: src/screens/Login/LoginForm.tsx:271 +#: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." msgstr "Comprova el teu correu electrònic per a obtenir un codi d'inici de sessió i introdueix-lo aquí." @@ -1182,10 +1215,18 @@ msgstr "Comprova el teu correu per a rebre el codi de confirmació i entra'l aqu #~ msgid "Choose \"Everybody\" or \"Nobody\"" #~ msgstr "Tria \"Tothom\" or \"Ningú\"" +#: 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 "Tria un nou nom d'usuari de Bluesky o crea'l" +#: src/screens/Onboarding/StepInterests/index.tsx:325 +msgid "Choose at least {0} more" +msgstr "" + #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" msgstr "Tria els canals" @@ -1202,7 +1243,7 @@ msgstr "Tria les persones" msgid "Choose Service" msgstr "Tria un servei" -#: src/screens/Onboarding/StepFinished.tsx:273 +#: src/screens/Onboarding/StepFinished.tsx:281 msgid "Choose the algorithms that power your custom feeds." msgstr "Tria els algoritmes que alimentaran els teus canals personalitzats." @@ -1224,23 +1265,23 @@ msgstr "Tria qui pot respondre" #~ msgid "Choose your main feeds" #~ msgstr "Tria els teus canals principals" -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" msgstr "Tria la teva contrasenya" -#: src/view/screens/Settings/index.tsx:910 +#: src/view/screens/Settings/index.tsx:911 msgid "Clear all legacy storage data" msgstr "Esborra totes les dades antigues emmagatzemades" -#: src/view/screens/Settings/index.tsx:913 +#: src/view/screens/Settings/index.tsx:914 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:922 +#: src/view/screens/Settings/index.tsx:923 msgid "Clear all storage data" msgstr "Esborra totes les dades emmagatzemades" -#: src/view/screens/Settings/index.tsx:925 +#: src/view/screens/Settings/index.tsx:926 msgid "Clear all storage data (restart after this)" msgstr "Esborra totes les dades emmagatzemades (i després reinicia)" @@ -1249,11 +1290,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:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" msgstr "Esborra totes les dades antigues emmagatzemades" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" msgstr "Esborra totes les dades emmagatzemades" @@ -1302,7 +1343,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:189 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "Close" msgstr "Tanca" @@ -1365,11 +1406,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:226 +#: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" msgstr "Plega la llista d'usuaris" -#: src/view/com/notifications/FeedItem.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:437 msgid "Collapses list of users for a given notification" msgstr "Plega la llista d'usuaris per una notificació concreta" @@ -1383,16 +1424,16 @@ msgstr "Comèdia" msgid "Comics" msgstr "Còmics" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:259 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Directrius de la comunitat" -#: src/screens/Onboarding/StepFinished.tsx:286 +#: src/screens/Onboarding/StepFinished.tsx:294 msgid "Complete onboarding and start using your account" msgstr "Finalitza el registre i comença a utilitzar el teu compte" -#: src/screens/Signup/index.tsx:206 +#: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" msgstr "Completa la prova" @@ -1459,7 +1500,7 @@ msgstr "Confirma la teva edat:" msgid "Confirm your birthdate" msgstr "Confirma la teva data de naixement" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:272 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 @@ -1473,11 +1514,11 @@ msgstr "Codi de confirmació" #~ msgid "Confirms signing up {email} to the waitlist" #~ msgstr "Confirma afegir {email} a la llista d'espera" -#: src/screens/Login/LoginForm.tsx:305 +#: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." msgstr "Connectant…" -#: src/screens/Signup/index.tsx:276 +#: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "Contacta amb suport" @@ -1526,7 +1567,7 @@ msgstr "Advertències del contingut" msgid "Context menu backdrop, click to close the menu." msgstr "Teló de fons del menú contextual, fes clic per a tancar-lo." -#: src/screens/Onboarding/StepInterests/index.tsx:258 +#: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Continua" @@ -1539,9 +1580,9 @@ msgstr "Continua com a {0} (sessió actual)" msgid "Continue thread..." msgstr "Continua el fil..." -#: src/screens/Onboarding/StepInterests/index.tsx:255 +#: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/index.tsx:251 +#: src/screens/Signup/BackNextButtons.tsx:59 msgid "Continue to next step" msgstr "Continua" @@ -1566,7 +1607,7 @@ msgstr "Cuina" msgid "Copied" msgstr "Copiat" -#: src/view/screens/Settings/index.tsx:263 +#: src/view/screens/Settings/index.tsx:264 msgid "Copied build version to clipboard" msgstr "Número de versió copiat en memòria" @@ -1575,7 +1616,7 @@ msgstr "Número de versió copiat en memòria" #: 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/post-ctrls/PostCtrls.tsx:350 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Copiat en memòria" @@ -1636,7 +1677,7 @@ msgstr "Copia el text de la publicació" msgid "Copy QR code" msgstr "Copia el codi QR" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Política de drets d'autor" @@ -1678,7 +1719,7 @@ msgstr "Crea" msgid "Create a new account" msgstr "Crea un nou compte" -#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" msgstr "Crea un nou compte de Bluesky" @@ -1688,7 +1729,7 @@ 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:330 +#: src/Navigation.tsx:338 msgid "Create a starter pack" msgstr "Crea un starter pack" @@ -1696,7 +1737,7 @@ msgstr "Crea un starter pack" msgid "Create a starter pack for me" msgstr "Crea un starter pack per a mi" -#: src/screens/Signup/index.tsx:154 +#: src/screens/Signup/index.tsx:88 msgid "Create Account" msgstr "Crea un compte" @@ -1760,7 +1801,7 @@ msgstr "Personalitzat" msgid "Custom domain" msgstr "Domini personalitzat" -#: src/view/screens/Feeds.tsx:747 +#: src/view/screens/Feeds.tsx:760 #: src/view/screens/Search/Explore.tsx:390 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à." @@ -1773,8 +1814,8 @@ msgstr "Personalitza el contingut dels llocs externs." #~ msgid "Danger Zone" #~ msgstr "Zona de perill" -#: src/view/screens/Settings/index.tsx:458 -#: src/view/screens/Settings/index.tsx:484 +#: src/view/screens/Settings/index.tsx:459 +#: src/view/screens/Settings/index.tsx:485 msgid "Dark" msgstr "Fosc" @@ -1782,24 +1823,24 @@ msgstr "Fosc" msgid "Dark mode" msgstr "Mode fosc" -#: src/view/screens/Settings/index.tsx:471 +#: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" msgstr "Tema fosc" -#: src/screens/Signup/StepInfo/index.tsx:134 +#: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" msgstr "Data de naixement" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" msgstr "Desactiva el compte" -#: src/view/screens/Settings/index.tsx:818 +#: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" msgstr "Desactiva el meu compte" -#: src/view/screens/Settings/index.tsx:873 +#: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" msgstr "Moderació de depuració" @@ -1808,16 +1849,16 @@ msgid "Debug panel" msgstr "Panell de depuració" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:484 -#: src/screens/StarterPack/StarterPackScreen.tsx:563 -#: src/screens/StarterPack/StarterPackScreen.tsx:643 +#: 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/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Elimina" -#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:829 msgid "Delete account" msgstr "Elimina el compte" @@ -1837,8 +1878,8 @@ msgstr "Elimina la contrasenya d'aplicació" msgid "Delete app password?" msgstr "Vols eliminar la contrasenya d'aplicació?" -#: src/view/screens/Settings/index.tsx:890 -#: src/view/screens/Settings/index.tsx:893 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" msgstr "Suprimeix el registre de declaració de xat" @@ -1866,7 +1907,7 @@ msgstr "Elimina el meu compte" #~ msgid "Delete my account…" #~ msgstr "Elimina el meu compte…" -#: src/view/screens/Settings/index.tsx:840 +#: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" msgstr "Elimina el meu compte…" @@ -1875,12 +1916,12 @@ msgstr "Elimina el meu compte…" msgid "Delete post" msgstr "Elimina la publicació" -#: src/screens/StarterPack/StarterPackScreen.tsx:478 -#: src/screens/StarterPack/StarterPackScreen.tsx:634 +#: src/screens/StarterPack/StarterPackScreen.tsx:556 +#: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" msgstr "Elimina l'starter pack" -#: src/screens/StarterPack/StarterPackScreen.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" msgstr "Vols eliminar l'starter pack?" @@ -1900,7 +1941,7 @@ msgstr "Eliminat" msgid "Deleted post." msgstr "Publicació eliminada." -#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" msgstr "Suprimeix el registre de declaració de xat" @@ -1927,7 +1968,7 @@ msgstr "Text alternatiu descriptiu" msgid "Did you want to say anything?" msgstr "Vols dir alguna cosa?" -#: src/view/screens/Settings/index.tsx:477 +#: src/view/screens/Settings/index.tsx:478 msgid "Dim" msgstr "Tènue" @@ -1981,6 +2022,10 @@ msgstr "Vols descartar l'esborrany?" msgid "Discourage apps from showing my account to logged-out users" msgstr "Evita que les aplicacions mostrin el meu compte als usuaris no connectats" +#: src/tours/HomeTour.tsx:70 +msgid "Discover learns which posts you like as you browse." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -1990,10 +2035,14 @@ msgstr "Descobreix nous canals personalitzats" msgid "Discover new feeds" msgstr "Descobreix nous canals" -#: src/view/screens/Feeds.tsx:744 +#: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" msgstr "Descobreix nous canals" +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "" + #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" msgstr "Mostra insígnies de text alternatiu més grans" @@ -2014,7 +2063,7 @@ msgstr "Panell de DNS" msgid "Does not include nudity." msgstr "No inclou nuesa." -#: src/screens/Signup/StepHandle.tsx:105 +#: src/screens/Signup/StepHandle.tsx:156 msgid "Doesn't begin or end with a hyphen" msgstr "No comença ni acaba amb un guionet" @@ -2067,7 +2116,7 @@ msgstr "Fet{extraText}" #~ msgid "Double tap to sign in" #~ msgstr "Fes doble toc per a iniciar la sessió" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" msgstr "Descarrega Bluesky" @@ -2080,7 +2129,7 @@ msgstr "Descarrega Bluesky" msgid "Download CAR file" msgstr "Descarrega el fitxer CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:272 +#: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" msgstr "Deixa anar a afegir imatges" @@ -2128,11 +2177,11 @@ msgstr "p. ex.Usuaris que sempre responen amb anuncis" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cada codi funciona un cop. Rebràs més codis d'invitació periòdicament." -#: src/screens/StarterPack/StarterPackScreen.tsx:473 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "Edita" @@ -2163,9 +2212,9 @@ msgstr "Edita els detalls de la llista" msgid "Edit Moderation List" msgstr "Edita la llista de moderació" -#: src/Navigation.tsx:271 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 +#: src/Navigation.tsx:274 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Edita els meus canals" @@ -2193,7 +2242,7 @@ msgstr "Edita el perfil" #~ msgid "Edit Saved Feeds" #~ msgstr "Edita els meus canals guardats" -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" msgstr "Edita l'starter pack" @@ -2213,7 +2262,7 @@ msgstr "Edita el teu nom mostrat" msgid "Edit your profile description" msgstr "Edita la descripció del teu perfil" -#: src/Navigation.tsx:335 +#: src/Navigation.tsx:343 msgid "Edit your starter pack" msgstr "Edita el teu starter pack" @@ -2226,7 +2275,7 @@ msgstr "Ensenyament" msgid "Either choose \"Everybody\" or \"Nobody\"" msgstr "Tria \"Tothom\" o \"Ningú\"" -#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "Correu" @@ -2252,7 +2301,7 @@ msgstr "Correu actualitzat" msgid "Email verified" msgstr "Correu verificat" -#: src/view/screens/Settings/index.tsx:349 +#: src/view/screens/Settings/index.tsx:350 msgid "Email:" msgstr "Correu:" @@ -2322,6 +2371,10 @@ msgstr "Fi del canal" #~ msgid "End of list" #~ msgstr "Fi de la llista" +#: 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 "" + #: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "Posa un nom a aquesta contrasenya d'aplicació" @@ -2364,7 +2417,7 @@ msgstr "Introdueix la teva data de naixement" #~ msgstr "Introdueix el teu correu" #: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:92 +#: src/screens/Signup/StepInfo/index.tsx:152 msgid "Enter your email address" msgstr "Introdueix el teu correu" @@ -2388,11 +2441,11 @@ msgstr "Introdueix el teu usuari i contrasenya" msgid "Error occurred while saving file" msgstr "Ha ocorregut un error en desar el fitxer" -#: src/screens/Signup/StepCaptcha/index.tsx:51 +#: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." msgstr "Error en rebre la resposta al captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:197 +#: src/screens/Onboarding/StepInterests/index.tsx:216 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Error:" @@ -2451,7 +2504,7 @@ msgstr "Surt de la cerca" msgid "Expand alt text" msgstr "Expandeix el text alternatiu" -#: src/view/com/notifications/FeedItem.tsx:227 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" msgstr "Expandeix la llista d'usuaris" @@ -2468,12 +2521,12 @@ msgstr "Contingut explícit o potencialment pertorbador." msgid "Explicit sexual images." msgstr "Imatges sexuals explícites." -#: src/view/screens/Settings/index.tsx:786 +#: src/view/screens/Settings/index.tsx:787 msgid "Export my data" msgstr "Exporta les meves dades" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:797 +#: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" msgstr "Exporta les meves dades" @@ -2487,13 +2540,13 @@ msgstr "Contingut extern" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "El contingut extern pot permetre que algunes webs recullin informació sobre tu i el teu dispositiu. No s'envia ni es demana cap informació fins que premis el botó \"reproduir\"." -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:293 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/view/screens/Settings/index.tsx:680 msgid "External Media Preferences" msgstr "Preferència del contingut extern" -#: src/view/screens/Settings/index.tsx:670 +#: src/view/screens/Settings/index.tsx:671 msgid "External media settings" msgstr "Configuració del contingut extern" @@ -2519,7 +2572,7 @@ msgstr "No s'ha pogut esborrar el missatge" msgid "Failed to delete post, please try again" msgstr "No s'ha pogut esborrar la publicació, torna-ho a provar" -#: src/screens/StarterPack/StarterPackScreen.tsx:597 +#: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" msgstr "No s'ha pogut eliminar l'starter pack" @@ -2576,7 +2629,7 @@ msgstr "No s'ha pogut enviar l'apel·lació, torna-ho a provar." msgid "Failed to toggle thread mute, please try again" msgstr "No s'ha pogut desactivar el silenci del fil; torneu-ho a provar" -#: src/components/FeedCard.tsx:285 +#: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" msgstr "No s'han pogut actualitzar els canals" @@ -2585,11 +2638,11 @@ msgstr "No s'han pogut actualitzar els canals" msgid "Failed to update settings" msgstr "No s'ha pogut actualitzar la configuració" -#: src/Navigation.tsx:211 +#: src/Navigation.tsx:214 msgid "Feed" msgstr "Canal" -#: src/components/FeedCard.tsx:161 +#: src/components/FeedCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "Canal per {0}" @@ -2606,17 +2659,18 @@ msgstr "Canal per {0}" msgid "Feed toggle" msgstr "Alterna el canal" -#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Comentaris" -#: src/Navigation.tsx:320 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 +#: src/Navigation.tsx:323 +#: 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:373 +#: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" @@ -2634,7 +2688,7 @@ msgstr "Els canals són algoritmes personalitzats creats per usuaris que coneixe #~ msgid "Feeds can be topical as well!" #~ msgstr "Els canals també poden ser d'actualitat!" -#: src/components/FeedCard.tsx:282 +#: src/components/FeedCard.tsx:266 msgid "Feeds updated!" msgstr "Canals actualitzats!" @@ -2650,7 +2704,7 @@ msgstr "Fitxer desat amb èxit" msgid "Filter from feeds" msgstr "Filtra-ho dels canals" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 msgid "Finalizing" msgstr "Finalitzant" @@ -2660,6 +2714,10 @@ msgstr "Finalitzant" msgid "Find accounts to follow" msgstr "Troba comptes per a seguir" +#: src/tours/HomeTour.tsx:88 +msgid "Find more feeds and accounts to follow in the Explore page." +msgstr "" + #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "Troba publicacions i usuaris a Bluesky" @@ -2692,11 +2750,15 @@ msgstr "Ajusta els fils de debat." msgid "Finish" msgstr "Finalitza" +#: src/tours/Tooltip.tsx:149 +msgid "Finish tour and begin using the application" +msgstr "" + #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "Exercici" -#: src/screens/Onboarding/StepFinished.tsx:269 +#: src/screens/Onboarding/StepFinished.tsx:277 msgid "Flexible" msgstr "Flexible" @@ -2709,6 +2771,8 @@ msgstr "Gira horitzontalment" msgid "Flip vertically" msgstr "Gira verticalment" +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:341 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2731,13 +2795,17 @@ msgstr "Segueix {0}" msgid "Follow {name}" msgstr "Segueix a {name}" +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "" + #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" msgstr "Segueix el compte" -#: src/screens/StarterPack/StarterPackScreen.tsx:345 -#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:405 +#: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" msgstr "Segueix-los a tots" @@ -2765,7 +2833,7 @@ msgstr "Segueix més comptes per connectar-te als teus interessos i construir la #~ msgid "Followed by" #~ msgstr "Seguit per" -#: src/view/com/profile/ProfileCard.tsx:227 +#: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" msgstr "Seguit per {0}" @@ -2793,16 +2861,20 @@ msgstr "Usuaris seguits" msgid "Followed users only" msgstr "Només els usuaris seguits" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:197 msgid "followed you" msgstr "et segueix" +#: src/view/com/notifications/FeedItem.tsx:195 +msgid "followed you back" +msgstr "" + #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "Seguidors" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" msgstr "Seguidors de @{0} que coneixes" @@ -2815,17 +2887,20 @@ msgstr "Seguidors que coneixes" #~ msgid "following" #~ msgstr "seguint" +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:335 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:630 +#: src/view/screens/Feeds.tsx:631 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Seguint" +#: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Seguint {0}" @@ -2834,21 +2909,25 @@ msgstr "Seguint {0}" msgid "Following {name}" msgstr "Seguint a {name}" -#: src/view/screens/Settings/index.tsx:573 +#: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" msgstr "Preferències del canal Seguint" -#: src/Navigation.tsx:277 +#: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "Following Feed Preferences" msgstr "Preferències del canal Seguint" +#: src/tours/HomeTour.tsx:59 +msgid "Following shows the latest posts from people you follow." +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "Et segueix" -#: src/view/com/profile/ProfileCard.tsx:152 +#: src/components/Pills.tsx:165 msgid "Follows You" msgstr "Et segueix" @@ -2878,11 +2957,11 @@ msgstr "Per motius de seguretat no podràs tornar-la a veure. Si perds aquesta c msgid "Forgot Password" msgstr "He oblidat la contrasenya" -#: src/screens/Login/LoginForm.tsx:227 +#: src/screens/Login/LoginForm.tsx:246 msgid "Forgot password?" msgstr "Has oblidat la contrasenya?" -#: src/screens/Login/LoginForm.tsx:238 +#: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" msgstr "Oblidada?" @@ -2916,6 +2995,10 @@ msgstr "Comença" msgid "Get Started" msgstr "Comença" +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "" + #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" msgstr "GIF" @@ -2930,31 +3013,35 @@ msgstr "Infraccions flagrants de la llei o les condicions del servei" #: src/components/moderation/ScreenHider.tsx:151 #: src/components/moderation/ScreenHider.tsx:160 -#: src/view/com/auth/LoggedOut.tsx:78 -#: src/view/com/auth/LoggedOut.tsx:79 +#: src/view/com/auth/LoggedOut.tsx:80 +#: src/view/com/auth/LoggedOut.tsx:81 #: src/view/screens/NotFound.tsx:55 #: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Ves enrere" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:656 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Ves enrere" +#: 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/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:225 +#: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" msgstr "Ves al pas anterior" @@ -2988,6 +3075,10 @@ msgstr "Ves al següent" msgid "Go to profile" msgstr "Ves al perfil" +#: src/tours/Tooltip.tsx:138 +msgid "Go to the next step of the tour" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "Ves al perfil de l'usuari" @@ -2996,6 +3087,10 @@ msgstr "Ves al perfil de l'usuari" msgid "Graphic Media" msgstr "Mitjans gràfics" +#: src/state/shell/progress-guide.tsx:166 +msgid "Half way there!" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" msgstr "Identificador" @@ -3008,7 +3103,7 @@ msgstr "Hàptics" msgid "Harassment, trolling, or intolerance" msgstr "Assetjament, troleig o intolerància" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:308 msgid "Hashtag" msgstr "Etiqueta" @@ -3016,15 +3111,15 @@ msgstr "Etiqueta" #~ msgid "Hashtag: {tag}" #~ msgstr "Etiqueta: {tag}" -#: src/components/RichText.tsx:216 +#: src/components/RichText.tsx:218 msgid "Hashtag: #{tag}" msgstr "Etiqueta: #{tag}" -#: src/screens/Signup/index.tsx:272 +#: src/screens/Signup/index.tsx:167 msgid "Having trouble?" msgstr "Tens problemes?" -#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/desktop/RightNav.tsx:99 #: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Ajuda" @@ -3060,7 +3155,7 @@ msgstr "Aquí tens la teva contrasenya d'aplicació." msgid "Hide" msgstr "Amaga" -#: src/view/com/notifications/FeedItem.tsx:433 +#: src/view/com/notifications/FeedItem.tsx:444 msgctxt "action" msgid "Hide" msgstr "Amaga" @@ -3079,7 +3174,7 @@ msgstr "Amaga el contingut" msgid "Hide this post?" msgstr "Vols amagar aquesta entrada?" -#: src/view/com/notifications/FeedItem.tsx:424 +#: src/view/com/notifications/FeedItem.tsx:435 msgid "Hide user list" msgstr "Amaga la llista d'usuaris" @@ -3115,10 +3210,10 @@ 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:511 -#: src/Navigation.tsx:531 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: src/Navigation.tsx:519 +#: src/Navigation.tsx:539 +#: 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 msgid "Home" @@ -3136,8 +3231,8 @@ msgid "Host:" msgstr "Allotjament:" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:160 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:180 +#: src/screens/Signup/StepInfo/index.tsx:106 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "Proveïdor d'allotjament" @@ -3259,15 +3354,15 @@ msgstr "Introdueix la contrasenya per a eliminar el compte" #~ msgid "Input phone number for SMS verification" #~ msgstr "Introdueix el telèfon per la verificació per SMS" -#: src/screens/Login/LoginForm.tsx:266 +#: src/screens/Login/LoginForm.tsx:286 msgid "Input the code which has been emailed to you" msgstr "Introdueix el codi que has rebut per correu" #: src/screens/Login/LoginForm.tsx:221 -msgid "Input the password tied to {identifier}" -msgstr "Introdueix la contrasenya lligada a {identifier}" +#~ msgid "Input the password tied to {identifier}" +#~ msgstr "Introdueix la contrasenya lligada a {identifier}" -#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Login/LoginForm.tsx:215 msgid "Input the username or email address you used at signup" msgstr "Introdueix el nom d'usuari o correu que vas utilitzar per a registrar-te" @@ -3279,7 +3374,7 @@ msgstr "Introdueix el nom d'usuari o correu que vas utilitzar per a registrar-te #~ msgid "Input your email to get on the Bluesky waitlist" #~ msgstr "Introdueix el teu correu per a afegir-te a la llista d'espera de Bluesky" -#: src/screens/Login/LoginForm.tsx:220 +#: src/screens/Login/LoginForm.tsx:241 msgid "Input your password" msgstr "Introdueix la teva contrasenya" @@ -3287,7 +3382,7 @@ msgstr "Introdueix la teva contrasenya" msgid "Input your preferred hosting provider" msgstr "Introdueix el teu proveïdor d'allotjament preferit" -#: src/screens/Signup/StepHandle.tsx:63 +#: src/screens/Signup/StepHandle.tsx:111 msgid "Input your user handle" msgstr "Introdueix el teu identificador d'usuari" @@ -3295,7 +3390,7 @@ msgstr "Introdueix el teu identificador d'usuari" msgid "Introducing Direct Messages" msgstr "Presentació dels missatges directes" -#: src/screens/Login/LoginForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:140 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "El codi de confirmació 2FA no és vàlid." @@ -3304,7 +3399,7 @@ msgstr "El codi de confirmació 2FA no és vàlid." msgid "Invalid or unsupported post record" msgstr "Registre de publicació no vàlid o no admès" -#: src/screens/Login/LoginForm.tsx:140 +#: src/screens/Login/LoginForm.tsx:145 msgid "Invalid username or password" msgstr "Nom d'usuari o contrasenya incorrectes" @@ -3316,11 +3411,11 @@ msgstr "Nom d'usuari o contrasenya incorrectes" msgid "Invite a Friend" msgstr "Convida un amic" -#: src/screens/Signup/StepInfo/index.tsx:58 +#: src/screens/Signup/StepInfo/index.tsx:124 msgid "Invite code" msgstr "Codi d'invitació" -#: src/screens/Signup/state.ts:275 +#: src/screens/Signup/state.ts:251 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Codi d'invitació rebutjat. Comprova que l'has entrat correctament i torna-ho a provar." @@ -3360,8 +3455,10 @@ 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:200 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackScreen.tsx:432 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" msgstr "Uneix-te a Bluesky" @@ -3423,16 +3520,16 @@ msgstr "Etiquetes al teu contingut" msgid "Language selection" msgstr "Tria l'idioma" -#: src/view/screens/Settings/index.tsx:530 +#: src/view/screens/Settings/index.tsx:531 msgid "Language settings" msgstr "Configuració d'idioma" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:155 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Configuració d'idioma" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Languages" msgstr "Idiomes" @@ -3500,7 +3597,7 @@ msgstr "Sortint de Bluesky" msgid "left to go." msgstr "queda." -#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:309 msgid "Legacy storage cleared, you need to restart the app now." msgstr "L'emmagatzematge heretat s'ha esborrat, cal que reinicieu l'aplicació ara." @@ -3513,7 +3610,8 @@ msgstr "Deixa'm triar" msgid "Let's get your password reset!" msgstr "Restablirem la teva contrasenya!" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 +#: src/tours/Tooltip.tsx:151 msgid "Let's go!" msgstr "Som-hi!" @@ -3522,7 +3620,7 @@ msgstr "Som-hi!" #~ msgid "Library" #~ msgstr "Biblioteca" -#: src/view/screens/Settings/index.tsx:452 +#: src/view/screens/Settings/index.tsx:453 msgid "Light" msgstr "Clar" @@ -3530,14 +3628,23 @@ msgstr "Clar" #~ msgid "Like" #~ msgstr "M'agrada" +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:167 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 #: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Fes m'agrada a aquest canal" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:216 -#: src/Navigation.tsx:221 +#: src/Navigation.tsx:219 +#: src/Navigation.tsx:224 msgid "Liked by" msgstr "Li ha agradat a" @@ -3561,7 +3668,7 @@ msgstr "Li ha agradat a" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "Li ha agradat a {likeCount} {0}" -#: src/view/com/notifications/FeedItem.tsx:190 +#: src/view/com/notifications/FeedItem.tsx:201 msgid "liked your custom feed" msgstr "els ha agradat el teu canal personalitzat" @@ -3569,7 +3676,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:182 +#: src/view/com/notifications/FeedItem.tsx:185 msgid "liked your post" msgstr "li ha agradat la teva publicació" @@ -3581,7 +3688,7 @@ msgstr "M'agrades" msgid "Likes on this post" msgstr "M'agrades a aquesta publicació" -#: src/Navigation.tsx:185 +#: src/Navigation.tsx:188 msgid "List" msgstr "Llista" @@ -3593,7 +3700,7 @@ msgstr "Avatar de la llista" msgid "List blocked" msgstr "Llista bloquejada" -#: src/components/FeedCard.tsx:155 +#: src/components/ListCard.tsx:113 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "Llista per {0}" @@ -3618,10 +3725,10 @@ msgstr "Llista desbloquejada" msgid "List unmuted" msgstr "Llista no silenciada" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:125 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/desktop/LeftNav.tsx:385 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 msgid "Lists" @@ -3667,7 +3774,7 @@ msgstr "Carregant…" #~ msgid "Local dev server" #~ msgstr "Servidor de desenvolupament local" -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:239 msgid "Log" msgstr "Registre" @@ -3691,7 +3798,7 @@ msgstr "Visibilitat pels usuaris no connectats" msgid "Login to account that is not listed" msgstr "Accedeix a un compte que no està llistat" -#: src/components/RichText.tsx:217 +#: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" msgstr "Prem llargament per a obrir el menú d'etiquetes per a #{tag}" @@ -3791,7 +3898,7 @@ msgstr "El missatge és massa llarg" msgid "Message settings" msgstr "Configuració dels missatges" -#: src/Navigation.tsx:526 +#: src/Navigation.tsx:534 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3806,9 +3913,9 @@ msgstr "Missatges" msgid "Misleading Account" msgstr "Compte enganyós" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:130 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Moderation" msgstr "Moderació" @@ -3816,7 +3923,7 @@ msgstr "Moderació" msgid "Moderation details" msgstr "Detalls de la moderació" -#: src/components/FeedCard.tsx:157 +#: src/components/ListCard.tsx:109 #: src/view/com/lists/ListCard.tsx:95 #: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" @@ -3844,16 +3951,16 @@ msgstr "S'ha actualitzat la llista de moderació" msgid "Moderation lists" msgstr "Llistes de moderació" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Llistes de moderació" -#: src/view/screens/Settings/index.tsx:555 +#: src/view/screens/Settings/index.tsx:556 msgid "Moderation settings" msgstr "Configuració de moderació" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:234 msgid "Moderation states" msgstr "Estats de moderació" @@ -3890,6 +3997,10 @@ msgstr "Respostes amb més m'agrada primer" msgid "Movies" msgstr "Pel·lícules" +#: src/screens/Onboarding/state.ts:91 +msgid "Music" +msgstr "" + #: src/view/com/auth/create/Step2.tsx:122 #~ msgid "Must be at least 3 characters" #~ msgstr "Ha de tenir almenys 3 caràcters" @@ -3975,7 +4086,7 @@ msgstr "Silenciada" msgid "Muted accounts" msgstr "Comptes silenciats" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Comptes silenciats" @@ -4001,19 +4112,19 @@ msgstr "Silenciar és privat. Els comptes silenciats poden interactuar amb tu, p msgid "My Birthday" msgstr "El meu aniversari" -#: src/view/screens/Feeds.tsx:718 +#: src/view/screens/Feeds.tsx:731 msgid "My Feeds" msgstr "Els meus canals" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "El meu perfil" -#: src/view/screens/Settings/index.tsx:616 +#: src/view/screens/Settings/index.tsx:617 msgid "My saved feeds" msgstr "Els meus canals desats" -#: src/view/screens/Settings/index.tsx:622 +#: src/view/screens/Settings/index.tsx:623 msgid "My Saved Feeds" msgstr "Els meus canals desats" @@ -4038,16 +4149,20 @@ msgid "Name or Description Violates Community Standards" msgstr "El nom o la descripció infringeixen els estàndards comunitaris" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:92 msgid "Nature" msgstr "Natura" +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "" + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" msgstr "Vés a l'starter pack" #: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:332 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Navega a la pantalla següent" @@ -4070,7 +4185,7 @@ msgstr "Necessites informar d'una infracció dels drets d'autor?" #~ msgid "Never lose access to your followers and data." #~ msgstr "No perdis mai accés als teus seguidors ni a les teves dades." -#: src/screens/Onboarding/StepFinished.tsx:257 +#: src/screens/Onboarding/StepFinished.tsx:265 msgid "Never lose access to your followers or data." msgstr "No perdis mai accés als teus seguidors i les teves dades." @@ -4118,17 +4233,17 @@ msgctxt "action" msgid "New post" msgstr "Nova publicació" -#: src/view/screens/Feeds.tsx:580 +#: 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/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/shell/desktop/LeftNav.tsx:278 msgid "New post" msgstr "Nova publicació" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:284 msgctxt "action" msgid "New Post" msgstr "Nova publicació" @@ -4150,21 +4265,22 @@ msgid "Newest replies first" msgstr "Les respostes més noves primer" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:93 msgid "News" msgstr "Notícies" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:311 -#: src/screens/Login/LoginForm.tsx:318 +#: src/screens/Login/LoginForm.tsx:331 +#: src/screens/Login/LoginForm.tsx:338 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:258 +#: src/screens/Signup/BackNextButtons.tsx:66 #: src/screens/StarterPack/Wizard/index.tsx:184 #: src/screens/StarterPack/Wizard/index.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:359 #: src/screens/StarterPack/Wizard/index.tsx:366 +#: src/tours/Tooltip.tsx:139 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4206,11 +4322,12 @@ 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/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "Ja no segueixes a {0}" -#: src/screens/Signup/StepHandle.tsx:115 +#: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" msgstr "No pot tenir més de 253 caràcters" @@ -4222,7 +4339,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:118 +#: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "Encara no tens cap notificació" @@ -4250,7 +4367,7 @@ msgstr "Cap resultat" msgid "No results found" msgstr "No s'han trobat resultats" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" msgstr "No s'han trobat resultats per \"{query}\"" @@ -4300,7 +4417,7 @@ msgstr "Nuesa no sexual" #~ msgid "Not Applicable." #~ msgstr "No aplicable." -#: src/Navigation.tsx:117 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "No s'ha trobat" @@ -4312,7 +4429,7 @@ msgstr "Ara mateix no" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:315 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "Nota sobre compartir" @@ -4332,11 +4449,11 @@ msgstr "Sons de les notificacions" msgid "Notification Sounds" msgstr "Sons de les notificacions" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:529 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 +#: 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 msgid "Notifications" @@ -4376,7 +4493,7 @@ msgstr "Apagat" msgid "Oh no!" msgstr "Ostres!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:152 msgid "Oh no! Something went wrong." msgstr "Ostres! Alguna cosa ha fallat." @@ -4400,10 +4517,14 @@ msgstr "en" msgid "on {str}" msgstr "en {str}" -#: src/view/screens/Settings/index.tsx:256 +#: src/view/screens/Settings/index.tsx:257 msgid "Onboarding reset" msgstr "Restableix la incorporació" +#: src/tours/Tooltip.tsx:118 +msgid "Onboarding tour step {0}: {1}" +msgstr "" + #: src/view/com/composer/Composer.tsx:522 msgid "One or more images is missing alt text." msgstr "Falta el text alternatiu a una o més imatges." @@ -4420,7 +4541,7 @@ msgstr "Només {0} pot respondre" #~ msgid "Only {0} can reply." #~ msgstr "Només {0} poden respondre." -#: src/screens/Signup/StepHandle.tsx:98 +#: src/screens/Signup/StepHandle.tsx:149 msgid "Only contains letters, numbers, and hyphens" msgstr "Només pot tenir lletres, nombres i guionets" @@ -4436,7 +4557,7 @@ msgstr "Ostres, alguna cosa ha anat malament!" msgid "Oops!" msgstr "Ostres!" -#: src/screens/Onboarding/StepFinished.tsx:253 +#: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" msgstr "Obre" @@ -4466,7 +4587,7 @@ msgstr "Obre el selector d'emojis" msgid "Open feed options menu" msgstr "Obre el menú de les opcions del canal" -#: src/view/screens/Settings/index.tsx:736 +#: src/view/screens/Settings/index.tsx:737 msgid "Open links with in-app browser" msgstr "Obre els enllaços al navegador de l'aplicació" @@ -4490,16 +4611,16 @@ msgstr "Obre la navegació" msgid "Open post options menu" msgstr "Obre el menú de les opcions de publicació" -#: src/screens/StarterPack/StarterPackScreen.tsx:451 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Open starter pack menu" msgstr "Obre el menú de l'starter pack" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:861 +#: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" msgstr "Obre la pàgina d'historial" -#: src/view/screens/Settings/index.tsx:848 +#: src/view/screens/Settings/index.tsx:849 msgid "Open system log" msgstr "Obre el registre del sistema" @@ -4511,7 +4632,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:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Opens accessibility settings" msgstr "Obre la configuració d'accessibilitat" @@ -4527,7 +4648,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:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Opens chat settings" msgstr "Obre la configuració del xat" @@ -4535,7 +4656,7 @@ msgstr "Obre la configuració del xat" msgid "Opens composer" msgstr "Obre el compositor" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Opens configurable language settings" msgstr "Obre la configuració d'idioma" @@ -4547,7 +4668,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:671 +#: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" msgstr "Obre la configuració per les incrustacions externes" @@ -4581,11 +4702,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:808 +#: src/view/screens/Settings/index.tsx:809 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:830 +#: src/view/screens/Settings/index.tsx:831 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" @@ -4593,19 +4714,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:765 +#: src/view/screens/Settings/index.tsx:766 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:720 +#: src/view/screens/Settings/index.tsx:721 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:788 +#: src/view/screens/Settings/index.tsx:789 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:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Opens modal for email verification" msgstr "Obre el modal per a verificar el correu" @@ -4613,11 +4734,11 @@ 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:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Opens moderation settings" msgstr "Obre la configuració de la moderació" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:247 msgid "Opens password reset form" msgstr "Obre el formulari de restabliment de la contrasenya" @@ -4626,11 +4747,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:617 +#: src/view/screens/Settings/index.tsx:618 msgid "Opens screen with all saved feeds" msgstr "Obre la pantalla amb tots els canals desats" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "Opens the app password settings" msgstr "Obre la configuració de les contrasenyes d'aplicació" @@ -4638,7 +4759,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:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Opens the Following feed preferences" msgstr "Obre les preferències del canal de Seguint" @@ -4654,20 +4775,20 @@ 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:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Opens the storybook page" msgstr "Obre la pàgina de l'historial" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" msgstr "Obre la pàgina de registres del sistema" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Opens the threads preferences" msgstr "Obre les preferències dels fils de debat" -#: src/view/com/notifications/FeedItem.tsx:513 +#: src/view/com/notifications/FeedItem.tsx:524 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "Obre aquest perfil" @@ -4722,8 +4843,8 @@ msgstr "Pàgina no trobada" msgid "Page Not Found" msgstr "Pàgina no trobada" -#: src/screens/Login/LoginForm.tsx:204 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Signup/StepInfo/index.tsx:162 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4745,15 +4866,16 @@ msgstr "Contrasenya actualitzada!" msgid "Pause" msgstr "Posa en pausa" +#: src/screens/StarterPack/StarterPackScreen.tsx:170 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "Gent" -#: src/Navigation.tsx:172 +#: src/Navigation.tsx:175 msgid "People followed by @{0}" msgstr "Persones seguides per @{0}" -#: src/Navigation.tsx:165 +#: src/Navigation.tsx:168 msgid "People following @{0}" msgstr "Persones seguint a @{0}" @@ -4770,7 +4892,7 @@ msgid "Person toggle" msgstr "Canvi de persona" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:94 msgid "Pets" msgstr "Mascotes" @@ -4778,7 +4900,7 @@ msgstr "Mascotes" #~ msgid "Phone number" #~ msgstr "Telèfon" -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:95 msgid "Photography" msgstr "Fotografia" @@ -4829,15 +4951,16 @@ msgstr "Reprodueix el vídeo" msgid "Plays the GIF" msgstr "Reprodueix el GIF" -#: src/screens/Signup/state.ts:234 +#: src/screens/Signup/state.ts:210 msgid "Please choose your handle." msgstr "Tria el teu identificador." -#: src/screens/Signup/state.ts:227 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:81 msgid "Please choose your password." msgstr "Tria la teva contrasenya." -#: src/screens/Signup/state.ts:248 +#: src/screens/Signup/state.ts:224 msgid "Please complete the verification captcha." msgstr "Completa el captcha de verificació." @@ -4869,10 +4992,15 @@ msgstr "Introdueix una paraula, una etiqueta o una frase vàlida per a silenciar #~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." #~ msgstr "Introdueix el codi de verificació enviat a {phoneNumberFormatted}" -#: src/screens/Signup/state.ts:213 +#: src/screens/Signup/state.ts:189 +#: src/screens/Signup/StepInfo/index.tsx:69 msgid "Please enter your email." msgstr "Introdueix el teu correu." +#: src/screens/Signup/StepInfo/index.tsx:63 +msgid "Please enter your invite code." +msgstr "" + #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" msgstr "Introdueix la teva contrasenya també:" @@ -4907,7 +5035,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Espera que es generi la targeta de l'enllaç" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:96 msgid "Politics" msgstr "Política" @@ -4940,9 +5068,9 @@ msgstr "Publicació" msgid "Post by {0}" msgstr "Publicació per {0}" -#: src/Navigation.tsx:191 -#: src/Navigation.tsx:198 -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:194 +#: src/Navigation.tsx:201 +#: src/Navigation.tsx:208 msgid "Post by @{0}" msgstr "Publicació per @{0}" @@ -4981,6 +5109,7 @@ msgstr "Publicació no trobada" msgid "posts" msgstr "publicacions" +#: src/screens/StarterPack/StarterPackScreen.tsx:172 #: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Publicacions" @@ -5008,7 +5137,7 @@ msgstr "Prem per canviar el proveïdor d'allotjament" #: src/components/Error.tsx:85 #: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/index.tsx:238 +#: src/screens/Signup/BackNextButtons.tsx:46 msgid "Press to retry" msgstr "Prem per a tornar-ho a provar" @@ -5033,15 +5162,15 @@ msgstr "Idioma principal" msgid "Prioritize Your Follows" msgstr "Prioritza els usuaris que segueixes" -#: src/view/screens/Settings/index.tsx:654 -#: src/view/shell/desktop/RightNav.tsx:77 +#: src/view/screens/Settings/index.tsx:655 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privacitat" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 +#: src/view/screens/Settings/index.tsx:958 #: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Política de privacitat" @@ -5059,8 +5188,8 @@ msgstr "Processant…" msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 +#: 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 @@ -5071,11 +5200,11 @@ msgstr "Perfil" msgid "Profile updated" msgstr "Perfil actualitzat" -#: src/view/screens/Settings/index.tsx:1021 +#: src/view/screens/Settings/index.tsx:1022 msgid "Protect your account by verifying your email." msgstr "Protegeix el teu compte verificant el teu correu." -#: src/screens/Onboarding/StepFinished.tsx:239 +#: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" msgstr "Públic" @@ -5107,6 +5236,10 @@ msgstr "Codi QR descarregat!" msgid "QR code saved to your camera roll!" msgstr "Codi QR desat a la teva galeria" +#: src/tours/Tooltip.tsx:111 +msgid "Quick tip" +msgstr "" + #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:79 @@ -5169,7 +5302,7 @@ msgid "Reload conversations" msgstr "Carrega les converses de nou" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:325 +#: src/components/FeedCard.tsx:309 #: src/components/StarterPack/Wizard/WizardListCard.tsx:95 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 @@ -5222,7 +5355,7 @@ msgstr "Vols eliminar el canal?" msgid "Remove from my feeds" msgstr "Elimina dels meus canals" -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:304 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Vols eliminar-lo dels teus canals?" @@ -5386,8 +5519,8 @@ msgstr "Informa del missatge" msgid "Report post" msgstr "Informa de la publicació" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 -#: src/screens/StarterPack/StarterPackScreen.tsx:507 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 msgid "Report starter pack" msgstr "Informa sobre l'starter pack" @@ -5433,7 +5566,7 @@ msgstr "Republica" msgid "Repost" msgstr "Republica" -#: src/screens/StarterPack/StarterPackScreen.tsx:446 +#: src/screens/StarterPack/StarterPackScreen.tsx:524 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5464,7 +5597,7 @@ msgstr "Republicat per {0}" msgid "Reposted by <0><1/>" msgstr "Republicat per <0><1/>" -#: src/view/com/notifications/FeedItem.tsx:184 +#: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "ha republicat la teva publicació" @@ -5494,7 +5627,7 @@ msgstr "Requereix un text alternatiu abans de publicar" msgid "Require email code to log into your account" msgstr "Sol·licita el codi de correu per a iniciar sessió al teu compte" -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" msgstr "Requerit per aquest proveïdor" @@ -5515,8 +5648,8 @@ msgstr "Codi de restabliment" #~ msgid "Reset onboarding" #~ msgstr "Restableix la incorporació" -#: src/view/screens/Settings/index.tsx:900 -#: src/view/screens/Settings/index.tsx:903 +#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" msgstr "Restableix l'estat de la incorporació" @@ -5528,20 +5661,20 @@ msgstr "Restableix la contrasenya" #~ msgid "Reset preferences" #~ msgstr "Restableix les preferències" -#: src/view/screens/Settings/index.tsx:880 -#: src/view/screens/Settings/index.tsx:883 +#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:884 msgid "Reset preferences state" msgstr "Restableix l'estat de les preferències" -#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" msgstr "Restableix l'estat de la incorporació" -#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" msgstr "Restableix l'estat de les preferències" -#: src/screens/Login/LoginForm.tsx:292 +#: src/screens/Login/LoginForm.tsx:312 msgid "Retries login" msgstr "Torna a intentar iniciar sessió" @@ -5554,12 +5687,12 @@ msgstr "Torna a intentar l'última acció, que ha donat error" #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:291 -#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:311 +#: src/screens/Login/LoginForm.tsx:318 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Signup/BackNextButtons.tsx:52 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" @@ -5570,7 +5703,7 @@ msgstr "Torna-ho a provar" #~ msgstr "Torna-ho a provar" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:650 +#: src/screens/StarterPack/StarterPackScreen.tsx:728 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Torna a la pàgina anterior" @@ -5670,13 +5803,13 @@ 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:372 -#: src/view/com/notifications/FeedItem.tsx:397 +#: src/view/com/notifications/FeedItem.tsx:383 +#: src/view/com/notifications/FeedItem.tsx:408 msgid "Say hello!" msgstr "Digues hola!" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:97 msgid "Science" msgstr "Ciència" @@ -5685,16 +5818,16 @@ msgid "Scroll to top" msgstr "Desplaça't cap a dalt" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:516 -#: src/view/com/auth/LoggedOut.tsx:119 +#: src/Navigation.tsx:524 +#: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 #: src/view/screens/Search/Search.tsx:791 #: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 +#: 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 @@ -5734,8 +5867,8 @@ msgstr "Cerca canals que vulgueu suggerir als altres." #~ msgid "Search for someone to start a conversation with." #~ msgstr "Cerca algú amb qui començar una conversa." -#: src/view/com/auth/LoggedOut.tsx:101 -#: src/view/com/auth/LoggedOut.tsx:102 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:107 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "Cerca usuaris" @@ -5885,11 +6018,11 @@ msgstr "Selecciona quins idiomes vols que incloguin els canals a què estàs sub msgid "Select your app language for the default text to display in the app." msgstr "Selecciona l'idioma de l'aplicació perquè el text predeterminat es mostri a l'aplicació." -#: src/screens/Signup/StepInfo/index.tsx:135 +#: src/screens/Signup/StepInfo/index.tsx:192 msgid "Select your date of birth" msgstr "Selecciona la teva data de naixement" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:225 msgid "Select your interests from the options below" msgstr "Selecciona els teus interessos d'entre aquestes opcions" @@ -6052,23 +6185,23 @@ msgstr "Configura el teu compte" msgid "Sets Bluesky username" msgstr "Estableix un nom d'usuari de Bluesky" -#: src/view/screens/Settings/index.tsx:461 +#: src/view/screens/Settings/index.tsx:462 msgid "Sets color theme to dark" msgstr "Estableix el tema a fosc" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Sets color theme to light" msgstr "Estableix el tema a clar" -#: src/view/screens/Settings/index.tsx:448 +#: src/view/screens/Settings/index.tsx:449 msgid "Sets color theme to system setting" msgstr "Estableix el tema a la configuració del sistema" -#: src/view/screens/Settings/index.tsx:487 +#: src/view/screens/Settings/index.tsx:488 msgid "Sets dark theme to the dark theme" msgstr "Estableix el tema fosc al tema fosc" -#: src/view/screens/Settings/index.tsx:480 +#: src/view/screens/Settings/index.tsx:481 msgid "Sets dark theme to the dim theme" msgstr "Estableix el tema fosc al tema atenuat" @@ -6097,9 +6230,9 @@ 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:147 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:395 +#: src/Navigation.tsx:150 +#: src/view/screens/Settings/index.tsx:333 +#: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:559 #: src/view/shell/Drawer.tsx:560 msgid "Settings" @@ -6114,13 +6247,13 @@ msgid "Sexually Suggestive" msgstr "Suggerent sexualment" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:340 -#: src/screens/StarterPack/StarterPackScreen.tsx:493 +#: 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/post-ctrls/PostCtrls.tsx:304 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Comparteix" @@ -6140,7 +6273,7 @@ msgstr "Comparteix una dada divertida!" #: src/view/com/profile/ProfileMenu.tsx:377 #: src/view/com/util/forms/PostDropdownBtn.tsx:461 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:320 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "Comparteix de totes maneres" @@ -6151,7 +6284,7 @@ msgstr "Comparteix el canal" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "Comparteix l'enllaç" @@ -6169,7 +6302,7 @@ msgstr "Diàleg de compartició de l'enllaç" msgid "Share QR code" msgstr "Comparteix el codi QR" -#: src/screens/StarterPack/StarterPackScreen.tsx:333 +#: src/screens/StarterPack/StarterPackScreen.tsx:393 msgid "Share this starter pack" msgstr "Comparteix aquets starter pack" @@ -6188,7 +6321,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:381 +#: src/view/screens/Settings/index.tsx:382 msgid "Show" msgstr "Mostra" @@ -6196,7 +6329,7 @@ msgstr "Mostra" #~ msgid "Show all replies" #~ msgstr "Mostra totes les respostes" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "Mostra el text alternatiu" @@ -6323,17 +6456,17 @@ msgstr "Mostra les publicacions de {0} al teu canal" #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:100 #: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Login/LoginForm.tsx:177 #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.tsx:72 #: src/view/com/auth/SplashScreen.web.tsx:112 #: src/view/com/auth/SplashScreen.web.tsx:121 -#: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 #: src/view/shell/bottom-bar/BottomBar.tsx:315 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/bottom-bar/BottomBar.tsx:318 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:210 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -6371,12 +6504,12 @@ msgstr "Inicia sessió o crea el teu compte per a unir-te a la conversa" msgid "Sign out" msgstr "Tanca sessió" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 #: src/view/shell/bottom-bar/BottomBar.tsx:305 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBar.tsx:306 +#: src/view/shell/bottom-bar/BottomBar.tsx:308 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:200 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -6392,7 +6525,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:391 +#: src/view/screens/Settings/index.tsx:392 msgid "Signed in as" msgstr "S'ha iniciat sessió com a" @@ -6401,7 +6534,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:197 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "signed up with your starter pack" msgstr "s'ha registrat amb el vostre starter pack" @@ -6409,17 +6542,17 @@ 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:300 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 msgid "Signup without a starter pack" msgstr "S'ha registrat sense cap starter pack" -#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:264 #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Salta aquest pas" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:261 msgid "Skip this flow" msgstr "Salta aquest flux" @@ -6432,6 +6565,10 @@ msgstr "Salta aquest flux" msgid "Software Dev" msgstr "Desenvolupament de programari" +#: src/components/FeedInterstitials.tsx:378 +msgid "Some other feeds you might like" +msgstr "" + #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" @@ -6468,8 +6605,8 @@ msgstr "Alguna cosa ha fallat, torna-ho a provar." #~ 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:96 -#: src/App.web.tsx:78 +#: src/App.native.tsx:98 +#: src/App.web.tsx:80 msgid "Sorry! Your session expired. Please log in again." msgstr "La teva sessió ha caducat. Torna a iniciar-la." @@ -6499,7 +6636,7 @@ msgid "Spam; excessive mentions or replies" msgstr "Brossa; excessives mencions o respostes" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:98 msgid "Sports" msgstr "Esports" @@ -6523,17 +6660,22 @@ msgstr "Comença un xat amb {displayName}" msgid "Start chatting" msgstr "Comença a xatejar" +#: src/tours/Tooltip.tsx:99 +msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +msgstr "" + #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:328 +#: src/Navigation.tsx:333 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "Starter pack" -#: src/components/StarterPack/StarterPackCard.tsx:65 +#: src/components/StarterPack/StarterPackCard.tsx:70 msgid "Starter pack by {0}" msgstr "Starter pack de {0}" -#: src/screens/StarterPack/StarterPackScreen.tsx:614 +#: src/screens/StarterPack/StarterPackScreen.tsx:692 msgid "Starter pack is invalid" msgstr "Aquest starter pack és invàlid" @@ -6549,7 +6691,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:963 +#: src/view/screens/Settings/index.tsx:964 msgid "Status Page" msgstr "Pàgina d'estat" @@ -6557,7 +6699,7 @@ msgstr "Pàgina d'estat" #~ msgid "Step" #~ msgstr "Pas" -#: src/screens/Signup/index.tsx:192 +#: src/screens/Signup/index.tsx:125 msgid "Step {0} of {1}" msgstr "Pas {0} de {1}" @@ -6565,12 +6707,12 @@ msgstr "Pas {0} de {1}" #~ msgid "Step {0} of {numSteps}" #~ msgstr "Pas {0} de {numSteps}" -#: src/view/screens/Settings/index.tsx:304 +#: src/view/screens/Settings/index.tsx:305 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:226 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:229 +#: src/view/screens/Settings/index.tsx:864 msgid "Storybook" msgstr "Historial" @@ -6614,6 +6756,7 @@ msgstr "Comptes suggerits" #~ msgid "Suggested Follows" #~ msgstr "Usuaris suggerits per a seguir" +#: src/components/FeedInterstitials.tsx:246 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Suggeriments per tu" @@ -6622,7 +6765,7 @@ msgstr "Suggeriments per tu" msgid "Suggestive" msgstr "Suggerent" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:244 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6637,6 +6780,10 @@ msgstr "Suport" msgid "Switch Account" msgstr "Canvia el compte" +#: src/tours/HomeTour.tsx:48 +msgid "Switch between feeds to control your experience." +msgstr "" + #: src/view/screens/Settings/index.tsx:160 msgid "Switch to {0}" msgstr "Canvia a {0}" @@ -6645,11 +6792,11 @@ msgstr "Canvia a {0}" 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:445 +#: src/view/screens/Settings/index.tsx:446 msgid "System" msgstr "Sistema" -#: src/view/screens/Settings/index.tsx:851 +#: src/view/screens/Settings/index.tsx:852 msgid "System log" msgstr "Registres del sistema" @@ -6669,12 +6816,24 @@ msgstr "Menú d'etiquetes: {displayTag}" msgid "Tall" msgstr "Alt" +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "" + #: src/view/com/util/images/AutoSizedImage.tsx:70 msgid "Tap to view fully" msgstr "Toca per a veure-ho completament" +#: src/state/shell/progress-guide.tsx:171 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "" + #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:99 msgid "Tech" msgstr "Tecnologia" @@ -6686,13 +6845,13 @@ msgstr "Explica un acudit!" msgid "Tell us a little more" msgstr "Explica'ns una mica més" -#: src/view/shell/desktop/RightNav.tsx:86 +#: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Condicions" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:254 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/Settings/index.tsx:952 #: src/view/screens/TermsOfService.tsx:29 #: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" @@ -6723,12 +6882,14 @@ msgstr "Gràcies. El teu informe s'ha enviat." msgid "That contains the following:" msgstr "Això conté els següents:" -#: src/screens/Signup/index.tsx:100 +#: src/screens/Signup/StepHandle.tsx:50 msgid "That handle is already taken." msgstr "Aquest identificador ja està agafat." -#: src/screens/StarterPack/StarterPackScreen.tsx:105 -#: src/screens/StarterPack/StarterPackScreen.tsx:106 +#: src/screens/StarterPack/StarterPackScreen.tsx:96 +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:136 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6751,7 +6912,12 @@ msgstr "Les directrius de la comunitat han estat traslladades a <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "La política de drets d'autoria ha estat traslladada a <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:177 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 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." @@ -6780,7 +6946,7 @@ msgstr "És possible que la publicació s'hagi esborrat." msgid "The Privacy Policy has been moved to <0/>" msgstr "La política de privacitat ha estat traslladada a <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:624 +#: src/screens/StarterPack/StarterPackScreen.tsx:702 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "L'starter pack que estàs provant de veure no és vàlid. En lloc d'això, podeu suprimir-lo." @@ -6842,11 +7008,11 @@ 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:126 +#: src/view/com/notifications/Feed.tsx:125 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Hi ha hagut un problema en obtenir les notificacions. Toca aquí per a tornar-ho a provar." -#: src/view/com/posts/Feed.tsx:299 +#: src/view/com/posts/Feed.tsx:459 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Hi ha hagut un problema en obtenir les notificacions. Toca aquí per a tornar-ho a provar." @@ -7057,7 +7223,7 @@ msgid "This post has been deleted." msgstr "Aquesta publicació ha estat esborrada." #: src/view/com/util/forms/PostDropdownBtn.tsx:458 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:317 +#: 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ó." @@ -7134,12 +7300,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:594 +#: src/view/screens/Settings/index.tsx:595 msgid "Thread preferences" msgstr "Preferències dels fils de debat" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/Settings/index.tsx:605 msgid "Thread Preferences" msgstr "Preferències dels fils de debat" @@ -7151,7 +7317,7 @@ msgstr "Preferències dels fils de debat actualitzades" msgid "Threaded Mode" msgstr "Mode fils de debat" -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:287 msgid "Threads Preferences" msgstr "Preferències dels fils de debat" @@ -7206,11 +7372,11 @@ msgstr "Torna-ho a provar" #~ msgid "Try again" #~ msgstr "Torna-ho a provar" -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:100 msgid "TV" msgstr "TV" -#: src/view/screens/Settings/index.tsx:745 +#: src/view/screens/Settings/index.tsx:746 msgid "Two-factor authentication" msgstr "Autenticació de dos factors" @@ -7232,14 +7398,14 @@ msgstr "Deixa de silenciar la llista" #: src/screens/Login/ForgotPasswordForm.tsx:74 #: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:79 +#: src/screens/Signup/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "No es pot contactar amb el teu servei. Comprova la teva connexió a internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:548 +#: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Unable to delete" msgstr "No s'ha pogut eliminar" @@ -7528,7 +7694,7 @@ msgstr "Llista d'usuaris actualitzada" msgid "User Lists" msgstr "Llistes d'usuaris" -#: src/screens/Login/LoginForm.tsx:177 +#: src/screens/Login/LoginForm.tsx:197 msgid "Username or email address" msgstr "Nom d'usuari o correu" @@ -7571,15 +7737,15 @@ msgstr "Valor:" msgid "Verify DNS Record" msgstr "Verifica els registres de DNS" -#: src/view/screens/Settings/index.tsx:982 +#: src/view/screens/Settings/index.tsx:983 msgid "Verify email" msgstr "Verifica el correu" -#: src/view/screens/Settings/index.tsx:1007 +#: src/view/screens/Settings/index.tsx:1008 msgid "Verify my email" msgstr "Verifica el meu correu" -#: src/view/screens/Settings/index.tsx:1016 +#: src/view/screens/Settings/index.tsx:1017 msgid "Verify My Email" msgstr "Verifica el meu correu" @@ -7600,7 +7766,7 @@ msgstr "Verifica el teu correu" #~ msgid "Version {0}" #~ msgstr "Versió {0}" -#: src/view/screens/Settings/index.tsx:935 +#: src/view/screens/Settings/index.tsx:936 msgid "Version {appVersion} {bundleInfo}" msgstr "Versió {appVersion} {bundleInfo}" @@ -7613,7 +7779,7 @@ msgstr "Videojocs" msgid "View {0}'s avatar" msgstr "Veure l'avatar de {0}" -#: src/view/com/notifications/FeedItem.tsx:234 +#: src/view/com/notifications/FeedItem.tsx:245 msgid "View {0}'s profile" msgstr "Veure el perfil de {0}" @@ -7662,7 +7828,7 @@ msgid "View users who like this feed" msgstr "Veure els usuaris a qui els agrada aquest canal" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "Veure el teus canals i descobreix-ne més" @@ -7701,7 +7867,7 @@ msgstr "No hem pogut carregar aquesta conversa" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Calculem {estimatedTime} fins que el teu compte estigui llest." -#: src/screens/Onboarding/StepFinished.tsx:231 +#: src/screens/Onboarding/StepFinished.tsx:239 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Esperem que t'ho passis pipa. Recorda que Bluesky és:" @@ -7725,7 +7891,7 @@ msgstr "No hem pogut carregar les teves preferències de data de naixement. Torn msgid "We were unable to load your configured labelers at this time." msgstr "En aquest moment no hem pogut carregar els teus etiquetadors configurats." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:157 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "No ens hem pogut connectar. Torna-ho a provar per a continuar configurant el teu compte. Si continua fallant, pots ometre aquest flux." @@ -7737,7 +7903,7 @@ msgstr "T'informarem quan el teu compte estigui llest." #~ msgid "We'll look into your appeal promptly." #~ msgstr "Analitzarem la teva apel·lació ràpidament." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:162 msgid "We'll use this to help customize your experience." msgstr "Ho farem servir per a personalitzar la teva experiència." @@ -7745,7 +7911,7 @@ msgstr "Ho farem servir per a personalitzar la teva experiència." msgid "We're having network issues, try again" msgstr "Tenim problemes de xarxa, torna-ho a provar" -#: src/screens/Signup/index.tsx:155 +#: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" msgstr "Ens fa molta il·lusió que t'uneixis a nosaltres!" @@ -7790,7 +7956,7 @@ msgstr "Bentornat!" msgid "Welcome, friend!" msgstr "Benvingut, col·lega!" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" msgstr "Quins són els teus interessos?" @@ -7888,7 +8054,7 @@ msgid "Write your reply" msgstr "Escriu la teva resposta" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:101 msgid "Writers" msgstr "Escriptors" @@ -7911,7 +8077,7 @@ msgstr "Sí" msgid "Yes, deactivate" msgstr "Sí, desactiva'l" -#: src/screens/StarterPack/StarterPackScreen.tsx:560 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 msgid "Yes, delete this starter pack" msgstr "Sí, elimina aquest starter pack" @@ -7923,7 +8089,7 @@ msgstr "Sí, torna a activar el meu compte" msgid "Yesterday, {time}" msgstr "Ahir, {time}" -#: src/components/StarterPack/StarterPackCard.tsx:68 +#: src/components/StarterPack/StarterPackCard.tsx:73 msgid "you" msgstr "tu" @@ -8160,23 +8326,23 @@ msgstr "Tu: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Tu: {short}" -#: src/screens/Signup/index.tsx:169 +#: src/screens/Signup/index.tsx:102 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Seguiràs els usuaris i els canals suggerits un cop hagis acabat de crear el teu compte!" -#: src/screens/Signup/index.tsx:174 +#: src/screens/Signup/index.tsx:107 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:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 msgid "You'll follow these people and {0} others" msgstr "Seguiràs aquestes persones i {0} altres" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 msgid "You'll follow these people right away" msgstr "Seguiràs a aquesta gent de seguida" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "You'll stay updated with these feeds" msgstr "Estaràs al dia amb aquests canals" @@ -8195,7 +8361,7 @@ msgstr "Estàs a la cua" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "Has iniciat sessió amb una contrasenya d'aplicació. Inicia sessió amb la teva contrasenya principal per continuar la desactivació del teu compte." -#: src/screens/Onboarding/StepFinished.tsx:228 +#: src/screens/Onboarding/StepFinished.tsx:236 msgid "You're ready to go!" msgstr "Ja està tot llest!" @@ -8208,7 +8374,7 @@ msgstr "Has triat amagar una paraula o una etiqueta d'aquesta publicació." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Has arribat al final del vostre cabal! Cerca alguns comptes més per a seguir." -#: src/screens/Signup/index.tsx:202 +#: src/screens/Signup/index.tsx:135 msgid "Your account" msgstr "El teu compte" @@ -8220,7 +8386,7 @@ msgstr "El teu compte s'ha eliminat" msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "El repositori del teu compte, que conté tots els registres de dades públiques, es pot baixar com a fitxer \"CAR\". Aquest fitxer no inclou incrustacions multimèdia, com ara imatges, ni les teves dades privades, que s'han d'obtenir per separat." -#: src/screens/Signup/StepInfo/index.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" msgstr "La teva data de naixement" @@ -8237,7 +8403,8 @@ msgstr "La teva elecció es desarà, però es pot canviar més endavant a la con #~ msgstr "El teu canal per defecte és \"Seguint\"" #: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "El teu correu no sembla vàlid." @@ -8254,11 +8421,15 @@ msgstr "El teu correu s'ha actualitzat, però no ha estat verificat. En el pas s msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "El teu correu encara no s'ha verificat. Et recomanem fer-ho per seguretat." +#: src/state/shell/progress-guide.tsx:161 +msgid "Your first like!" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "El teu canal de seguint està buit! Segueix a més usuaris per a saber què està passant." -#: src/screens/Signup/StepHandle.tsx:73 +#: src/screens/Signup/StepHandle.tsx:122 msgid "Your full handle will be" msgstr "El teu identificador complet serà" @@ -8288,7 +8459,7 @@ msgstr "S'ha canviat la teva contrasenya!" msgid "Your post has been published" msgstr "S'ha publicat" -#: src/screens/Onboarding/StepFinished.tsx:243 +#: src/screens/Onboarding/StepFinished.tsx:251 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." @@ -8308,6 +8479,6 @@ msgstr "S'ha publicat la teva resposta" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "El teu informe s'enviarà al servei de moderació de Bluesky" -#: src/screens/Signup/index.tsx:204 +#: src/screens/Signup/index.tsx:137 msgid "Your user handle" msgstr "El teu identificador d'usuari" diff --git a/src/locale/locales/de/messages.po b/src/locale/locales/de/messages.po index 8ec1e27422..d570eab97e 100644 --- a/src/locale/locales/de/messages.po +++ b/src/locale/locales/de/messages.po @@ -21,7 +21,7 @@ msgstr "" msgid "(no email)" msgstr "(keine E-Mail)" -#: src/view/com/notifications/FeedItem.tsx:283 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -59,7 +59,7 @@ msgstr "" msgid "{0, plural, one {following} other {following}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:259 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" @@ -67,7 +67,7 @@ msgstr "" msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:216 +#: src/components/FeedCard.tsx:206 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -76,7 +76,7 @@ msgstr "" msgid "{0, plural, one {post} other {posts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:217 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" @@ -84,15 +84,15 @@ msgstr "" msgid "{0, plural, one {repost} other {reposts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:262 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:378 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" msgstr "" @@ -148,7 +148,7 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:503 +#: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} folge ich" @@ -254,7 +254,7 @@ msgstr "" msgid "⚠Invalid Handle" msgstr "⚠Ungültiger Handle" -#: src/screens/Login/LoginForm.tsx:247 +#: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" msgstr "" @@ -262,6 +262,10 @@ msgstr "" #~ msgid "A content warning has been applied to this {0}." #~ msgstr "Diese Seite wurde mit einer Inhaltswarnung versehen {0}." +#: 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." @@ -276,15 +280,15 @@ 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:518 +#: src/view/screens/Settings/index.tsx:519 msgid "Accessibility" msgstr "Barrierefreiheit" -#: src/view/screens/Settings/index.tsx:509 +#: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "" @@ -293,9 +297,9 @@ msgstr "" #~ msgid "account" #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:170 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:190 +#: src/view/screens/Settings/index.tsx:346 +#: src/view/screens/Settings/index.tsx:753 msgid "Account" msgstr "Konto" @@ -366,8 +370,8 @@ msgstr "Einen Nutzer zu dieser Liste hinzufügen" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:422 -#: src/view/screens/Settings/index.tsx:431 +#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:432 msgid "Add account" msgstr "Konto hinzufügen" @@ -435,7 +439,7 @@ msgstr "" msgid "Add the following DNS record to your domain:" msgstr "Füge den folgenden DNS-Eintrag zu deiner Domain hinzu:" -#: src/components/FeedCard.tsx:305 +#: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" msgstr "" @@ -483,15 +487,19 @@ msgid "Adult content is disabled." msgstr "" #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Advanced" msgstr "Erweitert" -#: src/screens/StarterPack/StarterPackScreen.tsx:301 +#: src/state/shell/progress-guide.tsx:176 +msgid "Algorithm training complete!" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:360 msgid "All accounts have been followed!" msgstr "" -#: src/view/screens/Feeds.tsx:721 +#: src/view/screens/Feeds.tsx:734 msgid "All the feeds you've saved, right in one place." msgstr "All deine gespeicherten Feeds an einem Ort." @@ -521,7 +529,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:177 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 msgid "ALT" msgstr "ALT" @@ -531,7 +539,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Alt-Text" -#: src/view/com/util/post-embeds/GifEmbed.tsx:183 +#: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" msgstr "" @@ -569,7 +577,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:303 +#: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" msgstr "" @@ -579,6 +587,8 @@ msgstr "Ein Problem, das hier nicht aufgelistet ist" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:309 +#: src/components/ProfileCard.tsx:329 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -586,12 +596,12 @@ msgstr "Ein Problem, das hier nicht aufgelistet ist" msgid "An issue occurred, please try again." msgstr "Es ist ein Problem aufgetreten, bitte versuche es erneut." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" msgstr "" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:280 +#: src/view/com/notifications/FeedItem.tsx:291 msgid "and" msgstr "und" @@ -600,7 +610,7 @@ msgstr "und" msgid "Animals" msgstr "Tiere" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" msgstr "" @@ -624,13 +634,13 @@ 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:697 +#: src/view/screens/Settings/index.tsx:698 msgid "App password settings" msgstr "App-Passwort-Einstellungen" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:269 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/view/screens/Settings/index.tsx:707 msgid "App Passwords" msgstr "App-Passwörter" @@ -672,7 +682,7 @@ msgstr "Einspruch gegen diese Entscheidung" #~ msgid "Appeal this decision." #~ msgstr "Einspruch gegen diese Entscheidung." -#: src/view/screens/Settings/index.tsx:439 +#: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "Erscheinungsbild" @@ -681,7 +691,7 @@ msgstr "Erscheinungsbild" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -709,7 +719,7 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Bist du sicher, dass du {0} von deinen Feeds entfernen möchtest?" -#: src/components/FeedCard.tsx:322 +#: src/components/FeedCard.tsx:306 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -738,7 +748,7 @@ msgstr "Kunst" msgid "Artistic or non-erotic nudity." msgstr "Künstlerische oder nicht-erotische Nacktheit." -#: src/screens/Signup/StepHandle.tsx:119 +#: src/screens/Signup/StepHandle.tsx:170 msgid "At least 3 characters" msgstr "Mindestens 3 Zeichen" @@ -749,14 +759,15 @@ msgstr "Mindestens 3 Zeichen" #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:278 -#: src/screens/Login/LoginForm.tsx:284 +#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:304 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/index.tsx:231 +#: 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" @@ -771,7 +782,7 @@ msgstr "Zurück" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Ausgehend von deinem Interesse an {interestsText}" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "Grundlagen" @@ -779,7 +790,7 @@ msgstr "Grundlagen" msgid "Birthday" msgstr "Geburtstag" -#: src/view/screens/Settings/index.tsx:377 +#: src/view/screens/Settings/index.tsx:378 msgid "Birthday:" msgstr "Geburtstag:" @@ -827,7 +838,7 @@ msgstr "Blockiert" msgid "Blocked accounts" msgstr "Blockierte Konten" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:145 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Blockierte Konten" @@ -869,6 +880,10 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky ist ein offenes Netzwerk, in dem du deinen Hosting-Anbieter wählen kannst. Benutzerdefiniertes Hosting ist jetzt in der Beta-Phase für Entwickler verfügbar." +#: 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." @@ -905,6 +920,24 @@ msgstr "Bilder verwischen und aus Feeds herausfiltern" msgid "Books" msgstr "Bücher" +#: src/components/FeedInterstitials.tsx:281 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:411 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:266 +#: src/components/FeedInterstitials.tsx:396 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:289 +#: src/components/FeedInterstitials.tsx:420 +msgid "Browse more suggestions on the Explore page" +msgstr "" + #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" @@ -1027,17 +1060,17 @@ msgstr "" msgid "Change" msgstr "" -#: src/view/screens/Settings/index.tsx:371 +#: src/view/screens/Settings/index.tsx:372 msgctxt "action" msgid "Change" msgstr "Ändern" -#: src/view/screens/Settings/index.tsx:718 +#: src/view/screens/Settings/index.tsx:719 msgid "Change handle" msgstr "Handle ändern" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change Handle" msgstr "Handle ändern" @@ -1045,12 +1078,12 @@ msgstr "Handle ändern" msgid "Change my email" msgstr "Meine E-Mail ändern" -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/index.tsx:764 msgid "Change password" msgstr "Passwort ändern" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Change Password" msgstr "Passwort Ändern" @@ -1066,9 +1099,9 @@ msgstr "Beitragssprache in {0} ändern" msgid "Change Your Email" msgstr "Deine E-Mail ändern" -#: src/Navigation.tsx:310 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:313 +#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" msgstr "" @@ -1078,14 +1111,14 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:318 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" msgstr "" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" msgstr "" @@ -1110,7 +1143,7 @@ msgstr "Meinen Status prüfen" #~ 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:271 +#: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." msgstr "" @@ -1122,10 +1155,18 @@ msgstr "Überprüfe deinen Posteingang auf eine E-Mail mit dem Bestätigungscode #~ 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" +#: src/screens/Onboarding/StepInterests/index.tsx:325 +msgid "Choose at least {0} more" +msgstr "" + #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" msgstr "" @@ -1142,7 +1183,7 @@ msgstr "" msgid "Choose Service" msgstr "Service wählen" -#: src/screens/Onboarding/StepFinished.tsx:273 +#: src/screens/Onboarding/StepFinished.tsx:281 msgid "Choose the algorithms that power your custom feeds." msgstr "Wähle die Algorithmen aus, welche deine benutzerdefinierten Feeds generieren." @@ -1164,23 +1205,23 @@ msgstr "" #~ msgid "Choose your main feeds" #~ msgstr "Wähle deine Haupt-Feeds" -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" msgstr "Wähle dein Passwort" -#: src/view/screens/Settings/index.tsx:910 +#: src/view/screens/Settings/index.tsx:911 msgid "Clear all legacy storage data" msgstr "Alle alten Speicherdaten löschen" -#: src/view/screens/Settings/index.tsx:913 +#: src/view/screens/Settings/index.tsx:914 msgid "Clear all legacy storage data (restart after this)" msgstr "Alle alten Speicherdaten löschen (danach neu starten)" -#: src/view/screens/Settings/index.tsx:922 +#: src/view/screens/Settings/index.tsx:923 msgid "Clear all storage data" msgstr "Alle Speicherdaten löschen" -#: src/view/screens/Settings/index.tsx:925 +#: src/view/screens/Settings/index.tsx:926 msgid "Clear all storage data (restart after this)" msgstr "Alle Speicherdaten löschen (danach neu starten)" @@ -1189,11 +1230,11 @@ msgstr "Alle Speicherdaten löschen (danach neu starten)" msgid "Clear search query" msgstr "Suchanfrage löschen" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" msgstr "" @@ -1242,7 +1283,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:189 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "Close" msgstr "Schließen" @@ -1305,11 +1346,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:226 +#: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:437 msgid "Collapses list of users for a given notification" msgstr "Klappt die Liste der Benutzer für eine bestimmte Meldung zusammen" @@ -1323,16 +1364,16 @@ msgstr "Komödie" msgid "Comics" msgstr "Comics" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:259 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Community-Richtlinien" -#: src/screens/Onboarding/StepFinished.tsx:286 +#: src/screens/Onboarding/StepFinished.tsx:294 msgid "Complete onboarding and start using your account" msgstr "Schließe das Onboarding ab und nutze dein Konto" -#: src/screens/Signup/index.tsx:206 +#: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" msgstr "Beende die Herausforderung" @@ -1399,7 +1440,7 @@ msgstr "Bestätige dein Alter:" msgid "Confirm your birthdate" msgstr "Bestätige dein Geburtsdatum" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:272 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 @@ -1409,11 +1450,11 @@ msgstr "Bestätige dein Geburtsdatum" msgid "Confirmation code" msgstr "Bestätigungscode" -#: src/screens/Login/LoginForm.tsx:305 +#: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." msgstr "Verbinden..." -#: src/screens/Signup/index.tsx:276 +#: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "Support kontaktieren" @@ -1462,7 +1503,7 @@ msgstr "Inhaltswarnungen" msgid "Context menu backdrop, click to close the menu." msgstr "Hintergrund des Kontextmenüs, klicken, um das Menü zu schließen" -#: src/screens/Onboarding/StepInterests/index.tsx:258 +#: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Fortfahren" @@ -1475,9 +1516,9 @@ msgstr "Fortfahren mit {0} (aktuell angemeldet)" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:255 +#: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/index.tsx:251 +#: src/screens/Signup/BackNextButtons.tsx:59 msgid "Continue to next step" msgstr "Weiter zum nächsten Schritt" @@ -1502,7 +1543,7 @@ msgstr "Kochen" msgid "Copied" msgstr "Kopiert" -#: src/view/screens/Settings/index.tsx:263 +#: src/view/screens/Settings/index.tsx:264 msgid "Copied build version to clipboard" msgstr "Die Build-Version wurde in die Zwischenablage kopiert" @@ -1511,7 +1552,7 @@ msgstr "Die Build-Version wurde in die Zwischenablage kopiert" #: 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/post-ctrls/PostCtrls.tsx:350 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "In die Zwischenablage kopiert" @@ -1572,7 +1613,7 @@ msgstr "Beitragstext kopieren" msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Urheberrechtsbestimmungen" @@ -1610,7 +1651,7 @@ msgstr "" msgid "Create a new account" msgstr "Ein neues Konto erstellen" -#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" msgstr "Erstelle ein neues Bluesky-Konto" @@ -1620,7 +1661,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:338 msgid "Create a starter pack" msgstr "" @@ -1628,7 +1669,7 @@ msgstr "" msgid "Create a starter pack for me" msgstr "" -#: src/screens/Signup/index.tsx:154 +#: src/screens/Signup/index.tsx:88 msgid "Create Account" msgstr "Konto erstellen" @@ -1692,7 +1733,7 @@ msgstr "Benutzerdefiniert" msgid "Custom domain" msgstr "Benutzerdefinierte Domain" -#: src/view/screens/Feeds.tsx:747 +#: src/view/screens/Feeds.tsx:760 #: src/view/screens/Search/Explore.tsx:390 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." @@ -1701,8 +1742,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:458 -#: src/view/screens/Settings/index.tsx:484 +#: src/view/screens/Settings/index.tsx:459 +#: src/view/screens/Settings/index.tsx:485 msgid "Dark" msgstr "Dunkel" @@ -1710,24 +1751,24 @@ msgstr "Dunkel" msgid "Dark mode" msgstr "Dunkelmodus" -#: src/view/screens/Settings/index.tsx:471 +#: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" msgstr "Dunkles Thema" -#: src/screens/Signup/StepInfo/index.tsx:134 +#: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" msgstr "" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:818 +#: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:873 +#: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" msgstr "" @@ -1736,16 +1777,16 @@ msgid "Debug panel" msgstr "Debug-Panel" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:484 -#: src/screens/StarterPack/StarterPackScreen.tsx:563 -#: src/screens/StarterPack/StarterPackScreen.tsx:643 +#: 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/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Löschen" -#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:829 msgid "Delete account" msgstr "Konto löschen" @@ -1765,8 +1806,8 @@ msgstr "App-Passwort löschen" msgid "Delete app password?" msgstr "App-Passwort löschen?" -#: src/view/screens/Settings/index.tsx:890 -#: src/view/screens/Settings/index.tsx:893 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" msgstr "" @@ -1790,7 +1831,7 @@ msgstr "" msgid "Delete my account" msgstr "Mein Konto löschen" -#: src/view/screens/Settings/index.tsx:840 +#: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" msgstr "Mein Konto Löschen…" @@ -1799,12 +1840,12 @@ msgstr "Mein Konto Löschen…" msgid "Delete post" msgstr "Beitrag löschen" -#: src/screens/StarterPack/StarterPackScreen.tsx:478 -#: src/screens/StarterPack/StarterPackScreen.tsx:634 +#: src/screens/StarterPack/StarterPackScreen.tsx:556 +#: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" msgstr "" @@ -1824,7 +1865,7 @@ msgstr "Gelöscht" msgid "Deleted post." msgstr "Gelöschter Beitrag." -#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" msgstr "" @@ -1843,7 +1884,7 @@ msgstr "" msgid "Did you want to say anything?" msgstr "Wolltest du etwas sagen?" -#: src/view/screens/Settings/index.tsx:477 +#: src/view/screens/Settings/index.tsx:478 msgid "Dim" msgstr "Dimmen" @@ -1897,6 +1938,10 @@ msgstr "Entwurf löschen?" msgid "Discourage apps from showing my account to logged-out users" 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 "" + #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -1906,10 +1951,14 @@ msgstr "Entdecke neue benutzerdefinierte Feeds" msgid "Discover new feeds" msgstr "" -#: src/view/screens/Feeds.tsx:744 +#: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" msgstr "Entdecke neue Feeds" +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "" + #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" msgstr "" @@ -1930,7 +1979,7 @@ msgstr "" msgid "Does not include nudity." msgstr "Beinhaltet keine Nacktheit." -#: src/screens/Signup/StepHandle.tsx:105 +#: src/screens/Signup/StepHandle.tsx:156 msgid "Doesn't begin or end with a hyphen" msgstr "Beginnt oder endet nicht mit einem Bindestrich" @@ -1979,7 +2028,7 @@ msgstr "Erledigt{extraText}" #~ msgid "Double tap to sign in" #~ msgstr "Doppeltippen zum Anmelden" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" msgstr "" @@ -1992,7 +2041,7 @@ msgstr "" msgid "Download CAR file" msgstr "CAR-Datei herunterladen" -#: src/view/com/composer/text-input/TextInput.web.tsx:272 +#: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" msgstr "Ablegen zum Hinzufügen von Bildern" @@ -2040,11 +2089,11 @@ msgstr "z.B. Nutzer, die wiederholt mit Werbung antworten." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Jeder Code funktioniert einmal. Du erhältst regelmäßig neue Einladungscodes." -#: src/screens/StarterPack/StarterPackScreen.tsx:473 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "" @@ -2075,9 +2124,9 @@ msgstr "Details der Liste bearbeiten" msgid "Edit Moderation List" msgstr "Moderationsliste bearbeiten" -#: src/Navigation.tsx:271 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 +#: src/Navigation.tsx:274 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Meine Feeds bearbeiten" @@ -2105,7 +2154,7 @@ msgstr "Profil bearbeiten" #~ msgid "Edit Saved Feeds" #~ msgstr "Gespeicherte Feeds bearbeiten" -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" msgstr "" @@ -2125,7 +2174,7 @@ msgstr "Bearbeite deinen Anzeigenamen" msgid "Edit your profile description" msgstr "Bearbeite deine Profilbeschreibung" -#: src/Navigation.tsx:335 +#: src/Navigation.tsx:343 msgid "Edit your starter pack" msgstr "" @@ -2138,7 +2187,7 @@ msgstr "Bildung" msgid "Either choose \"Everybody\" or \"Nobody\"" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "E-Mail" @@ -2164,7 +2213,7 @@ msgstr "E-Mail aktualisiert" msgid "Email verified" msgstr "E-Mail verifiziert" -#: src/view/screens/Settings/index.tsx:349 +#: src/view/screens/Settings/index.tsx:350 msgid "Email:" msgstr "E-Mail:" @@ -2234,6 +2283,10 @@ msgstr "Ende des Feeds" #~ 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 "" + #: 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" @@ -2268,7 +2321,7 @@ msgid "Enter your birth date" msgstr "Gib dein Geburtsdatum ein" #: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:92 +#: src/screens/Signup/StepInfo/index.tsx:152 msgid "Enter your email address" msgstr "Gib deine E-Mail-Adresse ein" @@ -2288,11 +2341,11 @@ msgstr "Gib deinen Benutzernamen und dein Passwort ein" msgid "Error occurred while saving file" msgstr "" -#: src/screens/Signup/StepCaptcha/index.tsx:51 +#: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." msgstr "Fehler beim Empfang der Captcha-Antwort." -#: src/screens/Onboarding/StepInterests/index.tsx:197 +#: src/screens/Onboarding/StepInterests/index.tsx:216 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Fehler:" @@ -2347,7 +2400,7 @@ msgstr "Verlässt die Eingabe der Suchanfrage" msgid "Expand alt text" msgstr "Alt-Text erweitern" -#: src/view/com/notifications/FeedItem.tsx:227 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" msgstr "" @@ -2364,12 +2417,12 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/view/screens/Settings/index.tsx:786 +#: src/view/screens/Settings/index.tsx:787 msgid "Export my data" msgstr "Exportiere meine Daten" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:797 +#: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" msgstr "Exportiere meine Daten" @@ -2383,13 +2436,13 @@ msgstr "Externe Medien" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Externe Medien können es Websites ermöglichen, Informationen über dich und dein Gerät zu sammeln. Es werden keine Informationen gesendet oder angefordert, bis du die Schaltfläche \"Abspielen\" drückst." -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:293 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/view/screens/Settings/index.tsx:680 msgid "External Media Preferences" msgstr "Externe Medienpräferenzen" -#: src/view/screens/Settings/index.tsx:670 +#: src/view/screens/Settings/index.tsx:671 msgid "External media settings" msgstr "Externe Medienpräferenzen" @@ -2415,7 +2468,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "Beitrag konnte nicht gelöscht werden, bitte versuche es erneut" -#: src/screens/StarterPack/StarterPackScreen.tsx:597 +#: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" msgstr "" @@ -2472,7 +2525,7 @@ msgstr "" msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:285 +#: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" msgstr "" @@ -2481,11 +2534,11 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:211 +#: src/Navigation.tsx:214 msgid "Feed" msgstr "Feed" -#: src/components/FeedCard.tsx:161 +#: src/components/FeedCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "Feed von {0}" @@ -2498,17 +2551,18 @@ msgstr "Feed von {0}" msgid "Feed toggle" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Feedback" -#: src/Navigation.tsx:320 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 +#: src/Navigation.tsx:323 +#: 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:373 +#: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" @@ -2526,7 +2580,7 @@ msgstr "Feeds sind benutzerdefinierte Algorithmen, die Nutzer mit ein wenig Prog #~ msgid "Feeds can be topical as well!" #~ msgstr "Die Feeds können auch auf einem Thema basieren!" -#: src/components/FeedCard.tsx:282 +#: src/components/FeedCard.tsx:266 msgid "Feeds updated!" msgstr "" @@ -2542,7 +2596,7 @@ msgstr "" msgid "Filter from feeds" msgstr "Aus Feeds filtern" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 msgid "Finalizing" msgstr "Abschließen" @@ -2552,6 +2606,10 @@ msgstr "Abschließen" msgid "Find accounts to follow" msgstr "Konten zum Folgen finden" +#: src/tours/HomeTour.tsx:88 +msgid "Find more feeds and accounts to follow in the Explore page." +msgstr "" + #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "" @@ -2580,11 +2638,15 @@ msgstr "Passe die Diskussionsstränge an." msgid "Finish" msgstr "" +#: src/tours/Tooltip.tsx:149 +msgid "Finish tour and begin using the application" +msgstr "" + #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "Fitness" -#: src/screens/Onboarding/StepFinished.tsx:269 +#: src/screens/Onboarding/StepFinished.tsx:277 msgid "Flexible" msgstr "Flexibel" @@ -2597,6 +2659,8 @@ msgstr "Horizontal drehen" msgid "Flip vertically" msgstr "Vertikal drehen" +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:341 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2619,13 +2683,17 @@ msgstr "{0} folgen" msgid "Follow {name}" msgstr "" +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "" + #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" msgstr "Accounts folgen" -#: src/screens/StarterPack/StarterPackScreen.tsx:345 -#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:405 +#: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" msgstr "" @@ -2653,7 +2721,7 @@ msgstr "" #~ msgid "Followed by" #~ msgstr "" -#: src/view/com/profile/ProfileCard.tsx:227 +#: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" msgstr "Gefolgt von {0}" @@ -2681,16 +2749,20 @@ msgstr "Benutzer, denen ich folge" msgid "Followed users only" msgstr "Nur Benutzer, denen ich folge" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:197 msgid "followed you" msgstr "folgte dir" +#: src/view/com/notifications/FeedItem.tsx:195 +msgid "followed you back" +msgstr "" + #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "Follower" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" msgstr "" @@ -2699,17 +2771,20 @@ msgstr "" msgid "Followers you know" msgstr "" +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:335 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:630 +#: src/view/screens/Feeds.tsx:631 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Folge ich" +#: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "ich folge {0}" @@ -2718,21 +2793,25 @@ msgstr "ich folge {0}" msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:573 +#: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:277 +#: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "Following Feed Preferences" msgstr "Following-Feed-Einstellungen" +#: src/tours/HomeTour.tsx:59 +msgid "Following shows the latest posts from people you follow." +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "Folgt dir" -#: src/view/com/profile/ProfileCard.tsx:152 +#: src/components/Pills.tsx:165 msgid "Follows You" msgstr "Folgt dir" @@ -2762,11 +2841,11 @@ msgstr "Aus Sicherheitsgründen kannst du dies nicht erneut ansehen. Wenn du die msgid "Forgot Password" msgstr "Passwort vergessen" -#: src/screens/Login/LoginForm.tsx:227 +#: src/screens/Login/LoginForm.tsx:246 msgid "Forgot password?" msgstr "Passwort vergessen?" -#: src/screens/Login/LoginForm.tsx:238 +#: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" msgstr "Vergessen?" @@ -2800,6 +2879,10 @@ msgstr "" msgid "Get Started" msgstr "Los geht's" +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "" + #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" msgstr "" @@ -2814,31 +2897,35 @@ msgstr "Eklatante Verstöße gegen Gesetze oder Nutzungsbedingungen" #: src/components/moderation/ScreenHider.tsx:151 #: src/components/moderation/ScreenHider.tsx:160 -#: src/view/com/auth/LoggedOut.tsx:78 -#: src/view/com/auth/LoggedOut.tsx:79 +#: src/view/com/auth/LoggedOut.tsx:80 +#: src/view/com/auth/LoggedOut.tsx:81 #: src/view/screens/NotFound.tsx:55 #: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Gehe zurück" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:656 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Gehe zurück" +#: 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/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:225 +#: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" msgstr "Zum vorherigen Schritt zurückkehren" @@ -2872,6 +2959,10 @@ msgstr "Gehe zum nächsten" msgid "Go to profile" msgstr "" +#: src/tours/Tooltip.tsx:138 +msgid "Go to the next step of the tour" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "" @@ -2880,6 +2971,10 @@ msgstr "" msgid "Graphic Media" msgstr "" +#: src/state/shell/progress-guide.tsx:166 +msgid "Half way there!" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" msgstr "Handle" @@ -2892,19 +2987,19 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:308 msgid "Hashtag" msgstr "Hashtag" -#: src/components/RichText.tsx:216 +#: src/components/RichText.tsx:218 msgid "Hashtag: #{tag}" msgstr "Hashtag: #{tag}" -#: src/screens/Signup/index.tsx:272 +#: src/screens/Signup/index.tsx:167 msgid "Having trouble?" msgstr "Hast du Probleme?" -#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/desktop/RightNav.tsx:99 #: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Hilfe" @@ -2940,7 +3035,7 @@ msgstr "Hier ist dein App-Passwort." msgid "Hide" msgstr "Ausblenden" -#: src/view/com/notifications/FeedItem.tsx:433 +#: src/view/com/notifications/FeedItem.tsx:444 msgctxt "action" msgid "Hide" msgstr "Ausblenden" @@ -2959,7 +3054,7 @@ msgstr "Den Inhalt ausblenden" msgid "Hide this post?" msgstr "Diesen Beitrag ausblenden?" -#: src/view/com/notifications/FeedItem.tsx:424 +#: src/view/com/notifications/FeedItem.tsx:435 msgid "Hide user list" msgstr "Benutzerliste ausblenden" @@ -2995,10 +3090,10 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/Navigation.tsx:511 -#: src/Navigation.tsx:531 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: src/Navigation.tsx:519 +#: src/Navigation.tsx:539 +#: 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 msgid "Home" @@ -3009,8 +3104,8 @@ msgid "Host:" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:160 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:180 +#: src/screens/Signup/StepInfo/index.tsx:106 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "Hosting-Anbieter" @@ -3123,19 +3218,19 @@ msgstr "Neues Passwort eingeben" msgid "Input password for account deletion" msgstr "Passwort für die Kontolöschung eingeben" -#: src/screens/Login/LoginForm.tsx:266 +#: src/screens/Login/LoginForm.tsx:286 msgid "Input the code which has been emailed to you" msgstr "" #: src/screens/Login/LoginForm.tsx:221 -msgid "Input the password tied to {identifier}" -msgstr "Passwort, das an {identifier} gebunden ist, eingeben" +#~ msgid "Input the password tied to {identifier}" +#~ msgstr "Passwort, das an {identifier} gebunden ist, eingeben" -#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Login/LoginForm.tsx:215 msgid "Input the username or email address you used at signup" msgstr "Benutzernamen oder E-Mail-Adresse eingeben, die du bei der Anmeldung verwendet hast" -#: src/screens/Login/LoginForm.tsx:220 +#: src/screens/Login/LoginForm.tsx:241 msgid "Input your password" msgstr "Gib dein Passwort ein" @@ -3143,7 +3238,7 @@ msgstr "Gib dein Passwort ein" msgid "Input your preferred hosting provider" msgstr "" -#: src/screens/Signup/StepHandle.tsx:63 +#: src/screens/Signup/StepHandle.tsx:111 msgid "Input your user handle" msgstr "Gib deinen Handle ein" @@ -3151,7 +3246,7 @@ msgstr "Gib deinen Handle ein" msgid "Introducing Direct Messages" msgstr "" -#: src/screens/Login/LoginForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:140 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "" @@ -3160,7 +3255,7 @@ msgstr "" msgid "Invalid or unsupported post record" msgstr "Ungültiger oder nicht unterstützter Beitragrekord" -#: src/screens/Login/LoginForm.tsx:140 +#: src/screens/Login/LoginForm.tsx:145 msgid "Invalid username or password" msgstr "Ungültiger Benutzername oder Passwort" @@ -3168,11 +3263,11 @@ msgstr "Ungültiger Benutzername oder Passwort" msgid "Invite a Friend" msgstr "Einen Freund einladen" -#: src/screens/Signup/StepInfo/index.tsx:58 +#: src/screens/Signup/StepInfo/index.tsx:124 msgid "Invite code" msgstr "Einladungscode" -#: src/screens/Signup/state.ts:275 +#: src/screens/Signup/state.ts:251 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Einladungscode nicht akzeptiert. Überprüfe, ob du ihn richtig eingegeben hast und versuche es erneut." @@ -3208,8 +3303,10 @@ msgstr "" msgid "Jobs" msgstr "Jobs" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackScreen.tsx:432 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" msgstr "" @@ -3258,16 +3355,16 @@ msgstr "" msgid "Language selection" msgstr "Sprachauswahl" -#: src/view/screens/Settings/index.tsx:530 +#: src/view/screens/Settings/index.tsx:531 msgid "Language settings" msgstr "Spracheinstellungen" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:155 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Spracheinstellungen" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Languages" msgstr "Sprachen" @@ -3335,7 +3432,7 @@ msgstr "Bluesky verlassen" msgid "left to go." msgstr "noch übrig." -#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:309 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." @@ -3348,7 +3445,8 @@ msgstr "" msgid "Let's get your password reset!" msgstr "Lass uns dein Passwort zurücksetzen!" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 +#: src/tours/Tooltip.tsx:151 msgid "Let's go!" msgstr "Los geht's!" @@ -3357,7 +3455,7 @@ msgstr "Los geht's!" #~ msgid "Library" #~ msgstr "Bibliothek" -#: src/view/screens/Settings/index.tsx:452 +#: src/view/screens/Settings/index.tsx:453 msgid "Light" msgstr "Licht" @@ -3365,14 +3463,23 @@ msgstr "Licht" #~ msgid "Like" #~ msgstr "Liken" +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:167 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 #: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Diesen Feed liken" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:216 -#: src/Navigation.tsx:221 +#: src/Navigation.tsx:219 +#: src/Navigation.tsx:224 msgid "Liked by" msgstr "Geliked von" @@ -3396,11 +3503,11 @@ msgstr "Geliked von" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "Von {likeCount} {0} geliked" -#: src/view/com/notifications/FeedItem.tsx:190 +#: src/view/com/notifications/FeedItem.tsx:201 msgid "liked your custom feed" msgstr "hat deinen benutzerdefinierten Feed geliked" -#: src/view/com/notifications/FeedItem.tsx:182 +#: src/view/com/notifications/FeedItem.tsx:185 msgid "liked your post" msgstr "hat deinen Beitrag geliked" @@ -3412,7 +3519,7 @@ msgstr "Likes" msgid "Likes on this post" msgstr "Likes für diesen Beitrag" -#: src/Navigation.tsx:185 +#: src/Navigation.tsx:188 msgid "List" msgstr "Liste" @@ -3424,7 +3531,7 @@ msgstr "Listenbild" msgid "List blocked" msgstr "Liste blockiert" -#: src/components/FeedCard.tsx:155 +#: src/components/ListCard.tsx:113 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "Liste von {0}" @@ -3449,10 +3556,10 @@ msgstr "Liste entblockiert" msgid "List unmuted" msgstr "Listenstummschaltung aufgehoben" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:125 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/desktop/LeftNav.tsx:385 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 msgid "Lists" @@ -3494,7 +3601,7 @@ msgstr "Neue Beiträge laden" msgid "Loading..." msgstr "Wird geladen..." -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:239 msgid "Log" msgstr "Systemprotokoll" @@ -3518,7 +3625,7 @@ msgstr "Sichtbarkeit für abgemeldete Benutzer" msgid "Login to account that is not listed" msgstr "Anmeldung bei einem Konto, das nicht aufgelistet ist" -#: src/components/RichText.tsx:217 +#: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" msgstr "" @@ -3611,7 +3718,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:526 +#: src/Navigation.tsx:534 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3626,9 +3733,9 @@ msgstr "" msgid "Misleading Account" msgstr "Irreführender Account" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:130 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Moderation" msgstr "Moderation" @@ -3636,7 +3743,7 @@ msgstr "Moderation" msgid "Moderation details" msgstr "" -#: src/components/FeedCard.tsx:157 +#: src/components/ListCard.tsx:109 #: src/view/com/lists/ListCard.tsx:95 #: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" @@ -3664,16 +3771,16 @@ msgstr "Moderationsliste aktualisiert" msgid "Moderation lists" msgstr "Moderationslisten" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Moderationslisten" -#: src/view/screens/Settings/index.tsx:555 +#: src/view/screens/Settings/index.tsx:556 msgid "Moderation settings" msgstr "Moderationseinstellungen" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:234 msgid "Moderation states" msgstr "" @@ -3706,6 +3813,10 @@ msgstr "Beliebteste Antworten zuerst" msgid "Movies" msgstr "" +#: src/screens/Onboarding/state.ts:91 +msgid "Music" +msgstr "" + #: src/view/com/auth/create/Step2.tsx:122 #~ msgid "Must be at least 3 characters" #~ msgstr "Muss mindestens 3 Zeichen lang sein" @@ -3787,7 +3898,7 @@ msgstr "Stummgeschaltet" msgid "Muted accounts" msgstr "Stummgeschaltete Konten" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Stummgeschaltete Konten" @@ -3813,19 +3924,19 @@ msgstr "Stummschaltung ist privat. Stummgeschaltete Konten können mit dir inter msgid "My Birthday" msgstr "Mein Geburtstag" -#: src/view/screens/Feeds.tsx:718 +#: src/view/screens/Feeds.tsx:731 msgid "My Feeds" msgstr "Meine Feeds" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Mein Profil" -#: src/view/screens/Settings/index.tsx:616 +#: src/view/screens/Settings/index.tsx:617 msgid "My saved feeds" msgstr "Meine gespeicherten Feeds" -#: src/view/screens/Settings/index.tsx:622 +#: src/view/screens/Settings/index.tsx:623 msgid "My Saved Feeds" msgstr "Meine gespeicherten Feeds" @@ -3850,16 +3961,20 @@ msgid "Name or Description Violates Community Standards" msgstr "" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:92 msgid "Nature" msgstr "Natur" +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "" + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:332 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Navigiert zum nächsten Bildschirm" @@ -3882,7 +3997,7 @@ msgstr "" #~ msgid "Never lose access to your followers and data." #~ msgstr "Verliere nie den Zugriff auf deine Follower und Daten." -#: src/screens/Onboarding/StepFinished.tsx:257 +#: src/screens/Onboarding/StepFinished.tsx:265 msgid "Never lose access to your followers or data." msgstr "Verliere nie den Zugriff auf deine Follower oder Daten." @@ -3930,17 +4045,17 @@ msgctxt "action" msgid "New post" msgstr "Neuer Beitrag" -#: src/view/screens/Feeds.tsx:580 +#: 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/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/shell/desktop/LeftNav.tsx:278 msgid "New post" msgstr "Neuer Beitrag" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:284 msgctxt "action" msgid "New Post" msgstr "Neuer Beitrag" @@ -3958,21 +4073,22 @@ msgid "Newest replies first" msgstr "Neueste Antworten zuerst" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:93 msgid "News" msgstr "Aktuelles" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:311 -#: src/screens/Login/LoginForm.tsx:318 +#: src/screens/Login/LoginForm.tsx:331 +#: src/screens/Login/LoginForm.tsx:338 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:258 +#: src/screens/Signup/BackNextButtons.tsx:66 #: src/screens/StarterPack/Wizard/index.tsx:184 #: src/screens/StarterPack/Wizard/index.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:359 #: src/screens/StarterPack/Wizard/index.tsx:366 +#: src/tours/Tooltip.tsx:139 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4014,11 +4130,12 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" +#: src/components/ProfileCard.tsx:321 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "{0} wird nicht mehr gefolgt" -#: src/screens/Signup/StepHandle.tsx:115 +#: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" msgstr "Nicht länger als 253 Zeichen" @@ -4030,7 +4147,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:118 +#: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "Noch keine Mitteilungen!" @@ -4058,7 +4175,7 @@ msgstr "" msgid "No results found" msgstr "Keine Ergebnisse gefunden" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" msgstr "Keine Ergebnisse für \"{query}\" gefunden" @@ -4108,7 +4225,7 @@ msgstr "Nicht-sexuelle Nacktheit" #~ msgid "Not Applicable." #~ msgstr "Unzutreffend." -#: src/Navigation.tsx:117 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Nicht gefunden" @@ -4120,7 +4237,7 @@ msgstr "Im Moment nicht" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:315 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "" @@ -4140,11 +4257,11 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:529 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 +#: 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 msgid "Notifications" @@ -4184,7 +4301,7 @@ msgstr "Aus" msgid "Oh no!" msgstr "Oh nein!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:152 msgid "Oh no! Something went wrong." msgstr "Oh nein, da ist etwas schief gelaufen." @@ -4208,10 +4325,14 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:256 +#: src/view/screens/Settings/index.tsx:257 msgid "Onboarding reset" msgstr "Onboarding zurücksetzen" +#: src/tours/Tooltip.tsx:118 +msgid "Onboarding tour step {0}: {1}" +msgstr "" + #: src/view/com/composer/Composer.tsx:522 msgid "One or more images is missing alt text." msgstr "Bei einem oder mehreren Bildern fehlt der Alt-Text." @@ -4228,7 +4349,7 @@ msgstr "" #~ msgid "Only {0} can reply." #~ msgstr "Nur {0} kann antworten." -#: src/screens/Signup/StepHandle.tsx:98 +#: src/screens/Signup/StepHandle.tsx:149 msgid "Only contains letters, numbers, and hyphens" msgstr "Enthält nur Buchstaben, Nummern und Bindestriche" @@ -4244,7 +4365,7 @@ msgstr "Ups, da ist etwas schief gelaufen!" msgid "Oops!" msgstr "Huch!" -#: src/screens/Onboarding/StepFinished.tsx:253 +#: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" msgstr "Öffnen" @@ -4274,7 +4395,7 @@ msgstr "Emoji-Picker öffnen" msgid "Open feed options menu" msgstr "" -#: src/view/screens/Settings/index.tsx:736 +#: src/view/screens/Settings/index.tsx:737 msgid "Open links with in-app browser" msgstr "Links mit In-App-Browser öffnen" @@ -4298,16 +4419,16 @@ msgstr "Navigation öffnen" msgid "Open post options menu" msgstr "Beitragsoptionsmenü öffnen" -#: src/screens/StarterPack/StarterPackScreen.tsx:451 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:861 +#: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" msgstr "Geschichtenbuch öffnen" -#: src/view/screens/Settings/index.tsx:848 +#: src/view/screens/Settings/index.tsx:849 msgid "Open system log" msgstr "" @@ -4319,7 +4440,7 @@ msgstr "Öffnet {numItems} Optionen" msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Opens accessibility settings" msgstr "" @@ -4335,7 +4456,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:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Opens chat settings" msgstr "" @@ -4343,7 +4464,7 @@ msgstr "" msgid "Opens composer" msgstr "Öffnet den Beitragsverfasser" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Opens configurable language settings" msgstr "Öffnet die konfigurierbaren Spracheinstellungen" @@ -4355,7 +4476,7 @@ msgstr "Öffnet die Gerätefotogalerie" #~ msgid "Opens editor for profile display name, avatar, background image, and description" #~ msgstr "Öffnet den Editor für Profilanzeige, Avatar, Hintergrundbild und Beschreibung" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" msgstr "Öffnet die Einstellungen für externe eingebettete Medien" @@ -4385,11 +4506,11 @@ msgstr "" msgid "Opens list of invite codes" msgstr "Öffnet die Liste der Einladungscodes" -#: src/view/screens/Settings/index.tsx:808 +#: src/view/screens/Settings/index.tsx:809 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:830 +#: src/view/screens/Settings/index.tsx:831 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "" @@ -4397,19 +4518,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:765 +#: src/view/screens/Settings/index.tsx:766 msgid "Opens modal for changing your Bluesky password" msgstr "" -#: src/view/screens/Settings/index.tsx:720 +#: src/view/screens/Settings/index.tsx:721 msgid "Opens modal for choosing a new Bluesky handle" msgstr "" -#: src/view/screens/Settings/index.tsx:788 +#: src/view/screens/Settings/index.tsx:789 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Opens modal for email verification" msgstr "" @@ -4417,11 +4538,11 @@ 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:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Opens moderation settings" msgstr "Öffnet die Moderationseinstellungen" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:247 msgid "Opens password reset form" msgstr "Öffnet das Formular zum Zurücksetzen des Passworts" @@ -4430,11 +4551,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:617 +#: src/view/screens/Settings/index.tsx:618 msgid "Opens screen with all saved feeds" msgstr "Öffnet den Bildschirm mit allen gespeicherten Feeds" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "Opens the app password settings" msgstr "" @@ -4442,7 +4563,7 @@ msgstr "" #~ msgid "Opens the app password settings page" #~ msgstr "Öffnet die Einstellungsseite für das App-Passwort" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Opens the Following feed preferences" msgstr "" @@ -4458,20 +4579,20 @@ msgstr "" #~ msgid "Opens the message settings page" #~ 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 "Opens the storybook page" msgstr "Öffnet die Geschichtenbuch" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" msgstr "Öffnet die Systemprotokollseite" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Opens the threads preferences" msgstr "Öffnet die Thread-Einstellungen" -#: src/view/com/notifications/FeedItem.tsx:513 +#: src/view/com/notifications/FeedItem.tsx:524 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "" @@ -4522,8 +4643,8 @@ msgstr "Seite nicht gefunden" msgid "Page Not Found" msgstr "Seite nicht gefunden" -#: src/screens/Login/LoginForm.tsx:204 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Signup/StepInfo/index.tsx:162 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4545,15 +4666,16 @@ msgstr "Passwort aktualisiert!" msgid "Pause" msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:170 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "" -#: src/Navigation.tsx:172 +#: src/Navigation.tsx:175 msgid "People followed by @{0}" msgstr "Personen gefolgt von @{0}" -#: src/Navigation.tsx:165 +#: src/Navigation.tsx:168 msgid "People following @{0}" msgstr "Personen, die @{0} folgen" @@ -4570,11 +4692,11 @@ msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:94 msgid "Pets" msgstr "Haustiere" -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:95 msgid "Photography" msgstr "" @@ -4625,15 +4747,16 @@ msgstr "Video abspielen" msgid "Plays the GIF" msgstr "Spielt das GIF ab" -#: src/screens/Signup/state.ts:234 +#: src/screens/Signup/state.ts:210 msgid "Please choose your handle." msgstr "Bitte wähle deinen Handle." -#: src/screens/Signup/state.ts:227 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:81 msgid "Please choose your password." msgstr "Bitte wähle dein Passwort." -#: src/screens/Signup/state.ts:248 +#: src/screens/Signup/state.ts:224 msgid "Please complete the verification captcha." msgstr "Bitte fülle das Verifizierungs-Captcha aus." @@ -4653,10 +4776,15 @@ msgstr "Bitte gib einen eindeutigen Namen für dieses App-Passwort ein oder verw msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Bitte gib ein gültiges Wort, einen Tag oder eine Phrase zum Stummschalten ein" -#: src/screens/Signup/state.ts:213 +#: src/screens/Signup/state.ts:189 +#: src/screens/Signup/StepInfo/index.tsx:69 msgid "Please enter your email." msgstr "Bitte gib deine E-Mail ein." +#: src/screens/Signup/StepInfo/index.tsx:63 +msgid "Please enter your invite code." +msgstr "" + #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" msgstr "Bitte gib auch dein Passwort ein:" @@ -4688,7 +4816,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Bitte warte, bis deine Link-karte vollständig geladen ist" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:96 msgid "Politics" msgstr "Politik" @@ -4715,9 +4843,9 @@ msgstr "Beitrag" msgid "Post by {0}" msgstr "Beitrag von {0}" -#: src/Navigation.tsx:191 -#: src/Navigation.tsx:198 -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:194 +#: src/Navigation.tsx:201 +#: src/Navigation.tsx:208 msgid "Post by @{0}" msgstr "Beitrag von @{0}" @@ -4756,6 +4884,7 @@ msgstr "Beitrag nicht gefunden" msgid "posts" msgstr "Beiträge" +#: src/screens/StarterPack/StarterPackScreen.tsx:172 #: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Beiträge" @@ -4783,7 +4912,7 @@ msgstr "" #: src/components/Error.tsx:85 #: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/index.tsx:238 +#: src/screens/Signup/BackNextButtons.tsx:46 msgid "Press to retry" msgstr "" @@ -4808,15 +4937,15 @@ msgstr "Primäre Sprache" msgid "Prioritize Your Follows" msgstr "Priorisiere deine Follower" -#: src/view/screens/Settings/index.tsx:654 -#: src/view/shell/desktop/RightNav.tsx:77 +#: src/view/screens/Settings/index.tsx:655 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privatsphäre" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 +#: src/view/screens/Settings/index.tsx:958 #: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Datenschutzerklärung" @@ -4834,8 +4963,8 @@ msgstr "Wird bearbeitet..." msgid "profile" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 +#: 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 @@ -4846,11 +4975,11 @@ msgstr "Profil" msgid "Profile updated" msgstr "Profil aktualisiert" -#: src/view/screens/Settings/index.tsx:1021 +#: src/view/screens/Settings/index.tsx:1022 msgid "Protect your account by verifying your email." msgstr "Schütze dein Konto, indem du deine E-Mail bestätigst." -#: src/screens/Onboarding/StepFinished.tsx:239 +#: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" msgstr "Öffentlich" @@ -4882,6 +5011,10 @@ msgstr "" msgid "QR code saved to your camera roll!" msgstr "" +#: src/tours/Tooltip.tsx:111 +msgid "Quick tip" +msgstr "" + #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:79 @@ -4940,7 +5073,7 @@ msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:325 +#: src/components/FeedCard.tsx:309 #: src/components/StarterPack/Wizard/WizardListCard.tsx:95 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 @@ -4993,7 +5126,7 @@ msgstr "" msgid "Remove from my feeds" msgstr "Aus meinen Feeds entfernen" -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:304 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "" @@ -5157,8 +5290,8 @@ msgstr "" msgid "Report post" msgstr "Beitrag melden" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 -#: src/screens/StarterPack/StarterPackScreen.tsx:507 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 msgid "Report starter pack" msgstr "" @@ -5204,7 +5337,7 @@ msgstr "Repost" msgid "Repost" msgstr "Erneut veröffentlichen" -#: src/screens/StarterPack/StarterPackScreen.tsx:446 +#: src/screens/StarterPack/StarterPackScreen.tsx:524 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5227,7 +5360,7 @@ msgstr "Repostet von {0}" msgid "Reposted by <0><1/>" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:184 +#: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "hat deinen Beitrag repostet" @@ -5253,7 +5386,7 @@ msgstr "Alt-Text vor der Veröffentlichung erforderlich machen" msgid "Require email code to log into your account" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" msgstr "Für diesen Anbieter erforderlich" @@ -5274,8 +5407,8 @@ msgstr "Code zurücksetzen" #~ msgid "Reset onboarding" #~ msgstr "Onboarding zurücksetzen" -#: src/view/screens/Settings/index.tsx:900 -#: src/view/screens/Settings/index.tsx:903 +#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" msgstr "Onboarding-Status zurücksetzen" @@ -5287,20 +5420,20 @@ msgstr "Passwort zurücksetzen" #~ msgid "Reset preferences" #~ msgstr "Einstellungen zurücksetzen" -#: src/view/screens/Settings/index.tsx:880 -#: src/view/screens/Settings/index.tsx:883 +#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:884 msgid "Reset preferences state" msgstr "Einstellungen zurücksetzen" -#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" msgstr "Setzt den Onboarding-Status zurück" -#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" msgstr "Einstellungen zurücksetzen" -#: src/screens/Login/LoginForm.tsx:292 +#: src/screens/Login/LoginForm.tsx:312 msgid "Retries login" msgstr "Versucht die Anmeldung erneut" @@ -5313,12 +5446,12 @@ msgstr "Wiederholung der letzten Aktion, bei der ein Fehler aufgetreten ist" #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:291 -#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:311 +#: src/screens/Login/LoginForm.tsx:318 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Signup/BackNextButtons.tsx:52 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" @@ -5329,7 +5462,7 @@ msgstr "Wiederholen" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:650 +#: src/screens/StarterPack/StarterPackScreen.tsx:728 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Zurück zur vorherigen Seite" @@ -5425,13 +5558,13 @@ msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:372 -#: src/view/com/notifications/FeedItem.tsx:397 +#: src/view/com/notifications/FeedItem.tsx:383 +#: src/view/com/notifications/FeedItem.tsx:408 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:97 msgid "Science" msgstr "Wissenschaft" @@ -5440,16 +5573,16 @@ msgid "Scroll to top" msgstr "Zum Anfang blättern" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:516 -#: src/view/com/auth/LoggedOut.tsx:119 +#: src/Navigation.tsx:524 +#: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 #: src/view/screens/Search/Search.tsx:791 #: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 +#: 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 @@ -5481,8 +5614,8 @@ msgstr "" #~ msgid "Search for someone to start a conversation with." #~ msgstr "" -#: src/view/com/auth/LoggedOut.tsx:101 -#: src/view/com/auth/LoggedOut.tsx:102 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:107 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "Nach Nutzern suchen" @@ -5620,11 +5753,11 @@ msgstr "Wähle aus, welche Sprachen deine abonnierten Feeds enthalten sollen. We msgid "Select your app language for the default text to display in the app." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:135 +#: src/screens/Signup/StepInfo/index.tsx:192 msgid "Select your date of birth" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:225 msgid "Select your interests from the options below" msgstr "Wähle aus den folgenden Optionen deine Interessen aus" @@ -5775,23 +5908,23 @@ msgstr "Dein Konto einrichten" msgid "Sets Bluesky username" msgstr "Legt deinen Bluesky-Benutzernamen fest" -#: src/view/screens/Settings/index.tsx:461 +#: src/view/screens/Settings/index.tsx:462 msgid "Sets color theme to dark" msgstr "" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Sets color theme to light" msgstr "" -#: src/view/screens/Settings/index.tsx:448 +#: src/view/screens/Settings/index.tsx:449 msgid "Sets color theme to system setting" msgstr "" -#: src/view/screens/Settings/index.tsx:487 +#: src/view/screens/Settings/index.tsx:488 msgid "Sets dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings/index.tsx:480 +#: src/view/screens/Settings/index.tsx:481 msgid "Sets dark theme to the dim theme" msgstr "" @@ -5820,9 +5953,9 @@ msgstr "" #~ msgid "Sets server for the Bluesky client" #~ msgstr "Setzt den Server für den Bluesky-Client" -#: src/Navigation.tsx:147 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:395 +#: src/Navigation.tsx:150 +#: src/view/screens/Settings/index.tsx:333 +#: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:559 #: src/view/shell/Drawer.tsx:560 msgid "Settings" @@ -5837,13 +5970,13 @@ msgid "Sexually Suggestive" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:340 -#: src/screens/StarterPack/StarterPackScreen.tsx:493 +#: 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/post-ctrls/PostCtrls.tsx:304 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Teilen" @@ -5863,7 +5996,7 @@ msgstr "" #: src/view/com/profile/ProfileMenu.tsx:377 #: src/view/com/util/forms/PostDropdownBtn.tsx:461 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:320 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "" @@ -5874,7 +6007,7 @@ msgstr "Feed teilen" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -5892,7 +6025,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:333 +#: src/screens/StarterPack/StarterPackScreen.tsx:393 msgid "Share this starter pack" msgstr "" @@ -5911,7 +6044,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:381 +#: src/view/screens/Settings/index.tsx:382 msgid "Show" msgstr "Anzeigen" @@ -5919,7 +6052,7 @@ msgstr "Anzeigen" #~ msgid "Show all replies" #~ msgstr "Alle Antworten anzeigen" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "" @@ -6046,17 +6179,17 @@ msgstr "Zeigt Beiträge von {0} in deinem Feed" #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:100 #: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Login/LoginForm.tsx:177 #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.tsx:72 #: src/view/com/auth/SplashScreen.web.tsx:112 #: src/view/com/auth/SplashScreen.web.tsx:121 -#: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 #: src/view/shell/bottom-bar/BottomBar.tsx:315 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/bottom-bar/BottomBar.tsx:318 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:210 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -6094,12 +6227,12 @@ msgstr "" msgid "Sign out" msgstr "Abmelden" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 #: src/view/shell/bottom-bar/BottomBar.tsx:305 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBar.tsx:306 +#: src/view/shell/bottom-bar/BottomBar.tsx:308 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:200 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -6115,7 +6248,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:391 +#: src/view/screens/Settings/index.tsx:392 msgid "Signed in as" msgstr "Angemeldet als" @@ -6124,7 +6257,7 @@ msgstr "Angemeldet als" msgid "Signed in as @{0}" msgstr "Angemeldet als @{0}" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "signed up with your starter pack" msgstr "" @@ -6132,17 +6265,17 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "Meldet {0} von Bluesky ab" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:264 #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Überspringen" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:261 msgid "Skip this flow" msgstr "Diesen Schritt überspringen" @@ -6151,6 +6284,10 @@ msgstr "Diesen Schritt überspringen" msgid "Software Dev" msgstr "Software-Entwicklung" +#: src/components/FeedInterstitials.tsx:378 +msgid "Some other feeds you might like" +msgstr "" + #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" @@ -6179,8 +6316,8 @@ msgstr "" #~ msgid "Something went wrong!" #~ msgstr "Es ist ein Fehler aufgetreten." -#: src/App.native.tsx:96 -#: src/App.web.tsx:78 +#: src/App.native.tsx:98 +#: src/App.web.tsx:80 msgid "Sorry! Your session expired. Please log in again." msgstr "Entschuldigung! Deine Sitzung ist abgelaufen. Bitte logge dich erneut ein." @@ -6210,7 +6347,7 @@ msgid "Spam; excessive mentions or replies" msgstr "" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:98 msgid "Sports" msgstr "Sport" @@ -6230,17 +6367,22 @@ msgstr "" msgid "Start chatting" msgstr "" +#: src/tours/Tooltip.tsx:99 +msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +msgstr "" + #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:328 +#: src/Navigation.tsx:333 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:65 +#: src/components/StarterPack/StarterPackCard.tsx:70 msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:614 +#: src/screens/StarterPack/StarterPackScreen.tsx:692 msgid "Starter pack is invalid" msgstr "" @@ -6256,7 +6398,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Status-Seite" -#: src/view/screens/Settings/index.tsx:963 +#: src/view/screens/Settings/index.tsx:964 msgid "Status Page" msgstr "" @@ -6264,7 +6406,7 @@ msgstr "" #~ msgid "Step" #~ msgstr "" -#: src/screens/Signup/index.tsx:192 +#: src/screens/Signup/index.tsx:125 msgid "Step {0} of {1}" msgstr "" @@ -6272,12 +6414,12 @@ msgstr "" #~ msgid "Step {0} of {numSteps}" #~ msgstr "Schritt {0} von {numSteps}" -#: src/view/screens/Settings/index.tsx:304 +#: src/view/screens/Settings/index.tsx:305 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:226 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:229 +#: src/view/screens/Settings/index.tsx:864 msgid "Storybook" msgstr "Geschichtenbuch" @@ -6321,6 +6463,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "Vorgeschlagene Follower" +#: src/components/FeedInterstitials.tsx:246 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Vorgeschlagen für dich" @@ -6329,7 +6472,7 @@ msgstr "Vorgeschlagen für dich" msgid "Suggestive" msgstr "Suggestiv" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:244 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6340,6 +6483,10 @@ msgstr "Support" msgid "Switch Account" msgstr "Konto wechseln" +#: src/tours/HomeTour.tsx:48 +msgid "Switch between feeds to control your experience." +msgstr "" + #: src/view/screens/Settings/index.tsx:160 msgid "Switch to {0}" msgstr "Wechseln zu {0}" @@ -6348,11 +6495,11 @@ msgstr "Wechseln zu {0}" msgid "Switches the account you are logged in to" msgstr "Wechselt das Konto, in das du eingeloggt bist" -#: src/view/screens/Settings/index.tsx:445 +#: src/view/screens/Settings/index.tsx:446 msgid "System" msgstr "System" -#: src/view/screens/Settings/index.tsx:851 +#: src/view/screens/Settings/index.tsx:852 msgid "System log" msgstr "Systemprotokoll" @@ -6368,12 +6515,24 @@ msgstr "Tag-Menü: {displayTag}" msgid "Tall" msgstr "Groß" +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "" + #: src/view/com/util/images/AutoSizedImage.tsx:70 msgid "Tap to view fully" msgstr "Tippe, um die vollständige Ansicht anzuzeigen" +#: src/state/shell/progress-guide.tsx:171 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "" + #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:99 msgid "Tech" msgstr "Technik" @@ -6385,13 +6544,13 @@ msgstr "" msgid "Tell us a little more" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:86 +#: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Bedingungen" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:254 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/Settings/index.tsx:952 #: src/view/screens/TermsOfService.tsx:29 #: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" @@ -6422,12 +6581,14 @@ msgstr "" msgid "That contains the following:" msgstr "" -#: src/screens/Signup/index.tsx:100 +#: src/screens/Signup/StepHandle.tsx:50 msgid "That handle is already taken." msgstr "Dieser Handle ist bereits besetzt." -#: src/screens/StarterPack/StarterPackScreen.tsx:105 -#: src/screens/StarterPack/StarterPackScreen.tsx:106 +#: src/screens/StarterPack/StarterPackScreen.tsx:96 +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:136 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6450,7 +6611,12 @@ msgstr "Die Community-Richtlinien wurden nach <0/> verschoben" msgid "The Copyright Policy has been moved to <0/>" msgstr "Die Copyright-Richtlinie wurde nach <0/> verschoben" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:177 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6479,7 +6645,7 @@ msgstr "Möglicherweise wurde der Post gelöscht." msgid "The Privacy Policy has been moved to <0/>" msgstr "Die Datenschutzerklärung wurde nach <0/> verschoben" -#: src/screens/StarterPack/StarterPackScreen.tsx:624 +#: src/screens/StarterPack/StarterPackScreen.tsx:702 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6537,11 +6703,11 @@ 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:126 +#: src/view/com/notifications/Feed.tsx:125 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." -#: src/view/com/posts/Feed.tsx:299 +#: src/view/com/posts/Feed.tsx:459 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Es gab ein Problem beim Abrufen der Beiträge. Tippe hier, um es erneut zu versuchen." @@ -6741,7 +6907,7 @@ msgid "This post has been deleted." msgstr "Dieser Beitrag wurde gelöscht." #: src/view/com/util/forms/PostDropdownBtn.tsx:458 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:317 +#: 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 "" @@ -6814,12 +6980,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:594 +#: src/view/screens/Settings/index.tsx:595 msgid "Thread preferences" msgstr "" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/Settings/index.tsx:605 msgid "Thread Preferences" msgstr "Thread-Einstellungen" @@ -6831,7 +6997,7 @@ msgstr "" msgid "Threaded Mode" msgstr "Gewindemodus" -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:287 msgid "Threads Preferences" msgstr "Thread-Einstellungen" @@ -6882,11 +7048,11 @@ msgctxt "action" msgid "Try again" msgstr "Erneut versuchen" -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:100 msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:745 +#: src/view/screens/Settings/index.tsx:746 msgid "Two-factor authentication" msgstr "" @@ -6908,14 +7074,14 @@ msgstr "Stummschaltung von Liste aufheben" #: src/screens/Login/ForgotPasswordForm.tsx:74 #: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:79 +#: src/screens/Signup/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Es ist uns nicht gelungen, deinen Dienst zu kontaktieren. Bitte überprüfe deine Internetverbindung." -#: src/screens/StarterPack/StarterPackScreen.tsx:548 +#: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Unable to delete" msgstr "" @@ -7196,7 +7362,7 @@ msgstr "Benutzerliste aktualisiert" msgid "User Lists" msgstr "Benutzerlisten" -#: src/screens/Login/LoginForm.tsx:177 +#: src/screens/Login/LoginForm.tsx:197 msgid "Username or email address" msgstr "Benutzername oder E-Mail-Adresse" @@ -7235,15 +7401,15 @@ msgstr "" msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:982 +#: src/view/screens/Settings/index.tsx:983 msgid "Verify email" msgstr "E-Mail bestätigen" -#: src/view/screens/Settings/index.tsx:1007 +#: src/view/screens/Settings/index.tsx:1008 msgid "Verify my email" msgstr "Meine E-Mail bestätigen" -#: src/view/screens/Settings/index.tsx:1016 +#: src/view/screens/Settings/index.tsx:1017 msgid "Verify My Email" msgstr "Meine E-Mail bestätigen" @@ -7264,7 +7430,7 @@ msgstr "Überprüfe deine E-Mail" #~ msgid "Version {0}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:935 +#: src/view/screens/Settings/index.tsx:936 msgid "Version {appVersion} {bundleInfo}" msgstr "" @@ -7277,7 +7443,7 @@ msgstr "Videospiele" msgid "View {0}'s avatar" msgstr "Avatar von {0} ansehen" -#: src/view/com/notifications/FeedItem.tsx:234 +#: src/view/com/notifications/FeedItem.tsx:245 msgid "View {0}'s profile" msgstr "" @@ -7326,7 +7492,7 @@ msgid "View users who like this feed" msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -7365,7 +7531,7 @@ msgstr "" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Wir schätzen {estimatedTime} bis dein Konto bereit ist." -#: src/screens/Onboarding/StepFinished.tsx:231 +#: src/screens/Onboarding/StepFinished.tsx:239 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Wir hoffen, dass du eine schöne Zeit hast. Denke daran, Bluesky ist:" @@ -7389,7 +7555,7 @@ msgstr "" msgid "We were unable to load your configured labelers at this time." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:157 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Die Verbindung konnte nicht hergestellt werden. Bitte versuche es erneut, um mit der Einrichtung deines Kontos fortzufahren. Wenn der Versuch weiterhin fehlschlägt, kannst du diesen Schritt überspringen." @@ -7401,7 +7567,7 @@ msgstr "Wir werden dich benachrichtigen, wenn dein Konto bereit ist." #~ msgid "We'll look into your appeal promptly." #~ msgstr "Wir werden deinen Widerspruch unverzüglich prüfen." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:162 msgid "We'll use this to help customize your experience." msgstr "Wir verwenden diese Informationen, um dein Erlebnis individuell zu gestalten." @@ -7409,7 +7575,7 @@ msgstr "Wir verwenden diese Informationen, um dein Erlebnis individuell zu gesta msgid "We're having network issues, try again" msgstr "" -#: src/screens/Signup/index.tsx:155 +#: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" msgstr "Wir freuen uns sehr, dass du dabei bist!" @@ -7454,7 +7620,7 @@ msgstr "" msgid "Welcome, friend!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" msgstr "Was sind deine Interessen?" @@ -7549,7 +7715,7 @@ msgid "Write your reply" msgstr "Schreibe deine Antwort" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:101 msgid "Writers" msgstr "Schriftsteller" @@ -7568,7 +7734,7 @@ msgstr "Ja" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:560 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 msgid "Yes, delete this starter pack" msgstr "" @@ -7580,7 +7746,7 @@ msgstr "" msgid "Yesterday, {time}" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:68 +#: src/components/StarterPack/StarterPackCard.tsx:73 msgid "you" msgstr "" @@ -7813,23 +7979,23 @@ msgstr "" msgid "You: {short}" msgstr "" -#: src/screens/Signup/index.tsx:169 +#: src/screens/Signup/index.tsx:102 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:174 +#: 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:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "You'll stay updated with these feeds" msgstr "" @@ -7848,7 +8014,7 @@ msgstr "Du bist in der Warteschlange" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:228 +#: src/screens/Onboarding/StepFinished.tsx:236 msgid "You're ready to go!" msgstr "Du kannst loslegen!" @@ -7861,7 +8027,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Du hast das Ende deines Feeds erreicht! Finde weitere Konten, denen du folgen kannst." -#: src/screens/Signup/index.tsx:202 +#: src/screens/Signup/index.tsx:135 msgid "Your account" msgstr "Dein Konto" @@ -7873,7 +8039,7 @@ msgstr "Dein Konto wurde gelöscht" msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "Dein Kontodepot, das alle öffentlichen Datensätze enthält, kann als \"CAR\"-Datei heruntergeladen werden. Diese Datei enthält keine Medieneinbettungen, wie z. B. Bilder, oder deine privaten Daten, welche separat abgerufen werden müssen." -#: src/screens/Signup/StepInfo/index.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" msgstr "Dein Geburtsdatum" @@ -7890,7 +8056,8 @@ msgstr "Deine Wahl wird gespeichert, kann aber später in den Einstellungen geä #~ msgstr "Dein Standard-Feed ist \"Following\"" #: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Deine E-Mail scheint ungültig zu sein." @@ -7903,11 +8070,15 @@ msgstr "Deine E-Mail wurde aktualisiert, aber nicht bestätigt. Als nächsten Sc msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "Deine E-Mail wurde noch nicht bestätigt. Dies ist ein wichtiger Sicherheitsschritt, den wir empfehlen." +#: src/state/shell/progress-guide.tsx:161 +msgid "Your first like!" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Dein Following-Feed ist leer! Folge mehr Benutzern, um auf dem Laufenden zu bleiben." -#: src/screens/Signup/StepHandle.tsx:73 +#: src/screens/Signup/StepHandle.tsx:122 msgid "Your full handle will be" msgstr "Dein vollständiger Handle lautet" @@ -7927,7 +8098,7 @@ msgstr "Dein Passwort wurde erfolgreich geändert!" msgid "Your post has been published" msgstr "Dein Beitrag wurde veröffentlicht" -#: src/screens/Onboarding/StepFinished.tsx:243 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Deine Beiträge, Likes und Blockierungen sind öffentlich. Stummschaltungen sind privat." @@ -7947,6 +8118,6 @@ msgstr "Deine Antwort wurde veröffentlicht" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" -#: src/screens/Signup/index.tsx:204 +#: src/screens/Signup/index.tsx:137 msgid "Your user handle" msgstr "Dein Benutzerhandle" diff --git a/src/locale/locales/en/messages.po b/src/locale/locales/en/messages.po index 1e8573999f..d5b7550401 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:283 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -59,7 +59,7 @@ msgstr "" msgid "{0, plural, one {following} other {following}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:259 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" @@ -67,7 +67,7 @@ msgstr "" msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:216 +#: src/components/FeedCard.tsx:206 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -76,7 +76,7 @@ msgstr "" msgid "{0, plural, one {post} other {posts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:217 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" @@ -84,15 +84,15 @@ msgstr "" msgid "{0, plural, one {repost} other {reposts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:262 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:378 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" msgstr "" @@ -148,7 +148,7 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:503 +#: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "" @@ -254,10 +254,14 @@ msgstr "" msgid "⚠Invalid Handle" msgstr "" -#: src/screens/Login/LoginForm.tsx:247 +#: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" msgstr "" +#: src/tours/Tooltip.tsx:70 +msgid "A help tooltip" +msgstr "" + #: src/view/com/util/ViewHeader.tsx:93 #: src/view/screens/Search/Search.tsx:684 msgid "Access navigation links and settings" @@ -268,15 +272,15 @@ msgid "Access profile and other navigation links" msgstr "" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:518 +#: src/view/screens/Settings/index.tsx:519 msgid "Accessibility" msgstr "" -#: src/view/screens/Settings/index.tsx:509 +#: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "" @@ -285,9 +289,9 @@ msgstr "" #~ msgid "account" #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:170 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:190 +#: src/view/screens/Settings/index.tsx:346 +#: src/view/screens/Settings/index.tsx:753 msgid "Account" msgstr "" @@ -358,8 +362,8 @@ msgstr "" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:422 -#: src/view/screens/Settings/index.tsx:431 +#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:432 msgid "Add account" msgstr "" @@ -418,7 +422,7 @@ msgstr "" msgid "Add the following DNS record to your domain:" msgstr "" -#: src/components/FeedCard.tsx:305 +#: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" msgstr "" @@ -462,15 +466,19 @@ msgid "Adult content is disabled." msgstr "" #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Advanced" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:301 +#: src/state/shell/progress-guide.tsx:176 +msgid "Algorithm training complete!" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:360 msgid "All accounts have been followed!" msgstr "" -#: src/view/screens/Feeds.tsx:721 +#: src/view/screens/Feeds.tsx:734 msgid "All the feeds you've saved, right in one place." msgstr "" @@ -500,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:177 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 msgid "ALT" msgstr "" @@ -510,7 +518,7 @@ msgstr "" msgid "Alt text" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:183 +#: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" msgstr "" @@ -548,7 +556,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:303 +#: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" msgstr "" @@ -558,6 +566,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/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -565,12 +575,12 @@ msgstr "" msgid "An issue occurred, please try again." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" msgstr "" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:280 +#: src/view/com/notifications/FeedItem.tsx:291 msgid "and" msgstr "" @@ -579,7 +589,7 @@ msgstr "" msgid "Animals" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" msgstr "" @@ -603,13 +613,13 @@ msgstr "" msgid "App Password names must be at least 4 characters long." msgstr "" -#: src/view/screens/Settings/index.tsx:697 +#: src/view/screens/Settings/index.tsx:698 msgid "App password settings" msgstr "" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:269 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/view/screens/Settings/index.tsx:707 msgid "App Passwords" msgstr "" @@ -638,7 +648,7 @@ msgstr "" msgid "Appeal this decision" msgstr "" -#: src/view/screens/Settings/index.tsx:439 +#: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "" @@ -647,7 +657,7 @@ msgstr "" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -675,7 +685,7 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "" -#: src/components/FeedCard.tsx:322 +#: src/components/FeedCard.tsx:306 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -700,7 +710,7 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "" -#: src/screens/Signup/StepHandle.tsx:119 +#: src/screens/Signup/StepHandle.tsx:170 msgid "At least 3 characters" msgstr "" @@ -711,14 +721,15 @@ msgstr "" #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:278 -#: src/screens/Login/LoginForm.tsx:284 +#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:304 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/index.tsx:231 +#: 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" @@ -728,7 +739,7 @@ msgstr "" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "" @@ -736,7 +747,7 @@ msgstr "" msgid "Birthday" msgstr "" -#: src/view/screens/Settings/index.tsx:377 +#: src/view/screens/Settings/index.tsx:378 msgid "Birthday:" msgstr "" @@ -780,7 +791,7 @@ msgstr "" msgid "Blocked accounts" msgstr "" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:145 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "" @@ -822,6 +833,10 @@ msgstr "" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "" +#: 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." @@ -858,6 +873,24 @@ msgstr "" msgid "Books" msgstr "" +#: src/components/FeedInterstitials.tsx:281 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:411 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:266 +#: src/components/FeedInterstitials.tsx:396 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:289 +#: src/components/FeedInterstitials.tsx:420 +msgid "Browse more suggestions on the Explore page" +msgstr "" + #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" @@ -976,17 +1009,17 @@ msgstr "" msgid "Change" msgstr "" -#: src/view/screens/Settings/index.tsx:371 +#: src/view/screens/Settings/index.tsx:372 msgctxt "action" msgid "Change" msgstr "" -#: src/view/screens/Settings/index.tsx:718 +#: src/view/screens/Settings/index.tsx:719 msgid "Change handle" msgstr "" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change Handle" msgstr "" @@ -994,12 +1027,12 @@ msgstr "" msgid "Change my email" msgstr "" -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/index.tsx:764 msgid "Change password" msgstr "" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Change Password" msgstr "" @@ -1011,9 +1044,9 @@ msgstr "" msgid "Change Your Email" msgstr "" -#: src/Navigation.tsx:310 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:313 +#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" msgstr "" @@ -1023,14 +1056,14 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:318 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" msgstr "" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" msgstr "" @@ -1055,7 +1088,7 @@ msgstr "" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:271 +#: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." msgstr "" @@ -1067,6 +1100,14 @@ msgstr "" #~ msgid "Choose \"Everybody\" or \"Nobody\"" #~ msgstr "" +#: src/screens/Onboarding/StepInterests/index.tsx:190 +msgid "Choose 3 or more:" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:325 +msgid "Choose at least {0} more" +msgstr "" + #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" msgstr "" @@ -1083,7 +1124,7 @@ msgstr "" msgid "Choose Service" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:273 +#: src/screens/Onboarding/StepFinished.tsx:281 msgid "Choose the algorithms that power your custom feeds." msgstr "" @@ -1105,23 +1146,23 @@ msgstr "" #~ msgid "Choose your main feeds" #~ msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" msgstr "" -#: src/view/screens/Settings/index.tsx:910 +#: src/view/screens/Settings/index.tsx:911 msgid "Clear all legacy storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:913 +#: src/view/screens/Settings/index.tsx:914 msgid "Clear all legacy storage data (restart after this)" msgstr "" -#: src/view/screens/Settings/index.tsx:922 +#: src/view/screens/Settings/index.tsx:923 msgid "Clear all storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:925 +#: src/view/screens/Settings/index.tsx:926 msgid "Clear all storage data (restart after this)" msgstr "" @@ -1130,11 +1171,11 @@ msgstr "" msgid "Clear search query" msgstr "" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" msgstr "" @@ -1183,7 +1224,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:189 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "Close" msgstr "" @@ -1246,11 +1287,11 @@ msgstr "" msgid "Closes viewer for header image" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:226 +#: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:437 msgid "Collapses list of users for a given notification" msgstr "" @@ -1264,16 +1305,16 @@ msgstr "" msgid "Comics" msgstr "" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:259 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:286 +#: src/screens/Onboarding/StepFinished.tsx:294 msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:206 +#: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" msgstr "" @@ -1330,7 +1371,7 @@ msgstr "" msgid "Confirm your birthdate" msgstr "" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:272 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 @@ -1340,11 +1381,11 @@ msgstr "" msgid "Confirmation code" msgstr "" -#: src/screens/Login/LoginForm.tsx:305 +#: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." msgstr "" -#: src/screens/Signup/index.tsx:276 +#: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "" @@ -1385,7 +1426,7 @@ msgstr "" msgid "Context menu backdrop, click to close the menu." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:258 +#: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "" @@ -1398,9 +1439,9 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:255 +#: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/index.tsx:251 +#: src/screens/Signup/BackNextButtons.tsx:59 msgid "Continue to next step" msgstr "" @@ -1425,7 +1466,7 @@ msgstr "" msgid "Copied" msgstr "" -#: src/view/screens/Settings/index.tsx:263 +#: src/view/screens/Settings/index.tsx:264 msgid "Copied build version to clipboard" msgstr "" @@ -1434,7 +1475,7 @@ msgstr "" #: 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/post-ctrls/PostCtrls.tsx:350 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "" @@ -1491,7 +1532,7 @@ msgstr "" msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "" @@ -1529,7 +1570,7 @@ msgstr "" msgid "Create a new account" msgstr "" -#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" msgstr "" @@ -1539,7 +1580,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:338 msgid "Create a starter pack" msgstr "" @@ -1547,7 +1588,7 @@ msgstr "" msgid "Create a starter pack for me" msgstr "" -#: src/screens/Signup/index.tsx:154 +#: src/screens/Signup/index.tsx:88 msgid "Create Account" msgstr "" @@ -1603,7 +1644,7 @@ msgstr "" msgid "Custom domain" msgstr "" -#: src/view/screens/Feeds.tsx:747 +#: src/view/screens/Feeds.tsx:760 #: src/view/screens/Search/Explore.tsx:390 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" @@ -1612,8 +1653,8 @@ msgstr "" msgid "Customize media from external sites." msgstr "" -#: src/view/screens/Settings/index.tsx:458 -#: src/view/screens/Settings/index.tsx:484 +#: src/view/screens/Settings/index.tsx:459 +#: src/view/screens/Settings/index.tsx:485 msgid "Dark" msgstr "" @@ -1621,24 +1662,24 @@ msgstr "" msgid "Dark mode" msgstr "" -#: src/view/screens/Settings/index.tsx:471 +#: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:134 +#: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" msgstr "" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:818 +#: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:873 +#: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" msgstr "" @@ -1647,16 +1688,16 @@ msgid "Debug panel" msgstr "" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:484 -#: src/screens/StarterPack/StarterPackScreen.tsx:563 -#: src/screens/StarterPack/StarterPackScreen.tsx:643 +#: 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/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "" -#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:829 msgid "Delete account" msgstr "" @@ -1676,8 +1717,8 @@ msgstr "" msgid "Delete app password?" msgstr "" -#: src/view/screens/Settings/index.tsx:890 -#: src/view/screens/Settings/index.tsx:893 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" msgstr "" @@ -1701,7 +1742,7 @@ msgstr "" msgid "Delete my account" msgstr "" -#: src/view/screens/Settings/index.tsx:840 +#: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" msgstr "" @@ -1710,12 +1751,12 @@ msgstr "" msgid "Delete post" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:478 -#: src/screens/StarterPack/StarterPackScreen.tsx:634 +#: src/screens/StarterPack/StarterPackScreen.tsx:556 +#: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" msgstr "" @@ -1735,7 +1776,7 @@ msgstr "" msgid "Deleted post." msgstr "" -#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" msgstr "" @@ -1754,7 +1795,7 @@ msgstr "" msgid "Did you want to say anything?" msgstr "" -#: src/view/screens/Settings/index.tsx:477 +#: src/view/screens/Settings/index.tsx:478 msgid "Dim" msgstr "" @@ -1804,6 +1845,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/tours/HomeTour.tsx:70 +msgid "Discover learns which posts you like as you browse." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -1813,10 +1858,14 @@ msgstr "" msgid "Discover new feeds" msgstr "" -#: src/view/screens/Feeds.tsx:744 +#: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" msgstr "" +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "" + #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" msgstr "" @@ -1837,7 +1886,7 @@ msgstr "" msgid "Does not include nudity." msgstr "" -#: src/screens/Signup/StepHandle.tsx:105 +#: src/screens/Signup/StepHandle.tsx:156 msgid "Doesn't begin or end with a hyphen" msgstr "" @@ -1882,7 +1931,7 @@ msgstr "" msgid "Done{extraText}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" msgstr "" @@ -1891,7 +1940,7 @@ msgstr "" msgid "Download CAR file" msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:272 +#: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" msgstr "" @@ -1939,11 +1988,11 @@ msgstr "" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:473 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "" @@ -1974,9 +2023,9 @@ msgstr "" msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:271 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 +#: src/Navigation.tsx:274 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "" @@ -2004,7 +2053,7 @@ msgstr "" #~ msgid "Edit Saved Feeds" #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" msgstr "" @@ -2024,7 +2073,7 @@ msgstr "" msgid "Edit your profile description" msgstr "" -#: src/Navigation.tsx:335 +#: src/Navigation.tsx:343 msgid "Edit your starter pack" msgstr "" @@ -2037,7 +2086,7 @@ msgstr "" msgid "Either choose \"Everybody\" or \"Nobody\"" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "" @@ -2063,7 +2112,7 @@ msgstr "" msgid "Email verified" msgstr "" -#: src/view/screens/Settings/index.tsx:349 +#: src/view/screens/Settings/index.tsx:350 msgid "Email:" msgstr "" @@ -2129,6 +2178,10 @@ msgstr "" #~ 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 "" + #: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "" @@ -2163,7 +2216,7 @@ msgid "Enter your birth date" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:92 +#: src/screens/Signup/StepInfo/index.tsx:152 msgid "Enter your email address" msgstr "" @@ -2183,11 +2236,11 @@ msgstr "" msgid "Error occurred while saving file" msgstr "" -#: src/screens/Signup/StepCaptcha/index.tsx:51 +#: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:197 +#: src/screens/Onboarding/StepInterests/index.tsx:216 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "" @@ -2242,7 +2295,7 @@ msgstr "" msgid "Expand alt text" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:227 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" msgstr "" @@ -2259,12 +2312,12 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/view/screens/Settings/index.tsx:786 +#: src/view/screens/Settings/index.tsx:787 msgid "Export my data" msgstr "" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:797 +#: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" msgstr "" @@ -2278,13 +2331,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:290 +#: src/Navigation.tsx:293 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/view/screens/Settings/index.tsx:680 msgid "External Media Preferences" msgstr "" -#: src/view/screens/Settings/index.tsx:670 +#: src/view/screens/Settings/index.tsx:671 msgid "External media settings" msgstr "" @@ -2310,7 +2363,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:597 +#: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" msgstr "" @@ -2367,7 +2420,7 @@ msgstr "" msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:285 +#: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" msgstr "" @@ -2376,11 +2429,11 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:211 +#: src/Navigation.tsx:214 msgid "Feed" msgstr "" -#: src/components/FeedCard.tsx:161 +#: src/components/FeedCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "" @@ -2393,17 +2446,18 @@ msgstr "" msgid "Feed toggle" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "" -#: src/Navigation.tsx:320 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 +#: src/Navigation.tsx:323 +#: 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:373 +#: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" @@ -2421,7 +2475,7 @@ msgstr "" #~ msgid "Feeds can be topical as well!" #~ msgstr "" -#: src/components/FeedCard.tsx:282 +#: src/components/FeedCard.tsx:266 msgid "Feeds updated!" msgstr "" @@ -2437,7 +2491,7 @@ msgstr "" msgid "Filter from feeds" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 msgid "Finalizing" msgstr "" @@ -2447,6 +2501,10 @@ msgstr "" msgid "Find accounts to follow" msgstr "" +#: src/tours/HomeTour.tsx:88 +msgid "Find more feeds and accounts to follow in the Explore page." +msgstr "" + #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "" @@ -2475,11 +2533,15 @@ msgstr "" msgid "Finish" msgstr "" +#: src/tours/Tooltip.tsx:149 +msgid "Finish tour and begin using the application" +msgstr "" + #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:269 +#: src/screens/Onboarding/StepFinished.tsx:277 msgid "Flexible" msgstr "" @@ -2492,6 +2554,8 @@ msgstr "" msgid "Flip vertically" msgstr "" +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:341 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2514,13 +2578,17 @@ msgstr "" msgid "Follow {name}" msgstr "" +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "" + #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:345 -#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:405 +#: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" msgstr "" @@ -2548,7 +2616,7 @@ msgstr "" #~ msgid "Followed by" #~ msgstr "" -#: src/view/com/profile/ProfileCard.tsx:227 +#: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" msgstr "" @@ -2576,16 +2644,20 @@ msgstr "" msgid "Followed users only" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:197 msgid "followed you" msgstr "" +#: src/view/com/notifications/FeedItem.tsx:195 +msgid "followed you back" +msgstr "" + #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" msgstr "" @@ -2594,17 +2666,20 @@ msgstr "" msgid "Followers you know" msgstr "" +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:335 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:630 +#: src/view/screens/Feeds.tsx:631 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "" +#: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "" @@ -2613,21 +2688,25 @@ msgstr "" msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:573 +#: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:277 +#: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "Following Feed Preferences" msgstr "" +#: src/tours/HomeTour.tsx:59 +msgid "Following shows the latest posts from people you follow." +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "" -#: src/view/com/profile/ProfileCard.tsx:152 +#: src/components/Pills.tsx:165 msgid "Follows You" msgstr "" @@ -2649,11 +2728,11 @@ msgstr "" msgid "Forgot Password" msgstr "" -#: src/screens/Login/LoginForm.tsx:227 +#: src/screens/Login/LoginForm.tsx:246 msgid "Forgot password?" msgstr "" -#: src/screens/Login/LoginForm.tsx:238 +#: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" msgstr "" @@ -2687,6 +2766,10 @@ msgstr "" msgid "Get Started" msgstr "" +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "" + #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" msgstr "" @@ -2701,31 +2784,35 @@ msgstr "" #: src/components/moderation/ScreenHider.tsx:151 #: src/components/moderation/ScreenHider.tsx:160 -#: src/view/com/auth/LoggedOut.tsx:78 -#: src/view/com/auth/LoggedOut.tsx:79 +#: src/view/com/auth/LoggedOut.tsx:80 +#: src/view/com/auth/LoggedOut.tsx:81 #: src/view/screens/NotFound.tsx:55 #: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:656 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 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/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:225 +#: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" msgstr "" @@ -2759,6 +2846,10 @@ msgstr "" msgid "Go to profile" msgstr "" +#: src/tours/Tooltip.tsx:138 +msgid "Go to the next step of the tour" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "" @@ -2767,6 +2858,10 @@ msgstr "" msgid "Graphic Media" msgstr "" +#: src/state/shell/progress-guide.tsx:166 +msgid "Half way there!" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" msgstr "" @@ -2779,19 +2874,19 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:308 msgid "Hashtag" msgstr "" -#: src/components/RichText.tsx:216 +#: src/components/RichText.tsx:218 msgid "Hashtag: #{tag}" msgstr "" -#: src/screens/Signup/index.tsx:272 +#: src/screens/Signup/index.tsx:167 msgid "Having trouble?" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/desktop/RightNav.tsx:99 #: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "" @@ -2827,7 +2922,7 @@ msgstr "" msgid "Hide" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:433 +#: src/view/com/notifications/FeedItem.tsx:444 msgctxt "action" msgid "Hide" msgstr "" @@ -2846,7 +2941,7 @@ msgstr "" msgid "Hide this post?" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:424 +#: src/view/com/notifications/FeedItem.tsx:435 msgid "Hide user list" msgstr "" @@ -2878,10 +2973,10 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/Navigation.tsx:511 -#: src/Navigation.tsx:531 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: src/Navigation.tsx:519 +#: src/Navigation.tsx:539 +#: 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 msgid "Home" @@ -2892,8 +2987,8 @@ msgid "Host:" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:160 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:180 +#: src/screens/Signup/StepInfo/index.tsx:106 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "" @@ -2993,19 +3088,19 @@ msgstr "" msgid "Input password for account deletion" msgstr "" -#: src/screens/Login/LoginForm.tsx:266 +#: src/screens/Login/LoginForm.tsx:286 msgid "Input the code which has been emailed to you" msgstr "" #: src/screens/Login/LoginForm.tsx:221 -msgid "Input the password tied to {identifier}" -msgstr "" +#~ msgid "Input the password tied to {identifier}" +#~ msgstr "" -#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Login/LoginForm.tsx:215 msgid "Input the username or email address you used at signup" msgstr "" -#: src/screens/Login/LoginForm.tsx:220 +#: src/screens/Login/LoginForm.tsx:241 msgid "Input your password" msgstr "" @@ -3013,7 +3108,7 @@ msgstr "" msgid "Input your preferred hosting provider" msgstr "" -#: src/screens/Signup/StepHandle.tsx:63 +#: src/screens/Signup/StepHandle.tsx:111 msgid "Input your user handle" msgstr "" @@ -3021,7 +3116,7 @@ msgstr "" msgid "Introducing Direct Messages" msgstr "" -#: src/screens/Login/LoginForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:140 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "" @@ -3030,7 +3125,7 @@ msgstr "" msgid "Invalid or unsupported post record" msgstr "" -#: src/screens/Login/LoginForm.tsx:140 +#: src/screens/Login/LoginForm.tsx:145 msgid "Invalid username or password" msgstr "" @@ -3038,11 +3133,11 @@ msgstr "" msgid "Invite a Friend" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:58 +#: src/screens/Signup/StepInfo/index.tsx:124 msgid "Invite code" msgstr "" -#: src/screens/Signup/state.ts:275 +#: src/screens/Signup/state.ts:251 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" @@ -3078,8 +3173,10 @@ msgstr "" msgid "Jobs" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackScreen.tsx:432 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" msgstr "" @@ -3128,16 +3225,16 @@ msgstr "" msgid "Language selection" msgstr "" -#: src/view/screens/Settings/index.tsx:530 +#: src/view/screens/Settings/index.tsx:531 msgid "Language settings" msgstr "" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:155 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Languages" msgstr "" @@ -3197,7 +3294,7 @@ msgstr "" msgid "left to go." msgstr "" -#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:309 msgid "Legacy storage cleared, you need to restart the app now." msgstr "" @@ -3210,11 +3307,12 @@ msgstr "" msgid "Let's get your password reset!" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 +#: src/tours/Tooltip.tsx:151 msgid "Let's go!" msgstr "" -#: src/view/screens/Settings/index.tsx:452 +#: src/view/screens/Settings/index.tsx:453 msgid "Light" msgstr "" @@ -3222,14 +3320,23 @@ msgstr "" #~ msgid "Like" #~ msgstr "" +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:167 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 #: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:216 -#: src/Navigation.tsx:221 +#: src/Navigation.tsx:219 +#: src/Navigation.tsx:224 msgid "Liked by" msgstr "" @@ -3253,11 +3360,11 @@ msgstr "" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "" -#: src/view/com/notifications/FeedItem.tsx:190 +#: src/view/com/notifications/FeedItem.tsx:201 msgid "liked your custom feed" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:182 +#: src/view/com/notifications/FeedItem.tsx:185 msgid "liked your post" msgstr "" @@ -3269,7 +3376,7 @@ msgstr "" msgid "Likes on this post" msgstr "" -#: src/Navigation.tsx:185 +#: src/Navigation.tsx:188 msgid "List" msgstr "" @@ -3281,7 +3388,7 @@ msgstr "" msgid "List blocked" msgstr "" -#: src/components/FeedCard.tsx:155 +#: src/components/ListCard.tsx:113 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "" @@ -3306,10 +3413,10 @@ msgstr "" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:125 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/desktop/LeftNav.tsx:385 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 msgid "Lists" @@ -3346,7 +3453,7 @@ msgstr "" msgid "Loading..." msgstr "" -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:239 msgid "Log" msgstr "" @@ -3370,7 +3477,7 @@ msgstr "" msgid "Login to account that is not listed" msgstr "" -#: src/components/RichText.tsx:217 +#: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" msgstr "" @@ -3455,7 +3562,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:526 +#: src/Navigation.tsx:534 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3470,9 +3577,9 @@ msgstr "" msgid "Misleading Account" msgstr "" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:130 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Moderation" msgstr "" @@ -3480,7 +3587,7 @@ msgstr "" msgid "Moderation details" msgstr "" -#: src/components/FeedCard.tsx:157 +#: src/components/ListCard.tsx:109 #: src/view/com/lists/ListCard.tsx:95 #: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" @@ -3508,16 +3615,16 @@ msgstr "" msgid "Moderation lists" msgstr "" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "" -#: src/view/screens/Settings/index.tsx:555 +#: src/view/screens/Settings/index.tsx:556 msgid "Moderation settings" msgstr "" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:234 msgid "Moderation states" msgstr "" @@ -3550,6 +3657,10 @@ msgstr "" msgid "Movies" msgstr "" +#: src/screens/Onboarding/state.ts:91 +msgid "Music" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "" @@ -3623,7 +3734,7 @@ msgstr "" msgid "Muted accounts" msgstr "" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "" @@ -3649,19 +3760,19 @@ msgstr "" msgid "My Birthday" msgstr "" -#: src/view/screens/Feeds.tsx:718 +#: src/view/screens/Feeds.tsx:731 msgid "My Feeds" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "" -#: src/view/screens/Settings/index.tsx:616 +#: src/view/screens/Settings/index.tsx:617 msgid "My saved feeds" msgstr "" -#: src/view/screens/Settings/index.tsx:622 +#: src/view/screens/Settings/index.tsx:623 msgid "My Saved Feeds" msgstr "" @@ -3682,16 +3793,20 @@ msgid "Name or Description Violates Community Standards" msgstr "" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:92 msgid "Nature" msgstr "" +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "" + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:332 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "" @@ -3709,7 +3824,7 @@ msgstr "" #~ msgid "Never lose access to your followers and data." #~ msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:257 +#: src/screens/Onboarding/StepFinished.tsx:265 msgid "Never lose access to your followers or data." msgstr "" @@ -3753,17 +3868,17 @@ msgctxt "action" msgid "New post" msgstr "" -#: src/view/screens/Feeds.tsx:580 +#: 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/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/shell/desktop/LeftNav.tsx:278 msgid "New post" msgstr "" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:284 msgctxt "action" msgid "New Post" msgstr "" @@ -3781,21 +3896,22 @@ msgid "Newest replies first" msgstr "" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:93 msgid "News" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:311 -#: src/screens/Login/LoginForm.tsx:318 +#: src/screens/Login/LoginForm.tsx:331 +#: src/screens/Login/LoginForm.tsx:338 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:258 +#: src/screens/Signup/BackNextButtons.tsx:66 #: src/screens/StarterPack/Wizard/index.tsx:184 #: src/screens/StarterPack/Wizard/index.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:359 #: src/screens/StarterPack/Wizard/index.tsx:366 +#: src/tours/Tooltip.tsx:139 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3837,11 +3953,12 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" +#: src/components/ProfileCard.tsx:321 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "" -#: src/screens/Signup/StepHandle.tsx:115 +#: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" msgstr "" @@ -3853,7 +3970,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:118 +#: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "" @@ -3881,7 +3998,7 @@ msgstr "" msgid "No results found" msgstr "" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" msgstr "" @@ -3931,7 +4048,7 @@ msgstr "" #~ msgid "Not Applicable." #~ msgstr "" -#: src/Navigation.tsx:117 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "" @@ -3943,7 +4060,7 @@ msgstr "" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:315 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "" @@ -3963,11 +4080,11 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:529 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 +#: 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 msgid "Notifications" @@ -4003,7 +4120,7 @@ msgstr "" msgid "Oh no!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:152 msgid "Oh no! Something went wrong." msgstr "" @@ -4027,10 +4144,14 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:256 +#: src/view/screens/Settings/index.tsx:257 msgid "Onboarding reset" msgstr "" +#: src/tours/Tooltip.tsx:118 +msgid "Onboarding tour step {0}: {1}" +msgstr "" + #: src/view/com/composer/Composer.tsx:522 msgid "One or more images is missing alt text." msgstr "" @@ -4047,7 +4168,7 @@ msgstr "" #~ msgid "Only {0} can reply." #~ msgstr "" -#: src/screens/Signup/StepHandle.tsx:98 +#: src/screens/Signup/StepHandle.tsx:149 msgid "Only contains letters, numbers, and hyphens" msgstr "" @@ -4063,7 +4184,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:253 +#: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" msgstr "" @@ -4089,7 +4210,7 @@ msgstr "" msgid "Open feed options menu" msgstr "" -#: src/view/screens/Settings/index.tsx:736 +#: src/view/screens/Settings/index.tsx:737 msgid "Open links with in-app browser" msgstr "" @@ -4109,16 +4230,16 @@ msgstr "" msgid "Open post options menu" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:451 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:861 +#: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" msgstr "" -#: src/view/screens/Settings/index.tsx:848 +#: src/view/screens/Settings/index.tsx:849 msgid "Open system log" msgstr "" @@ -4130,7 +4251,7 @@ msgstr "" msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Opens accessibility settings" msgstr "" @@ -4146,7 +4267,7 @@ msgstr "" msgid "Opens camera on device" msgstr "" -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Opens chat settings" msgstr "" @@ -4154,7 +4275,7 @@ msgstr "" msgid "Opens composer" msgstr "" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Opens configurable language settings" msgstr "" @@ -4162,7 +4283,7 @@ msgstr "" msgid "Opens device photo gallery" msgstr "" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" msgstr "" @@ -4184,27 +4305,27 @@ msgstr "" msgid "Opens list of invite codes" msgstr "" -#: src/view/screens/Settings/index.tsx:808 +#: src/view/screens/Settings/index.tsx:809 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:830 +#: src/view/screens/Settings/index.tsx:831 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "" -#: src/view/screens/Settings/index.tsx:765 +#: src/view/screens/Settings/index.tsx:766 msgid "Opens modal for changing your Bluesky password" msgstr "" -#: src/view/screens/Settings/index.tsx:720 +#: src/view/screens/Settings/index.tsx:721 msgid "Opens modal for choosing a new Bluesky handle" msgstr "" -#: src/view/screens/Settings/index.tsx:788 +#: src/view/screens/Settings/index.tsx:789 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Opens modal for email verification" msgstr "" @@ -4212,11 +4333,11 @@ msgstr "" msgid "Opens modal for using custom domain" msgstr "" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Opens moderation settings" msgstr "" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:247 msgid "Opens password reset form" msgstr "" @@ -4225,15 +4346,15 @@ msgstr "" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "Opens screen with all saved feeds" msgstr "" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "Opens the app password settings" msgstr "" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Opens the Following feed preferences" msgstr "" @@ -4245,20 +4366,20 @@ msgstr "" #~ msgid "Opens the message settings page" #~ 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 "Opens the storybook page" msgstr "" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" msgstr "" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Opens the threads preferences" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:513 +#: src/view/com/notifications/FeedItem.tsx:524 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "" @@ -4309,8 +4430,8 @@ msgstr "" msgid "Page Not Found" msgstr "" -#: src/screens/Login/LoginForm.tsx:204 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Signup/StepInfo/index.tsx:162 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4332,15 +4453,16 @@ msgstr "" msgid "Pause" msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:170 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "" -#: src/Navigation.tsx:172 +#: src/Navigation.tsx:175 msgid "People followed by @{0}" msgstr "" -#: src/Navigation.tsx:165 +#: src/Navigation.tsx:168 msgid "People following @{0}" msgstr "" @@ -4357,11 +4479,11 @@ msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:94 msgid "Pets" msgstr "" -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:95 msgid "Photography" msgstr "" @@ -4412,15 +4534,16 @@ msgstr "" msgid "Plays the GIF" msgstr "" -#: src/screens/Signup/state.ts:234 +#: src/screens/Signup/state.ts:210 msgid "Please choose your handle." msgstr "" -#: src/screens/Signup/state.ts:227 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:81 msgid "Please choose your password." msgstr "" -#: src/screens/Signup/state.ts:248 +#: src/screens/Signup/state.ts:224 msgid "Please complete the verification captcha." msgstr "" @@ -4440,10 +4563,15 @@ msgstr "" msgid "Please enter a valid word, tag, or phrase to mute" msgstr "" -#: src/screens/Signup/state.ts:213 +#: src/screens/Signup/state.ts:189 +#: src/screens/Signup/StepInfo/index.tsx:69 msgid "Please enter your email." msgstr "" +#: src/screens/Signup/StepInfo/index.tsx:63 +msgid "Please enter your invite code." +msgstr "" + #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" msgstr "" @@ -4470,7 +4598,7 @@ msgid "Please wait for your link card to finish loading" msgstr "" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:96 msgid "Politics" msgstr "" @@ -4493,9 +4621,9 @@ msgstr "" msgid "Post by {0}" msgstr "" -#: src/Navigation.tsx:191 -#: src/Navigation.tsx:198 -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:194 +#: src/Navigation.tsx:201 +#: src/Navigation.tsx:208 msgid "Post by @{0}" msgstr "" @@ -4534,6 +4662,7 @@ msgstr "" msgid "posts" msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:172 #: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "" @@ -4561,7 +4690,7 @@ msgstr "" #: src/components/Error.tsx:85 #: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/index.tsx:238 +#: src/screens/Signup/BackNextButtons.tsx:46 msgid "Press to retry" msgstr "" @@ -4586,15 +4715,15 @@ msgstr "" msgid "Prioritize Your Follows" msgstr "" -#: src/view/screens/Settings/index.tsx:654 -#: src/view/shell/desktop/RightNav.tsx:77 +#: src/view/screens/Settings/index.tsx:655 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 +#: src/view/screens/Settings/index.tsx:958 #: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "" @@ -4612,8 +4741,8 @@ msgstr "" msgid "profile" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 +#: 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 @@ -4624,11 +4753,11 @@ msgstr "" msgid "Profile updated" msgstr "" -#: src/view/screens/Settings/index.tsx:1021 +#: src/view/screens/Settings/index.tsx:1022 msgid "Protect your account by verifying your email." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:239 +#: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" msgstr "" @@ -4660,6 +4789,10 @@ msgstr "" msgid "QR code saved to your camera roll!" msgstr "" +#: src/tours/Tooltip.tsx:111 +msgid "Quick tip" +msgstr "" + #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:79 @@ -4718,7 +4851,7 @@ msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:325 +#: src/components/FeedCard.tsx:309 #: src/components/StarterPack/Wizard/WizardListCard.tsx:95 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 @@ -4767,7 +4900,7 @@ msgstr "" msgid "Remove from my feeds" msgstr "" -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:304 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "" @@ -4919,8 +5052,8 @@ msgstr "" msgid "Report post" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 -#: src/screens/StarterPack/StarterPackScreen.tsx:507 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 msgid "Report starter pack" msgstr "" @@ -4966,7 +5099,7 @@ msgstr "" msgid "Repost" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:446 +#: src/screens/StarterPack/StarterPackScreen.tsx:524 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4989,7 +5122,7 @@ msgstr "" msgid "Reposted by <0><1/>" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:184 +#: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "" @@ -5015,7 +5148,7 @@ msgstr "" msgid "Require email code to log into your account" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" msgstr "" @@ -5032,8 +5165,8 @@ msgstr "" msgid "Reset Code" msgstr "" -#: src/view/screens/Settings/index.tsx:900 -#: src/view/screens/Settings/index.tsx:903 +#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" msgstr "" @@ -5041,20 +5174,20 @@ msgstr "" msgid "Reset password" msgstr "" -#: src/view/screens/Settings/index.tsx:880 -#: src/view/screens/Settings/index.tsx:883 +#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:884 msgid "Reset preferences state" msgstr "" -#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" msgstr "" -#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" msgstr "" -#: src/screens/Login/LoginForm.tsx:292 +#: src/screens/Login/LoginForm.tsx:312 msgid "Retries login" msgstr "" @@ -5067,12 +5200,12 @@ msgstr "" #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:291 -#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:311 +#: src/screens/Login/LoginForm.tsx:318 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Signup/BackNextButtons.tsx:52 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" @@ -5083,7 +5216,7 @@ msgstr "" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:650 +#: src/screens/StarterPack/StarterPackScreen.tsx:728 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "" @@ -5179,13 +5312,13 @@ msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:372 -#: src/view/com/notifications/FeedItem.tsx:397 +#: src/view/com/notifications/FeedItem.tsx:383 +#: src/view/com/notifications/FeedItem.tsx:408 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:97 msgid "Science" msgstr "" @@ -5194,16 +5327,16 @@ msgid "Scroll to top" msgstr "" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:516 -#: src/view/com/auth/LoggedOut.tsx:119 +#: src/Navigation.tsx:524 +#: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 #: src/view/screens/Search/Search.tsx:791 #: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 +#: 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 @@ -5235,8 +5368,8 @@ msgstr "" #~ msgid "Search for someone to start a conversation with." #~ msgstr "" -#: src/view/com/auth/LoggedOut.tsx:101 -#: src/view/com/auth/LoggedOut.tsx:102 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:107 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "" @@ -5365,11 +5498,11 @@ msgstr "" msgid "Select your app language for the default text to display in the app." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:135 +#: src/screens/Signup/StepInfo/index.tsx:192 msgid "Select your date of birth" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:225 msgid "Select your interests from the options below" msgstr "" @@ -5482,23 +5615,23 @@ msgstr "" msgid "Sets Bluesky username" msgstr "" -#: src/view/screens/Settings/index.tsx:461 +#: src/view/screens/Settings/index.tsx:462 msgid "Sets color theme to dark" msgstr "" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Sets color theme to light" msgstr "" -#: src/view/screens/Settings/index.tsx:448 +#: src/view/screens/Settings/index.tsx:449 msgid "Sets color theme to system setting" msgstr "" -#: src/view/screens/Settings/index.tsx:487 +#: src/view/screens/Settings/index.tsx:488 msgid "Sets dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings/index.tsx:480 +#: src/view/screens/Settings/index.tsx:481 msgid "Sets dark theme to the dim theme" msgstr "" @@ -5518,9 +5651,9 @@ msgstr "" msgid "Sets image aspect ratio to wide" msgstr "" -#: src/Navigation.tsx:147 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:395 +#: src/Navigation.tsx:150 +#: src/view/screens/Settings/index.tsx:333 +#: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:559 #: src/view/shell/Drawer.tsx:560 msgid "Settings" @@ -5535,13 +5668,13 @@ msgid "Sexually Suggestive" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:340 -#: src/screens/StarterPack/StarterPackScreen.tsx:493 +#: 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/post-ctrls/PostCtrls.tsx:304 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "" @@ -5561,7 +5694,7 @@ msgstr "" #: src/view/com/profile/ProfileMenu.tsx:377 #: src/view/com/util/forms/PostDropdownBtn.tsx:461 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:320 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "" @@ -5572,7 +5705,7 @@ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -5590,7 +5723,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:333 +#: src/screens/StarterPack/StarterPackScreen.tsx:393 msgid "Share this starter pack" msgstr "" @@ -5609,7 +5742,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:381 +#: src/view/screens/Settings/index.tsx:382 msgid "Show" msgstr "" @@ -5617,7 +5750,7 @@ msgstr "" #~ msgid "Show all replies" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "" @@ -5736,17 +5869,17 @@ msgstr "" #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:100 #: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Login/LoginForm.tsx:177 #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.tsx:72 #: src/view/com/auth/SplashScreen.web.tsx:112 #: src/view/com/auth/SplashScreen.web.tsx:121 -#: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 #: src/view/shell/bottom-bar/BottomBar.tsx:315 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/bottom-bar/BottomBar.tsx:318 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:210 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5774,12 +5907,12 @@ msgstr "" msgid "Sign out" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 #: src/view/shell/bottom-bar/BottomBar.tsx:305 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBar.tsx:306 +#: src/view/shell/bottom-bar/BottomBar.tsx:308 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:200 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5795,7 +5928,7 @@ msgstr "" msgid "Sign-in Required" msgstr "" -#: src/view/screens/Settings/index.tsx:391 +#: src/view/screens/Settings/index.tsx:392 msgid "Signed in as" msgstr "" @@ -5804,21 +5937,21 @@ msgstr "" msgid "Signed in as @{0}" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:264 #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:261 msgid "Skip this flow" msgstr "" @@ -5827,6 +5960,10 @@ msgstr "" msgid "Software Dev" msgstr "" +#: src/components/FeedInterstitials.tsx:378 +msgid "Some other feeds you might like" +msgstr "" + #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" @@ -5851,8 +5988,8 @@ msgstr "" msgid "Something went wrong, please try again." msgstr "" -#: src/App.native.tsx:96 -#: src/App.web.tsx:78 +#: src/App.native.tsx:98 +#: src/App.web.tsx:80 msgid "Sorry! Your session expired. Please log in again." msgstr "" @@ -5882,7 +6019,7 @@ msgid "Spam; excessive mentions or replies" msgstr "" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:98 msgid "Sports" msgstr "" @@ -5902,17 +6039,22 @@ msgstr "" msgid "Start chatting" msgstr "" +#: src/tours/Tooltip.tsx:99 +msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +msgstr "" + #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:328 +#: src/Navigation.tsx:333 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:65 +#: src/components/StarterPack/StarterPackCard.tsx:70 msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:614 +#: src/screens/StarterPack/StarterPackScreen.tsx:692 msgid "Starter pack is invalid" msgstr "" @@ -5928,7 +6070,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:963 +#: src/view/screens/Settings/index.tsx:964 msgid "Status Page" msgstr "" @@ -5936,16 +6078,16 @@ msgstr "" #~ msgid "Step" #~ msgstr "" -#: src/screens/Signup/index.tsx:192 +#: src/screens/Signup/index.tsx:125 msgid "Step {0} of {1}" msgstr "" -#: src/view/screens/Settings/index.tsx:304 +#: src/view/screens/Settings/index.tsx:305 msgid "Storage cleared, you need to restart the app now." msgstr "" -#: src/Navigation.tsx:226 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:229 +#: src/view/screens/Settings/index.tsx:864 msgid "Storybook" msgstr "" @@ -5989,6 +6131,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "" +#: src/components/FeedInterstitials.tsx:246 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "" @@ -5997,7 +6140,7 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:244 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6008,6 +6151,10 @@ msgstr "" msgid "Switch Account" msgstr "" +#: src/tours/HomeTour.tsx:48 +msgid "Switch between feeds to control your experience." +msgstr "" + #: src/view/screens/Settings/index.tsx:160 msgid "Switch to {0}" msgstr "" @@ -6016,11 +6163,11 @@ msgstr "" msgid "Switches the account you are logged in to" msgstr "" -#: src/view/screens/Settings/index.tsx:445 +#: src/view/screens/Settings/index.tsx:446 msgid "System" msgstr "" -#: src/view/screens/Settings/index.tsx:851 +#: src/view/screens/Settings/index.tsx:852 msgid "System log" msgstr "" @@ -6036,12 +6183,24 @@ msgstr "" msgid "Tall" msgstr "" +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "" + #: src/view/com/util/images/AutoSizedImage.tsx:70 msgid "Tap to view fully" msgstr "" +#: src/state/shell/progress-guide.tsx:171 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "" + #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:99 msgid "Tech" msgstr "" @@ -6053,13 +6212,13 @@ msgstr "" msgid "Tell us a little more" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:86 +#: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:254 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/Settings/index.tsx:952 #: src/view/screens/TermsOfService.tsx:29 #: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" @@ -6090,12 +6249,14 @@ msgstr "" msgid "That contains the following:" msgstr "" -#: src/screens/Signup/index.tsx:100 +#: src/screens/Signup/StepHandle.tsx:50 msgid "That handle is already taken." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:105 -#: src/screens/StarterPack/StarterPackScreen.tsx:106 +#: src/screens/StarterPack/StarterPackScreen.tsx:96 +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:136 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6118,7 +6279,12 @@ msgstr "" msgid "The Copyright Policy has been moved to <0/>" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:177 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6147,7 +6313,7 @@ msgstr "" msgid "The Privacy Policy has been moved to <0/>" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:624 +#: src/screens/StarterPack/StarterPackScreen.tsx:702 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6205,11 +6371,11 @@ msgstr "" msgid "There was an issue contacting your server" msgstr "" -#: src/view/com/notifications/Feed.tsx:126 +#: src/view/com/notifications/Feed.tsx:125 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/view/com/posts/Feed.tsx:299 +#: src/view/com/posts/Feed.tsx:459 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -6405,7 +6571,7 @@ msgid "This post has been deleted." msgstr "" #: src/view/com/util/forms/PostDropdownBtn.tsx:458 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:317 +#: 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 "" @@ -6466,12 +6632,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:594 +#: src/view/screens/Settings/index.tsx:595 msgid "Thread preferences" msgstr "" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/Settings/index.tsx:605 msgid "Thread Preferences" msgstr "" @@ -6483,7 +6649,7 @@ msgstr "" msgid "Threaded Mode" msgstr "" -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:287 msgid "Threads Preferences" msgstr "" @@ -6534,11 +6700,11 @@ msgctxt "action" msgid "Try again" msgstr "" -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:100 msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:745 +#: src/view/screens/Settings/index.tsx:746 msgid "Two-factor authentication" msgstr "" @@ -6560,14 +6726,14 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:74 #: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:79 +#: src/screens/Signup/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:548 +#: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Unable to delete" msgstr "" @@ -6832,7 +6998,7 @@ msgstr "" msgid "User Lists" msgstr "" -#: src/screens/Login/LoginForm.tsx:177 +#: src/screens/Login/LoginForm.tsx:197 msgid "Username or email address" msgstr "" @@ -6871,15 +7037,15 @@ msgstr "" msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:982 +#: src/view/screens/Settings/index.tsx:983 msgid "Verify email" msgstr "" -#: src/view/screens/Settings/index.tsx:1007 +#: src/view/screens/Settings/index.tsx:1008 msgid "Verify my email" msgstr "" -#: src/view/screens/Settings/index.tsx:1016 +#: src/view/screens/Settings/index.tsx:1017 msgid "Verify My Email" msgstr "" @@ -6900,7 +7066,7 @@ msgstr "" #~ msgid "Version {0}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:935 +#: src/view/screens/Settings/index.tsx:936 msgid "Version {appVersion} {bundleInfo}" msgstr "" @@ -6913,7 +7079,7 @@ msgstr "" msgid "View {0}'s avatar" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:234 +#: src/view/com/notifications/FeedItem.tsx:245 msgid "View {0}'s profile" msgstr "" @@ -6962,7 +7128,7 @@ msgid "View users who like this feed" msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -6997,7 +7163,7 @@ msgstr "" msgid "We estimate {estimatedTime} until your account is ready." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:231 +#: src/screens/Onboarding/StepFinished.tsx:239 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "" @@ -7021,7 +7187,7 @@ msgstr "" msgid "We were unable to load your configured labelers at this time." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:157 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" @@ -7029,7 +7195,7 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:162 msgid "We'll use this to help customize your experience." msgstr "" @@ -7037,7 +7203,7 @@ msgstr "" msgid "We're having network issues, try again" msgstr "" -#: src/screens/Signup/index.tsx:155 +#: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" msgstr "" @@ -7082,7 +7248,7 @@ msgstr "" msgid "Welcome, friend!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" msgstr "" @@ -7173,7 +7339,7 @@ msgid "Write your reply" msgstr "" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:101 msgid "Writers" msgstr "" @@ -7192,7 +7358,7 @@ msgstr "" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:560 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 msgid "Yes, delete this starter pack" msgstr "" @@ -7204,7 +7370,7 @@ msgstr "" msgid "Yesterday, {time}" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:68 +#: src/components/StarterPack/StarterPackCard.tsx:73 msgid "you" msgstr "" @@ -7421,23 +7587,23 @@ msgstr "" msgid "You: {short}" msgstr "" -#: src/screens/Signup/index.tsx:169 +#: src/screens/Signup/index.tsx:102 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:174 +#: 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:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "You'll stay updated with these feeds" msgstr "" @@ -7456,7 +7622,7 @@ msgstr "" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:228 +#: src/screens/Onboarding/StepFinished.tsx:236 msgid "You're ready to go!" msgstr "" @@ -7469,7 +7635,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/screens/Signup/index.tsx:202 +#: src/screens/Signup/index.tsx:135 msgid "Your account" msgstr "" @@ -7481,7 +7647,7 @@ msgstr "" msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" msgstr "" @@ -7498,7 +7664,8 @@ msgstr "" #~ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "" @@ -7511,11 +7678,15 @@ msgstr "" msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "" +#: src/state/shell/progress-guide.tsx:161 +msgid "Your first like!" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "" -#: src/screens/Signup/StepHandle.tsx:73 +#: src/screens/Signup/StepHandle.tsx:122 msgid "Your full handle will be" msgstr "" @@ -7535,7 +7706,7 @@ msgstr "" msgid "Your post has been published" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:243 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "" @@ -7555,6 +7726,6 @@ msgstr "" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" -#: src/screens/Signup/index.tsx:204 +#: src/screens/Signup/index.tsx:137 msgid "Your user handle" msgstr "" diff --git a/src/locale/locales/es/messages.po b/src/locale/locales/es/messages.po index a566231f9e..08f23b11ed 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:283 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -59,7 +59,7 @@ msgstr "" msgid "{0, plural, one {following} other {following}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:259 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" @@ -67,7 +67,7 @@ msgstr "" msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:216 +#: src/components/FeedCard.tsx:206 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -76,7 +76,7 @@ msgstr "" msgid "{0, plural, one {post} other {posts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:217 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" @@ -84,15 +84,15 @@ msgstr "" msgid "{0, plural, one {repost} other {reposts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:262 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:378 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" msgstr "" @@ -148,7 +148,7 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:503 +#: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} siguiendo" @@ -242,10 +242,14 @@ msgstr "" msgid "⚠Invalid Handle" msgstr "⚠Nombre de usuario inválido" -#: src/screens/Login/LoginForm.tsx:247 +#: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" msgstr "Confirmación 2FA" +#: src/tours/Tooltip.tsx:70 +msgid "A help tooltip" +msgstr "" + #: src/view/com/util/ViewHeader.tsx:93 #: src/view/screens/Search/Search.tsx:684 msgid "Access navigation links and settings" @@ -256,15 +260,15 @@ msgid "Access profile and other navigation links" msgstr "" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:518 +#: src/view/screens/Settings/index.tsx:519 msgid "Accessibility" msgstr "Accesibilidad" -#: src/view/screens/Settings/index.tsx:509 +#: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" msgstr "Ajustes de accesibilidad" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "Ajustes de accesibilidad" @@ -273,9 +277,9 @@ msgstr "Ajustes de accesibilidad" #~ msgid "account" #~ msgstr "cuenta" -#: src/screens/Login/LoginForm.tsx:170 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:190 +#: src/view/screens/Settings/index.tsx:346 +#: src/view/screens/Settings/index.tsx:753 msgid "Account" msgstr "Cuenta" @@ -346,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:422 -#: src/view/screens/Settings/index.tsx:431 +#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:432 msgid "Add account" msgstr "Añadir cuenta" @@ -398,7 +402,7 @@ msgstr "" msgid "Add the following DNS record to your domain:" msgstr "Añade el siguiente registro DNS a tu dominio:" -#: src/components/FeedCard.tsx:305 +#: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" msgstr "" @@ -438,15 +442,19 @@ msgid "Adult content is disabled." msgstr "El contenido adulto esta desactivado." #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Advanced" msgstr "Avanzado" -#: src/screens/StarterPack/StarterPackScreen.tsx:301 +#: src/state/shell/progress-guide.tsx:176 +msgid "Algorithm training complete!" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:360 msgid "All accounts have been followed!" msgstr "" -#: src/view/screens/Feeds.tsx:721 +#: src/view/screens/Feeds.tsx:734 msgid "All the feeds you've saved, right in one place." msgstr "Todos tus feeds guardados, en un solo lugar." @@ -476,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:177 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 msgid "ALT" msgstr "ALT" @@ -486,7 +494,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Texto alternativo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:183 +#: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" msgstr "Texto alternativo" @@ -524,7 +532,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "Ocurrió un error al intentar eliminar el mensaje. Intenta de nuevo." -#: src/screens/StarterPack/StarterPackScreen.tsx:303 +#: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" msgstr "" @@ -534,6 +542,8 @@ msgstr "Un problema no presente en estas opciones" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:309 +#: src/components/ProfileCard.tsx:329 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -541,12 +551,12 @@ msgstr "Un problema no presente en estas opciones" msgid "An issue occurred, please try again." msgstr "Ocurrió un problema. Intenta de nuevo." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" msgstr "Ocurrió un error desconocido" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:280 +#: src/view/com/notifications/FeedItem.tsx:291 msgid "and" msgstr "y" @@ -555,7 +565,7 @@ msgstr "y" msgid "Animals" msgstr "Animales" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" msgstr "GIF animado" @@ -579,13 +589,13 @@ 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:697 +#: src/view/screens/Settings/index.tsx:698 msgid "App password settings" msgstr "Ajustes de contraseñas de app" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:269 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/view/screens/Settings/index.tsx:707 msgid "App Passwords" msgstr "Contraseñas de la app" @@ -614,7 +624,7 @@ msgstr "Apelación enviada" msgid "Appeal this decision" msgstr "" -#: src/view/screens/Settings/index.tsx:439 +#: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "Aparencia" @@ -623,7 +633,7 @@ msgstr "Aparencia" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -651,7 +661,7 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "¿Seguro que quieres eliminar {0} de tus feeds?" -#: src/components/FeedCard.tsx:322 +#: src/components/FeedCard.tsx:306 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -676,7 +686,7 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Desnudez artística o no erótica." -#: src/screens/Signup/StepHandle.tsx:119 +#: src/screens/Signup/StepHandle.tsx:170 msgid "At least 3 characters" msgstr "Al menos 3 caracteres" @@ -687,14 +697,15 @@ msgstr "Al menos 3 caracteres" #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:278 -#: src/screens/Login/LoginForm.tsx:284 +#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:304 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/index.tsx:231 +#: 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" @@ -704,7 +715,7 @@ msgstr "Atrás" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Basado en tus intereses en {interestsText}" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "General" @@ -712,7 +723,7 @@ msgstr "General" msgid "Birthday" msgstr "Cumpleaños" -#: src/view/screens/Settings/index.tsx:377 +#: src/view/screens/Settings/index.tsx:378 msgid "Birthday:" msgstr "Cumpleaños:" @@ -756,7 +767,7 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Cuentas bloqueadas" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:145 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Cuentas bloqueadas" @@ -798,6 +809,10 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky es una red abierta donde puedes elegir un proveedor de servicio. Servicios personalizados ya están disponibles en beta para desarrolladores." +#: src/components/ProgressGuide/List.tsx:55 +msgid "Bluesky is better with friends!" +msgstr "" + #: src/components/StarterPack/ProfileStarterPacks.tsx:282 msgid "Bluesky will choose a set of recommended accounts from people in your network." msgstr "" @@ -819,6 +834,24 @@ msgstr "" msgid "Books" msgstr "Libros" +#: src/components/FeedInterstitials.tsx:281 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:411 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:266 +#: src/components/FeedInterstitials.tsx:396 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:289 +#: src/components/FeedInterstitials.tsx:420 +msgid "Browse more suggestions on the Explore page" +msgstr "" + #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" @@ -933,17 +966,17 @@ msgstr "" msgid "Change" msgstr "Cambiar" -#: src/view/screens/Settings/index.tsx:371 +#: src/view/screens/Settings/index.tsx:372 msgctxt "action" msgid "Change" msgstr "Cambiar" -#: src/view/screens/Settings/index.tsx:718 +#: src/view/screens/Settings/index.tsx:719 msgid "Change handle" msgstr "Cambiar nombre de usuario" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change Handle" msgstr "Cambiar nombre de usuario" @@ -951,12 +984,12 @@ msgstr "Cambiar nombre de usuario" msgid "Change my email" msgstr "Cambiar mi correo electrónico" -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/index.tsx:764 msgid "Change password" msgstr "Cambiar contraseña" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Change Password" msgstr "Cambiar contraseña" @@ -968,9 +1001,9 @@ msgstr "Cambiar idioma del post a {0}" msgid "Change Your Email" msgstr "Cambiar correo electrónico" -#: src/Navigation.tsx:310 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:313 +#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" msgstr "Chat" @@ -980,14 +1013,14 @@ msgstr "Chat muteado" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:318 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" msgstr "Ajustes de chat" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" msgstr "" @@ -1000,7 +1033,7 @@ msgstr "Chat demuteado" msgid "Check my status" msgstr "" -#: src/screens/Login/LoginForm.tsx:271 +#: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." msgstr "Te enviamos un código de inicio de sesión a tu correo. Introducelo aquí." @@ -1012,6 +1045,14 @@ msgstr "Te enviamos un código de verificación a tu correo. Introducelo aquí:" #~ msgid "Choose \"Everybody\" or \"Nobody\"" #~ msgstr "Elige \"Todos\" o \"Nadie\"" +#: src/screens/Onboarding/StepInterests/index.tsx:190 +msgid "Choose 3 or more:" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:325 +msgid "Choose at least {0} more" +msgstr "" + #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" msgstr "" @@ -1028,7 +1069,7 @@ msgstr "" msgid "Choose Service" msgstr "Elige proveedor" -#: src/screens/Onboarding/StepFinished.tsx:273 +#: src/screens/Onboarding/StepFinished.tsx:281 msgid "Choose the algorithms that power your custom feeds." msgstr "Tu eliges los algoritmos que usar en tus feed." @@ -1045,23 +1086,23 @@ msgstr "" #~ msgid "Choose your main feeds" #~ msgstr "Elige tus feeds principales" -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" msgstr "Elige tu contraseña" -#: src/view/screens/Settings/index.tsx:910 +#: src/view/screens/Settings/index.tsx:911 msgid "Clear all legacy storage data" msgstr "Borrar todos los datos de almacenamiento heredados" -#: src/view/screens/Settings/index.tsx:913 +#: src/view/screens/Settings/index.tsx:914 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:922 +#: src/view/screens/Settings/index.tsx:923 msgid "Clear all storage data" msgstr "Borrar todos los datos de almacenamiento" -#: src/view/screens/Settings/index.tsx:925 +#: src/view/screens/Settings/index.tsx:926 msgid "Clear all storage data (restart after this)" msgstr "Borrar todos los datos de almacenamiento (reiniciar después de esto)" @@ -1070,11 +1111,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:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" msgstr "" @@ -1119,7 +1160,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:189 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "Close" msgstr "Cerrar" @@ -1182,11 +1223,11 @@ msgstr "" msgid "Closes viewer for header image" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:226 +#: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:437 msgid "Collapses list of users for a given notification" msgstr "" @@ -1200,16 +1241,16 @@ msgstr "" msgid "Comics" msgstr "" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:259 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Directrices de la comunidad" -#: src/screens/Onboarding/StepFinished.tsx:286 +#: src/screens/Onboarding/StepFinished.tsx:294 msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:206 +#: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" msgstr "" @@ -1266,7 +1307,7 @@ msgstr "" msgid "Confirm your birthdate" msgstr "" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:272 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 @@ -1276,11 +1317,11 @@ msgstr "" msgid "Confirmation code" msgstr "Código de confirmación" -#: src/screens/Login/LoginForm.tsx:305 +#: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." msgstr "Conectando..." -#: src/screens/Signup/index.tsx:276 +#: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "" @@ -1321,7 +1362,7 @@ msgstr "Advertencias de contenido" msgid "Context menu backdrop, click to close the menu." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:258 +#: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Continuar" @@ -1334,9 +1375,9 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:255 +#: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/index.tsx:251 +#: src/screens/Signup/BackNextButtons.tsx:59 msgid "Continue to next step" msgstr "" @@ -1361,7 +1402,7 @@ msgstr "" msgid "Copied" msgstr "Copiado" -#: src/view/screens/Settings/index.tsx:263 +#: src/view/screens/Settings/index.tsx:264 msgid "Copied build version to clipboard" msgstr "" @@ -1370,7 +1411,7 @@ msgstr "" #: 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/post-ctrls/PostCtrls.tsx:350 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "" @@ -1427,7 +1468,7 @@ msgstr "Copiar el texto de la post" msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Política de derechos de autor" @@ -1465,7 +1506,7 @@ msgstr "" msgid "Create a new account" msgstr "Crear una cuenta nueva" -#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" msgstr "" @@ -1475,7 +1516,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:338 msgid "Create a starter pack" msgstr "" @@ -1483,7 +1524,7 @@ msgstr "" msgid "Create a starter pack for me" msgstr "" -#: src/screens/Signup/index.tsx:154 +#: src/screens/Signup/index.tsx:88 msgid "Create Account" msgstr "Crear una cuenta" @@ -1535,7 +1576,7 @@ msgstr "" msgid "Custom domain" msgstr "Dominio personalizado" -#: src/view/screens/Feeds.tsx:747 +#: src/view/screens/Feeds.tsx:760 #: src/view/screens/Search/Explore.tsx:390 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" @@ -1544,8 +1585,8 @@ msgstr "" msgid "Customize media from external sites." msgstr "Preferencias sobre medios externos." -#: src/view/screens/Settings/index.tsx:458 -#: src/view/screens/Settings/index.tsx:484 +#: src/view/screens/Settings/index.tsx:459 +#: src/view/screens/Settings/index.tsx:485 msgid "Dark" msgstr "" @@ -1553,24 +1594,24 @@ msgstr "" msgid "Dark mode" msgstr "" -#: src/view/screens/Settings/index.tsx:471 +#: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:134 +#: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" msgstr "" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:818 +#: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:873 +#: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" msgstr "" @@ -1579,16 +1620,16 @@ msgid "Debug panel" msgstr "" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:484 -#: src/screens/StarterPack/StarterPackScreen.tsx:563 -#: src/screens/StarterPack/StarterPackScreen.tsx:643 +#: 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/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "" -#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:829 msgid "Delete account" msgstr "Borrar la cuenta" @@ -1608,8 +1649,8 @@ msgstr "Borrar la contraseña de la app" msgid "Delete app password?" msgstr "" -#: src/view/screens/Settings/index.tsx:890 -#: src/view/screens/Settings/index.tsx:893 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" msgstr "" @@ -1633,7 +1674,7 @@ msgstr "" msgid "Delete my account" msgstr "Borrar mi cuenta" -#: src/view/screens/Settings/index.tsx:840 +#: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" msgstr "" @@ -1642,12 +1683,12 @@ msgstr "" msgid "Delete post" msgstr "Borrar una post" -#: src/screens/StarterPack/StarterPackScreen.tsx:478 -#: src/screens/StarterPack/StarterPackScreen.tsx:634 +#: src/screens/StarterPack/StarterPackScreen.tsx:556 +#: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" msgstr "" @@ -1667,7 +1708,7 @@ msgstr "" msgid "Deleted post." msgstr "Se borró la post." -#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" msgstr "" @@ -1686,7 +1727,7 @@ msgstr "" msgid "Did you want to say anything?" msgstr "¿Quieres decir algo?" -#: src/view/screens/Settings/index.tsx:477 +#: src/view/screens/Settings/index.tsx:478 msgid "Dim" msgstr "" @@ -1728,6 +1769,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Evitar que las aplicaciones muestren mi cuenta a los usuarios desconectados" +#: src/tours/HomeTour.tsx:70 +msgid "Discover learns which posts you like as you browse." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -1737,10 +1782,14 @@ msgstr "" msgid "Discover new feeds" msgstr "" -#: src/view/screens/Feeds.tsx:744 +#: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" msgstr "" +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "" + #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" msgstr "" @@ -1761,7 +1810,7 @@ msgstr "Con panel de DNS" msgid "Does not include nudity." msgstr "" -#: src/screens/Signup/StepHandle.tsx:105 +#: src/screens/Signup/StepHandle.tsx:156 msgid "Doesn't begin or end with a hyphen" msgstr "" @@ -1806,7 +1855,7 @@ msgstr "" msgid "Done{extraText}" msgstr "Listo{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" msgstr "" @@ -1815,7 +1864,7 @@ msgstr "" msgid "Download CAR file" msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:272 +#: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" msgstr "" @@ -1863,11 +1912,11 @@ msgstr "p. ej. Usuarios que constantemente responden con publicidad." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cada código funciona una vez. Recibirás más códigos de invitación periódicamente." -#: src/screens/StarterPack/StarterPackScreen.tsx:473 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "" @@ -1898,9 +1947,9 @@ msgstr "Editar los detalles de la lista" msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:271 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 +#: src/Navigation.tsx:274 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Editar mis noticias" @@ -1928,7 +1977,7 @@ msgstr "Editar el perfil" #~ msgid "Edit Saved Feeds" #~ msgstr "Editar mis noticias guardadas" -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" msgstr "" @@ -1948,7 +1997,7 @@ msgstr "" msgid "Edit your profile description" msgstr "" -#: src/Navigation.tsx:335 +#: src/Navigation.tsx:343 msgid "Edit your starter pack" msgstr "" @@ -1961,7 +2010,7 @@ msgstr "" msgid "Either choose \"Everybody\" or \"Nobody\"" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "Correo electrónico" @@ -1987,7 +2036,7 @@ msgstr "Correo electrónico actualizado" msgid "Email verified" msgstr "" -#: src/view/screens/Settings/index.tsx:349 +#: src/view/screens/Settings/index.tsx:350 msgid "Email:" msgstr "Correo electrónico:" @@ -2053,6 +2102,10 @@ msgstr "Fin de noticias" #~ 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 "" + #: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "" @@ -2087,7 +2140,7 @@ msgid "Enter your birth date" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:92 +#: src/screens/Signup/StepInfo/index.tsx:152 msgid "Enter your email address" msgstr "Introduce la dirección de correo electrónico" @@ -2107,11 +2160,11 @@ msgstr "Introduce tu nombre de usuario y contraseña" msgid "Error occurred while saving file" msgstr "" -#: src/screens/Signup/StepCaptcha/index.tsx:51 +#: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:197 +#: src/screens/Onboarding/StepInterests/index.tsx:216 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Error:" @@ -2166,7 +2219,7 @@ msgstr "" msgid "Expand alt text" msgstr "Expandir el texto alt" -#: src/view/com/notifications/FeedItem.tsx:227 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" msgstr "" @@ -2183,12 +2236,12 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/view/screens/Settings/index.tsx:786 +#: src/view/screens/Settings/index.tsx:787 msgid "Export my data" msgstr "" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:797 +#: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" msgstr "" @@ -2202,13 +2255,13 @@ msgstr "Medios externos" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Es posible que medios externos permitan que otros sitios recopilen datos sobre ti y tu dispositivo. No se envía o solicita ningún tipo de información hasta que presiones el botón de \"play\"." -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:293 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/view/screens/Settings/index.tsx:680 msgid "External Media Preferences" msgstr "Medios externos" -#: src/view/screens/Settings/index.tsx:670 +#: src/view/screens/Settings/index.tsx:671 msgid "External media settings" msgstr "Medios externos" @@ -2234,7 +2287,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:597 +#: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" msgstr "" @@ -2286,7 +2339,7 @@ msgstr "" msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:285 +#: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" msgstr "" @@ -2295,11 +2348,11 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:211 +#: src/Navigation.tsx:214 msgid "Feed" msgstr "" -#: src/components/FeedCard.tsx:161 +#: src/components/FeedCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "" @@ -2312,17 +2365,18 @@ msgstr "" msgid "Feed toggle" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Comentarios" -#: src/Navigation.tsx:320 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 +#: src/Navigation.tsx:323 +#: 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:373 +#: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" @@ -2336,7 +2390,7 @@ msgstr "Las noticias son algoritmos personalizados que los usuarios construyen c #~ msgid "Feeds can be topical as well!" #~ msgstr "" -#: src/components/FeedCard.tsx:282 +#: src/components/FeedCard.tsx:266 msgid "Feeds updated!" msgstr "" @@ -2352,7 +2406,7 @@ msgstr "" msgid "Filter from feeds" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 msgid "Finalizing" msgstr "" @@ -2362,6 +2416,10 @@ msgstr "" msgid "Find accounts to follow" msgstr "" +#: src/tours/HomeTour.tsx:88 +msgid "Find more feeds and accounts to follow in the Explore page." +msgstr "" + #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "" @@ -2378,11 +2436,15 @@ msgstr "Ajusta los hilos de discusión." msgid "Finish" msgstr "" +#: src/tours/Tooltip.tsx:149 +msgid "Finish tour and begin using the application" +msgstr "" + #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:269 +#: src/screens/Onboarding/StepFinished.tsx:277 msgid "Flexible" msgstr "" @@ -2395,6 +2457,8 @@ msgstr "" msgid "Flip vertically" msgstr "" +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:341 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2417,13 +2481,17 @@ msgstr "Seguir {0}" msgid "Follow {name}" msgstr "" +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "" + #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" msgstr "Seguir cuenta" -#: src/screens/StarterPack/StarterPackScreen.tsx:345 -#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:405 +#: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" msgstr "" @@ -2447,7 +2515,7 @@ msgstr "" #~ msgid "Followed by" #~ msgstr "" -#: src/view/com/profile/ProfileCard.tsx:227 +#: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" msgstr "Seguido por {0}" @@ -2475,16 +2543,20 @@ msgstr "Usuarios seguidos" msgid "Followed users only" msgstr "Solo usuarios seguidos" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:197 msgid "followed you" msgstr "ha comenzado a seguirte" +#: src/view/com/notifications/FeedItem.tsx:195 +msgid "followed you back" +msgstr "" + #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "Seguidores" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" msgstr "" @@ -2493,17 +2565,20 @@ msgstr "" msgid "Followers you know" msgstr "" +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:335 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:630 +#: src/view/screens/Feeds.tsx:631 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Siguiendo" +#: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Siguiendo {0}" @@ -2512,21 +2587,25 @@ msgstr "Siguiendo {0}" msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:573 +#: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" msgstr "Feed de Siguiendo" -#: src/Navigation.tsx:277 +#: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "Following Feed Preferences" msgstr "Feed de Siguiendo" +#: src/tours/HomeTour.tsx:59 +msgid "Following shows the latest posts from people you follow." +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "Te sigue" -#: src/view/com/profile/ProfileCard.tsx:152 +#: src/components/Pills.tsx:165 msgid "Follows You" msgstr "Te sigue" @@ -2548,11 +2627,11 @@ msgstr "Por razones de seguridad, no podrás volver a verla de nuevo. Si pierdes msgid "Forgot Password" msgstr "Olvidé mi contraseña" -#: src/screens/Login/LoginForm.tsx:227 +#: src/screens/Login/LoginForm.tsx:246 msgid "Forgot password?" msgstr "¿Has olvidado tu contraseña?" -#: src/screens/Login/LoginForm.tsx:238 +#: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" msgstr "" @@ -2586,6 +2665,10 @@ msgstr "" msgid "Get Started" msgstr "Comenzar" +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "" + #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" msgstr "" @@ -2600,31 +2683,35 @@ msgstr "Violaciones flagrantes de la Ley o de los Términos de servicio" #: src/components/moderation/ScreenHider.tsx:151 #: src/components/moderation/ScreenHider.tsx:160 -#: src/view/com/auth/LoggedOut.tsx:78 -#: src/view/com/auth/LoggedOut.tsx:79 +#: src/view/com/auth/LoggedOut.tsx:80 +#: src/view/com/auth/LoggedOut.tsx:81 #: src/view/screens/NotFound.tsx:55 #: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Volver" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:656 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Volver" +#: 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/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:225 +#: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" msgstr "" @@ -2653,6 +2740,10 @@ msgstr "Ir al siguiente" msgid "Go to profile" msgstr "" +#: src/tours/Tooltip.tsx:138 +msgid "Go to the next step of the tour" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "" @@ -2661,6 +2752,10 @@ msgstr "" msgid "Graphic Media" msgstr "Contenido Gráfico" +#: src/state/shell/progress-guide.tsx:166 +msgid "Half way there!" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" msgstr "Nombre de usuarioContenido Gráfico" @@ -2673,19 +2768,19 @@ msgstr "Vibración" msgid "Harassment, trolling, or intolerance" msgstr "Acoso, trolling o intolerancia" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:308 msgid "Hashtag" msgstr "Hashtag" -#: src/components/RichText.tsx:216 +#: src/components/RichText.tsx:218 msgid "Hashtag: #{tag}" msgstr "Hashtag: #{tag}" -#: src/screens/Signup/index.tsx:272 +#: src/screens/Signup/index.tsx:167 msgid "Having trouble?" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/desktop/RightNav.tsx:99 #: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Ayuda" @@ -2721,7 +2816,7 @@ msgstr "Aquí tienes tu contraseña de la app." msgid "Hide" msgstr "Ocultar" -#: src/view/com/notifications/FeedItem.tsx:433 +#: src/view/com/notifications/FeedItem.tsx:444 msgctxt "action" msgid "Hide" msgstr "Ocultar" @@ -2740,7 +2835,7 @@ msgstr "" msgid "Hide this post?" msgstr "¿Ocultar este post?" -#: src/view/com/notifications/FeedItem.tsx:424 +#: src/view/com/notifications/FeedItem.tsx:435 msgid "Hide user list" msgstr "Ocultar lista de usuarios" @@ -2772,10 +2867,10 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/Navigation.tsx:511 -#: src/Navigation.tsx:531 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: src/Navigation.tsx:519 +#: src/Navigation.tsx:539 +#: 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 msgid "Home" @@ -2786,8 +2881,8 @@ msgid "Host:" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:160 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:180 +#: src/screens/Signup/StepInfo/index.tsx:106 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "Proveedor de alojamiento" @@ -2887,19 +2982,19 @@ msgstr "" msgid "Input password for account deletion" msgstr "" -#: src/screens/Login/LoginForm.tsx:266 +#: src/screens/Login/LoginForm.tsx:286 msgid "Input the code which has been emailed to you" msgstr "" #: src/screens/Login/LoginForm.tsx:221 -msgid "Input the password tied to {identifier}" -msgstr "" +#~ msgid "Input the password tied to {identifier}" +#~ msgstr "" -#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Login/LoginForm.tsx:215 msgid "Input the username or email address you used at signup" msgstr "" -#: src/screens/Login/LoginForm.tsx:220 +#: src/screens/Login/LoginForm.tsx:241 msgid "Input your password" msgstr "" @@ -2907,7 +3002,7 @@ msgstr "" msgid "Input your preferred hosting provider" msgstr "" -#: src/screens/Signup/StepHandle.tsx:63 +#: src/screens/Signup/StepHandle.tsx:111 msgid "Input your user handle" msgstr "" @@ -2915,7 +3010,7 @@ msgstr "" msgid "Introducing Direct Messages" msgstr "" -#: src/screens/Login/LoginForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:140 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "" @@ -2924,7 +3019,7 @@ msgstr "" msgid "Invalid or unsupported post record" msgstr "" -#: src/screens/Login/LoginForm.tsx:140 +#: src/screens/Login/LoginForm.tsx:145 msgid "Invalid username or password" msgstr "Nombre de usuario o contraseña no válidos" @@ -2932,11 +3027,11 @@ msgstr "Nombre de usuario o contraseña no válidos" msgid "Invite a Friend" msgstr "Invita a un amigo" -#: src/screens/Signup/StepInfo/index.tsx:58 +#: src/screens/Signup/StepInfo/index.tsx:124 msgid "Invite code" msgstr "Código de invitación" -#: src/screens/Signup/state.ts:275 +#: src/screens/Signup/state.ts:251 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "No se acepta el código de invitación. Comprueba que lo has introducido correctamente e inténtalo de nuevo." @@ -2972,8 +3067,10 @@ msgstr "" msgid "Jobs" msgstr "Tareas" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackScreen.tsx:432 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" msgstr "" @@ -3022,16 +3119,16 @@ msgstr "" msgid "Language selection" msgstr "Escoger el idioma" -#: src/view/screens/Settings/index.tsx:530 +#: src/view/screens/Settings/index.tsx:531 msgid "Language settings" msgstr "Ajustes de Idiomas" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:155 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Ajustes de Idiomas" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Languages" msgstr "Idiomas" @@ -3091,7 +3188,7 @@ msgstr "Salir de Bluesky" msgid "left to go." msgstr "" -#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:309 msgid "Legacy storage cleared, you need to restart the app now." msgstr "" @@ -3104,11 +3201,12 @@ msgstr "" msgid "Let's get your password reset!" msgstr "¡Vamos a restablecer tu contraseña!" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 +#: src/tours/Tooltip.tsx:151 msgid "Let's go!" msgstr "" -#: src/view/screens/Settings/index.tsx:452 +#: src/view/screens/Settings/index.tsx:453 msgid "Light" msgstr "" @@ -3116,14 +3214,23 @@ msgstr "" #~ msgid "Like" #~ msgstr "" +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:167 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 #: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Dar «me gusta» a esta noticia" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:216 -#: src/Navigation.tsx:221 +#: src/Navigation.tsx:219 +#: src/Navigation.tsx:224 msgid "Liked by" msgstr "Le ha gustado a" @@ -3147,11 +3254,11 @@ msgstr "" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "" -#: src/view/com/notifications/FeedItem.tsx:190 +#: src/view/com/notifications/FeedItem.tsx:201 msgid "liked your custom feed" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:182 +#: src/view/com/notifications/FeedItem.tsx:185 msgid "liked your post" msgstr "" @@ -3163,7 +3270,7 @@ msgstr "Cantidad de «Me gusta»" msgid "Likes on this post" msgstr "" -#: src/Navigation.tsx:185 +#: src/Navigation.tsx:188 msgid "List" msgstr "" @@ -3175,7 +3282,7 @@ msgstr "Avatar de la lista" msgid "List blocked" msgstr "" -#: src/components/FeedCard.tsx:155 +#: src/components/ListCard.tsx:113 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "" @@ -3200,10 +3307,10 @@ msgstr "" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:125 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/desktop/LeftNav.tsx:385 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 msgid "Lists" @@ -3240,7 +3347,7 @@ msgstr "Cargar posts nuevos" msgid "Loading..." msgstr "Cargando..." -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:239 msgid "Log" msgstr "" @@ -3264,7 +3371,7 @@ msgstr "Visibilidad de desconexión" msgid "Login to account that is not listed" msgstr "Acceder a una cuenta que no está en la lista" -#: src/components/RichText.tsx:217 +#: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" msgstr "" @@ -3349,7 +3456,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:526 +#: src/Navigation.tsx:534 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3364,9 +3471,9 @@ msgstr "" msgid "Misleading Account" msgstr "" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:130 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Moderation" msgstr "Moderación" @@ -3374,7 +3481,7 @@ msgstr "Moderación" msgid "Moderation details" msgstr "" -#: src/components/FeedCard.tsx:157 +#: src/components/ListCard.tsx:109 #: src/view/com/lists/ListCard.tsx:95 #: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" @@ -3402,16 +3509,16 @@ msgstr "" msgid "Moderation lists" msgstr "Listas de moderación" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Listas de moderación" -#: src/view/screens/Settings/index.tsx:555 +#: src/view/screens/Settings/index.tsx:556 msgid "Moderation settings" msgstr "" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:234 msgid "Moderation states" msgstr "" @@ -3444,6 +3551,10 @@ msgstr "" msgid "Movies" msgstr "" +#: src/screens/Onboarding/state.ts:91 +msgid "Music" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "" @@ -3517,7 +3628,7 @@ msgstr "Muteado" msgid "Muted accounts" msgstr "Cuentas muteadas" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Cuentas muteadas" @@ -3543,19 +3654,19 @@ msgstr "Nadie puede ver a quien muteas. Las cuentas muteadas pueden interactuar msgid "My Birthday" msgstr "Mi cumpleaños" -#: src/view/screens/Feeds.tsx:718 +#: src/view/screens/Feeds.tsx:731 msgid "My Feeds" msgstr "Mis feeds" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Mi perfil" -#: src/view/screens/Settings/index.tsx:616 +#: src/view/screens/Settings/index.tsx:617 msgid "My saved feeds" msgstr "Mis feeds guardados" -#: src/view/screens/Settings/index.tsx:622 +#: src/view/screens/Settings/index.tsx:623 msgid "My Saved Feeds" msgstr "Mis feeds guardados" @@ -3576,16 +3687,20 @@ msgid "Name or Description Violates Community Standards" msgstr "" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:92 msgid "Nature" msgstr "" +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "" + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:332 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "" @@ -3598,7 +3713,7 @@ msgstr "" msgid "Need to report a copyright violation?" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:257 +#: src/screens/Onboarding/StepFinished.tsx:265 msgid "Never lose access to your followers or data." msgstr "" @@ -3642,17 +3757,17 @@ msgctxt "action" msgid "New post" msgstr "" -#: src/view/screens/Feeds.tsx:580 +#: 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/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/shell/desktop/LeftNav.tsx:278 msgid "New post" msgstr "Nuevo post" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:284 msgctxt "action" msgid "New Post" msgstr "Nuevo post" @@ -3670,21 +3785,22 @@ msgid "Newest replies first" msgstr "" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:93 msgid "News" msgstr "Noticias" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:311 -#: src/screens/Login/LoginForm.tsx:318 +#: src/screens/Login/LoginForm.tsx:331 +#: src/screens/Login/LoginForm.tsx:338 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:258 +#: src/screens/Signup/BackNextButtons.tsx:66 #: src/screens/StarterPack/Wizard/index.tsx:184 #: src/screens/StarterPack/Wizard/index.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:359 #: src/screens/StarterPack/Wizard/index.tsx:366 +#: src/tours/Tooltip.tsx:139 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3721,11 +3837,12 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" +#: src/components/ProfileCard.tsx:321 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "" -#: src/screens/Signup/StepHandle.tsx:115 +#: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" msgstr "" @@ -3737,7 +3854,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:118 +#: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "" @@ -3765,7 +3882,7 @@ msgstr "" msgid "No results found" msgstr "" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" msgstr "No se han encontrado resultados para \"{query}\"" @@ -3815,7 +3932,7 @@ msgstr "" #~ msgid "Not Applicable." #~ msgstr "No aplicable." -#: src/Navigation.tsx:117 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "" @@ -3827,7 +3944,7 @@ msgstr "" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:315 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "" @@ -3847,11 +3964,11 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:529 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 +#: 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 msgid "Notifications" @@ -3887,7 +4004,7 @@ msgstr "" msgid "Oh no!" msgstr "¡Qué problema!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:152 msgid "Oh no! Something went wrong." msgstr "" @@ -3911,10 +4028,14 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:256 +#: src/view/screens/Settings/index.tsx:257 msgid "Onboarding reset" msgstr "" +#: src/tours/Tooltip.tsx:118 +msgid "Onboarding tour step {0}: {1}" +msgstr "" + #: src/view/com/composer/Composer.tsx:522 msgid "One or more images is missing alt text." msgstr "Falta el texto alternativo en una o varias imágenes." @@ -3931,7 +4052,7 @@ msgstr "" #~ msgid "Only {0} can reply." #~ msgstr "Solo {0} puede responder." -#: src/screens/Signup/StepHandle.tsx:98 +#: src/screens/Signup/StepHandle.tsx:149 msgid "Only contains letters, numbers, and hyphens" msgstr "" @@ -3947,7 +4068,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:253 +#: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" msgstr "" @@ -3973,7 +4094,7 @@ msgstr "" msgid "Open feed options menu" msgstr "" -#: src/view/screens/Settings/index.tsx:736 +#: src/view/screens/Settings/index.tsx:737 msgid "Open links with in-app browser" msgstr "" @@ -3993,16 +4114,16 @@ msgstr "Abrir navegación" msgid "Open post options menu" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:451 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:861 +#: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" msgstr "" -#: src/view/screens/Settings/index.tsx:848 +#: src/view/screens/Settings/index.tsx:849 msgid "Open system log" msgstr "" @@ -4014,7 +4135,7 @@ msgstr "" msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Opens accessibility settings" msgstr "" @@ -4030,7 +4151,7 @@ msgstr "" msgid "Opens camera on device" msgstr "" -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Opens chat settings" msgstr "" @@ -4038,7 +4159,7 @@ msgstr "" msgid "Opens composer" msgstr "" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Opens configurable language settings" msgstr "Abrir la configuración del idioma que se puede ajustar" @@ -4046,7 +4167,7 @@ msgstr "Abrir la configuración del idioma que se puede ajustar" msgid "Opens device photo gallery" msgstr "" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" msgstr "" @@ -4068,27 +4189,27 @@ msgstr "" msgid "Opens list of invite codes" msgstr "Abre la lista de códigos de invitación" -#: src/view/screens/Settings/index.tsx:808 +#: src/view/screens/Settings/index.tsx:809 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:830 +#: src/view/screens/Settings/index.tsx:831 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "" -#: src/view/screens/Settings/index.tsx:765 +#: src/view/screens/Settings/index.tsx:766 msgid "Opens modal for changing your Bluesky password" msgstr "" -#: src/view/screens/Settings/index.tsx:720 +#: src/view/screens/Settings/index.tsx:721 msgid "Opens modal for choosing a new Bluesky handle" msgstr "" -#: src/view/screens/Settings/index.tsx:788 +#: src/view/screens/Settings/index.tsx:789 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Opens modal for email verification" msgstr "" @@ -4096,11 +4217,11 @@ msgstr "" msgid "Opens modal for using custom domain" msgstr "Abre el modal para usar el dominio personalizado" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Opens moderation settings" msgstr "Abre la configuración de moderación" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:247 msgid "Opens password reset form" msgstr "" @@ -4109,15 +4230,15 @@ msgstr "" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "Opens screen with all saved feeds" msgstr "Abre la pantalla con todas las noticias guardadas" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "Opens the app password settings" msgstr "" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Opens the Following feed preferences" msgstr "" @@ -4129,20 +4250,20 @@ msgstr "" #~ msgid "Opens the message settings page" #~ 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 "Opens the storybook page" msgstr "Abre la página del libro de cuentos" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" msgstr "Abre la página de la bitácora del sistema" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Opens the threads preferences" msgstr "Abre las preferencias de hilos" -#: src/view/com/notifications/FeedItem.tsx:513 +#: src/view/com/notifications/FeedItem.tsx:524 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "" @@ -4193,8 +4314,8 @@ msgstr "Página no encontrada" msgid "Page Not Found" msgstr "" -#: src/screens/Login/LoginForm.tsx:204 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Signup/StepInfo/index.tsx:162 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4216,15 +4337,16 @@ msgstr "¡Contraseña actualizada!" msgid "Pause" msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:170 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "" -#: src/Navigation.tsx:172 +#: src/Navigation.tsx:175 msgid "People followed by @{0}" msgstr "" -#: src/Navigation.tsx:165 +#: src/Navigation.tsx:168 msgid "People following @{0}" msgstr "" @@ -4241,11 +4363,11 @@ msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:94 msgid "Pets" msgstr "" -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:95 msgid "Photography" msgstr "" @@ -4296,15 +4418,16 @@ msgstr "" msgid "Plays the GIF" msgstr "" -#: src/screens/Signup/state.ts:234 +#: src/screens/Signup/state.ts:210 msgid "Please choose your handle." msgstr "Por favor, elige tu identificador." -#: src/screens/Signup/state.ts:227 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:81 msgid "Please choose your password." msgstr "Por favor, elige tu contraseña." -#: src/screens/Signup/state.ts:248 +#: src/screens/Signup/state.ts:224 msgid "Please complete the verification captcha." msgstr "" @@ -4324,10 +4447,15 @@ msgstr "Introduce un nombre único para la contraseña de esta app o utiliza una msgid "Please enter a valid word, tag, or phrase to mute" msgstr "" -#: src/screens/Signup/state.ts:213 +#: src/screens/Signup/state.ts:189 +#: src/screens/Signup/StepInfo/index.tsx:69 msgid "Please enter your email." msgstr "Introduce tu correo electrónico." +#: src/screens/Signup/StepInfo/index.tsx:63 +msgid "Please enter your invite code." +msgstr "" + #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" msgstr "Introduce tu contraseña, también:" @@ -4354,7 +4482,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Por favor, espera a que tu tarjeta de enlace termine de cargarse" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:96 msgid "Politics" msgstr "Política" @@ -4377,9 +4505,9 @@ msgstr "Post" msgid "Post by {0}" msgstr "Post por {0}" -#: src/Navigation.tsx:191 -#: src/Navigation.tsx:198 -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:194 +#: src/Navigation.tsx:201 +#: src/Navigation.tsx:208 msgid "Post by @{0}" msgstr "Post por {0}" @@ -4418,6 +4546,7 @@ msgstr "Publicación no encontrada" msgid "posts" msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:172 #: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Publicaciones" @@ -4445,7 +4574,7 @@ msgstr "" #: src/components/Error.tsx:85 #: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/index.tsx:238 +#: src/screens/Signup/BackNextButtons.tsx:46 msgid "Press to retry" msgstr "" @@ -4470,15 +4599,15 @@ msgstr "Idioma primario" msgid "Prioritize Your Follows" msgstr "Priorizar los usuarios a los que sigue" -#: src/view/screens/Settings/index.tsx:654 -#: src/view/shell/desktop/RightNav.tsx:77 +#: src/view/screens/Settings/index.tsx:655 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privacidad" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 +#: src/view/screens/Settings/index.tsx:958 #: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Política de privacidad" @@ -4496,8 +4625,8 @@ msgstr "Procesando..." msgid "profile" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 +#: 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 @@ -4508,11 +4637,11 @@ msgstr "Perfil" msgid "Profile updated" msgstr "" -#: src/view/screens/Settings/index.tsx:1021 +#: src/view/screens/Settings/index.tsx:1022 msgid "Protect your account by verifying your email." msgstr "Protege tu cuenta verificando tu correo electrónico." -#: src/screens/Onboarding/StepFinished.tsx:239 +#: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" msgstr "" @@ -4544,6 +4673,10 @@ msgstr "" msgid "QR code saved to your camera roll!" msgstr "" +#: src/tours/Tooltip.tsx:111 +msgid "Quick tip" +msgstr "" + #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:79 @@ -4594,7 +4727,7 @@ msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:325 +#: src/components/FeedCard.tsx:309 #: src/components/StarterPack/Wizard/WizardListCard.tsx:95 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 @@ -4643,7 +4776,7 @@ msgstr "" msgid "Remove from my feeds" msgstr "Eliminar de mis canales de noticias" -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:304 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "" @@ -4789,8 +4922,8 @@ msgstr "" msgid "Report post" msgstr "Informe de la post" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 -#: src/screens/StarterPack/StarterPackScreen.tsx:507 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 msgid "Report starter pack" msgstr "" @@ -4836,7 +4969,7 @@ msgstr "" msgid "Repost" msgstr "Volver a publicar" -#: src/screens/StarterPack/StarterPackScreen.tsx:446 +#: src/screens/StarterPack/StarterPackScreen.tsx:524 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4855,7 +4988,7 @@ msgstr "Vuelto a publicar por {0}" msgid "Reposted by <0><1/>" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:184 +#: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "" @@ -4881,7 +5014,7 @@ msgstr "Requerir texto alternativo antes de publicar" msgid "Require email code to log into your account" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" msgstr "Requerido para este proveedor" @@ -4898,8 +5031,8 @@ msgstr "Código de reseteo" msgid "Reset Code" msgstr "Código de reseteo" -#: src/view/screens/Settings/index.tsx:900 -#: src/view/screens/Settings/index.tsx:903 +#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" msgstr "Restablecer el estado de incorporación" @@ -4907,20 +5040,20 @@ msgstr "Restablecer el estado de incorporación" msgid "Reset password" msgstr "Restablecer la contraseña" -#: src/view/screens/Settings/index.tsx:880 -#: src/view/screens/Settings/index.tsx:883 +#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:884 msgid "Reset preferences state" msgstr "Restablecer el estado de preferencias" -#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" msgstr "Restablece el estado de incorporación" -#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" msgstr "Restablecer el estado de preferencias" -#: src/screens/Login/LoginForm.tsx:292 +#: src/screens/Login/LoginForm.tsx:312 msgid "Retries login" msgstr "" @@ -4933,12 +5066,12 @@ msgstr "" #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:291 -#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:311 +#: src/screens/Login/LoginForm.tsx:318 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Signup/BackNextButtons.tsx:52 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" @@ -4949,7 +5082,7 @@ msgstr "Intentar de nuevo" #~ msgstr "Intentar de nuevo" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:650 +#: src/screens/StarterPack/StarterPackScreen.tsx:728 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "" @@ -5045,13 +5178,13 @@ msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:372 -#: src/view/com/notifications/FeedItem.tsx:397 +#: src/view/com/notifications/FeedItem.tsx:383 +#: src/view/com/notifications/FeedItem.tsx:408 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:97 msgid "Science" msgstr "Ciencia" @@ -5060,16 +5193,16 @@ msgid "Scroll to top" msgstr "" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:516 -#: src/view/com/auth/LoggedOut.tsx:119 +#: src/Navigation.tsx:524 +#: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 #: src/view/screens/Search/Search.tsx:791 #: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 +#: 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 @@ -5101,8 +5234,8 @@ msgstr "" #~ msgid "Search for someone to start a conversation with." #~ msgstr "" -#: src/view/com/auth/LoggedOut.tsx:101 -#: src/view/com/auth/LoggedOut.tsx:102 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:107 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "Buscar usuarios" @@ -5227,11 +5360,11 @@ msgstr "Elige en que idioma deseas que estén los posts de tus feeds. Si ninguno msgid "Select your app language for the default text to display in the app." msgstr "Elige en que idioma deseas que esté la interfaz de Bluesky." -#: src/screens/Signup/StepInfo/index.tsx:135 +#: src/screens/Signup/StepInfo/index.tsx:192 msgid "Select your date of birth" msgstr "Elige tu fecha de nacimiento" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:225 msgid "Select your interests from the options below" msgstr "" @@ -5344,23 +5477,23 @@ msgstr "" msgid "Sets Bluesky username" msgstr "" -#: src/view/screens/Settings/index.tsx:461 +#: src/view/screens/Settings/index.tsx:462 msgid "Sets color theme to dark" msgstr "" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Sets color theme to light" msgstr "" -#: src/view/screens/Settings/index.tsx:448 +#: src/view/screens/Settings/index.tsx:449 msgid "Sets color theme to system setting" msgstr "" -#: src/view/screens/Settings/index.tsx:487 +#: src/view/screens/Settings/index.tsx:488 msgid "Sets dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings/index.tsx:480 +#: src/view/screens/Settings/index.tsx:481 msgid "Sets dark theme to the dim theme" msgstr "" @@ -5380,9 +5513,9 @@ msgstr "" msgid "Sets image aspect ratio to wide" msgstr "" -#: src/Navigation.tsx:147 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:395 +#: src/Navigation.tsx:150 +#: src/view/screens/Settings/index.tsx:333 +#: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:559 #: src/view/shell/Drawer.tsx:560 msgid "Settings" @@ -5397,13 +5530,13 @@ msgid "Sexually Suggestive" msgstr "Sexualmente sugestivo" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:340 -#: src/screens/StarterPack/StarterPackScreen.tsx:493 +#: 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/post-ctrls/PostCtrls.tsx:304 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Compartir" @@ -5423,7 +5556,7 @@ msgstr "" #: src/view/com/profile/ProfileMenu.tsx:377 #: src/view/com/util/forms/PostDropdownBtn.tsx:461 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:320 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "" @@ -5434,7 +5567,7 @@ msgstr "Compartir feed" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -5452,7 +5585,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:333 +#: src/screens/StarterPack/StarterPackScreen.tsx:393 msgid "Share this starter pack" msgstr "" @@ -5471,7 +5604,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:381 +#: src/view/screens/Settings/index.tsx:382 msgid "Show" msgstr "Ver" @@ -5479,7 +5612,7 @@ msgstr "Ver" #~ msgid "Show all replies" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "Ver texto alternativo" @@ -5598,17 +5731,17 @@ msgstr "" #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:100 #: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Login/LoginForm.tsx:177 #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.tsx:72 #: src/view/com/auth/SplashScreen.web.tsx:112 #: src/view/com/auth/SplashScreen.web.tsx:121 -#: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 #: src/view/shell/bottom-bar/BottomBar.tsx:315 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/bottom-bar/BottomBar.tsx:318 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:210 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5636,12 +5769,12 @@ msgstr "Inicia sesión a Bluesky o crea una nueva cuenta" msgid "Sign out" msgstr "Cerrar sesión" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 #: src/view/shell/bottom-bar/BottomBar.tsx:305 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBar.tsx:306 +#: src/view/shell/bottom-bar/BottomBar.tsx:308 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:200 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5657,7 +5790,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:391 +#: src/view/screens/Settings/index.tsx:392 msgid "Signed in as" msgstr "Sesión iniciada como" @@ -5666,21 +5799,21 @@ msgstr "Sesión iniciada como" msgid "Signed in as @{0}" msgstr "Sesión iniciada como @{0}" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:264 #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Saltar" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:261 msgid "Skip this flow" msgstr "Saltar" @@ -5689,6 +5822,10 @@ msgstr "Saltar" msgid "Software Dev" msgstr "Programación" +#: src/components/FeedInterstitials.tsx:378 +msgid "Some other feeds you might like" +msgstr "" + #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" @@ -5713,8 +5850,8 @@ msgstr "" msgid "Something went wrong, please try again." msgstr "Ocurrió un error. Intenta de nuevo." -#: src/App.native.tsx:96 -#: src/App.web.tsx:78 +#: src/App.native.tsx:98 +#: src/App.web.tsx:80 msgid "Sorry! Your session expired. Please log in again." msgstr "Lo sentimos, tu sesión ha expirado. Inicia sesión de nuevo." @@ -5744,7 +5881,7 @@ msgid "Spam; excessive mentions or replies" msgstr "Spam; menciones o respuestas excesivas" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:98 msgid "Sports" msgstr "Deportes" @@ -5764,17 +5901,22 @@ msgstr "" msgid "Start chatting" msgstr "" +#: src/tours/Tooltip.tsx:99 +msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +msgstr "" + #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:328 +#: src/Navigation.tsx:333 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:65 +#: src/components/StarterPack/StarterPackCard.tsx:70 msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:614 +#: src/screens/StarterPack/StarterPackScreen.tsx:692 msgid "Starter pack is invalid" msgstr "" @@ -5786,7 +5928,7 @@ msgstr "" msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "" -#: src/view/screens/Settings/index.tsx:963 +#: src/view/screens/Settings/index.tsx:964 msgid "Status Page" msgstr "" @@ -5794,16 +5936,16 @@ msgstr "" #~ msgid "Step" #~ msgstr "Paso" -#: src/screens/Signup/index.tsx:192 +#: src/screens/Signup/index.tsx:125 msgid "Step {0} of {1}" msgstr "Paso {0} de {1}" -#: src/view/screens/Settings/index.tsx:304 +#: src/view/screens/Settings/index.tsx:305 msgid "Storage cleared, you need to restart the app now." msgstr "" -#: src/Navigation.tsx:226 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:229 +#: src/view/screens/Settings/index.tsx:864 msgid "Storybook" msgstr "Libro de cuentos" @@ -5847,6 +5989,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "Usuarios sugeridos a seguir" +#: src/components/FeedInterstitials.tsx:246 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "" @@ -5855,7 +5998,7 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:244 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5866,6 +6009,10 @@ msgstr "Soporte" msgid "Switch Account" msgstr "Cambiar a otra cuenta" +#: src/tours/HomeTour.tsx:48 +msgid "Switch between feeds to control your experience." +msgstr "" + #: src/view/screens/Settings/index.tsx:160 msgid "Switch to {0}" msgstr "" @@ -5874,11 +6021,11 @@ msgstr "" msgid "Switches the account you are logged in to" msgstr "" -#: src/view/screens/Settings/index.tsx:445 +#: src/view/screens/Settings/index.tsx:446 msgid "System" msgstr "" -#: src/view/screens/Settings/index.tsx:851 +#: src/view/screens/Settings/index.tsx:852 msgid "System log" msgstr "Bitácora del sistema" @@ -5894,12 +6041,24 @@ msgstr "" msgid "Tall" msgstr "Alto" +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "" + #: src/view/com/util/images/AutoSizedImage.tsx:70 msgid "Tap to view fully" msgstr "" +#: src/state/shell/progress-guide.tsx:171 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "" + #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:99 msgid "Tech" msgstr "Tecnología" @@ -5911,13 +6070,13 @@ msgstr "" msgid "Tell us a little more" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:86 +#: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Condiciones" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:254 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/Settings/index.tsx:952 #: src/view/screens/TermsOfService.tsx:29 #: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" @@ -5948,12 +6107,14 @@ msgstr "" msgid "That contains the following:" msgstr "" -#: src/screens/Signup/index.tsx:100 +#: src/screens/Signup/StepHandle.tsx:50 msgid "That handle is already taken." msgstr "Este nombre de usuario ya está en uso." -#: src/screens/StarterPack/StarterPackScreen.tsx:105 -#: src/screens/StarterPack/StarterPackScreen.tsx:106 +#: src/screens/StarterPack/StarterPackScreen.tsx:96 +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:136 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -5976,7 +6137,12 @@ msgstr "Las Directrices Comunitarias se ha trasladado a <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "La Política de derechos de autor se han trasladado a <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:177 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6005,7 +6171,7 @@ msgstr "Es posible que se haya borrado el post." msgid "The Privacy Policy has been moved to <0/>" msgstr "La Política de privacidad se ha trasladado a <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:624 +#: src/screens/StarterPack/StarterPackScreen.tsx:702 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6063,11 +6229,11 @@ msgstr "" msgid "There was an issue contacting your server" msgstr "" -#: src/view/com/notifications/Feed.tsx:126 +#: src/view/com/notifications/Feed.tsx:125 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/view/com/posts/Feed.tsx:299 +#: src/view/com/posts/Feed.tsx:459 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -6263,7 +6429,7 @@ msgid "This post has been deleted." msgstr "Esta post ha sido eliminado." #: src/view/com/util/forms/PostDropdownBtn.tsx:458 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:317 +#: 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 "" @@ -6324,12 +6490,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:594 +#: src/view/screens/Settings/index.tsx:595 msgid "Thread preferences" msgstr "Preferencias de hilos" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/Settings/index.tsx:605 msgid "Thread Preferences" msgstr "Preferencias de hilos" @@ -6341,7 +6507,7 @@ msgstr "" msgid "Threaded Mode" msgstr "Modo con hilos" -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:287 msgid "Threads Preferences" msgstr "" @@ -6392,11 +6558,11 @@ msgctxt "action" msgid "Try again" msgstr "Intentar de nuevo" -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:100 msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:745 +#: src/view/screens/Settings/index.tsx:746 msgid "Two-factor authentication" msgstr "" @@ -6418,14 +6584,14 @@ msgstr "Demutear lista" #: src/screens/Login/ForgotPasswordForm.tsx:74 #: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:79 +#: src/screens/Signup/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "No se puede contactar con tu proveedor. Comprueba tu conexión a Internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:548 +#: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Unable to delete" msgstr "" @@ -6690,7 +6856,7 @@ msgstr "" msgid "User Lists" msgstr "Listas de usuarios" -#: src/screens/Login/LoginForm.tsx:177 +#: src/screens/Login/LoginForm.tsx:197 msgid "Username or email address" msgstr "Nombre de usuario o dirección de correo electrónico" @@ -6729,15 +6895,15 @@ msgstr "" msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:982 +#: src/view/screens/Settings/index.tsx:983 msgid "Verify email" msgstr "Verificar el correo electrónico" -#: src/view/screens/Settings/index.tsx:1007 +#: src/view/screens/Settings/index.tsx:1008 msgid "Verify my email" msgstr "Verificar mi correo electrónico" -#: src/view/screens/Settings/index.tsx:1016 +#: src/view/screens/Settings/index.tsx:1017 msgid "Verify My Email" msgstr "Verificar mi correo electrónico" @@ -6754,7 +6920,7 @@ msgstr "" msgid "Verify Your Email" msgstr "" -#: src/view/screens/Settings/index.tsx:935 +#: src/view/screens/Settings/index.tsx:936 msgid "Version {appVersion} {bundleInfo}" msgstr "" @@ -6767,7 +6933,7 @@ msgstr "Videojuegos" msgid "View {0}'s avatar" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:234 +#: src/view/com/notifications/FeedItem.tsx:245 msgid "View {0}'s profile" msgstr "" @@ -6816,7 +6982,7 @@ msgid "View users who like this feed" msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -6851,7 +7017,7 @@ msgstr "" msgid "We estimate {estimatedTime} until your account is ready." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:231 +#: src/screens/Onboarding/StepFinished.tsx:239 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Esperemos que la pases bien. Recuerda, Bluesky es:" @@ -6875,7 +7041,7 @@ msgstr "" msgid "We were unable to load your configured labelers at this time." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:157 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" @@ -6883,7 +7049,7 @@ msgstr "" msgid "We will let you know when your account is ready." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:162 msgid "We'll use this to help customize your experience." msgstr "" @@ -6891,7 +7057,7 @@ msgstr "" msgid "We're having network issues, try again" msgstr "" -#: src/screens/Signup/index.tsx:155 +#: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" msgstr "¡Es nuestro placer tenerte aquí!" @@ -6932,7 +7098,7 @@ msgstr "" msgid "Welcome, friend!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" msgstr "¿Cuáles son tus intereses?" @@ -7023,7 +7189,7 @@ msgid "Write your reply" msgstr "Redacta una respuesta" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:101 msgid "Writers" msgstr "Escritores" @@ -7042,7 +7208,7 @@ msgstr "Sí" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:560 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 msgid "Yes, delete this starter pack" msgstr "" @@ -7054,7 +7220,7 @@ msgstr "" msgid "Yesterday, {time}" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:68 +#: src/components/StarterPack/StarterPackCard.tsx:73 msgid "you" msgstr "" @@ -7271,23 +7437,23 @@ msgstr "" msgid "You: {short}" msgstr "" -#: src/screens/Signup/index.tsx:169 +#: src/screens/Signup/index.tsx:102 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:174 +#: 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:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "You'll stay updated with these feeds" msgstr "" @@ -7306,7 +7472,7 @@ msgstr "Ya estás en cola" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:228 +#: src/screens/Onboarding/StepFinished.tsx:236 msgid "You're ready to go!" msgstr "¡Eso es todo!" @@ -7319,7 +7485,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "¡Haz llegado al fin de tu feed! Encuentra más cuentas para seguir." -#: src/screens/Signup/index.tsx:202 +#: src/screens/Signup/index.tsx:135 msgid "Your account" msgstr "Tu cuenta" @@ -7331,7 +7497,7 @@ msgstr "Tu cuenta ha sido eliminada" msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" msgstr "Tu fecha de nacimiento" @@ -7348,7 +7514,8 @@ msgstr "Tu elección será guardada. Puedes cambiar esto en los ajustes luego." #~ msgstr "Tu feed principal es \"Siguiendo\"" #: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Tu correo electrónico parece no ser válido." @@ -7361,11 +7528,15 @@ msgstr "Tu correo electrónico ha sido actualizado pero no verificado. Verifica msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "Tu correo electrónico aún no ha sido verificado. Por tu seguridad, recomendamos que lo verifiques." +#: src/state/shell/progress-guide.tsx:161 +msgid "Your first like!" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "¡Tu feed de Siguiendo esta vacío! Sigue a más usuarios para ver sus posts aquí." -#: src/screens/Signup/StepHandle.tsx:73 +#: src/screens/Signup/StepHandle.tsx:122 msgid "Your full handle will be" msgstr "Tu nombre de usuario completo será" @@ -7385,7 +7556,7 @@ msgstr "Tu contraseña ha sido cambiada exitosamente." msgid "Your post has been published" msgstr "Post publicado" -#: src/screens/Onboarding/StepFinished.tsx:243 +#: src/screens/Onboarding/StepFinished.tsx:251 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." @@ -7405,6 +7576,6 @@ msgstr "Respuesta publicada" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Tu reporte ha sido enviado al servicio de moderación de Bluesky" -#: src/screens/Signup/index.tsx:204 +#: src/screens/Signup/index.tsx:137 msgid "Your user handle" msgstr "Tu nombre de usuario" diff --git a/src/locale/locales/fi/messages.po b/src/locale/locales/fi/messages.po index 43c3b8bd2f..0f67b79f34 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:283 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -59,7 +59,7 @@ msgstr "" msgid "{0, plural, one {following} other {following}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:259 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" @@ -67,7 +67,7 @@ msgstr "" msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:216 +#: src/components/FeedCard.tsx:206 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -76,7 +76,7 @@ msgstr "" msgid "{0, plural, one {post} other {posts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:217 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" @@ -84,15 +84,15 @@ msgstr "" msgid "{0, plural, one {repost} other {reposts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:262 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:378 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" msgstr "" @@ -148,7 +148,7 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:503 +#: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} seurattua" @@ -254,10 +254,14 @@ msgstr "" msgid "⚠Invalid Handle" msgstr "⚠Virheellinen käyttäjätunnus" -#: src/screens/Login/LoginForm.tsx:247 +#: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" msgstr "Kaksivaiheisen tunnistautumisen vahvistus" +#: src/tours/Tooltip.tsx:70 +msgid "A help tooltip" +msgstr "" + #: src/view/com/util/ViewHeader.tsx:93 #: src/view/screens/Search/Search.tsx:684 msgid "Access navigation links and settings" @@ -268,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:518 +#: src/view/screens/Settings/index.tsx:519 msgid "Accessibility" msgstr "Saavutettavuus" -#: src/view/screens/Settings/index.tsx:509 +#: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" msgstr "Esteettömyysasetukset\"" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "Esteettömyysasetukset\"" @@ -285,9 +289,9 @@ msgstr "Esteettömyysasetukset\"" #~ msgid "account" #~ msgstr "käyttäjätili" -#: src/screens/Login/LoginForm.tsx:170 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:190 +#: src/view/screens/Settings/index.tsx:346 +#: src/view/screens/Settings/index.tsx:753 msgid "Account" msgstr "Käyttäjätili" @@ -358,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:422 -#: src/view/screens/Settings/index.tsx:431 +#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:432 msgid "Add account" msgstr "Lisää käyttäjätili" @@ -410,7 +414,7 @@ msgstr "" msgid "Add the following DNS record to your domain:" msgstr "Lisää seuraava DNS-merkintä verkkotunnukseesi:" -#: src/components/FeedCard.tsx:305 +#: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" msgstr "" @@ -454,15 +458,19 @@ msgid "Adult content is disabled." msgstr "Aikuissisältö on estetty" #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Advanced" msgstr "Edistyneemmät" -#: src/screens/StarterPack/StarterPackScreen.tsx:301 +#: src/state/shell/progress-guide.tsx:176 +msgid "Algorithm training complete!" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:360 msgid "All accounts have been followed!" msgstr "" -#: src/view/screens/Feeds.tsx:721 +#: src/view/screens/Feeds.tsx:734 msgid "All the feeds you've saved, right in one place." msgstr "Kaikki tallentamasi syötteet yhdessä paikassa." @@ -492,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:177 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 msgid "ALT" msgstr "ALT" @@ -502,7 +510,7 @@ msgstr "ALT" msgid "Alt text" msgstr "ALT-teksti" -#: src/view/com/util/post-embeds/GifEmbed.tsx:183 +#: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" msgstr "" @@ -540,7 +548,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:303 +#: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" msgstr "" @@ -550,6 +558,8 @@ msgstr "Ongelma, jota ei ole sisällytetty näihin vaihtoehtoihin" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:309 +#: src/components/ProfileCard.tsx:329 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -557,12 +567,12 @@ msgstr "Ongelma, jota ei ole sisällytetty näihin vaihtoehtoihin" msgid "An issue occurred, please try again." msgstr "Tapahtui virhe, yritä uudelleen." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" msgstr "" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:280 +#: src/view/com/notifications/FeedItem.tsx:291 msgid "and" msgstr "ja" @@ -571,7 +581,7 @@ msgstr "ja" msgid "Animals" msgstr "Eläimet" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" msgstr "Animoitu GIF" @@ -595,13 +605,13 @@ 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:697 +#: src/view/screens/Settings/index.tsx:698 msgid "App password settings" msgstr "Sovelluksen salasanan asetukset" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:269 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/view/screens/Settings/index.tsx:707 msgid "App Passwords" msgstr "Sovellussalasanat" @@ -630,7 +640,7 @@ msgstr "" msgid "Appeal this decision" msgstr "" -#: src/view/screens/Settings/index.tsx:439 +#: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "Ulkonäkö" @@ -639,7 +649,7 @@ msgstr "Ulkonäkö" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -667,7 +677,7 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Haluatko varmasti poistaa {0} syötteistäsi?" -#: src/components/FeedCard.tsx:322 +#: src/components/FeedCard.tsx:306 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -692,7 +702,7 @@ msgstr "Taide" msgid "Artistic or non-erotic nudity." msgstr "Taiteellinen tai ei-eroottinen alastomuus." -#: src/screens/Signup/StepHandle.tsx:119 +#: src/screens/Signup/StepHandle.tsx:170 msgid "At least 3 characters" msgstr "Vähintään kolme merkkiä" @@ -703,14 +713,15 @@ msgstr "Vähintään kolme merkkiä" #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:278 -#: src/screens/Login/LoginForm.tsx:284 +#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:304 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/index.tsx:231 +#: 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" @@ -720,7 +731,7 @@ msgstr "Takaisin" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Perustuen kiinnostukseesi {interestsText}" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "Perusasiat" @@ -728,7 +739,7 @@ msgstr "Perusasiat" msgid "Birthday" msgstr "Syntymäpäivä" -#: src/view/screens/Settings/index.tsx:377 +#: src/view/screens/Settings/index.tsx:378 msgid "Birthday:" msgstr "Syntymäpäivä:" @@ -772,7 +783,7 @@ msgstr "Estetty" msgid "Blocked accounts" msgstr "Estetyt käyttäjät" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:145 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Estetyt käyttäjät" @@ -814,6 +825,10 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky on avoin verkko, jossa voit valita palveluntarjoajasi. Räätälöity palveluntarjoajan määritys on nyt saatavilla betavaiheen kehittäjille." +#: 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." @@ -850,6 +865,24 @@ msgstr "Sumenna kuvat ja suodata syötteistä" msgid "Books" msgstr "Kirjat" +#: src/components/FeedInterstitials.tsx:281 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:411 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:266 +#: src/components/FeedInterstitials.tsx:396 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:289 +#: src/components/FeedInterstitials.tsx:420 +msgid "Browse more suggestions on the Explore page" +msgstr "" + #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" @@ -968,17 +1001,17 @@ msgstr "Peruuttaa linkitetyn verkkosivuston avaamisen" msgid "Change" msgstr "Vaihda" -#: src/view/screens/Settings/index.tsx:371 +#: src/view/screens/Settings/index.tsx:372 msgctxt "action" msgid "Change" msgstr "Vaihda" -#: src/view/screens/Settings/index.tsx:718 +#: src/view/screens/Settings/index.tsx:719 msgid "Change handle" msgstr "Vaihda käyttäjätunnus" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change Handle" msgstr "Vaihda käyttäjätunnus" @@ -986,12 +1019,12 @@ msgstr "Vaihda käyttäjätunnus" msgid "Change my email" msgstr "Vaihda sähköpostiosoitteeni" -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/index.tsx:764 msgid "Change password" msgstr "Vaihda salasana" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Change Password" msgstr "Vaihda salasana" @@ -1003,9 +1036,9 @@ msgstr "Vaihda julkaisun kieleksi {0}" msgid "Change Your Email" msgstr "Vaihda sähköpostiosoitteesi" -#: src/Navigation.tsx:310 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:313 +#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" msgstr "" @@ -1015,14 +1048,14 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:318 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" msgstr "" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" msgstr "" @@ -1047,7 +1080,7 @@ msgstr "Tarkista tilani" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "Tutustu suositeltuihin käyttäjiin. Seuraa heitä löytääksesi samankaltaisia käyttäjiä." -#: src/screens/Login/LoginForm.tsx:271 +#: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." msgstr "Tarkista sähköpostistasi kirjautumiskoodi ja syötä se tähän." @@ -1059,6 +1092,14 @@ msgstr "Tarkista sähköpostisi ja syötä saamasi vahvistuskoodi alle:" #~ msgid "Choose \"Everybody\" or \"Nobody\"" #~ msgstr "Valitse \"Kaikki\" tai \"Ei kukaan\"" +#: src/screens/Onboarding/StepInterests/index.tsx:190 +msgid "Choose 3 or more:" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:325 +msgid "Choose at least {0} more" +msgstr "" + #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" msgstr "" @@ -1075,7 +1116,7 @@ msgstr "" msgid "Choose Service" msgstr "Valitse palvelu" -#: src/screens/Onboarding/StepFinished.tsx:273 +#: src/screens/Onboarding/StepFinished.tsx:281 msgid "Choose the algorithms that power your custom feeds." msgstr "Valitse algoritmit, jotka ohjaavat mukautettuja syötteitäsi." @@ -1097,23 +1138,23 @@ msgstr "" #~ msgid "Choose your main feeds" #~ msgstr "Valitse pääsyötteet" -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" msgstr "Valitse salasanasi" -#: src/view/screens/Settings/index.tsx:910 +#: src/view/screens/Settings/index.tsx:911 msgid "Clear all legacy storage data" msgstr "Tyhjennä kaikki vanhan tietomallin mukaiset tiedot" -#: src/view/screens/Settings/index.tsx:913 +#: src/view/screens/Settings/index.tsx:914 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:922 +#: src/view/screens/Settings/index.tsx:923 msgid "Clear all storage data" msgstr "Tyhjennä kaikki tallennukset" -#: src/view/screens/Settings/index.tsx:925 +#: src/view/screens/Settings/index.tsx:926 msgid "Clear all storage data (restart after this)" msgstr "Tyhjennä kaikki tallennukset (käynnistä uudelleen tämän jälkeen)" @@ -1122,11 +1163,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:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" msgstr "Tyhjentää kaikki tallennustiedot" @@ -1171,7 +1212,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:189 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "Close" msgstr "Sulje" @@ -1234,11 +1275,11 @@ msgstr "Sulkee editorin ja hylkää luonnoksen" msgid "Closes viewer for header image" msgstr "Sulkee kuvan katseluohjelman" -#: src/view/com/notifications/FeedItem.tsx:226 +#: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:437 msgid "Collapses list of users for a given notification" msgstr "Pienentää käyttäjäluettelon annetulle ilmoitukselle" @@ -1252,16 +1293,16 @@ msgstr "Komedia" msgid "Comics" msgstr "Sarjakuvat" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:259 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Yhteisöohjeet" -#: src/screens/Onboarding/StepFinished.tsx:286 +#: src/screens/Onboarding/StepFinished.tsx:294 msgid "Complete onboarding and start using your account" msgstr "Suorita käyttöönotto loppuun ja aloita käyttäjätilisi käyttö" -#: src/screens/Signup/index.tsx:206 +#: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" msgstr "Tee haaste loppuun" @@ -1318,7 +1359,7 @@ msgstr "Vahvista ikäsi:" msgid "Confirm your birthdate" msgstr "Vahvista syntymäaikasi" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:272 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 @@ -1328,11 +1369,11 @@ msgstr "Vahvista syntymäaikasi" msgid "Confirmation code" msgstr "Vahvistuskoodi" -#: src/screens/Login/LoginForm.tsx:305 +#: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." msgstr "Yhdistetään..." -#: src/screens/Signup/index.tsx:276 +#: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "Ota yhteyttä tukeen" @@ -1373,7 +1414,7 @@ msgstr "Sisältövaroitukset" msgid "Context menu backdrop, click to close the menu." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:258 +#: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Jatka" @@ -1386,9 +1427,9 @@ msgstr "Jatka käyttäjänä {0} (kirjautunut)" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:255 +#: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/index.tsx:251 +#: src/screens/Signup/BackNextButtons.tsx:59 msgid "Continue to next step" msgstr "Jatka seuraavaan vaiheeseen" @@ -1413,7 +1454,7 @@ msgstr "Ruoanlaitto" msgid "Copied" msgstr "Kopioitu" -#: src/view/screens/Settings/index.tsx:263 +#: src/view/screens/Settings/index.tsx:264 msgid "Copied build version to clipboard" msgstr "Ohjelmiston versio kopioitu leikepöydälle" @@ -1422,7 +1463,7 @@ msgstr "Ohjelmiston versio kopioitu leikepöydälle" #: 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/post-ctrls/PostCtrls.tsx:350 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Kopioitu leikepöydälle" @@ -1479,7 +1520,7 @@ msgstr "Kopioi viestin teksti" msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Tekijänoikeuskäytäntö" @@ -1517,7 +1558,7 @@ msgstr "" msgid "Create a new account" msgstr "Luo uusi käyttäjätili" -#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" msgstr "Luo uusi Bluesky-tili" @@ -1527,7 +1568,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:338 msgid "Create a starter pack" msgstr "" @@ -1535,7 +1576,7 @@ msgstr "" msgid "Create a starter pack for me" msgstr "" -#: src/screens/Signup/index.tsx:154 +#: src/screens/Signup/index.tsx:88 msgid "Create Account" msgstr "Luo käyttäjätili" @@ -1587,7 +1628,7 @@ msgstr "Mukautettu" msgid "Custom domain" msgstr "Mukautettu verkkotunnus" -#: src/view/screens/Feeds.tsx:747 +#: src/view/screens/Feeds.tsx:760 #: src/view/screens/Search/Explore.tsx:390 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öä." @@ -1596,8 +1637,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:458 -#: src/view/screens/Settings/index.tsx:484 +#: src/view/screens/Settings/index.tsx:459 +#: src/view/screens/Settings/index.tsx:485 msgid "Dark" msgstr "Tumma" @@ -1605,24 +1646,24 @@ msgstr "Tumma" msgid "Dark mode" msgstr "Tumma ulkoasu" -#: src/view/screens/Settings/index.tsx:471 +#: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" msgstr "Tumma teema" -#: src/screens/Signup/StepInfo/index.tsx:134 +#: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" msgstr "Syntymäaika" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:818 +#: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:873 +#: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" msgstr "" @@ -1631,16 +1672,16 @@ msgid "Debug panel" msgstr "Vianetsintäpaneeli" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:484 -#: src/screens/StarterPack/StarterPackScreen.tsx:563 -#: src/screens/StarterPack/StarterPackScreen.tsx:643 +#: 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/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Poista" -#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:829 msgid "Delete account" msgstr "Poista käyttäjätili" @@ -1660,8 +1701,8 @@ msgstr "Poista sovellussalasana" msgid "Delete app password?" msgstr "Poista sovellussalasana" -#: src/view/screens/Settings/index.tsx:890 -#: src/view/screens/Settings/index.tsx:893 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" msgstr "" @@ -1685,7 +1726,7 @@ msgstr "" msgid "Delete my account" msgstr "Poista käyttäjätilini" -#: src/view/screens/Settings/index.tsx:840 +#: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" msgstr "Poista käyttäjätilini…" @@ -1694,12 +1735,12 @@ msgstr "Poista käyttäjätilini…" msgid "Delete post" msgstr "Poista viesti" -#: src/screens/StarterPack/StarterPackScreen.tsx:478 -#: src/screens/StarterPack/StarterPackScreen.tsx:634 +#: src/screens/StarterPack/StarterPackScreen.tsx:556 +#: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" msgstr "" @@ -1719,7 +1760,7 @@ msgstr "Poistettu" msgid "Deleted post." msgstr "Poistettu viesti." -#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" msgstr "" @@ -1738,7 +1779,7 @@ msgstr "" msgid "Did you want to say anything?" msgstr "Haluatko sanoa jotain?" -#: src/view/screens/Settings/index.tsx:477 +#: src/view/screens/Settings/index.tsx:478 msgid "Dim" msgstr "Himmeä" @@ -1780,6 +1821,10 @@ msgstr "Hylkää luonnos?" msgid "Discourage apps from showing my account to logged-out users" msgstr "Estä sovelluksia näyttämästä tiliäni kirjautumattomille käyttäjille" +#: src/tours/HomeTour.tsx:70 +msgid "Discover learns which posts you like as you browse." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -1789,10 +1834,14 @@ msgstr "Löydä uusia mukautettuja syötteitä" msgid "Discover new feeds" msgstr "" -#: src/view/screens/Feeds.tsx:744 +#: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" msgstr "Löydä uusia syötteitä" +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "" + #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" msgstr "" @@ -1813,7 +1862,7 @@ msgstr "DNS-paneeli" msgid "Does not include nudity." msgstr "Ei sisällä alastomuutta." -#: src/screens/Signup/StepHandle.tsx:105 +#: src/screens/Signup/StepHandle.tsx:156 msgid "Doesn't begin or end with a hyphen" msgstr "Ei ala eikä lopu väliviivaan" @@ -1858,7 +1907,7 @@ msgstr "Valmis" msgid "Done{extraText}" msgstr "Valmis{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" msgstr "" @@ -1867,7 +1916,7 @@ msgstr "" msgid "Download CAR file" msgstr "Lataa CAR tiedosto" -#: src/view/com/composer/text-input/TextInput.web.tsx:272 +#: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" msgstr "Raahaa tähän lisätäksesi kuvia" @@ -1915,11 +1964,11 @@ msgstr "esim. Käyttäjät, jotka vastaavat toistuvasti mainoksilla." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Jokainen koodi toimii vain kerran. Saat lisää kutsukoodeja säännöllisin väliajoin." -#: src/screens/StarterPack/StarterPackScreen.tsx:473 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "" @@ -1950,9 +1999,9 @@ msgstr "Muokkaa listan tietoja" msgid "Edit Moderation List" msgstr "Muokkaa moderaatiolistaa" -#: src/Navigation.tsx:271 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 +#: src/Navigation.tsx:274 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Muokkaa syötteitä" @@ -1980,7 +2029,7 @@ msgstr "Muokkaa profiilia" #~ msgid "Edit Saved Feeds" #~ msgstr "Muokkaa tallennettuja syötteitä" -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" msgstr "" @@ -2000,7 +2049,7 @@ msgstr "Muokkaa näyttönimeäsi" msgid "Edit your profile description" msgstr "Muokkaa profiilin kuvausta" -#: src/Navigation.tsx:335 +#: src/Navigation.tsx:343 msgid "Edit your starter pack" msgstr "" @@ -2013,7 +2062,7 @@ msgstr "Koulutus" msgid "Either choose \"Everybody\" or \"Nobody\"" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "Sähköposti" @@ -2039,7 +2088,7 @@ msgstr "Sähköpostiosoite päivitetty" msgid "Email verified" msgstr "Sähköpostiosoite vahvistettu" -#: src/view/screens/Settings/index.tsx:349 +#: src/view/screens/Settings/index.tsx:350 msgid "Email:" msgstr "Sähköpostiosoite:" @@ -2105,6 +2154,10 @@ msgstr "Syötteen loppu" #~ 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 "" + #: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "Anna sovellusalasanalle nimi" @@ -2139,7 +2192,7 @@ msgid "Enter your birth date" msgstr "Syötä syntymäaikasi" #: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:92 +#: src/screens/Signup/StepInfo/index.tsx:152 msgid "Enter your email address" msgstr "Syötä sähköpostiosoitteesi" @@ -2159,11 +2212,11 @@ msgstr "Syötä käyttäjätunnuksesi ja salasanasi" msgid "Error occurred while saving file" msgstr "" -#: src/screens/Signup/StepCaptcha/index.tsx:51 +#: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." msgstr "Virhe captcha-vastauksen vastaanottamisessa." -#: src/screens/Onboarding/StepInterests/index.tsx:197 +#: src/screens/Onboarding/StepInterests/index.tsx:216 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Virhe:" @@ -2218,7 +2271,7 @@ msgstr "Poistuu hakukyselyn kirjoittamisesta" msgid "Expand alt text" msgstr "Laajenna ALT-teksti" -#: src/view/com/notifications/FeedItem.tsx:227 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" msgstr "" @@ -2235,12 +2288,12 @@ msgstr "Selvästi tai mahdollisesti häiritsevä media." msgid "Explicit sexual images." msgstr "Selvästi seksuaalista kuvamateriaalia." -#: src/view/screens/Settings/index.tsx:786 +#: src/view/screens/Settings/index.tsx:787 msgid "Export my data" msgstr "Vie tietoni" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:797 +#: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" msgstr "Vie tietoni" @@ -2254,13 +2307,13 @@ msgstr "Ulkoiset mediat" 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:290 +#: src/Navigation.tsx:293 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/view/screens/Settings/index.tsx:680 msgid "External Media Preferences" msgstr "Ulkoisten mediasoittimien asetukset" -#: src/view/screens/Settings/index.tsx:670 +#: src/view/screens/Settings/index.tsx:671 msgid "External media settings" msgstr "Ulkoisten mediasoittimien asetukset" @@ -2286,7 +2339,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "Viestin poistaminen epäonnistui, yritä uudelleen" -#: src/screens/StarterPack/StarterPackScreen.tsx:597 +#: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" msgstr "" @@ -2343,7 +2396,7 @@ msgstr "" msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:285 +#: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" msgstr "" @@ -2352,11 +2405,11 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:211 +#: src/Navigation.tsx:214 msgid "Feed" msgstr "Syöte" -#: src/components/FeedCard.tsx:161 +#: src/components/FeedCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "Syöte käyttäjältä {0}" @@ -2369,17 +2422,18 @@ msgstr "Syöte käyttäjältä {0}" msgid "Feed toggle" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Palaute" -#: src/Navigation.tsx:320 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 +#: src/Navigation.tsx:323 +#: 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:373 +#: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" @@ -2397,7 +2451,7 @@ msgstr "Syötteet ovat käyttäjien rakentamia mukautettuja algoritmeja, jotka v #~ msgid "Feeds can be topical as well!" #~ msgstr "Syötteet voivat olla myös aihepiirikohtaisia!" -#: src/components/FeedCard.tsx:282 +#: src/components/FeedCard.tsx:266 msgid "Feeds updated!" msgstr "" @@ -2413,7 +2467,7 @@ msgstr "" msgid "Filter from feeds" msgstr "Suodata syötteistä" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 msgid "Finalizing" msgstr "Viimeistely" @@ -2423,6 +2477,10 @@ msgstr "Viimeistely" msgid "Find accounts to follow" msgstr "Etsi seurattavia tilejä" +#: src/tours/HomeTour.tsx:88 +msgid "Find more feeds and accounts to follow in the Explore page." +msgstr "" + #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "Etsi viestejä ja käyttäjiä Blueskysta" @@ -2443,11 +2501,15 @@ msgstr "Hienosäädä keskusteluketjuja." msgid "Finish" msgstr "" +#: src/tours/Tooltip.tsx:149 +msgid "Finish tour and begin using the application" +msgstr "" + #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "Kuntoilu" -#: src/screens/Onboarding/StepFinished.tsx:269 +#: src/screens/Onboarding/StepFinished.tsx:277 msgid "Flexible" msgstr "Joustava" @@ -2460,6 +2522,8 @@ msgstr "Käännä vaakasuunnassa" msgid "Flip vertically" msgstr "Käännä pystysuunnassa" +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:341 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2482,13 +2546,17 @@ msgstr "Seuraa {0}" msgid "Follow {name}" msgstr "" +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "" + #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" msgstr "Seuraa käyttäjää" -#: src/screens/StarterPack/StarterPackScreen.tsx:345 -#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:405 +#: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" msgstr "" @@ -2516,7 +2584,7 @@ msgstr "" #~ msgid "Followed by" #~ msgstr "" -#: src/view/com/profile/ProfileCard.tsx:227 +#: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" msgstr "Seuraajina {0}" @@ -2544,16 +2612,20 @@ msgstr "Seuratut käyttäjät" msgid "Followed users only" msgstr "Vain seuratut käyttäjät" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:197 msgid "followed you" msgstr "seurasi sinua" +#: src/view/com/notifications/FeedItem.tsx:195 +msgid "followed you back" +msgstr "" + #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "Seuraajat" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" msgstr "" @@ -2562,17 +2634,20 @@ msgstr "" msgid "Followers you know" msgstr "" +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:335 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:630 +#: src/view/screens/Feeds.tsx:631 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Seurataan" +#: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Seurataan {0}" @@ -2581,21 +2656,25 @@ msgstr "Seurataan {0}" msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:573 +#: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" msgstr "Seuratut -syötteen asetukset" -#: src/Navigation.tsx:277 +#: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "Following Feed Preferences" msgstr "Seuratut -syötteen asetukset" +#: src/tours/HomeTour.tsx:59 +msgid "Following shows the latest posts from people you follow." +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "Seuraa sinua" -#: src/view/com/profile/ProfileCard.tsx:152 +#: src/components/Pills.tsx:165 msgid "Follows You" msgstr "Seuraa sinua" @@ -2617,11 +2696,11 @@ msgstr "Turvallisuussyistä et näe tätä uudelleen. Jos unohdat tämän salasa msgid "Forgot Password" msgstr "Unohtunut salasana" -#: src/screens/Login/LoginForm.tsx:227 +#: src/screens/Login/LoginForm.tsx:246 msgid "Forgot password?" msgstr "Unohtuiko salasana?" -#: src/screens/Login/LoginForm.tsx:238 +#: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" msgstr "Unohditko?" @@ -2655,6 +2734,10 @@ msgstr "" msgid "Get Started" msgstr "Aloita tästä" +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "" + #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" msgstr "" @@ -2669,31 +2752,35 @@ msgstr "Ilmeisiä lain tai käyttöehtojen rikkomuksia" #: src/components/moderation/ScreenHider.tsx:151 #: src/components/moderation/ScreenHider.tsx:160 -#: src/view/com/auth/LoggedOut.tsx:78 -#: src/view/com/auth/LoggedOut.tsx:79 +#: src/view/com/auth/LoggedOut.tsx:80 +#: src/view/com/auth/LoggedOut.tsx:81 #: src/view/screens/NotFound.tsx:55 #: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Palaa takaisin" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:656 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Palaa takaisin" +#: 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/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:225 +#: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" msgstr "Palaa edelliseen vaiheeseen" @@ -2727,6 +2814,10 @@ msgstr "Siirry seuraavaan" msgid "Go to profile" msgstr "" +#: src/tours/Tooltip.tsx:138 +msgid "Go to the next step of the tour" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "" @@ -2735,6 +2826,10 @@ msgstr "" msgid "Graphic Media" msgstr "" +#: src/state/shell/progress-guide.tsx:166 +msgid "Half way there!" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" msgstr "Käyttäjätunnus" @@ -2747,19 +2842,19 @@ msgstr "Haptiikka" msgid "Harassment, trolling, or intolerance" msgstr "Häirintä, trollaus tai suvaitsemattomuus" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:308 msgid "Hashtag" msgstr "Aihetunniste" -#: src/components/RichText.tsx:216 +#: src/components/RichText.tsx:218 msgid "Hashtag: #{tag}" msgstr "Aihetunniste #{tag}" -#: src/screens/Signup/index.tsx:272 +#: src/screens/Signup/index.tsx:167 msgid "Having trouble?" msgstr "Ongelmia?" -#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/desktop/RightNav.tsx:99 #: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Ohje" @@ -2795,7 +2890,7 @@ msgstr "Tässä on sovelluksesi salasana." msgid "Hide" msgstr "Piilota" -#: src/view/com/notifications/FeedItem.tsx:433 +#: src/view/com/notifications/FeedItem.tsx:444 msgctxt "action" msgid "Hide" msgstr "Piilota" @@ -2814,7 +2909,7 @@ msgstr "Piilota sisältö" msgid "Hide this post?" msgstr "Piilota tämä viesti?" -#: src/view/com/notifications/FeedItem.tsx:424 +#: src/view/com/notifications/FeedItem.tsx:435 msgid "Hide user list" msgstr "Piilota käyttäjäluettelo" @@ -2846,10 +2941,10 @@ 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:511 -#: src/Navigation.tsx:531 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: src/Navigation.tsx:519 +#: src/Navigation.tsx:539 +#: 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 msgid "Home" @@ -2860,8 +2955,8 @@ msgid "Host:" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:160 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:180 +#: src/screens/Signup/StepInfo/index.tsx:106 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "Hostingyritys" @@ -2961,19 +3056,19 @@ msgstr "Syötä uusi salasana" msgid "Input password for account deletion" msgstr "Syötä salasana käyttäjätilin poistoa varten" -#: src/screens/Login/LoginForm.tsx:266 +#: src/screens/Login/LoginForm.tsx:286 msgid "Input the code which has been emailed to you" msgstr "Syötä sinulle sähköpostitse lähetetty koodi" #: src/screens/Login/LoginForm.tsx:221 -msgid "Input the password tied to {identifier}" -msgstr "Syötä salasana, joka liittyy kohteeseen {identifier}" +#~ msgid "Input the password tied to {identifier}" +#~ msgstr "Syötä salasana, joka liittyy kohteeseen {identifier}" -#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Login/LoginForm.tsx:215 msgid "Input the username or email address you used at signup" msgstr "Syötä käyttäjätunnus tai sähköpostiosoite, jonka käytit rekisteröityessäsi" -#: src/screens/Login/LoginForm.tsx:220 +#: src/screens/Login/LoginForm.tsx:241 msgid "Input your password" msgstr "Syötä salasanasi" @@ -2981,7 +3076,7 @@ msgstr "Syötä salasanasi" msgid "Input your preferred hosting provider" msgstr "Syötä haluamasi palveluntarjoaja" -#: src/screens/Signup/StepHandle.tsx:63 +#: src/screens/Signup/StepHandle.tsx:111 msgid "Input your user handle" msgstr "Syötä käyttäjätunnuksesi" @@ -2989,7 +3084,7 @@ msgstr "Syötä käyttäjätunnuksesi" msgid "Introducing Direct Messages" msgstr "" -#: src/screens/Login/LoginForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:140 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "Virheellinen kaksivaiheisen tunnistautumisen vahvistuskoodi." @@ -2998,7 +3093,7 @@ msgstr "Virheellinen kaksivaiheisen tunnistautumisen vahvistuskoodi." msgid "Invalid or unsupported post record" msgstr "Virheellinen tai ei tuettu tietue" -#: src/screens/Login/LoginForm.tsx:140 +#: src/screens/Login/LoginForm.tsx:145 msgid "Invalid username or password" msgstr "Virheellinen käyttäjätunnus tai salasana" @@ -3006,11 +3101,11 @@ msgstr "Virheellinen käyttäjätunnus tai salasana" msgid "Invite a Friend" msgstr "Kutsu ystävä" -#: src/screens/Signup/StepInfo/index.tsx:58 +#: src/screens/Signup/StepInfo/index.tsx:124 msgid "Invite code" msgstr "Kutsukoodi" -#: src/screens/Signup/state.ts:275 +#: src/screens/Signup/state.ts:251 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Kutsukoodia ei hyväksytty. Tarkista, että syötit sen oikein ja yritä uudelleen." @@ -3046,8 +3141,10 @@ msgstr "" msgid "Jobs" msgstr "Työpaikat" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackScreen.tsx:432 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" msgstr "" @@ -3096,16 +3193,16 @@ msgstr "" msgid "Language selection" msgstr "Kielen valinta" -#: src/view/screens/Settings/index.tsx:530 +#: src/view/screens/Settings/index.tsx:531 msgid "Language settings" msgstr "Kielen asetukset" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:155 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Kielen asetukset" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Languages" msgstr "Kielet" @@ -3165,7 +3262,7 @@ msgstr "Poistuminen Blueskysta" msgid "left to go." msgstr "jäljellä." -#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:309 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Legacy tietovarasto tyhjennetty, sinun on käynnistettävä sovellus uudelleen nyt." @@ -3178,11 +3275,12 @@ msgstr "" msgid "Let's get your password reset!" msgstr "Aloitetaan salasanasi nollaus!" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 +#: src/tours/Tooltip.tsx:151 msgid "Let's go!" msgstr "Aloitetaan!" -#: src/view/screens/Settings/index.tsx:452 +#: src/view/screens/Settings/index.tsx:453 msgid "Light" msgstr "Vaalea" @@ -3190,14 +3288,23 @@ msgstr "Vaalea" #~ msgid "Like" #~ msgstr "Tykkää" +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:167 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 #: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Tykkää tästä syötteestä" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:216 -#: src/Navigation.tsx:221 +#: src/Navigation.tsx:219 +#: src/Navigation.tsx:224 msgid "Liked by" msgstr "Tykänneet" @@ -3221,11 +3328,11 @@ msgstr "Tykänneet" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "Tykännyt {likeCount} {0}" -#: src/view/com/notifications/FeedItem.tsx:190 +#: src/view/com/notifications/FeedItem.tsx:201 msgid "liked your custom feed" msgstr "tykkäsi mukautetusta syötteestäsi" -#: src/view/com/notifications/FeedItem.tsx:182 +#: src/view/com/notifications/FeedItem.tsx:185 msgid "liked your post" msgstr "tykkäsi viestistäsi" @@ -3237,7 +3344,7 @@ msgstr "Tykkäykset" msgid "Likes on this post" msgstr "Tykkäykset tässä viestissä" -#: src/Navigation.tsx:185 +#: src/Navigation.tsx:188 msgid "List" msgstr "Lista" @@ -3249,7 +3356,7 @@ msgstr "Listan kuvake" msgid "List blocked" msgstr "Lista estetty" -#: src/components/FeedCard.tsx:155 +#: src/components/ListCard.tsx:113 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "Listan on luonut {0}" @@ -3274,10 +3381,10 @@ msgstr "Listaa estosta poistetut" msgid "List unmuted" msgstr "Listaa hiljennyksestä poistetut" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:125 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/desktop/LeftNav.tsx:385 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 msgid "Lists" @@ -3314,7 +3421,7 @@ msgstr "Lataa uusia viestejä" msgid "Loading..." msgstr "Ladataan..." -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:239 msgid "Log" msgstr "Loki" @@ -3338,7 +3445,7 @@ msgstr "Näkyvyys kirjautumattomana" msgid "Login to account that is not listed" msgstr "Kirjaudu tiliin, joka ei ole luettelossa" -#: src/components/RichText.tsx:217 +#: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" msgstr "Pidä alaspainettuna avataksesi tunnistevalikon tunnisteelle #{tag}" @@ -3423,7 +3530,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:526 +#: src/Navigation.tsx:534 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3438,9 +3545,9 @@ msgstr "" msgid "Misleading Account" msgstr "Harhaanjohtava käyttäjätili" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:130 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Moderation" msgstr "Moderointi" @@ -3448,7 +3555,7 @@ msgstr "Moderointi" msgid "Moderation details" msgstr "Moderaation yksityiskohdat" -#: src/components/FeedCard.tsx:157 +#: src/components/ListCard.tsx:109 #: src/view/com/lists/ListCard.tsx:95 #: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" @@ -3476,16 +3583,16 @@ msgstr "Moderointilista päivitetty" msgid "Moderation lists" msgstr "Moderointilistat" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Moderointilistat" -#: src/view/screens/Settings/index.tsx:555 +#: src/view/screens/Settings/index.tsx:556 msgid "Moderation settings" msgstr "Moderointiasetukset" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:234 msgid "Moderation states" msgstr "" @@ -3518,6 +3625,10 @@ msgstr "Eniten tykätyt vastaukset ensin" msgid "Movies" msgstr "" +#: src/screens/Onboarding/state.ts:91 +msgid "Music" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "Hiljennä" @@ -3591,7 +3702,7 @@ msgstr "Hiljennetty" msgid "Muted accounts" msgstr "Hiljennetyt käyttäjät" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Hiljennetyt käyttäjätilit" @@ -3617,19 +3728,19 @@ msgstr "Hiljennys on yksityinen. Hiljennetyt käyttäjät voivat edelleen vuorov msgid "My Birthday" msgstr "Syntymäpäiväni" -#: src/view/screens/Feeds.tsx:718 +#: src/view/screens/Feeds.tsx:731 msgid "My Feeds" msgstr "Omat syötteet" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Profiilini" -#: src/view/screens/Settings/index.tsx:616 +#: src/view/screens/Settings/index.tsx:617 msgid "My saved feeds" msgstr "Tallennetut syötteeni" -#: src/view/screens/Settings/index.tsx:622 +#: src/view/screens/Settings/index.tsx:623 msgid "My Saved Feeds" msgstr "Tallennetut syötteeni" @@ -3650,16 +3761,20 @@ msgid "Name or Description Violates Community Standards" msgstr "Nimi tai kuvaus rikkoo yhteisön sääntöjä" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:92 msgid "Nature" msgstr "Luonto" +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "" + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:332 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Siirtyy seuraavalle näytölle" @@ -3677,7 +3792,7 @@ msgstr "Tarvitseeko ilmoittaa tekijänoikeusrikkomuksesta?" #~ msgid "Never lose access to your followers and data." #~ msgstr "Älä koskaan menetä pääsyä seuraajiisi ja tietoihisi." -#: src/screens/Onboarding/StepFinished.tsx:257 +#: src/screens/Onboarding/StepFinished.tsx:265 msgid "Never lose access to your followers or data." msgstr "Älä koskaan menetä pääsyä seuraajiisi tai tietoihisi." @@ -3721,17 +3836,17 @@ msgctxt "action" msgid "New post" msgstr "Uusi viesti" -#: src/view/screens/Feeds.tsx:580 +#: 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/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/shell/desktop/LeftNav.tsx:278 msgid "New post" msgstr "Uusi viesti" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:284 msgctxt "action" msgid "New Post" msgstr "Uusi viesti" @@ -3749,21 +3864,22 @@ msgid "Newest replies first" msgstr "Uusimmat vastaukset ensin" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:93 msgid "News" msgstr "Uutiset" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:311 -#: src/screens/Login/LoginForm.tsx:318 +#: src/screens/Login/LoginForm.tsx:331 +#: src/screens/Login/LoginForm.tsx:338 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:258 +#: src/screens/Signup/BackNextButtons.tsx:66 #: src/screens/StarterPack/Wizard/index.tsx:184 #: src/screens/StarterPack/Wizard/index.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:359 #: src/screens/StarterPack/Wizard/index.tsx:366 +#: src/tours/Tooltip.tsx:139 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3805,11 +3921,12 @@ 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/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "Et enää seuraa käyttäjää {0}" -#: src/screens/Signup/StepHandle.tsx:115 +#: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" msgstr "Ei pidempi kuin 253 merkkiä." @@ -3821,7 +3938,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:118 +#: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "Ei vielä ilmoituksia!" @@ -3849,7 +3966,7 @@ msgstr "" msgid "No results found" msgstr "Tuloksia ei löydetty" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" msgstr "Ei tuloksia haulle \"{query}\"" @@ -3899,7 +4016,7 @@ msgstr "Ei-seksuaalinen alastomuus" #~ msgid "Not Applicable." #~ msgstr "Ei sovellettavissa." -#: src/Navigation.tsx:117 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Ei löytynyt" @@ -3911,7 +4028,7 @@ msgstr "Ei juuri nyt" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:315 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "" @@ -3931,11 +4048,11 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:529 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 +#: 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 msgid "Notifications" @@ -3971,7 +4088,7 @@ msgstr "Pois" msgid "Oh no!" msgstr "Voi ei!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:152 msgid "Oh no! Something went wrong." msgstr "Voi ei! Jokin meni pieleen." @@ -3995,10 +4112,14 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:256 +#: src/view/screens/Settings/index.tsx:257 msgid "Onboarding reset" msgstr "Käyttöönoton nollaus" +#: src/tours/Tooltip.tsx:118 +msgid "Onboarding tour step {0}: {1}" +msgstr "" + #: src/view/com/composer/Composer.tsx:522 msgid "One or more images is missing alt text." msgstr "Yksi tai useampi kuva on ilman vaihtoehtoista Alt-tekstiä." @@ -4015,7 +4136,7 @@ msgstr "" #~ msgid "Only {0} can reply." #~ msgstr "Vain {0} voi vastata." -#: src/screens/Signup/StepHandle.tsx:98 +#: src/screens/Signup/StepHandle.tsx:149 msgid "Only contains letters, numbers, and hyphens" msgstr "Sisältää vain kirjaimia, numeroita ja väliviivoja" @@ -4031,7 +4152,7 @@ msgstr "Hups, nyt meni jotain väärin!" msgid "Oops!" msgstr "Hups!" -#: src/screens/Onboarding/StepFinished.tsx:253 +#: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" msgstr "Avaa" @@ -4057,7 +4178,7 @@ msgstr "Avaa emoji-valitsin" msgid "Open feed options menu" msgstr "Avaa syötteen asetusvalikko" -#: src/view/screens/Settings/index.tsx:736 +#: src/view/screens/Settings/index.tsx:737 msgid "Open links with in-app browser" msgstr "Avaa linkit sovelluksen sisäisellä selaimella" @@ -4077,16 +4198,16 @@ msgstr "Avaa navigointi" msgid "Open post options menu" msgstr "Avaa viestin asetusvalikko" -#: src/screens/StarterPack/StarterPackScreen.tsx:451 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:861 +#: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" msgstr "Avaa storybook-sivu" -#: src/view/screens/Settings/index.tsx:848 +#: src/view/screens/Settings/index.tsx:849 msgid "Open system log" msgstr "Avaa järjestelmäloki" @@ -4098,7 +4219,7 @@ msgstr "Avaa {numItems} asetusta" msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Opens accessibility settings" msgstr "Avaa esteettömyysasetukset" @@ -4114,7 +4235,7 @@ msgstr "Avaa debug lisätiedot" msgid "Opens camera on device" msgstr "Avaa laitteen kameran" -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Opens chat settings" msgstr "" @@ -4122,7 +4243,7 @@ msgstr "" msgid "Opens composer" msgstr "Avaa editorin" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Opens configurable language settings" msgstr "Avaa mukautettavat kielen asetukset" @@ -4130,7 +4251,7 @@ msgstr "Avaa mukautettavat kielen asetukset" msgid "Opens device photo gallery" msgstr "Avaa laitteen valokuvat" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" msgstr "Avaa ulkoiset upotusasetukset" @@ -4152,27 +4273,27 @@ msgstr "Avaa GIF-valinnan valintaikkunan." msgid "Opens list of invite codes" msgstr "Avaa kutsukoodien luettelon" -#: src/view/screens/Settings/index.tsx:808 +#: src/view/screens/Settings/index.tsx:809 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:830 +#: src/view/screens/Settings/index.tsx:831 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "" -#: src/view/screens/Settings/index.tsx:765 +#: src/view/screens/Settings/index.tsx:766 msgid "Opens modal for changing your Bluesky password" msgstr "" -#: src/view/screens/Settings/index.tsx:720 +#: src/view/screens/Settings/index.tsx:721 msgid "Opens modal for choosing a new Bluesky handle" msgstr "" -#: src/view/screens/Settings/index.tsx:788 +#: src/view/screens/Settings/index.tsx:789 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Opens modal for email verification" msgstr "" @@ -4180,11 +4301,11 @@ msgstr "" msgid "Opens modal for using custom domain" msgstr "Avaa asetukset oman verkkotunnuksen käyttöönottoon" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Opens moderation settings" msgstr "Avaa moderointiasetukset" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:247 msgid "Opens password reset form" msgstr "Avaa salasanan palautuslomakkeen" @@ -4193,15 +4314,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:617 +#: src/view/screens/Settings/index.tsx:618 msgid "Opens screen with all saved feeds" msgstr "Avaa näkymän kaikkiin tallennettuihin syötteisiin" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "Opens the app password settings" msgstr "Avaa sovelluksen salasanojen asetukset" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Opens the Following feed preferences" msgstr "Avaa Seuratut-syötteen asetukset" @@ -4213,20 +4334,20 @@ msgstr "Avaa linkitetyn verkkosivun" #~ msgid "Opens the message settings page" #~ 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 "Opens the storybook page" msgstr "Avaa storybook-sivun" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" msgstr "Avaa järjestelmän lokisivun" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Opens the threads preferences" msgstr "Avaa keskusteluasetukset" -#: src/view/com/notifications/FeedItem.tsx:513 +#: src/view/com/notifications/FeedItem.tsx:524 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "" @@ -4277,8 +4398,8 @@ msgstr "Sivua ei löytynyt" msgid "Page Not Found" msgstr "Sivua ei löytynyt" -#: src/screens/Login/LoginForm.tsx:204 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Signup/StepInfo/index.tsx:162 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4300,15 +4421,16 @@ msgstr "Salasana päivitetty!" msgid "Pause" msgstr "Pysäytä" +#: src/screens/StarterPack/StarterPackScreen.tsx:170 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "Henkilöt" -#: src/Navigation.tsx:172 +#: src/Navigation.tsx:175 msgid "People followed by @{0}" msgstr "Henkilöt, joita @{0} seuraa" -#: src/Navigation.tsx:165 +#: src/Navigation.tsx:168 msgid "People following @{0}" msgstr "Henkilöt, jotka seuraavat käyttäjää @{0}" @@ -4325,11 +4447,11 @@ msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:94 msgid "Pets" msgstr "Lemmikit" -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:95 msgid "Photography" msgstr "" @@ -4380,15 +4502,16 @@ msgstr "Toista video" msgid "Plays the GIF" msgstr "Toistaa GIFin" -#: src/screens/Signup/state.ts:234 +#: src/screens/Signup/state.ts:210 msgid "Please choose your handle." msgstr "Valitse käyttäjätunnuksesi." -#: src/screens/Signup/state.ts:227 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:81 msgid "Please choose your password." msgstr "Valitse salasanasi." -#: src/screens/Signup/state.ts:248 +#: src/screens/Signup/state.ts:224 msgid "Please complete the verification captcha." msgstr "Täydennä varmennus-captcha, ole hyvä." @@ -4408,10 +4531,15 @@ msgstr "Anna uniikki nimi tälle sovellussalasanalle tai käytä satunnaisesti l msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Ole hyvä ja syötä oikea sana, aihetunniste tai lause hiljennettäväksi." -#: src/screens/Signup/state.ts:213 +#: src/screens/Signup/state.ts:189 +#: src/screens/Signup/StepInfo/index.tsx:69 msgid "Please enter your email." msgstr "Anna sähköpostiosoitteesi." +#: src/screens/Signup/StepInfo/index.tsx:63 +msgid "Please enter your invite code." +msgstr "" + #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" msgstr "Anna myös salasanasi:" @@ -4438,7 +4566,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Odota, että linkkikortti latautuu kokonaan" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:96 msgid "Politics" msgstr "Politiikka" @@ -4461,9 +4589,9 @@ msgstr "Viesti" msgid "Post by {0}" msgstr "Lähettäjä {0}" -#: src/Navigation.tsx:191 -#: src/Navigation.tsx:198 -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:194 +#: src/Navigation.tsx:201 +#: src/Navigation.tsx:208 msgid "Post by @{0}" msgstr "Lähettäjä @{0}" @@ -4502,6 +4630,7 @@ msgstr "Viestiä ei löydy" msgid "posts" msgstr "viestit" +#: src/screens/StarterPack/StarterPackScreen.tsx:172 #: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Viestit" @@ -4529,7 +4658,7 @@ msgstr "Klikkaa vaihtaaksesi palveluntarjoajaa" #: src/components/Error.tsx:85 #: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/index.tsx:238 +#: src/screens/Signup/BackNextButtons.tsx:46 msgid "Press to retry" msgstr "Paina uudelleen jatkaaksesi" @@ -4554,15 +4683,15 @@ msgstr "Ensisijainen kieli" msgid "Prioritize Your Follows" msgstr "Aseta seurattavat tärkeysjärjestykseen" -#: src/view/screens/Settings/index.tsx:654 -#: src/view/shell/desktop/RightNav.tsx:77 +#: src/view/screens/Settings/index.tsx:655 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Yksityisyys" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 +#: src/view/screens/Settings/index.tsx:958 #: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Yksityisyydensuojakäytäntö" @@ -4580,8 +4709,8 @@ msgstr "Käsitellään..." msgid "profile" msgstr "profiili" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 +#: 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 @@ -4592,11 +4721,11 @@ msgstr "Profiili" msgid "Profile updated" msgstr "Profiili päivitetty" -#: src/view/screens/Settings/index.tsx:1021 +#: src/view/screens/Settings/index.tsx:1022 msgid "Protect your account by verifying your email." msgstr "Suojaa käyttäjätilisi vahvistamalla sähköpostiosoitteesi." -#: src/screens/Onboarding/StepFinished.tsx:239 +#: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" msgstr "Julkinen" @@ -4628,6 +4757,10 @@ msgstr "" msgid "QR code saved to your camera roll!" msgstr "" +#: src/tours/Tooltip.tsx:111 +msgid "Quick tip" +msgstr "" + #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:79 @@ -4686,7 +4819,7 @@ msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:325 +#: src/components/FeedCard.tsx:309 #: src/components/StarterPack/Wizard/WizardListCard.tsx:95 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 @@ -4735,7 +4868,7 @@ msgstr "Poista syöte?" msgid "Remove from my feeds" msgstr "Poista syötteistäni" -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:304 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Poista syötteistäni?" @@ -4881,8 +5014,8 @@ msgstr "" msgid "Report post" msgstr "Ilmianna viesti" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 -#: src/screens/StarterPack/StarterPackScreen.tsx:507 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 msgid "Report starter pack" msgstr "" @@ -4928,7 +5061,7 @@ msgstr "Uudelleenjulkaise" msgid "Repost" msgstr "Uudelleenjulkaise" -#: src/screens/StarterPack/StarterPackScreen.tsx:446 +#: src/screens/StarterPack/StarterPackScreen.tsx:524 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4947,7 +5080,7 @@ msgstr "{0} uudelleenjulkaisi" msgid "Reposted by <0><1/>" msgstr "Uudelleenjulkaissut <0><1/>" -#: src/view/com/notifications/FeedItem.tsx:184 +#: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "uudelleenjulkaisi viestisi" @@ -4973,7 +5106,7 @@ msgstr "Edellytä ALT-tekstiä ennen viestin julkaisua" msgid "Require email code to log into your account" msgstr "Edellytä sähköpostikoodia kirjautumisessa" -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" msgstr "Vaaditaan tälle instanssille" @@ -4990,8 +5123,8 @@ msgstr "Nollauskoodi" msgid "Reset Code" msgstr "Nollauskoodi" -#: src/view/screens/Settings/index.tsx:900 -#: src/view/screens/Settings/index.tsx:903 +#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" msgstr "Nollaa käyttöönoton tila" @@ -4999,20 +5132,20 @@ msgstr "Nollaa käyttöönoton tila" msgid "Reset password" msgstr "Nollaa salasana" -#: src/view/screens/Settings/index.tsx:880 -#: src/view/screens/Settings/index.tsx:883 +#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:884 msgid "Reset preferences state" msgstr "Nollaa asetusten tila" -#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" msgstr "Nollaa käyttöönoton tilan" -#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" msgstr "Nollaa asetusten tilan" -#: src/screens/Login/LoginForm.tsx:292 +#: src/screens/Login/LoginForm.tsx:312 msgid "Retries login" msgstr "Yrittää uudelleen kirjautumista" @@ -5025,12 +5158,12 @@ msgstr "Yrittää uudelleen viimeisintä toimintoa, joka epäonnistui" #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:291 -#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:311 +#: src/screens/Login/LoginForm.tsx:318 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Signup/BackNextButtons.tsx:52 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" @@ -5041,7 +5174,7 @@ msgstr "Yritä uudelleen" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:650 +#: src/screens/StarterPack/StarterPackScreen.tsx:728 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Palaa edelliselle sivulle" @@ -5137,13 +5270,13 @@ msgstr "Tallentaa kuvan rajausasetukset" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:372 -#: src/view/com/notifications/FeedItem.tsx:397 +#: src/view/com/notifications/FeedItem.tsx:383 +#: src/view/com/notifications/FeedItem.tsx:408 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:97 msgid "Science" msgstr "Tiede" @@ -5152,16 +5285,16 @@ msgid "Scroll to top" msgstr "Vieritä alkuun" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:516 -#: src/view/com/auth/LoggedOut.tsx:119 +#: src/Navigation.tsx:524 +#: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 #: src/view/screens/Search/Search.tsx:791 #: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 +#: 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 @@ -5193,8 +5326,8 @@ msgstr "" #~ msgid "Search for someone to start a conversation with." #~ msgstr "" -#: src/view/com/auth/LoggedOut.tsx:101 -#: src/view/com/auth/LoggedOut.tsx:102 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:107 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "Hae käyttäjiä" @@ -5319,11 +5452,11 @@ msgstr "Valitse, mitä kieliä haluat tilattujen syötteidesi sisältävän. Jos msgid "Select your app language for the default text to display in the app." msgstr "Valitse sovelluksen käyttöliittymän kieli." -#: src/screens/Signup/StepInfo/index.tsx:135 +#: src/screens/Signup/StepInfo/index.tsx:192 msgid "Select your date of birth" msgstr "Aseta syntymäaikasi" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:225 msgid "Select your interests from the options below" msgstr "Valitse kiinnostuksen kohteesi alla olevista vaihtoehdoista" @@ -5436,23 +5569,23 @@ msgstr "Luo käyttäjätili" msgid "Sets Bluesky username" msgstr "Asettaa Bluesky-käyttäjätunnuksen" -#: src/view/screens/Settings/index.tsx:461 +#: src/view/screens/Settings/index.tsx:462 msgid "Sets color theme to dark" msgstr "Muuttaa väriteeman tummaksi" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Sets color theme to light" msgstr "Muuttaa väriteeman vaaleaksi" -#: src/view/screens/Settings/index.tsx:448 +#: src/view/screens/Settings/index.tsx:449 msgid "Sets color theme to system setting" msgstr "Muuttaa väriteeman käyttöjärjestelmän mukaiseksi" -#: src/view/screens/Settings/index.tsx:487 +#: src/view/screens/Settings/index.tsx:488 msgid "Sets dark theme to the dark theme" msgstr "Muuttaa tumman väriteeman tummaksi" -#: src/view/screens/Settings/index.tsx:480 +#: src/view/screens/Settings/index.tsx:481 msgid "Sets dark theme to the dim theme" msgstr "Asettaa tumman teeman himmeäksi teemaksi" @@ -5472,9 +5605,9 @@ msgstr "Asettaa kuvan kuvasuhteen korkeaksi" msgid "Sets image aspect ratio to wide" msgstr "Asettaa kuvan kuvasuhteen leveäksi" -#: src/Navigation.tsx:147 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:395 +#: src/Navigation.tsx:150 +#: src/view/screens/Settings/index.tsx:333 +#: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:559 #: src/view/shell/Drawer.tsx:560 msgid "Settings" @@ -5489,13 +5622,13 @@ msgid "Sexually Suggestive" msgstr "Seksuaalisesti vihjaileva" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:340 -#: src/screens/StarterPack/StarterPackScreen.tsx:493 +#: 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/post-ctrls/PostCtrls.tsx:304 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Jaa" @@ -5515,7 +5648,7 @@ msgstr "" #: src/view/com/profile/ProfileMenu.tsx:377 #: src/view/com/util/forms/PostDropdownBtn.tsx:461 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:320 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "Jaa kuitenkin" @@ -5526,7 +5659,7 @@ msgstr "Jaa syöte" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -5544,7 +5677,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:333 +#: src/screens/StarterPack/StarterPackScreen.tsx:393 msgid "Share this starter pack" msgstr "" @@ -5563,7 +5696,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:381 +#: src/view/screens/Settings/index.tsx:382 msgid "Show" msgstr "Näytä" @@ -5571,7 +5704,7 @@ msgstr "Näytä" #~ msgid "Show all replies" #~ msgstr "Näytä kaikki vastaukset" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "" @@ -5690,17 +5823,17 @@ msgstr "Näyttää viestit käyttäjältä {0} syötteessäsi" #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:100 #: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Login/LoginForm.tsx:177 #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.tsx:72 #: src/view/com/auth/SplashScreen.web.tsx:112 #: src/view/com/auth/SplashScreen.web.tsx:121 -#: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 #: src/view/shell/bottom-bar/BottomBar.tsx:315 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/bottom-bar/BottomBar.tsx:318 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:210 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5728,12 +5861,12 @@ msgstr "Kirjaudu Blueskyhin tai luo uusi käyttäjätili" msgid "Sign out" msgstr "Kirjaudu ulos" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 #: src/view/shell/bottom-bar/BottomBar.tsx:305 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBar.tsx:306 +#: src/view/shell/bottom-bar/BottomBar.tsx:308 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:200 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5749,7 +5882,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:391 +#: src/view/screens/Settings/index.tsx:392 msgid "Signed in as" msgstr "Kirjautunut sisään nimellä" @@ -5758,21 +5891,21 @@ 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:197 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:264 #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Ohita" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:261 msgid "Skip this flow" msgstr "Ohita tämä vaihe" @@ -5781,6 +5914,10 @@ msgstr "Ohita tämä vaihe" msgid "Software Dev" msgstr "Ohjelmistokehitys" +#: src/components/FeedInterstitials.tsx:378 +msgid "Some other feeds you might like" +msgstr "" + #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" @@ -5805,8 +5942,8 @@ msgstr "" msgid "Something went wrong, please try again." msgstr "Jotain meni pieleen, yritä uudelleen" -#: src/App.native.tsx:96 -#: src/App.web.tsx:78 +#: src/App.native.tsx:98 +#: src/App.web.tsx:80 msgid "Sorry! Your session expired. Please log in again." msgstr "Pahoittelut! Istuntosi on vanhentunut. Kirjaudu sisään uudelleen." @@ -5836,7 +5973,7 @@ msgid "Spam; excessive mentions or replies" msgstr "" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:98 msgid "Sports" msgstr "Urheilu" @@ -5856,17 +5993,22 @@ msgstr "" msgid "Start chatting" msgstr "" +#: src/tours/Tooltip.tsx:99 +msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +msgstr "" + #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:328 +#: src/Navigation.tsx:333 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:65 +#: src/components/StarterPack/StarterPackCard.tsx:70 msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:614 +#: src/screens/StarterPack/StarterPackScreen.tsx:692 msgid "Starter pack is invalid" msgstr "" @@ -5882,7 +6024,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Tilasivu" -#: src/view/screens/Settings/index.tsx:963 +#: src/view/screens/Settings/index.tsx:964 msgid "Status Page" msgstr "" @@ -5890,16 +6032,16 @@ msgstr "" #~ msgid "Step" #~ msgstr "Askel" -#: src/screens/Signup/index.tsx:192 +#: src/screens/Signup/index.tsx:125 msgid "Step {0} of {1}" msgstr "" -#: src/view/screens/Settings/index.tsx:304 +#: src/view/screens/Settings/index.tsx:305 msgid "Storage cleared, you need to restart the app now." msgstr "Tallennustila tyhjennetty, sinun on käynnistettävä sovellus uudelleen." -#: src/Navigation.tsx:226 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:229 +#: src/view/screens/Settings/index.tsx:864 msgid "Storybook" msgstr "Storybook" @@ -5943,6 +6085,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "Mahdollisia seurattavia" +#: src/components/FeedInterstitials.tsx:246 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Suositeltua sinulle" @@ -5951,7 +6094,7 @@ msgstr "Suositeltua sinulle" msgid "Suggestive" msgstr "Viittaava" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:244 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5962,6 +6105,10 @@ msgstr "Tuki" msgid "Switch Account" msgstr "Vaihda käyttäjätiliä" +#: src/tours/HomeTour.tsx:48 +msgid "Switch between feeds to control your experience." +msgstr "" + #: src/view/screens/Settings/index.tsx:160 msgid "Switch to {0}" msgstr "Vaihda käyttäjään {0}" @@ -5970,11 +6117,11 @@ msgstr "Vaihda käyttäjään {0}" msgid "Switches the account you are logged in to" msgstr "Vaihtaa sisäänkirjautuneen käyttäjän tilin" -#: src/view/screens/Settings/index.tsx:445 +#: src/view/screens/Settings/index.tsx:446 msgid "System" msgstr "Järjestelmä" -#: src/view/screens/Settings/index.tsx:851 +#: src/view/screens/Settings/index.tsx:852 msgid "System log" msgstr "Järjestelmäloki" @@ -5990,12 +6137,24 @@ msgstr "Aihetunnistevalikko: {displayTag}" msgid "Tall" msgstr "Pitkä" +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "" + #: src/view/com/util/images/AutoSizedImage.tsx:70 msgid "Tap to view fully" msgstr "Napauta nähdäksesi kokonaan" +#: src/state/shell/progress-guide.tsx:171 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "" + #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:99 msgid "Tech" msgstr "Teknologia" @@ -6007,13 +6166,13 @@ msgstr "" msgid "Tell us a little more" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:86 +#: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Ehdot" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:254 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/Settings/index.tsx:952 #: src/view/screens/TermsOfService.tsx:29 #: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" @@ -6044,12 +6203,14 @@ msgstr "Kiitos. Raporttisi on lähetetty." msgid "That contains the following:" msgstr "Se sisältää seuraavaa:" -#: src/screens/Signup/index.tsx:100 +#: src/screens/Signup/StepHandle.tsx:50 msgid "That handle is already taken." msgstr "Tuo käyttätunnus on jo käytössä." -#: src/screens/StarterPack/StarterPackScreen.tsx:105 -#: src/screens/StarterPack/StarterPackScreen.tsx:106 +#: src/screens/StarterPack/StarterPackScreen.tsx:96 +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:136 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6072,7 +6233,12 @@ msgstr "Yhteisöohjeet on siirretty kohtaan <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "Tekijänoikeuskäytäntö on siirretty kohtaan <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:177 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6101,7 +6267,7 @@ msgstr "Viesti saattaa olla poistettu." msgid "The Privacy Policy has been moved to <0/>" msgstr "Tietosuojakäytäntö on siirretty kohtaan <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:624 +#: src/screens/StarterPack/StarterPackScreen.tsx:702 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6159,11 +6325,11 @@ msgstr "Yhteydenotto palvelimeen epäonnistui" msgid "There was an issue contacting your server" msgstr "Yhteydenotto palvelimeen epäonnistui" -#: src/view/com/notifications/Feed.tsx:126 +#: src/view/com/notifications/Feed.tsx:125 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ongelma ilmoitusten hakemisessa. Napauta tästä yrittääksesi uudelleen." -#: src/view/com/posts/Feed.tsx:299 +#: src/view/com/posts/Feed.tsx:459 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Ongelma viestien hakemisessa. Napauta tästä yrittääksesi uudelleen." @@ -6359,7 +6525,7 @@ msgid "This post has been deleted." msgstr "Tämä viesti on poistettu." #: src/view/com/util/forms/PostDropdownBtn.tsx:458 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:317 +#: 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." @@ -6420,12 +6586,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:594 +#: src/view/screens/Settings/index.tsx:595 msgid "Thread preferences" msgstr "Keskusteluketjun asetukset" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/Settings/index.tsx:605 msgid "Thread Preferences" msgstr "Keskusteluketjun asetukset" @@ -6437,7 +6603,7 @@ msgstr "" msgid "Threaded Mode" msgstr "Ketjumainen näkymä" -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:287 msgid "Threads Preferences" msgstr "Keskusteluketjujen asetukset" @@ -6488,11 +6654,11 @@ msgctxt "action" msgid "Try again" msgstr "Yritä uudelleen" -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:100 msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:745 +#: src/view/screens/Settings/index.tsx:746 msgid "Two-factor authentication" msgstr "Kaksivaiheinen tunnistautuminen" @@ -6514,14 +6680,14 @@ msgstr "Poista listan hiljennys" #: src/screens/Login/ForgotPasswordForm.tsx:74 #: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:79 +#: src/screens/Signup/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Yhteys palveluusi ei onnistu. Tarkista internet-yhteytesi." -#: src/screens/StarterPack/StarterPackScreen.tsx:548 +#: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Unable to delete" msgstr "" @@ -6786,7 +6952,7 @@ msgstr "Käyttäjälista päivitetty" msgid "User Lists" msgstr "Käyttäjälistat" -#: src/screens/Login/LoginForm.tsx:177 +#: src/screens/Login/LoginForm.tsx:197 msgid "Username or email address" msgstr "Käyttäjätunnus tai sähköpostiosoite" @@ -6825,15 +6991,15 @@ msgstr "Arvo:" msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:982 +#: src/view/screens/Settings/index.tsx:983 msgid "Verify email" msgstr "Varmista sähköposti" -#: src/view/screens/Settings/index.tsx:1007 +#: src/view/screens/Settings/index.tsx:1008 msgid "Verify my email" msgstr "Vahvista sähköpostini" -#: src/view/screens/Settings/index.tsx:1016 +#: src/view/screens/Settings/index.tsx:1017 msgid "Verify My Email" msgstr "Vahvista sähköpostini" @@ -6854,7 +7020,7 @@ msgstr "Vahvista sähköpostisi" #~ msgid "Version {0}" #~ msgstr "Versio {0}" -#: src/view/screens/Settings/index.tsx:935 +#: src/view/screens/Settings/index.tsx:936 msgid "Version {appVersion} {bundleInfo}" msgstr "" @@ -6867,7 +7033,7 @@ msgstr "Videopelit" msgid "View {0}'s avatar" msgstr "Katso {0}:n avatar" -#: src/view/com/notifications/FeedItem.tsx:234 +#: src/view/com/notifications/FeedItem.tsx:245 msgid "View {0}'s profile" msgstr "" @@ -6916,7 +7082,7 @@ msgid "View users who like this feed" msgstr "Katso, kuka tykkää tästä syötteestä" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -6951,7 +7117,7 @@ msgstr "" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Arvioimme, että tilisi valmistumiseen on {estimatedTime} aikaa." -#: src/screens/Onboarding/StepFinished.tsx:231 +#: src/screens/Onboarding/StepFinished.tsx:239 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Toivomme sinulle ihania hetkiä. Muista, että Bluesky on:" @@ -6975,7 +7141,7 @@ msgstr "" msgid "We were unable to load your configured labelers at this time." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:157 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Yhteyden muodostaminen ei onnistunut. Yritä uudelleen jatkaaksesi tilisi määritystä. Jos ongelma jatkuu, voit ohittaa tämän vaiheen." @@ -6983,7 +7149,7 @@ msgstr "Yhteyden muodostaminen ei onnistunut. Yritä uudelleen jatkaaksesi tilis msgid "We will let you know when your account is ready." msgstr "Ilmoitamme sinulle, kun käyttäjätilisi on valmis." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:162 msgid "We'll use this to help customize your experience." msgstr "Käytämme tätä mukauttaaksemme kokemustasi." @@ -6991,7 +7157,7 @@ msgstr "Käytämme tätä mukauttaaksemme kokemustasi." msgid "We're having network issues, try again" msgstr "" -#: src/screens/Signup/index.tsx:155 +#: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" msgstr "Olemme innoissamme, että liityt joukkoomme!" @@ -7036,7 +7202,7 @@ msgstr "" msgid "Welcome, friend!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" msgstr "Mitkä ovat kiinnostuksenkohteesi?" @@ -7127,7 +7293,7 @@ msgid "Write your reply" msgstr "Kirjoita vastauksesi" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:101 msgid "Writers" msgstr "Kirjoittajat" @@ -7146,7 +7312,7 @@ msgstr "Kyllä" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:560 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 msgid "Yes, delete this starter pack" msgstr "" @@ -7158,7 +7324,7 @@ msgstr "" msgid "Yesterday, {time}" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:68 +#: src/components/StarterPack/StarterPackCard.tsx:73 msgid "you" msgstr "" @@ -7375,23 +7541,23 @@ msgstr "" msgid "You: {short}" msgstr "" -#: src/screens/Signup/index.tsx:169 +#: src/screens/Signup/index.tsx:102 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:174 +#: 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:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "You'll stay updated with these feeds" msgstr "" @@ -7410,7 +7576,7 @@ msgstr "Olet jonossa" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:228 +#: src/screens/Onboarding/StepFinished.tsx:236 msgid "You're ready to go!" msgstr "Olet valmis aloittamaan!" @@ -7423,7 +7589,7 @@ msgstr "Olet halunnut piilottaa sanan tai aihetunnisteen tässä viestissä" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Olet saavuttanut syötteesi lopun! Etsi lisää käyttäjiä seurattavaksi." -#: src/screens/Signup/index.tsx:202 +#: src/screens/Signup/index.tsx:135 msgid "Your account" msgstr "Käyttäjätilisi" @@ -7435,7 +7601,7 @@ msgstr "Käyttäjätilisi on poistettu" 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 "Käyttäjätilisi arkisto, joka sisältää kaikki julkiset tietueet, voidaan ladata \"CAR\"-tiedostona. Tämä tiedosto ei sisällä upotettuja mediaelementtejä, kuten kuvia, tai yksityisiä tietojasi, jotka on haettava erikseen." -#: src/screens/Signup/StepInfo/index.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" msgstr "Syntymäaikasi" @@ -7452,7 +7618,8 @@ msgstr "Valintasi tallennetaan, mutta sitä voit muuttaa myöhemmin asetuksissa. #~ msgstr "Oletussyötteesi on \"Following\"" #: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Sähköpostiosoitteesi näyttää olevan virheellinen." @@ -7465,11 +7632,15 @@ msgstr "Sähköpostiosoitteesi on päivitetty, mutta sitä ei ole vielä vahvist msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "Sähköpostiosoitettasi ei ole vielä vahvistettu. Tämä on tärkeä turvatoimi, jonka suosittelemme suorittamaan." +#: src/state/shell/progress-guide.tsx:161 +msgid "Your first like!" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Seuraamiesi syöte on tyhjä! Seuraa lisää käyttäjiä nähdäksesi, mitä tapahtuu." -#: src/screens/Signup/StepHandle.tsx:73 +#: src/screens/Signup/StepHandle.tsx:122 msgid "Your full handle will be" msgstr "Käyttäjätunnuksesi tulee olemaan" @@ -7489,7 +7660,7 @@ msgstr "Salasanasi on vaihdettu onnistuneesti!" msgid "Your post has been published" msgstr "Viestisi on julkaistu" -#: src/screens/Onboarding/StepFinished.tsx:243 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Julkaisusi, tykkäyksesi ja estosi ovat julkisia. Hiljennykset ovat yksityisiä." @@ -7509,6 +7680,6 @@ msgstr "Vastauksesi on julkaistu" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" -#: src/screens/Signup/index.tsx:204 +#: src/screens/Signup/index.tsx:137 msgid "Your user handle" msgstr "Käyttäjätunnuksesi" diff --git a/src/locale/locales/fr/messages.po b/src/locale/locales/fr/messages.po index 385751f7b9..6b32dbe719 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:283 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {{formattedCount} autre} other {{formattedCount} autres}}" @@ -47,7 +47,7 @@ msgstr "{0, plural, one {abonné·e} other {abonné·e·s}}" msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {abonnement} other {abonnements}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:259 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {Liker (# like)} other {Liker (# likes)}}" @@ -55,7 +55,7 @@ msgstr "{0, plural, one {Liker (# like)} other {Liker (# likes)}}" msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {like} other {likes}}" -#: src/components/FeedCard.tsx:216 +#: 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 {Liké par # compte} other {Liké par # comptes}}" @@ -64,7 +64,7 @@ msgstr "{0, plural, one {Liké par # compte} other {Liké par # comptes}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {post} other {posts}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:217 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {Répondre (# réponse)} other {Répondre (# réponses)}}" @@ -72,15 +72,15 @@ msgstr "{0, plural, one {Répondre (# réponse)} other {Répondre (# réponses)} msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {repost} other {reposts}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:262 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:222 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" msgstr "{0} personnes se sont inscrites cette semaine" -#: src/screens/StarterPack/StarterPackScreen.tsx:378 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" msgstr "{0} personnes ont utilisé ce kit de démarrage !" @@ -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:503 +#: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} abonnements" @@ -205,7 +205,7 @@ msgstr "<0>Vous et<1> <2>{0} faites partie de votre pack de démarra msgid "⚠Invalid Handle" msgstr "⚠Pseudo invalide" -#: src/screens/Login/LoginForm.tsx:247 +#: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" msgstr "Confirmation 2FA" @@ -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:518 +#: src/view/screens/Settings/index.tsx:519 msgid "Accessibility" msgstr "Accessibilité" -#: src/view/screens/Settings/index.tsx:509 +#: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" msgstr "Paramètres d’accessibilité" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "Paramètres d’accessibilité" -#: src/screens/Login/LoginForm.tsx:170 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:190 +#: src/view/screens/Settings/index.tsx:346 +#: src/view/screens/Settings/index.tsx:753 msgid "Account" msgstr "Compte" @@ -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:422 -#: src/view/screens/Settings/index.tsx:431 +#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:432 msgid "Add account" msgstr "Ajouter un compte" @@ -353,7 +353,7 @@ msgstr "Ajouter le fil d’actu par défaut avec seulement les comptes que vous msgid "Add the following DNS record to your domain:" msgstr "Ajoutez l’enregistrement DNS suivant à votre domaine :" -#: src/components/FeedCard.tsx:305 +#: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" msgstr "Ajouter ce fil à vos fils d’actu" @@ -393,19 +393,19 @@ 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:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Advanced" msgstr "Avancé" -#: src/state/shell/progress-guide.tsx:177 +#: src/state/shell/progress-guide.tsx:176 msgid "Algorithm training complete!" msgstr "Entraînement de l’algorithme terminé !" -#: src/screens/StarterPack/StarterPackScreen.tsx:301 +#: src/screens/StarterPack/StarterPackScreen.tsx:360 msgid "All accounts have been followed!" msgstr "Tous les comptes ont été suivis !" -#: src/view/screens/Feeds.tsx:721 +#: src/view/screens/Feeds.tsx:734 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." @@ -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:177 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 msgid "ALT" msgstr "ALT" @@ -440,7 +440,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Texte alt" -#: src/view/com/util/post-embeds/GifEmbed.tsx:183 +#: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" msgstr "Texte alt" @@ -470,7 +470,7 @@ msgstr "Une erreur s’est produite lors de la génération de votre kit de dém msgid "An error occurred while saving the QR code!" msgstr "Une erreur s’est produite lors de l’enregistrement du code QR !" -#: src/screens/StarterPack/StarterPackScreen.tsx:303 +#: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" msgstr "Une erreur s’est produite en essayant de suivre tous les comptes" @@ -480,6 +480,8 @@ msgstr "Un problème qui ne fait pas partie de ces options" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:309 +#: src/components/ProfileCard.tsx:329 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -487,12 +489,12 @@ msgstr "Un problème qui ne fait pas partie de ces options" msgid "An issue occurred, please try again." msgstr "Un problème est survenu, veuillez réessayer." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" msgstr "une erreur inconnue s’est produite" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:280 +#: src/view/com/notifications/FeedItem.tsx:291 msgid "and" msgstr "et" @@ -501,7 +503,7 @@ msgstr "et" msgid "Animals" msgstr "Animaux" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" msgstr "GIF animé" @@ -525,13 +527,13 @@ 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:697 +#: src/view/screens/Settings/index.tsx:698 msgid "App password settings" msgstr "Paramètres de mot de passe d’application" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:269 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/view/screens/Settings/index.tsx:707 msgid "App Passwords" msgstr "Mots de passe d’application" @@ -556,7 +558,7 @@ msgstr "Appel soumis" msgid "Appeal this decision" msgstr "Faire appel de cette décision" -#: src/view/screens/Settings/index.tsx:439 +#: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "Affichage" @@ -565,7 +567,7 @@ msgstr "Affichage" msgid "Apply default recommended feeds" msgstr "Utiliser les fils d’actu recommandés par défaut" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: 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 ?" @@ -585,7 +587,7 @@ msgstr "Êtes-vous sûr de vouloir partir de cette conversation ? Vos messages msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Êtes-vous sûr de vouloir supprimer {0} de vos fils d’actu ?" -#: src/components/FeedCard.tsx:322 +#: src/components/FeedCard.tsx:306 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 ?" @@ -610,7 +612,7 @@ msgstr "Art" msgid "Artistic or non-erotic nudity." msgstr "Nudité artistique ou non érotique." -#: src/screens/Signup/StepHandle.tsx:119 +#: src/screens/Signup/StepHandle.tsx:170 msgid "At least 3 characters" msgstr "Au moins 3 caractères" @@ -621,20 +623,21 @@ msgstr "Au moins 3 caractères" #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:278 -#: src/screens/Login/LoginForm.tsx:284 +#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:304 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/index.tsx:231 +#: 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:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "Principes de base" @@ -642,7 +645,7 @@ msgstr "Principes de base" msgid "Birthday" msgstr "Date de naissance" -#: src/view/screens/Settings/index.tsx:377 +#: src/view/screens/Settings/index.tsx:378 msgid "Birthday:" msgstr "Date de naissance :" @@ -686,7 +689,7 @@ msgstr "Bloqué" msgid "Blocked accounts" msgstr "Comptes bloqués" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:145 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Comptes bloqués" @@ -753,21 +756,21 @@ msgstr "Flouter les images et les filtrer des fils d’actu" msgid "Books" msgstr "Livres" -#: src/components/FeedInterstitials.tsx:206 +#: src/components/FeedInterstitials.tsx:281 msgid "Browse more accounts on the Explore page" msgstr "Parcourir d’autres comptes sur la page « Explore »" -#: src/components/FeedInterstitials.tsx:332 +#: src/components/FeedInterstitials.tsx:411 msgid "Browse more feeds on the Explore page" msgstr "Parcourir d’autres fils d’actu sur la page « Explore »" -#: src/components/FeedInterstitials.tsx:195 -#: src/components/FeedInterstitials.tsx:321 +#: src/components/FeedInterstitials.tsx:266 +#: src/components/FeedInterstitials.tsx:396 msgid "Browse more suggestions" msgstr "Parcourir d’autres suggestions" -#: src/components/FeedInterstitials.tsx:214 -#: src/components/FeedInterstitials.tsx:341 +#: src/components/FeedInterstitials.tsx:289 +#: src/components/FeedInterstitials.tsx:420 msgid "Browse more suggestions on the Explore page" msgstr "Parcourir d’autres suggestions sur la page « Explore »" @@ -881,17 +884,17 @@ msgstr "Annule l’ouverture du site web lié" msgid "Change" msgstr "Modifier" -#: src/view/screens/Settings/index.tsx:371 +#: src/view/screens/Settings/index.tsx:372 msgctxt "action" msgid "Change" msgstr "Modifier" -#: src/view/screens/Settings/index.tsx:718 +#: src/view/screens/Settings/index.tsx:719 msgid "Change handle" msgstr "Modifier le pseudo" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change Handle" msgstr "Modifier le pseudo" @@ -899,12 +902,12 @@ msgstr "Modifier le pseudo" msgid "Change my email" msgstr "Modifier mon e-mail" -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/index.tsx:764 msgid "Change password" msgstr "Modifier le mot de passe" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Change Password" msgstr "Modifier le mot de passe" @@ -916,9 +919,9 @@ msgstr "Modifier la langue de post en {0}" msgid "Change Your Email" msgstr "Modifier votre e-mail" -#: src/Navigation.tsx:310 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:313 +#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" msgstr "Discussions" @@ -928,14 +931,14 @@ msgstr "Discussion masquée" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:318 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" msgstr "Paramètres de discussion" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" msgstr "Paramètres de discussion" @@ -948,7 +951,7 @@ msgstr "Discussion réaffichée" msgid "Check my status" msgstr "Vérifier mon statut" -#: src/screens/Login/LoginForm.tsx:271 +#: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." msgstr "Vérifiez votre boîte e-mail pour un code de connexion et saisissez-le ici." @@ -980,7 +983,7 @@ msgstr "Choisissez des personnes" msgid "Choose Service" msgstr "Choisir un service" -#: src/screens/Onboarding/StepFinished.tsx:273 +#: src/screens/Onboarding/StepFinished.tsx:281 msgid "Choose the algorithms that power your custom feeds." msgstr "Choisissez les algorithmes qui alimentent vos fils d’actu personnalisés." @@ -993,23 +996,23 @@ msgstr "Choisir cette couleur comme avatar" msgid "Choose who can reply" msgstr "Choisissez qui peut répondre" -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" msgstr "Choisissez votre mot de passe" -#: src/view/screens/Settings/index.tsx:910 +#: src/view/screens/Settings/index.tsx:911 msgid "Clear all legacy storage data" msgstr "Effacer toutes les données de stockage existantes" -#: src/view/screens/Settings/index.tsx:913 +#: src/view/screens/Settings/index.tsx:914 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:922 +#: src/view/screens/Settings/index.tsx:923 msgid "Clear all storage data" msgstr "Effacer toutes les données de stockage" -#: src/view/screens/Settings/index.tsx:925 +#: src/view/screens/Settings/index.tsx:926 msgid "Clear all storage data (restart after this)" msgstr "Effacer toutes les données de stockage (redémarrer ensuite)" @@ -1018,11 +1021,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:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" msgstr "Efface toutes les données de stockage existantes" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" msgstr "Efface toutes les données de stockage" @@ -1063,7 +1066,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:189 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "Close" msgstr "Fermer" @@ -1126,11 +1129,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:226 +#: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" msgstr "Fermer la liste des comptes" -#: src/view/com/notifications/FeedItem.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:437 msgid "Collapses list of users for a given notification" msgstr "Réduit la liste des comptes pour une notification donnée" @@ -1144,16 +1147,16 @@ msgstr "Comédie" msgid "Comics" msgstr "Bandes dessinées" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:259 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Directives communautaires" -#: src/screens/Onboarding/StepFinished.tsx:286 +#: src/screens/Onboarding/StepFinished.tsx:294 msgid "Complete onboarding and start using your account" msgstr "Terminez le didacticiel et commencez à utiliser votre compte" -#: src/screens/Signup/index.tsx:206 +#: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" msgstr "Compléter le défi" @@ -1206,7 +1209,7 @@ msgstr "Confirmez votre âge :" msgid "Confirm your birthdate" msgstr "Confirme votre date de naissance" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:272 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 @@ -1216,11 +1219,11 @@ msgstr "Confirme votre date de naissance" msgid "Confirmation code" msgstr "Code de confirmation" -#: src/screens/Login/LoginForm.tsx:305 +#: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." msgstr "Connexion…" -#: src/screens/Signup/index.tsx:276 +#: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "Contacter le support" @@ -1257,7 +1260,7 @@ msgstr "Avertissements sur le contenu" msgid "Context menu backdrop, click to close the menu." msgstr "Menu contextuel en arrière-plan, cliquez pour fermer le menu." -#: src/screens/Onboarding/StepInterests/index.tsx:258 +#: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Continuer" @@ -1270,9 +1273,9 @@ msgstr "Continuer comme {0} (actuellement connecté)" msgid "Continue thread..." msgstr "Poursuivre le fil de discussion…" -#: src/screens/Onboarding/StepInterests/index.tsx:255 +#: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/index.tsx:251 +#: src/screens/Signup/BackNextButtons.tsx:59 msgid "Continue to next step" msgstr "Passer à l’étape suivante" @@ -1289,7 +1292,7 @@ msgstr "Cuisine" msgid "Copied" msgstr "Copié" -#: src/view/screens/Settings/index.tsx:263 +#: src/view/screens/Settings/index.tsx:264 msgid "Copied build version to clipboard" msgstr "Version de build copiée dans le presse-papier" @@ -1298,7 +1301,7 @@ msgstr "Version de build copiée dans le presse-papier" #: 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/post-ctrls/PostCtrls.tsx:350 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Copié dans le presse-papier" @@ -1355,7 +1358,7 @@ msgstr "Copier le texte du post" msgid "Copy QR code" msgstr "Copier le code QR" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Politique sur les droits d’auteur" @@ -1385,7 +1388,7 @@ msgstr "Créer" msgid "Create a new account" msgstr "Créer un nouveau compte" -#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" msgstr "Créer un compte Bluesky" @@ -1395,7 +1398,7 @@ 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:330 +#: src/Navigation.tsx:338 msgid "Create a starter pack" msgstr "Créer un kit de démarrage" @@ -1403,7 +1406,7 @@ msgstr "Créer un kit de démarrage" msgid "Create a starter pack for me" msgstr "Créer un kit de démarrage pour moi" -#: src/screens/Signup/index.tsx:154 +#: src/screens/Signup/index.tsx:88 msgid "Create Account" msgstr "Créer un compte" @@ -1451,7 +1454,7 @@ msgstr "Personnalisé" msgid "Custom domain" msgstr "Domaine personnalisé" -#: src/view/screens/Feeds.tsx:747 +#: src/view/screens/Feeds.tsx:760 #: src/view/screens/Search/Explore.tsx:390 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." @@ -1460,8 +1463,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:458 -#: src/view/screens/Settings/index.tsx:484 +#: src/view/screens/Settings/index.tsx:459 +#: src/view/screens/Settings/index.tsx:485 msgid "Dark" msgstr "Sombre" @@ -1469,24 +1472,24 @@ msgstr "Sombre" msgid "Dark mode" msgstr "Mode sombre" -#: src/view/screens/Settings/index.tsx:471 +#: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" msgstr "Thème sombre" -#: src/screens/Signup/StepInfo/index.tsx:134 +#: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" msgstr "Date de naissance" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" msgstr "Désactiver le compte" -#: src/view/screens/Settings/index.tsx:818 +#: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" msgstr "Désactiver mon compte" -#: src/view/screens/Settings/index.tsx:873 +#: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" msgstr "Déboguer la modération" @@ -1495,16 +1498,16 @@ msgid "Debug panel" msgstr "Panneau de débug" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:484 -#: src/screens/StarterPack/StarterPackScreen.tsx:563 -#: src/screens/StarterPack/StarterPackScreen.tsx:643 +#: 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/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Supprimer" -#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:829 msgid "Delete account" msgstr "Supprimer le compte" @@ -1520,8 +1523,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:890 -#: src/view/screens/Settings/index.tsx:893 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" msgstr "Supprimer la déclaration d’ouverture aux discussions" @@ -1545,7 +1548,7 @@ msgstr "Supprimer le message pour moi" msgid "Delete my account" msgstr "Supprimer mon compte" -#: src/view/screens/Settings/index.tsx:840 +#: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" msgstr "Supprimer mon compte…" @@ -1554,12 +1557,12 @@ msgstr "Supprimer mon compte…" msgid "Delete post" msgstr "Supprimer le post" -#: src/screens/StarterPack/StarterPackScreen.tsx:478 -#: src/screens/StarterPack/StarterPackScreen.tsx:634 +#: src/screens/StarterPack/StarterPackScreen.tsx:556 +#: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" msgstr "Supprimer le kit de démarrage" -#: src/screens/StarterPack/StarterPackScreen.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" msgstr "Supprimer le kit de démarrage ?" @@ -1579,7 +1582,7 @@ msgstr "Supprimé" msgid "Deleted post." msgstr "Post supprimé." -#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" msgstr "Supprime l’enregistrement de déclaration de discussion" @@ -1598,7 +1601,7 @@ msgstr "Texte alt descriptif" msgid "Did you want to say anything?" msgstr "Vous vouliez dire quelque chose ?" -#: src/view/screens/Settings/index.tsx:477 +#: src/view/screens/Settings/index.tsx:478 msgid "Dim" msgstr "Atténué" @@ -1653,7 +1656,7 @@ msgstr "Découvrir des fils d’actu personnalisés" msgid "Discover new feeds" msgstr "Découvrir de nouveaux fils d’actu" -#: src/view/screens/Feeds.tsx:744 +#: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" msgstr "Découvrir de nouveaux fils d’actu" @@ -1681,7 +1684,7 @@ msgstr "Panneau DNS" msgid "Does not include nudity." msgstr "Ne comprend pas de nudité." -#: src/screens/Signup/StepHandle.tsx:105 +#: src/screens/Signup/StepHandle.tsx:156 msgid "Doesn't begin or end with a hyphen" msgstr "Ne commence pas ou ne se termine pas par un trait d’union" @@ -1726,7 +1729,7 @@ msgstr "Terminer" msgid "Done{extraText}" msgstr "Terminé{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" msgstr "Télécharger Bluesky" @@ -1735,7 +1738,7 @@ msgstr "Télécharger Bluesky" msgid "Download CAR file" msgstr "Télécharger le fichier CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:272 +#: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" msgstr "Déposer pour ajouter des images" @@ -1779,11 +1782,11 @@ msgstr "ex. Les comptes qui répondent toujours avec des pubs." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Chaque code ne fonctionne qu’une seule fois. Vous recevrez régulièrement d’autres codes d’invitation." -#: src/screens/StarterPack/StarterPackScreen.tsx:473 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "Modifier" @@ -1814,9 +1817,9 @@ msgstr "Modifier les infos de la liste" msgid "Edit Moderation List" msgstr "Modifier la liste de modération" -#: src/Navigation.tsx:271 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 +#: src/Navigation.tsx:274 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Modifier mes fils d’actu" @@ -1839,7 +1842,7 @@ msgstr "Modifier le profil" msgid "Edit Profile" msgstr "Modifier le profil" -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" msgstr "Modifier le kit de démarrage" @@ -1859,7 +1862,7 @@ msgstr "Modifier votre nom d’affichage" msgid "Edit your profile description" msgstr "Modifier votre description de profil" -#: src/Navigation.tsx:335 +#: src/Navigation.tsx:343 msgid "Edit your starter pack" msgstr "Modifier votre kit de démarrage" @@ -1872,7 +1875,7 @@ msgstr "Éducation" msgid "Either choose \"Everybody\" or \"Nobody\"" msgstr "Choisissez soit « Tout le monde », soit « Personne »" -#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "E-mail" @@ -1898,7 +1901,7 @@ msgstr "E-mail mis à jour" msgid "Email verified" msgstr "Adresse e-mail vérifiée" -#: src/view/screens/Settings/index.tsx:349 +#: src/view/screens/Settings/index.tsx:350 msgid "Email:" msgstr "E-mail :" @@ -1989,7 +1992,7 @@ msgid "Enter your birth date" msgstr "Saisissez votre date de naissance" #: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:92 +#: src/screens/Signup/StepInfo/index.tsx:152 msgid "Enter your email address" msgstr "Entrez votre e-mail" @@ -2009,11 +2012,11 @@ msgstr "Entrez votre pseudo et votre mot de passe" msgid "Error occurred while saving file" msgstr "Échec lors de la sauvegarde du fichier" -#: src/screens/Signup/StepCaptcha/index.tsx:51 +#: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." msgstr "Erreur de réception de la réponse captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:197 +#: src/screens/Onboarding/StepInterests/index.tsx:216 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Erreur :" @@ -2068,7 +2071,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:227 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" msgstr "Développer la liste des comptes" @@ -2085,12 +2088,12 @@ msgstr "Médias explicites ou potentiellement dérangeants." msgid "Explicit sexual images." msgstr "Images sexuelles explicites." -#: src/view/screens/Settings/index.tsx:786 +#: src/view/screens/Settings/index.tsx:787 msgid "Export my data" msgstr "Exporter mes données" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:797 +#: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" msgstr "Exporter mes données" @@ -2104,13 +2107,13 @@ msgstr "Média externe" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Les médias externes peuvent permettre à des sites web de collecter des informations sur vous et votre appareil. Aucune information n’est envoyée ou demandée tant que vous n’appuyez pas sur le bouton de lecture." -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:293 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/view/screens/Settings/index.tsx:680 msgid "External Media Preferences" msgstr "Préférences sur les médias externes" -#: src/view/screens/Settings/index.tsx:670 +#: src/view/screens/Settings/index.tsx:671 msgid "External media settings" msgstr "Préférences sur les médias externes" @@ -2136,7 +2139,7 @@ msgstr "Échec de la suppression du message" msgid "Failed to delete post, please try again" msgstr "Échec de la suppression du post, veuillez réessayer" -#: src/screens/StarterPack/StarterPackScreen.tsx:597 +#: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" msgstr "Échec de la suppression du kit de démarrage" @@ -2180,7 +2183,7 @@ msgstr "Échec de l’envoi de l’appel, veuillez réessayer." msgid "Failed to toggle thread mute, please try again" msgstr "Échec de l’activation ou désactivation du masquage du fil de discussion, veuillez réessayer" -#: src/components/FeedCard.tsx:285 +#: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" msgstr "Échec de la mise à jour des fils d’actu" @@ -2189,11 +2192,11 @@ 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:211 +#: src/Navigation.tsx:214 msgid "Feed" msgstr "Fil d’actu" -#: src/components/FeedCard.tsx:161 +#: src/components/FeedCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "Fil d’actu par {0}" @@ -2202,17 +2205,18 @@ msgstr "Fil d’actu par {0}" msgid "Feed toggle" msgstr "Ajouter/enlever le fil d’actu" -#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Feedback" -#: src/Navigation.tsx:320 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 +#: src/Navigation.tsx:323 +#: 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:373 +#: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" @@ -2222,7 +2226,7 @@ msgstr "Fils d’actu" msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "Les fils d’actu sont des algorithmes personnalisés qui se construisent avec un peu d’expertise en programmation. <0/> pour plus d’informations." -#: src/components/FeedCard.tsx:282 +#: src/components/FeedCard.tsx:266 msgid "Feeds updated!" msgstr "Fils d’actu mis à jour !" @@ -2238,7 +2242,7 @@ msgstr "Fichier sauvegardé avec succès !" msgid "Filter from feeds" msgstr "Filtrer des fils d’actu" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 msgid "Finalizing" msgstr "Finalisation" @@ -2276,7 +2280,7 @@ msgstr "Terminer la visite et commencer à utiliser l’application" msgid "Fitness" msgstr "Fitness" -#: src/screens/Onboarding/StepFinished.tsx:269 +#: src/screens/Onboarding/StepFinished.tsx:277 msgid "Flexible" msgstr "Flexible" @@ -2289,6 +2293,8 @@ msgstr "Miroir horizontal" msgid "Flip vertically" msgstr "Miroir vertical" +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:341 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2320,8 +2326,8 @@ msgstr "Suivre 7 comptes" msgid "Follow Account" msgstr "Suivre le compte" -#: src/screens/StarterPack/StarterPackScreen.tsx:345 -#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:405 +#: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" msgstr "Suivre tous" @@ -2333,7 +2339,7 @@ msgstr "Suivre en retour" 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:227 +#: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" msgstr "Suivi par {0}" @@ -2361,7 +2367,7 @@ msgstr "Comptes suivis" msgid "Followed users only" msgstr "Comptes suivis uniquement" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:197 msgid "followed you" msgstr "vous suit" @@ -2374,7 +2380,7 @@ msgstr "vous a suivi" msgid "Followers" msgstr "Abonné·e·s" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" msgstr "Abonné·e·s de @{0} que vous connaissez" @@ -2383,17 +2389,20 @@ msgstr "Abonné·e·s de @{0} que vous connaissez" 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/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:630 +#: src/view/screens/Feeds.tsx:631 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Suivi" +#: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Suit {0}" @@ -2402,13 +2411,13 @@ msgstr "Suit {0}" msgid "Following {name}" msgstr "Suit {name}" -#: src/view/screens/Settings/index.tsx:573 +#: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" msgstr "Préférences du fil d’actu « Following »" -#: src/Navigation.tsx:277 +#: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "Following Feed Preferences" msgstr "Préférences du fil d’actu « Following »" @@ -2420,7 +2429,7 @@ msgstr "« Following » affiche les derniers posts des personnes que vous suiv msgid "Follows you" msgstr "Vous suit" -#: src/view/com/profile/ProfileCard.tsx:152 +#: src/components/Pills.tsx:165 msgid "Follows You" msgstr "Vous suit" @@ -2442,11 +2451,11 @@ msgstr "Pour des raisons de sécurité, vous ne pourrez plus afficher ceci. Si v msgid "Forgot Password" msgstr "Mot de passe oublié" -#: src/screens/Login/LoginForm.tsx:227 +#: src/screens/Login/LoginForm.tsx:246 msgid "Forgot password?" msgstr "Mot de passe oublié ?" -#: src/screens/Login/LoginForm.tsx:238 +#: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" msgstr "Oublié ?" @@ -2498,19 +2507,19 @@ msgstr "Violations flagrantes de la loi ou des conditions d’utilisation" #: src/components/moderation/ScreenHider.tsx:151 #: src/components/moderation/ScreenHider.tsx:160 -#: src/view/com/auth/LoggedOut.tsx:78 -#: src/view/com/auth/LoggedOut.tsx:79 +#: src/view/com/auth/LoggedOut.tsx:80 +#: src/view/com/auth/LoggedOut.tsx:81 #: src/view/screens/NotFound.tsx:55 #: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Retour" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:656 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -2526,7 +2535,7 @@ msgstr "Retour à l’écran précédent" #: src/components/ReportDialog/SubmitView.tsx:104 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:225 +#: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" msgstr "Retour à l’étape précédente" @@ -2567,7 +2576,7 @@ msgstr "Voir le profil du compte" msgid "Graphic Media" msgstr "Médias crus" -#: src/state/shell/progress-guide.tsx:167 +#: src/state/shell/progress-guide.tsx:166 msgid "Half way there!" msgstr "On y est presque !" @@ -2583,19 +2592,19 @@ msgstr "Haptiques" msgid "Harassment, trolling, or intolerance" msgstr "Harcèlement, trolling ou intolérance" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:308 msgid "Hashtag" msgstr "Mot-clé" -#: src/components/RichText.tsx:216 +#: src/components/RichText.tsx:218 msgid "Hashtag: #{tag}" msgstr "Mot-clé : #{tag}" -#: src/screens/Signup/index.tsx:272 +#: src/screens/Signup/index.tsx:167 msgid "Having trouble?" msgstr "Un souci ?" -#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/desktop/RightNav.tsx:99 #: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Aide" @@ -2619,7 +2628,7 @@ msgstr "Voici le mot de passe de votre appli." msgid "Hide" msgstr "Cacher" -#: src/view/com/notifications/FeedItem.tsx:433 +#: src/view/com/notifications/FeedItem.tsx:444 msgctxt "action" msgid "Hide" msgstr "Cacher" @@ -2638,7 +2647,7 @@ msgstr "Cacher ce contenu" msgid "Hide this post?" msgstr "Cacher ce post ?" -#: src/view/com/notifications/FeedItem.tsx:424 +#: src/view/com/notifications/FeedItem.tsx:435 msgid "Hide user list" msgstr "Cacher la liste des comptes" @@ -2670,10 +2679,10 @@ 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:511 -#: src/Navigation.tsx:531 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: src/Navigation.tsx:519 +#: src/Navigation.tsx:539 +#: 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 msgid "Home" @@ -2684,8 +2693,8 @@ msgid "Host:" msgstr "Hébergeur :" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:160 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:180 +#: src/screens/Signup/StepInfo/index.tsx:106 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "Hébergeur" @@ -2785,19 +2794,19 @@ msgstr "Entrez le nouveau mot de passe" msgid "Input password for account deletion" msgstr "Entrez le mot de passe pour la suppression du compte" -#: src/screens/Login/LoginForm.tsx:266 +#: src/screens/Login/LoginForm.tsx:286 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}" +#~ msgid "Input the password tied to {identifier}" +#~ msgstr "Entrez le mot de passe associé à {identifier}" -#: src/screens/Login/LoginForm.tsx:194 +#: 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" -#: src/screens/Login/LoginForm.tsx:220 +#: src/screens/Login/LoginForm.tsx:241 msgid "Input your password" msgstr "Entrez votre mot de passe" @@ -2805,7 +2814,7 @@ msgstr "Entrez votre mot de passe" msgid "Input your preferred hosting provider" msgstr "Entrez votre hébergeur préféré" -#: src/screens/Signup/StepHandle.tsx:63 +#: src/screens/Signup/StepHandle.tsx:111 msgid "Input your user handle" msgstr "Entrez votre pseudo" @@ -2813,7 +2822,7 @@ msgstr "Entrez votre pseudo" msgid "Introducing Direct Messages" msgstr "Et voici les Messages Privés" -#: src/screens/Login/LoginForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:140 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "Code de confirmation 2FA invalide." @@ -2822,7 +2831,7 @@ msgstr "Code de confirmation 2FA invalide." msgid "Invalid or unsupported post record" msgstr "Enregistrement de post invalide ou non pris en charge" -#: src/screens/Login/LoginForm.tsx:140 +#: src/screens/Login/LoginForm.tsx:145 msgid "Invalid username or password" msgstr "Pseudo ou mot de passe incorrect" @@ -2830,11 +2839,11 @@ msgstr "Pseudo ou mot de passe incorrect" msgid "Invite a Friend" msgstr "Inviter un ami" -#: src/screens/Signup/StepInfo/index.tsx:58 +#: src/screens/Signup/StepInfo/index.tsx:124 msgid "Invite code" msgstr "Code d’invitation" -#: src/screens/Signup/state.ts:275 +#: src/screens/Signup/state.ts:251 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Code d’invitation refusé. Vérifiez que vous l’avez saisi correctement et réessayez." @@ -2866,8 +2875,10 @@ msgstr "Il n’y a que vous pour l’instant ! Ajoutez d’autres personnes à msgid "Jobs" msgstr "Emplois" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackScreen.tsx:432 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" msgstr "Rejoignez Bluesky" @@ -2908,16 +2919,16 @@ msgstr "Étiquettes sur votre contenu" msgid "Language selection" msgstr "Sélection de la langue" -#: src/view/screens/Settings/index.tsx:530 +#: src/view/screens/Settings/index.tsx:531 msgid "Language settings" msgstr "Préférences de langue" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:155 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Paramètres linguistiques" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Languages" msgstr "Langues" @@ -2977,7 +2988,7 @@ msgstr "Quitter Bluesky" msgid "left to go." msgstr "devant vous dans la file." -#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:309 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Stockage ancien effacé, vous devez redémarrer l’application maintenant." @@ -2990,11 +3001,12 @@ msgstr "Laissez-moi choisir" msgid "Let's get your password reset!" msgstr "Réinitialisez votre mot de passe !" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 +#: src/tours/Tooltip.tsx:151 msgid "Let's go!" msgstr "Allons-y !" -#: src/view/screens/Settings/index.tsx:452 +#: src/view/screens/Settings/index.tsx:453 msgid "Light" msgstr "Clair" @@ -3002,8 +3014,8 @@ msgstr "Clair" msgid "Like 10 posts" msgstr "Liker 10 posts" -#: src/state/shell/progress-guide.tsx:163 -#: src/state/shell/progress-guide.tsx:168 +#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:167 msgid "Like 10 posts to train the Discover feed" msgstr "Liker 10 posts pour former le fil d’actu « Discover »" @@ -3013,8 +3025,8 @@ msgid "Like this feed" msgstr "Liker ce fil d’actu" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:216 -#: src/Navigation.tsx:221 +#: src/Navigation.tsx:219 +#: src/Navigation.tsx:224 msgid "Liked by" msgstr "Liké par" @@ -3024,11 +3036,11 @@ msgstr "Liké par" msgid "Liked By" msgstr "Liké par" -#: src/view/com/notifications/FeedItem.tsx:190 +#: src/view/com/notifications/FeedItem.tsx:201 msgid "liked your custom feed" msgstr "liké votre fil d’actu personnalisé" -#: src/view/com/notifications/FeedItem.tsx:182 +#: src/view/com/notifications/FeedItem.tsx:185 msgid "liked your post" msgstr "liké votre post" @@ -3040,7 +3052,7 @@ msgstr "Likes" msgid "Likes on this post" msgstr "Likes sur ce post" -#: src/Navigation.tsx:185 +#: src/Navigation.tsx:188 msgid "List" msgstr "Liste" @@ -3052,7 +3064,7 @@ msgstr "Liste des avatars" msgid "List blocked" msgstr "Liste bloquée" -#: src/components/FeedCard.tsx:155 +#: src/components/ListCard.tsx:113 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "Liste par {0}" @@ -3077,10 +3089,10 @@ msgstr "Liste débloquée" msgid "List unmuted" msgstr "Liste démasquée" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:125 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/desktop/LeftNav.tsx:385 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 msgid "Lists" @@ -3117,7 +3129,7 @@ msgstr "Charger les nouveaux posts" msgid "Loading..." msgstr "Chargement…" -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:239 msgid "Log" msgstr "Journaux" @@ -3141,7 +3153,7 @@ msgstr "Visibilité déconnectée" msgid "Login to account that is not listed" msgstr "Se connecter à un compte qui n’est pas listé" -#: src/components/RichText.tsx:217 +#: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" msgstr "Appuyer longtemps pour ouvrir le menu de mot-clé pour #{tag}" @@ -3222,7 +3234,7 @@ msgstr "Le message est trop long" msgid "Message settings" msgstr "Paramètres des messages" -#: src/Navigation.tsx:526 +#: src/Navigation.tsx:534 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3233,9 +3245,9 @@ msgstr "Messages" msgid "Misleading Account" msgstr "Compte trompeur" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:130 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Moderation" msgstr "Modération" @@ -3243,7 +3255,7 @@ msgstr "Modération" msgid "Moderation details" msgstr "Détails de la modération" -#: src/components/FeedCard.tsx:157 +#: src/components/ListCard.tsx:109 #: src/view/com/lists/ListCard.tsx:95 #: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" @@ -3271,16 +3283,16 @@ msgstr "Liste de modération mise à jour" msgid "Moderation lists" msgstr "Listes de modération" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Listes de modération" -#: src/view/screens/Settings/index.tsx:555 +#: src/view/screens/Settings/index.tsx:556 msgid "Moderation settings" msgstr "Paramètres de modération" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:234 msgid "Moderation states" msgstr "États de modération" @@ -3385,7 +3397,7 @@ msgstr "Masqué" msgid "Muted accounts" msgstr "Comptes masqués" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Comptes masqués" @@ -3411,19 +3423,19 @@ msgstr "Ce que vous masquez reste privé. Les comptes masqués peuvent interagir msgid "My Birthday" msgstr "Ma date de naissance" -#: src/view/screens/Feeds.tsx:718 +#: src/view/screens/Feeds.tsx:731 msgid "My Feeds" msgstr "Mes fils d’actu" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Mon profil" -#: src/view/screens/Settings/index.tsx:616 +#: src/view/screens/Settings/index.tsx:617 msgid "My saved feeds" msgstr "Mes fils d’actu enregistrés" -#: src/view/screens/Settings/index.tsx:622 +#: src/view/screens/Settings/index.tsx:623 msgid "My Saved Feeds" msgstr "Mes fils d’actu enregistrés" @@ -3444,7 +3456,7 @@ msgid "Name or Description Violates Community Standards" msgstr "Nom ou description qui viole les normes communautaires" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:92 msgid "Nature" msgstr "Nature" @@ -3457,7 +3469,7 @@ msgid "Navigate to starter pack" msgstr "Navigue vers le kit de démarrage" #: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:332 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Navigue vers le prochain écran" @@ -3470,7 +3482,7 @@ msgstr "Navigue vers votre profil" msgid "Need to report a copyright violation?" msgstr "Besoin de signaler une violation des droits d’auteur ?" -#: src/screens/Onboarding/StepFinished.tsx:257 +#: src/screens/Onboarding/StepFinished.tsx:265 msgid "Never lose access to your followers or data." msgstr "Ne perdez jamais l’accès à vos abonné·e·s ou à vos données." @@ -3514,17 +3526,17 @@ msgctxt "action" msgid "New post" msgstr "Nouveau post" -#: src/view/screens/Feeds.tsx:580 +#: 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/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/shell/desktop/LeftNav.tsx:278 msgid "New post" msgstr "Nouveau post" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:284 msgctxt "action" msgid "New Post" msgstr "Nouveau post" @@ -3542,21 +3554,22 @@ msgid "Newest replies first" msgstr "Réponses les plus récentes en premier" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:93 msgid "News" msgstr "Actualités" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:311 -#: src/screens/Login/LoginForm.tsx:318 +#: src/screens/Login/LoginForm.tsx:331 +#: src/screens/Login/LoginForm.tsx:338 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:258 +#: src/screens/Signup/BackNextButtons.tsx:66 #: src/screens/StarterPack/Wizard/index.tsx:184 #: src/screens/StarterPack/Wizard/index.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:359 #: src/screens/StarterPack/Wizard/index.tsx:366 +#: src/tours/Tooltip.tsx:139 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3593,11 +3606,12 @@ 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/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "Ne suit plus {0}" -#: src/screens/Signup/StepHandle.tsx:115 +#: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" msgstr "Pas plus de 253 caractères" @@ -3609,7 +3623,7 @@ msgstr "Pas encore de messages" msgid "No more conversations to show" msgstr "Plus aucune conversation à afficher" -#: src/view/com/notifications/Feed.tsx:118 +#: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "Pas encore de notifications !" @@ -3637,7 +3651,7 @@ msgstr "Aucun résultat" msgid "No results found" msgstr "Aucun résultat trouvé" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" msgstr "Aucun résultat trouvé pour « {query} »" @@ -3679,7 +3693,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:117 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Introuvable" @@ -3691,7 +3705,7 @@ msgstr "Pas maintenant" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:315 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "Note sur le partage" @@ -3711,11 +3725,11 @@ msgstr "Sons de notification" msgid "Notification Sounds" msgstr "Sons de notification" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:529 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 +#: 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 msgid "Notifications" @@ -3747,7 +3761,7 @@ msgstr "Éteint" msgid "Oh no!" msgstr "Oh non !" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:152 msgid "Oh no! Something went wrong." msgstr "Oh non ! Il y a eu un problème." @@ -3771,7 +3785,7 @@ msgstr "sur" msgid "on {str}" msgstr "le {str}" -#: src/view/screens/Settings/index.tsx:256 +#: src/view/screens/Settings/index.tsx:257 msgid "Onboarding reset" msgstr "Réinitialiser le didacticiel" @@ -3791,7 +3805,7 @@ msgstr "Seuls les fichiers .jpg et .png sont acceptés" msgid "Only {0} can reply" msgstr "Seul {0} peut répondre" -#: src/screens/Signup/StepHandle.tsx:98 +#: src/screens/Signup/StepHandle.tsx:149 msgid "Only contains letters, numbers, and hyphens" msgstr "Ne contient que des lettres, des chiffres et des traits d’union" @@ -3807,7 +3821,7 @@ msgstr "Oups, quelque chose n’a pas marché !" msgid "Oops!" msgstr "Oups !" -#: src/screens/Onboarding/StepFinished.tsx:253 +#: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" msgstr "Ouvert" @@ -3833,7 +3847,7 @@ msgstr "Ouvrir le sélecteur d’emoji" msgid "Open feed options menu" msgstr "Ouvrir le menu des options de fil d’actu" -#: src/view/screens/Settings/index.tsx:736 +#: src/view/screens/Settings/index.tsx:737 msgid "Open links with in-app browser" msgstr "Ouvrir des liens avec le navigateur interne à l’appli" @@ -3853,16 +3867,16 @@ msgstr "Navigation ouverte" msgid "Open post options menu" msgstr "Ouvrir le menu d’options du post" -#: src/screens/StarterPack/StarterPackScreen.tsx:451 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Open starter pack menu" msgstr "Ouvrir le menu du kit de démarrage" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:861 +#: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" msgstr "Ouvrir la page Storybook" -#: src/view/screens/Settings/index.tsx:848 +#: src/view/screens/Settings/index.tsx:849 msgid "Open system log" msgstr "Ouvrir le journal du système" @@ -3874,7 +3888,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:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Opens accessibility settings" msgstr "Ouvre les paramètres d’accessibilité" @@ -3886,7 +3900,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:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Opens chat settings" msgstr "Ouvre les paramètres de discussion" @@ -3894,7 +3908,7 @@ msgstr "Ouvre les paramètres de discussion" msgid "Opens composer" msgstr "Ouvre le rédacteur" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Opens configurable language settings" msgstr "Ouvre les paramètres linguistiques configurables" @@ -3902,7 +3916,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:671 +#: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" msgstr "Ouvre les paramètres d’intégration externe" @@ -3924,27 +3938,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:808 +#: src/view/screens/Settings/index.tsx:809 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:830 +#: src/view/screens/Settings/index.tsx:831 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:765 +#: src/view/screens/Settings/index.tsx:766 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:720 +#: src/view/screens/Settings/index.tsx:721 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:788 +#: src/view/screens/Settings/index.tsx:789 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:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Opens modal for email verification" msgstr "Ouvre une fenêtre modale pour la vérification de l’e-mail" @@ -3952,23 +3966,23 @@ 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:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Opens moderation settings" msgstr "Ouvre les paramètres de modération" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:247 msgid "Opens password reset form" msgstr "Ouvre le formulaire de réinitialisation du mot de passe" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 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:698 +#: src/view/screens/Settings/index.tsx:699 msgid "Opens the app password settings" msgstr "Ouvre les paramètres du mot de passe de l’application" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Opens the Following feed preferences" msgstr "Ouvre les préférences du fil d’actu « Following »" @@ -3976,20 +3990,20 @@ 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:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Opens the storybook page" msgstr "Ouvre la page de l’historique" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" msgstr "Ouvre la page du journal système" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Opens the threads preferences" msgstr "Ouvre les préférences relatives aux fils de discussion" -#: src/view/com/notifications/FeedItem.tsx:513 +#: src/view/com/notifications/FeedItem.tsx:524 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "Ouvre ce profil" @@ -4040,8 +4054,8 @@ msgstr "Page introuvable" msgid "Page Not Found" msgstr "Page introuvable" -#: src/screens/Login/LoginForm.tsx:204 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Signup/StepInfo/index.tsx:162 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4063,15 +4077,16 @@ msgstr "Mot de passe mis à jour !" msgid "Pause" msgstr "Mettre en pause" +#: src/screens/StarterPack/StarterPackScreen.tsx:170 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "Personnes" -#: src/Navigation.tsx:172 +#: src/Navigation.tsx:175 msgid "People followed by @{0}" msgstr "Personnes suivies par @{0}" -#: src/Navigation.tsx:165 +#: src/Navigation.tsx:168 msgid "People following @{0}" msgstr "Personnes qui suivent @{0}" @@ -4088,11 +4103,11 @@ msgid "Person toggle" msgstr "Ajouter/enlever per les personnes" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:94 msgid "Pets" msgstr "Animaux domestiques" -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:95 msgid "Photography" msgstr "Photographie" @@ -4138,15 +4153,16 @@ msgstr "Lire la vidéo" msgid "Plays the GIF" msgstr "Lit le GIF" -#: src/screens/Signup/state.ts:234 +#: src/screens/Signup/state.ts:210 msgid "Please choose your handle." msgstr "Veuillez choisir votre pseudo." -#: src/screens/Signup/state.ts:227 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:81 msgid "Please choose your password." msgstr "Veuillez choisir votre mot de passe." -#: src/screens/Signup/state.ts:248 +#: src/screens/Signup/state.ts:224 msgid "Please complete the verification captcha." msgstr "Veuillez compléter le captcha de vérification." @@ -4166,7 +4182,8 @@ msgstr "Veuillez saisir un nom unique pour le mot de passe de l’application ou msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Veuillez entrer un mot, un mot-clé ou une phrase valide à masquer" -#: src/screens/Signup/state.ts:213 +#: src/screens/Signup/state.ts:189 +#: src/screens/Signup/StepInfo/index.tsx:69 msgid "Please enter your email." msgstr "Veuillez entrer votre e-mail." @@ -4200,7 +4217,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Veuillez patienter le temps que votre carte de lien soit chargée" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:96 msgid "Politics" msgstr "Politique" @@ -4223,9 +4240,9 @@ msgstr "Post" msgid "Post by {0}" msgstr "Post de {0}" -#: src/Navigation.tsx:191 -#: src/Navigation.tsx:198 -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:194 +#: src/Navigation.tsx:201 +#: src/Navigation.tsx:208 msgid "Post by @{0}" msgstr "Post de @{0}" @@ -4264,6 +4281,7 @@ msgstr "Post introuvable" msgid "posts" msgstr "posts" +#: src/screens/StarterPack/StarterPackScreen.tsx:172 #: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Posts" @@ -4291,7 +4309,7 @@ msgstr "Appuyer pour changer d’hébergeur" #: src/components/Error.tsx:85 #: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/index.tsx:238 +#: src/screens/Signup/BackNextButtons.tsx:46 msgid "Press to retry" msgstr "Appuyer pour réessayer" @@ -4311,15 +4329,15 @@ msgstr "Langue principale" msgid "Prioritize Your Follows" msgstr "Définissez des priorités de vos suivis" -#: src/view/screens/Settings/index.tsx:654 -#: src/view/shell/desktop/RightNav.tsx:77 +#: src/view/screens/Settings/index.tsx:655 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Vie privée" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 +#: src/view/screens/Settings/index.tsx:958 #: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Charte de confidentialité" @@ -4337,8 +4355,8 @@ msgstr "Traitement…" msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 +#: 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 @@ -4349,11 +4367,11 @@ msgstr "Profil" msgid "Profile updated" msgstr "Profil mis à jour" -#: src/view/screens/Settings/index.tsx:1021 +#: src/view/screens/Settings/index.tsx:1022 msgid "Protect your account by verifying your email." msgstr "Protégez votre compte en vérifiant votre e-mail." -#: src/screens/Onboarding/StepFinished.tsx:239 +#: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" msgstr "Public" @@ -4425,7 +4443,7 @@ msgid "Reload conversations" msgstr "Rafraîchir les conversations" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:325 +#: src/components/FeedCard.tsx:309 #: src/components/StarterPack/Wizard/WizardListCard.tsx:95 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 @@ -4474,7 +4492,7 @@ msgstr "Supprimer le fil d’actu ?" msgid "Remove from my feeds" msgstr "Supprimer de mes fils d’actu" -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:304 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Supprimer de mes fils d’actu ?" @@ -4611,8 +4629,8 @@ msgstr "Signaler le message" msgid "Report post" msgstr "Signaler le post" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 -#: src/screens/StarterPack/StarterPackScreen.tsx:507 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 msgid "Report starter pack" msgstr "Signaler le kit de démarrage" @@ -4658,7 +4676,7 @@ msgstr "Republier" msgid "Repost" msgstr "Republier" -#: src/screens/StarterPack/StarterPackScreen.tsx:446 +#: src/screens/StarterPack/StarterPackScreen.tsx:524 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4677,7 +4695,7 @@ msgstr "Republié par {0}" msgid "Reposted by <0><1/>" msgstr "Republié par <0><1/>" -#: src/view/com/notifications/FeedItem.tsx:184 +#: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "a republié votre post" @@ -4703,7 +4721,7 @@ msgstr "Nécessiter un texte alt avant de publier" msgid "Require email code to log into your account" msgstr "Nécessiter un code par e-mail pour se connecter au compte" -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" msgstr "Obligatoire pour cet hébergeur" @@ -4720,8 +4738,8 @@ msgstr "Réinitialiser le code" msgid "Reset Code" msgstr "Code de réinitialisation" -#: src/view/screens/Settings/index.tsx:900 -#: src/view/screens/Settings/index.tsx:903 +#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" msgstr "Réinitialisation du didacticiel" @@ -4729,20 +4747,20 @@ msgstr "Réinitialisation du didacticiel" msgid "Reset password" msgstr "Réinitialiser mot de passe" -#: src/view/screens/Settings/index.tsx:880 -#: src/view/screens/Settings/index.tsx:883 +#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:884 msgid "Reset preferences state" msgstr "Réinitialiser l’état des préférences" -#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" msgstr "Réinitialise l’état d’accueil" -#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" msgstr "Réinitialise l’état des préférences" -#: src/screens/Login/LoginForm.tsx:292 +#: src/screens/Login/LoginForm.tsx:312 msgid "Retries login" msgstr "Réessaye la connection" @@ -4755,19 +4773,19 @@ msgstr "Réessaye la dernière action, qui a échoué" #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:291 -#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:311 +#: src/screens/Login/LoginForm.tsx:318 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Signup/BackNextButtons.tsx:52 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "Réessayer" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:650 +#: src/screens/StarterPack/StarterPackScreen.tsx:728 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Retourne à la page précédente" @@ -4859,13 +4877,13 @@ 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:372 -#: src/view/com/notifications/FeedItem.tsx:397 +#: src/view/com/notifications/FeedItem.tsx:383 +#: src/view/com/notifications/FeedItem.tsx:408 msgid "Say hello!" msgstr "Dites bonjour !" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:97 msgid "Science" msgstr "Science" @@ -4874,16 +4892,16 @@ msgid "Scroll to top" msgstr "Remonter en haut" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:516 -#: src/view/com/auth/LoggedOut.tsx:119 +#: src/Navigation.tsx:524 +#: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 #: src/view/screens/Search/Search.tsx:791 #: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 +#: 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 @@ -4911,8 +4929,8 @@ msgstr "Rechercher tous les posts avec le mot-clé {displayTag}" msgid "Search for feeds that you want to suggest to others." msgstr "Recherchez des fils d’actu que vous voulez suggérer à d’autres personnes." -#: src/view/com/auth/LoggedOut.tsx:101 -#: src/view/com/auth/LoggedOut.tsx:102 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:107 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "Rechercher des comptes" @@ -5020,11 +5038,11 @@ msgstr "Sélectionnez les langues que vous souhaitez voir figurer dans les fils msgid "Select your app language for the default text to display in the app." msgstr "Sélectionnez votre langue par défaut pour les textes de l’application." -#: src/screens/Signup/StepInfo/index.tsx:135 +#: src/screens/Signup/StepInfo/index.tsx:192 msgid "Select your date of birth" msgstr "Sélectionnez votre date de naissance" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:225 msgid "Select your interests from the options below" msgstr "Sélectionnez vos centres d’intérêt parmi les options ci-dessous" @@ -5129,23 +5147,23 @@ msgstr "Créez votre compte" msgid "Sets Bluesky username" msgstr "Définit le pseudo Bluesky" -#: src/view/screens/Settings/index.tsx:461 +#: src/view/screens/Settings/index.tsx:462 msgid "Sets color theme to dark" msgstr "Change le thème de couleur en sombre" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Sets color theme to light" msgstr "Change le thème de couleur en clair" -#: src/view/screens/Settings/index.tsx:448 +#: src/view/screens/Settings/index.tsx:449 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:487 +#: src/view/screens/Settings/index.tsx:488 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:480 +#: src/view/screens/Settings/index.tsx:481 msgid "Sets dark theme to the dim theme" msgstr "Change le thème sombre comme étant le thème atténué" @@ -5165,9 +5183,9 @@ 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:147 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:395 +#: src/Navigation.tsx:150 +#: src/view/screens/Settings/index.tsx:333 +#: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:559 #: src/view/shell/Drawer.tsx:560 msgid "Settings" @@ -5182,13 +5200,13 @@ msgid "Sexually Suggestive" msgstr "Sexuellement suggestif" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:340 -#: src/screens/StarterPack/StarterPackScreen.tsx:493 +#: 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/post-ctrls/PostCtrls.tsx:304 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Partager" @@ -5208,7 +5226,7 @@ msgstr "Partagez une anecdote insolite !" #: src/view/com/profile/ProfileMenu.tsx:377 #: src/view/com/util/forms/PostDropdownBtn.tsx:461 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:320 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "Partager quand même" @@ -5219,7 +5237,7 @@ msgstr "Partager le fil d’actu" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "Partager le lien" @@ -5237,7 +5255,7 @@ msgstr "Dialogue pour le partage d’un lien" msgid "Share QR code" msgstr "Partager le code QR" -#: src/screens/StarterPack/StarterPackScreen.tsx:333 +#: src/screens/StarterPack/StarterPackScreen.tsx:393 msgid "Share this starter pack" msgstr "Partagez ce kit de démarrage" @@ -5256,11 +5274,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:381 +#: src/view/screens/Settings/index.tsx:382 msgid "Show" msgstr "Afficher" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "Voir le texte alt" @@ -5347,17 +5365,17 @@ msgstr "Affiche les posts de {0} dans votre fil d’actu" #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:100 #: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Login/LoginForm.tsx:177 #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.tsx:72 #: src/view/com/auth/SplashScreen.web.tsx:112 #: src/view/com/auth/SplashScreen.web.tsx:121 -#: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 #: src/view/shell/bottom-bar/BottomBar.tsx:315 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/bottom-bar/BottomBar.tsx:318 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:210 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5385,12 +5403,12 @@ msgstr "Connectez-vous à Bluesky ou créez un nouveau compte" msgid "Sign out" msgstr "Déconnexion" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 #: src/view/shell/bottom-bar/BottomBar.tsx:305 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBar.tsx:306 +#: src/view/shell/bottom-bar/BottomBar.tsx:308 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:200 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5406,7 +5424,7 @@ msgstr "S’inscrire ou se connecter pour participer à la conversation" msgid "Sign-in Required" msgstr "Connexion requise" -#: src/view/screens/Settings/index.tsx:391 +#: src/view/screens/Settings/index.tsx:392 msgid "Signed in as" msgstr "Connecté en tant que" @@ -5415,21 +5433,21 @@ msgstr "Connecté en tant que" msgid "Signed in as @{0}" msgstr "Connecté en tant que @{0}" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "signed up with your starter pack" msgstr "s’est inscrit·e avec votre kit de démarrage" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 msgid "Signup without a starter pack" msgstr "S’inscrire sans kit de démarrage" -#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:264 #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Ignorer" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:261 msgid "Skip this flow" msgstr "Passer cette étape" @@ -5438,7 +5456,7 @@ msgstr "Passer cette étape" msgid "Software Dev" msgstr "Développement de logiciels" -#: src/components/FeedInterstitials.tsx:303 +#: src/components/FeedInterstitials.tsx:378 msgid "Some other feeds you might like" msgstr "Quelques autres fils d’actu qui pourraient vous intéresser" @@ -5462,8 +5480,8 @@ 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:96 -#: src/App.web.tsx:78 +#: src/App.native.tsx:98 +#: src/App.web.tsx:80 msgid "Sorry! Your session expired. Please log in again." msgstr "Désolé ! Votre session a expiré. Essayez de vous reconnecter." @@ -5489,7 +5507,7 @@ msgid "Spam; excessive mentions or replies" msgstr "Spam ; mentions ou réponses excessives" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:98 msgid "Sports" msgstr "Sports" @@ -5514,16 +5532,17 @@ 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:325 +#: src/Navigation.tsx:328 +#: src/Navigation.tsx:333 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "Kit de démarrage" -#: src/components/StarterPack/StarterPackCard.tsx:65 +#: src/components/StarterPack/StarterPackCard.tsx:70 msgid "Starter pack by {0}" msgstr "Kit de démarrage par {0}" -#: src/screens/StarterPack/StarterPackScreen.tsx:614 +#: src/screens/StarterPack/StarterPackScreen.tsx:692 msgid "Starter pack is invalid" msgstr "Le kit de démarrage n’est pas valide" @@ -5535,20 +5554,20 @@ 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:963 +#: src/view/screens/Settings/index.tsx:964 msgid "Status Page" msgstr "État du service" -#: src/screens/Signup/index.tsx:192 +#: src/screens/Signup/index.tsx:125 msgid "Step {0} of {1}" msgstr "Étape {0} sur {1}" -#: src/view/screens/Settings/index.tsx:304 +#: src/view/screens/Settings/index.tsx:305 msgid "Storage cleared, you need to restart the app now." msgstr "Stockage effacé, vous devez redémarrer l’application maintenant." -#: src/Navigation.tsx:226 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:229 +#: src/view/screens/Settings/index.tsx:864 msgid "Storybook" msgstr "Historique" @@ -5583,6 +5602,7 @@ msgstr "S’abonner à cette liste" msgid "Suggested accounts" msgstr "Comptes suggérés" +#: src/components/FeedInterstitials.tsx:246 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Suggérés pour vous" @@ -5591,7 +5611,7 @@ msgstr "Suggérés pour vous" msgid "Suggestive" msgstr "Suggestif" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:244 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5614,11 +5634,11 @@ msgstr "Basculer sur {0}" 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:445 +#: src/view/screens/Settings/index.tsx:446 msgid "System" msgstr "Système" -#: src/view/screens/Settings/index.tsx:851 +#: src/view/screens/Settings/index.tsx:852 msgid "System log" msgstr "Journal système" @@ -5642,7 +5662,7 @@ msgstr "Tapper pour annuler" msgid "Tap to view fully" msgstr "Tapper pour voir en entier" -#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:171 msgid "Task complete - 10 likes!" msgstr "Tâche accomplie - 10 likes !" @@ -5651,7 +5671,7 @@ msgid "Teach our algorithm what you like" msgstr "Apprendre à notre algorithme ce que vous aimez" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:99 msgid "Tech" msgstr "Technologie" @@ -5663,13 +5683,13 @@ msgstr "Racontez une blague !" msgid "Tell us a little more" msgstr "Dites-nous en un peu plus" -#: src/view/shell/desktop/RightNav.tsx:86 +#: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Conditions générales" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:254 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/Settings/index.tsx:952 #: src/view/screens/TermsOfService.tsx:29 #: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" @@ -5700,12 +5720,14 @@ msgstr "Nous vous remercions. Votre rapport a été envoyé." msgid "That contains the following:" msgstr "Qui contient les éléments suivants :" -#: src/screens/Signup/index.tsx:100 +#: src/screens/Signup/StepHandle.tsx:50 msgid "That handle is already taken." msgstr "Ce pseudo est déjà occupé." -#: src/screens/StarterPack/StarterPackScreen.tsx:105 -#: src/screens/StarterPack/StarterPackScreen.tsx:106 +#: src/screens/StarterPack/StarterPackScreen.tsx:96 +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:136 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -5724,12 +5746,12 @@ msgstr "Les lignes directrices communautaires ont été déplacées vers <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "Notre politique de droits d’auteur a été déplacée vers <0/>" -#: src/state/shell/progress-guide.tsx:173 -#: src/state/shell/progress-guide.tsx:178 +#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:177 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:321 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 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." @@ -5758,7 +5780,7 @@ msgstr "Ce post a peut-être été supprimé." msgid "The Privacy Policy has been moved to <0/>" msgstr "Notre politique de confidentialité a été déplacée vers <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:624 +#: src/screens/StarterPack/StarterPackScreen.tsx:702 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Le kit de démarrage que vous essayez de consulter n’est pas valide. Vous pouvez supprimer ce kit de démarrage à la place." @@ -5808,11 +5830,11 @@ 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:126 +#: src/view/com/notifications/Feed.tsx:125 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Il y a eu un problème lors de la récupération des notifications. Appuyez ici pour réessayer." -#: src/view/com/posts/Feed.tsx:299 +#: src/view/com/posts/Feed.tsx:459 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Il y a eu un problème lors de la récupération des posts. Appuyez ici pour réessayer." @@ -5982,7 +6004,7 @@ msgid "This post has been deleted." msgstr "Ce post a été supprimé." #: src/view/com/util/forms/PostDropdownBtn.tsx:458 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:317 +#: 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." @@ -6039,12 +6061,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:594 +#: src/view/screens/Settings/index.tsx:595 msgid "Thread preferences" msgstr "Préférences des fils de discussion" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/Settings/index.tsx:605 msgid "Thread Preferences" msgstr "Préférences des fils de discussion" @@ -6056,7 +6078,7 @@ msgstr "Paramètres du fil de discussion mis à jour" msgid "Threaded Mode" msgstr "Mode arborescent" -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:287 msgid "Threads Preferences" msgstr "Préférences des fils de discussion" @@ -6107,11 +6129,11 @@ msgctxt "action" msgid "Try again" msgstr "Réessayer" -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:100 msgid "TV" msgstr "TV" -#: src/view/screens/Settings/index.tsx:745 +#: src/view/screens/Settings/index.tsx:746 msgid "Two-factor authentication" msgstr "Authentification à deux facteurs" @@ -6133,14 +6155,14 @@ msgstr "Réafficher cette liste" #: src/screens/Login/ForgotPasswordForm.tsx:74 #: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:79 +#: src/screens/Signup/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Impossible de contacter votre service. Veuillez vérifier votre connexion Internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:548 +#: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Unable to delete" msgstr "Impossible de supprimer" @@ -6393,7 +6415,7 @@ msgstr "Liste de compte mise à jour" msgid "User Lists" msgstr "Listes de comptes" -#: src/screens/Login/LoginForm.tsx:177 +#: src/screens/Login/LoginForm.tsx:197 msgid "Username or email address" msgstr "Pseudo ou e-mail" @@ -6428,15 +6450,15 @@ msgstr "Valeur :" msgid "Verify DNS Record" msgstr "Vérifier l’enregistrement DNS" -#: src/view/screens/Settings/index.tsx:982 +#: src/view/screens/Settings/index.tsx:983 msgid "Verify email" msgstr "Confirmer l’e-mail" -#: src/view/screens/Settings/index.tsx:1007 +#: src/view/screens/Settings/index.tsx:1008 msgid "Verify my email" msgstr "Confirmer mon e-mail" -#: src/view/screens/Settings/index.tsx:1016 +#: src/view/screens/Settings/index.tsx:1017 msgid "Verify My Email" msgstr "Confirmer mon e-mail" @@ -6453,7 +6475,7 @@ msgstr "Vérifier le fichier texte" msgid "Verify Your Email" msgstr "Vérifiez votre e-mail" -#: src/view/screens/Settings/index.tsx:935 +#: src/view/screens/Settings/index.tsx:936 msgid "Version {appVersion} {bundleInfo}" msgstr "Version {appVersion} {bundleInfo}" @@ -6466,7 +6488,7 @@ msgstr "Jeux vidéo" msgid "View {0}'s avatar" msgstr "Voir l’avatar de {0}" -#: src/view/com/notifications/FeedItem.tsx:234 +#: src/view/com/notifications/FeedItem.tsx:245 msgid "View {0}'s profile" msgstr "Voir le profil de {0}" @@ -6515,7 +6537,7 @@ msgid "View users who like this feed" msgstr "Voir les comptes qui a liké ce fil d’actu" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "Consultez vos fils d’actu et explorez-en plus" @@ -6550,7 +6572,7 @@ msgstr "Nous ne pouvons pas charger cette conversation" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Nous estimons que votre compte sera prêt dans {estimatedTime}." -#: src/screens/Onboarding/StepFinished.tsx:231 +#: src/screens/Onboarding/StepFinished.tsx:239 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Nous espérons que vous passerez un excellent moment. N’oubliez pas que Bluesky est :" @@ -6570,7 +6592,7 @@ msgstr "Nous n’avons pas pu charger vos préférences en matière de date de n msgid "We were unable to load your configured labelers at this time." msgstr "Nous n’avons pas pu charger vos étiqueteurs configurés pour le moment." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:157 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Nous n’avons pas pu nous connecter. Veuillez réessayer pour continuer à configurer votre compte. Si l’échec persiste, vous pouvez sauter cette étape." @@ -6578,7 +6600,7 @@ msgstr "Nous n’avons pas pu nous connecter. Veuillez réessayer pour continuer msgid "We will let you know when your account is ready." msgstr "Nous vous informerons lorsque votre compte sera prêt." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:162 msgid "We'll use this to help customize your experience." msgstr "Nous utiliserons ces informations pour personnaliser votre expérience." @@ -6586,7 +6608,7 @@ msgstr "Nous utiliserons ces informations pour personnaliser votre expérience." msgid "We're having network issues, try again" msgstr "Nous avons des soucis de réseau, réessayez" -#: src/screens/Signup/index.tsx:155 +#: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" msgstr "Nous sommes ravis de vous accueillir !" @@ -6623,7 +6645,7 @@ msgstr "Bienvenue !" msgid "Welcome, friend!" msgstr "Bienvenue et enchanté !" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" msgstr "Quels sont vos centres d’intérêt ?" @@ -6714,7 +6736,7 @@ msgid "Write your reply" msgstr "Rédigez votre réponse" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:101 msgid "Writers" msgstr "Écrivain·e·s" @@ -6733,7 +6755,7 @@ msgstr "Oui" msgid "Yes, deactivate" msgstr "Oui, désactiver" -#: src/screens/StarterPack/StarterPackScreen.tsx:560 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 msgid "Yes, delete this starter pack" msgstr "Oui, supprimer ce kit de démarrage" @@ -6745,7 +6767,7 @@ msgstr "Oui, réactiver mon compte" msgid "Yesterday, {time}" msgstr "Hier, {time}" -#: src/components/StarterPack/StarterPackCard.tsx:68 +#: src/components/StarterPack/StarterPackCard.tsx:73 msgid "you" msgstr "vous" @@ -6946,23 +6968,23 @@ msgstr "Vous : {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Vous : {short}" -#: src/screens/Signup/index.tsx:169 +#: src/screens/Signup/index.tsx:102 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Vous suivrez les comptes et fils d’actu suggérés une fois que vous aurez créé votre compte !" -#: src/screens/Signup/index.tsx:174 +#: src/screens/Signup/index.tsx:107 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:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 msgid "You'll follow these people and {0} others" msgstr "Vous suivrez ces personnes et {0} autres" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 msgid "You'll follow these people right away" msgstr "Vous suivrez ces personnes immédiatement" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "You'll stay updated with these feeds" msgstr "Vous resterez informé grâce à ces fils d’actu" @@ -6977,7 +6999,7 @@ msgstr "Vous êtes dans la file d’attente" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "Vous êtes connecté·e avec un mot de passe d’application. Veuillez vous connecter avec votre mot de passe principal pour continuer à désactiver votre compte." -#: src/screens/Onboarding/StepFinished.tsx:228 +#: src/screens/Onboarding/StepFinished.tsx:236 msgid "You're ready to go!" msgstr "Vous êtes prêt à partir !" @@ -6990,7 +7012,7 @@ msgstr "Vous avez choisi de masquer un mot ou un mot-clé dans ce post." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Vous avez atteint la fin de votre fil d’actu ! Trouvez d’autres comptes à suivre." -#: src/screens/Signup/index.tsx:202 +#: src/screens/Signup/index.tsx:135 msgid "Your account" msgstr "Votre compte" @@ -7002,7 +7024,7 @@ msgstr "Votre compte a été supprimé" msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "Le dépôt de votre compte, qui contient toutes les données publiques, peut être téléchargé sous la forme d’un fichier « CAR ». Ce fichier n’inclut pas les éléments multimédias, tels que les images, ni vos données privées, qui doivent être récupérées séparément." -#: src/screens/Signup/StepInfo/index.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" msgstr "Votre date de naissance" @@ -7015,7 +7037,8 @@ msgid "Your choice will be saved, but can be changed later in settings." msgstr "Votre choix sera enregistré, mais vous pourrez le modifier ultérieurement dans les paramètres." #: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Votre e-mail semble être invalide." @@ -7028,7 +7051,7 @@ msgstr "Votre e-mail a été mis à jour, mais n’a pas été vérifié. L’é msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "Votre e-mail n’a pas encore été vérifié. Il s’agit d’une mesure de sécurité importante que nous recommandons." -#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:161 msgid "Your first like!" msgstr "Votre premier « like » !" @@ -7036,7 +7059,7 @@ msgstr "Votre premier « like » !" msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Votre fil d’actu des comptes suivis est vide ! Suivez plus de comptes pour voir ce qui se passe." -#: src/screens/Signup/StepHandle.tsx:73 +#: src/screens/Signup/StepHandle.tsx:122 msgid "Your full handle will be" msgstr "Votre nom complet sera" @@ -7056,7 +7079,7 @@ msgstr "Votre mot de passe a été modifié avec succès !" msgid "Your post has been published" msgstr "Votre post a été publié" -#: src/screens/Onboarding/StepFinished.tsx:243 +#: src/screens/Onboarding/StepFinished.tsx:251 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." @@ -7076,6 +7099,6 @@ msgstr "Votre réponse a été publiée" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Votre rapport sera envoyé au Service de Modération de Bluesky" -#: src/screens/Signup/index.tsx:204 +#: src/screens/Signup/index.tsx:137 msgid "Your user handle" msgstr "Votre pseudo" diff --git a/src/locale/locales/ga/messages.po b/src/locale/locales/ga/messages.po index 35a0ac4bc1..2774405b7c 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:283 +#: src/view/com/notifications/FeedItem.tsx:294 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}}" @@ -60,7 +60,7 @@ msgstr "{0, plural, one {leantóir} two {leantóir} few {leantóir} many {leant msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {á leanúint} two {á leanúint} few {á leanúint} many {á leanúint} other {á leanúint}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:259 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {Mol (# mholadh)} two {Mol (# mholadh)} few {Mol (# mholadh)} many {Mol (# moladh)} other {Mol (# moladh)}}" @@ -68,7 +68,7 @@ msgstr "{0, plural, one {Mol (# mholadh)} two {Mol (# mholadh)} few {Mol (# mhol msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {moladh} two {mholadh} few {mholadh} many {moladh} other {moladh}}" -#: src/components/FeedCard.tsx:216 +#: 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 {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}}" @@ -77,7 +77,7 @@ msgstr "{0, plural, one {Molta ag úsáideoir amháin} two {Molta ag beirt úsá msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {phostáil} two {phostáil} few {phostáil} many {bpostáil} other {postáil}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:217 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {Freagair (# fhreagra)} two {Freagair (# fhreagra)} few {Freagair (# fhreagra)} many {Freagair (# bhfreagra)} other {Freagair (# freagra)}}" @@ -85,15 +85,15 @@ msgstr "{0, plural, one {Freagair (# fhreagra)} two {Freagair (# fhreagra)} few msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {athphostáil} two {athphostáil} few {athphostáil} many {athphostáil} other {athphostáil}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:262 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:222 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:378 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" msgstr "" @@ -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:503 +#: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} á leanúint" @@ -255,10 +255,14 @@ msgstr "" msgid "⚠Invalid Handle" msgstr "⚠Leasainm Neamhbhailí" -#: src/screens/Login/LoginForm.tsx:247 +#: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" msgstr "Dearbhú 2FA" +#: src/tours/Tooltip.tsx:70 +msgid "A help tooltip" +msgstr "" + #: src/view/com/util/ViewHeader.tsx:93 #: src/view/screens/Search/Search.tsx:684 msgid "Access navigation links and settings" @@ -269,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:518 +#: src/view/screens/Settings/index.tsx:519 msgid "Accessibility" msgstr "Inrochtaineacht" -#: src/view/screens/Settings/index.tsx:509 +#: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" msgstr "Socruithe inrochtaineachta" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "Socruithe Inrochtaineachta" @@ -286,9 +290,9 @@ msgstr "Socruithe Inrochtaineachta" #~ msgid "account" #~ msgstr "cuntas" -#: src/screens/Login/LoginForm.tsx:170 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:190 +#: src/view/screens/Settings/index.tsx:346 +#: src/view/screens/Settings/index.tsx:753 msgid "Account" msgstr "Cuntas" @@ -359,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:422 -#: src/view/screens/Settings/index.tsx:431 +#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:432 msgid "Add account" msgstr "Cuir cuntas leis seo" @@ -420,7 +424,7 @@ msgstr "Ná cuir ach fotha réamhshocraithe de na daoine a leanann tú leis seo" msgid "Add the following DNS record to your domain:" msgstr "Cuir an taifead DNS seo a leanas le d'fhearann:" -#: src/components/FeedCard.tsx:305 +#: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" msgstr "" @@ -464,15 +468,19 @@ 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:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Advanced" msgstr "Ardleibhéal" -#: src/screens/StarterPack/StarterPackScreen.tsx:301 +#: src/state/shell/progress-guide.tsx:176 +msgid "Algorithm training complete!" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:360 msgid "All accounts have been followed!" msgstr "" -#: src/view/screens/Feeds.tsx:721 +#: src/view/screens/Feeds.tsx:734 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." @@ -502,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:177 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 msgid "ALT" msgstr "ALT" @@ -512,7 +520,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Téacs malartach" -#: src/view/com/util/post-embeds/GifEmbed.tsx:183 +#: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" msgstr "Téacs Malartach" @@ -550,7 +558,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "Tharla earráid agus an teachtaireacht á scriosadh. Bain triail eile as." -#: src/screens/StarterPack/StarterPackScreen.tsx:303 +#: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" msgstr "" @@ -560,6 +568,8 @@ msgstr "Rud nach bhfuil ar fáil sna roghanna seo" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:309 +#: src/components/ProfileCard.tsx:329 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -567,12 +577,12 @@ msgstr "Rud nach bhfuil ar fáil sna roghanna seo" msgid "An issue occurred, please try again." msgstr "Tharla fadhb. Déan iarracht eile, le do thoil." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" msgstr "tharla earráid nach eol dúinn" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:280 +#: src/view/com/notifications/FeedItem.tsx:291 msgid "and" msgstr "agus" @@ -581,7 +591,7 @@ msgstr "agus" msgid "Animals" msgstr "Ainmhithe" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" msgstr "GIF beo" @@ -605,13 +615,13 @@ 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:697 +#: src/view/screens/Settings/index.tsx:698 msgid "App password settings" msgstr "Socruithe phasfhocal na haipe" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:269 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/view/screens/Settings/index.tsx:707 msgid "App Passwords" msgstr "Pasfhocal na haipe" @@ -640,7 +650,7 @@ msgstr "Achomharc déanta" msgid "Appeal this decision" msgstr "Déan achomharc i gcoinne an chinnidh seo" -#: src/view/screens/Settings/index.tsx:439 +#: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "Cuma" @@ -649,7 +659,7 @@ msgstr "Cuma" msgid "Apply default recommended feeds" msgstr "Bain úsáid as fothaí réamhshocraithe a moladh" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -679,7 +689,7 @@ msgstr "An bhfuil tú cinnte gur mhaith leat imeacht ón gcomhrá seo? Scriosfar msgid "Are you sure you want to remove {0} from your feeds?" msgstr "An bhfuil tú cinnte gur mhaith leat {0} a bhaint de do chuid fothaí?" -#: src/components/FeedCard.tsx:322 +#: src/components/FeedCard.tsx:306 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -704,7 +714,7 @@ msgstr "Ealaín" msgid "Artistic or non-erotic nudity." msgstr "Lomnochtacht ealaíonta nó gan a bheith gáirsiúil." -#: src/screens/Signup/StepHandle.tsx:119 +#: src/screens/Signup/StepHandle.tsx:170 msgid "At least 3 characters" msgstr "3 charachtar ar a laghad" @@ -715,14 +725,15 @@ msgstr "3 charachtar ar a laghad" #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:278 -#: src/screens/Login/LoginForm.tsx:284 +#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:304 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/index.tsx:231 +#: 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" @@ -732,7 +743,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:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "Bunrudaí" @@ -740,7 +751,7 @@ msgstr "Bunrudaí" msgid "Birthday" msgstr "Breithlá" -#: src/view/screens/Settings/index.tsx:377 +#: src/view/screens/Settings/index.tsx:378 msgid "Birthday:" msgstr "Breithlá:" @@ -784,7 +795,7 @@ msgstr "Blocáilte" msgid "Blocked accounts" msgstr "Cuntais bhlocáilte" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:145 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Cuntais bhlocáilte" @@ -826,6 +837,10 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Is líonra oscailte é Bluesky, lenar féidir leat do sholáthraí óstála féin a roghnú. Tá leagan béite d'óstáil shaincheaptha ar fáil d'fhorbróirí anois." +#: src/components/ProgressGuide/List.tsx:55 +msgid "Bluesky is better with friends!" +msgstr "" + #: src/view/com/auth/onboarding/WelcomeDesktop.tsx:NaN #~ msgid "Bluesky is flexible." #~ msgstr "Tá Bluesky solúbtha." @@ -859,6 +874,24 @@ msgstr "Déan íomhánna doiléir agus scag ó fhothaí iad" msgid "Books" msgstr "Leabhair" +#: src/components/FeedInterstitials.tsx:281 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:411 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:266 +#: src/components/FeedInterstitials.tsx:396 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:289 +#: src/components/FeedInterstitials.tsx:420 +msgid "Browse more suggestions on the Explore page" +msgstr "" + #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" @@ -977,17 +1010,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:371 +#: src/view/screens/Settings/index.tsx:372 msgctxt "action" msgid "Change" msgstr "Athraigh" -#: src/view/screens/Settings/index.tsx:718 +#: src/view/screens/Settings/index.tsx:719 msgid "Change handle" msgstr "Athraigh mo leasainm" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change Handle" msgstr "Athraigh mo leasainm" @@ -995,12 +1028,12 @@ msgstr "Athraigh mo leasainm" msgid "Change my email" msgstr "Athraigh mo ríomhphost" -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/index.tsx:764 msgid "Change password" msgstr "Athraigh mo phasfhocal" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Change Password" msgstr "Athraigh mo phasfhocal" @@ -1012,9 +1045,9 @@ msgstr "Athraigh an teanga phostála go {0}" msgid "Change Your Email" msgstr "Athraigh do ríomhphost" -#: src/Navigation.tsx:310 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:313 +#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" msgstr "Comhrá" @@ -1024,14 +1057,14 @@ msgstr "Balbhaíodh an comhrá" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:318 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" msgstr "Socruithe comhrá" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" msgstr "Socruithe Comhrá" @@ -1056,7 +1089,7 @@ msgstr "Seiceáil mo stádas" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "Cuir súil ar na húsáideoirí seo. Lean iad le húsáideoirí atá cosúil leo a fheiceáil." -#: src/screens/Login/LoginForm.tsx:271 +#: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." msgstr "Féach ar do bhosca ríomhphoist le haghaidh cód dearbhaithe agus cuir isteach anseo é." @@ -1068,6 +1101,14 @@ msgstr "Féach ar do bhosca ríomhphoist le haghaidh teachtaireachta leis an gc #~ msgid "Choose \"Everybody\" or \"Nobody\"" #~ msgstr "Roghnaigh “Chuile Dhuine” nó “Duine Ar Bith”" +#: src/screens/Onboarding/StepInterests/index.tsx:190 +msgid "Choose 3 or more:" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:325 +msgid "Choose at least {0} more" +msgstr "" + #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" msgstr "" @@ -1084,7 +1125,7 @@ msgstr "" msgid "Choose Service" msgstr "Roghnaigh Seirbhís" -#: src/screens/Onboarding/StepFinished.tsx:273 +#: src/screens/Onboarding/StepFinished.tsx:281 msgid "Choose the algorithms that power your custom feeds." msgstr "Roghnaigh na halgartaim le haghaidh do chuid sainfhothaí." @@ -1105,23 +1146,23 @@ msgstr "" #~ msgid "Choose your main feeds" #~ msgstr "Roghnaigh do phríomhfhothaí" -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" msgstr "Roghnaigh do phasfhocal" -#: src/view/screens/Settings/index.tsx:910 +#: src/view/screens/Settings/index.tsx:911 msgid "Clear all legacy storage data" msgstr "Glan na sonraí oidhreachta ar fad atá i dtaisce." -#: src/view/screens/Settings/index.tsx:913 +#: src/view/screens/Settings/index.tsx:914 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:922 +#: src/view/screens/Settings/index.tsx:923 msgid "Clear all storage data" msgstr "Glan na sonraí ar fad atá i dtaisce." -#: src/view/screens/Settings/index.tsx:925 +#: src/view/screens/Settings/index.tsx:926 msgid "Clear all storage data (restart after this)" msgstr "Glan na sonraí ar fad atá i dtaisce. Ansin atosaigh." @@ -1130,11 +1171,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:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" msgstr "Glanann seo na sonraí oidhreachta ar fad atá i dtaisce" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" msgstr "Glanann seo na sonraí ar fad atá i dtaisce" @@ -1184,7 +1225,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:189 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "Close" msgstr "Dún" @@ -1247,11 +1288,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:226 +#: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" msgstr "Laghdaigh an liosta úsáideoirí" -#: src/view/com/notifications/FeedItem.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:437 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" @@ -1265,16 +1306,16 @@ msgstr "Greann" msgid "Comics" msgstr "Greannáin" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:259 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Treoirlínte an phobail" -#: src/screens/Onboarding/StepFinished.tsx:286 +#: src/screens/Onboarding/StepFinished.tsx:294 msgid "Complete onboarding and start using your account" msgstr "Críochnaigh agus tosaigh ag baint úsáide as do chuntas." -#: src/screens/Signup/index.tsx:206 +#: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" msgstr "Freagair an dúshlán" @@ -1331,7 +1372,7 @@ msgstr "Dearbhaigh d'aois:" msgid "Confirm your birthdate" msgstr "Dearbhaigh do bhreithlá" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:272 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 @@ -1341,11 +1382,11 @@ msgstr "Dearbhaigh do bhreithlá" msgid "Confirmation code" msgstr "Cód dearbhaithe" -#: src/screens/Login/LoginForm.tsx:305 +#: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." msgstr "Ag nascadh…" -#: src/screens/Signup/index.tsx:276 +#: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "Teagmháil le Support" @@ -1386,7 +1427,7 @@ msgstr "Rabhadh ábhair" msgid "Context menu backdrop, click to close the menu." msgstr "Cúlra an roghchláir comhthéacs, cliceáil chun an roghchlár a dhúnadh." -#: src/screens/Onboarding/StepInterests/index.tsx:258 +#: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Lean ar aghaidh" @@ -1399,9 +1440,9 @@ msgstr "Lean ort mar {0} (atá logáilte isteach faoi láthair)" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:255 +#: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/index.tsx:251 +#: src/screens/Signup/BackNextButtons.tsx:59 msgid "Continue to next step" msgstr "Lean ar aghaidh go dtí an chéad chéim eile" @@ -1426,7 +1467,7 @@ msgstr "Cócaireacht" msgid "Copied" msgstr "Cóipeáilte" -#: src/view/screens/Settings/index.tsx:263 +#: src/view/screens/Settings/index.tsx:264 msgid "Copied build version to clipboard" msgstr "Leagan cóipeáilte sa ghearrthaisce" @@ -1435,7 +1476,7 @@ msgstr "Leagan cóipeáilte sa ghearrthaisce" #: 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/post-ctrls/PostCtrls.tsx:350 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Cóipeáilte sa ghearrthaisce" @@ -1492,7 +1533,7 @@ msgstr "Cóipeáil téacs na postála" msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "An polasaí maidir le cóipcheart" @@ -1531,7 +1572,7 @@ msgstr "" msgid "Create a new account" msgstr "Cruthaigh cuntas nua" -#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" msgstr "Cruthaigh cuntas nua Bluesky" @@ -1541,7 +1582,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:338 msgid "Create a starter pack" msgstr "" @@ -1549,7 +1590,7 @@ msgstr "" msgid "Create a starter pack for me" msgstr "" -#: src/screens/Signup/index.tsx:154 +#: src/screens/Signup/index.tsx:88 msgid "Create Account" msgstr "Cruthaigh cuntas" @@ -1605,7 +1646,7 @@ msgstr "Saincheaptha" msgid "Custom domain" msgstr "Sainfhearann" -#: src/view/screens/Feeds.tsx:747 +#: src/view/screens/Feeds.tsx:760 #: src/view/screens/Search/Explore.tsx:390 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" @@ -1614,8 +1655,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:458 -#: src/view/screens/Settings/index.tsx:484 +#: src/view/screens/Settings/index.tsx:459 +#: src/view/screens/Settings/index.tsx:485 msgid "Dark" msgstr "Dorcha" @@ -1623,24 +1664,24 @@ msgstr "Dorcha" msgid "Dark mode" msgstr "Modh dorcha" -#: src/view/screens/Settings/index.tsx:471 +#: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" msgstr "Téama Dorcha" -#: src/screens/Signup/StepInfo/index.tsx:134 +#: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" msgstr "Dáta breithe" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" msgstr "Díghníomhaigh mo chuntas" -#: src/view/screens/Settings/index.tsx:818 +#: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" msgstr "Díghníomhaigh mo chuntas" -#: src/view/screens/Settings/index.tsx:873 +#: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" msgstr "Dífhabhtaigh Modhnóireacht" @@ -1649,16 +1690,16 @@ msgid "Debug panel" msgstr "Painéal dífhabhtaithe" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:484 -#: src/screens/StarterPack/StarterPackScreen.tsx:563 -#: src/screens/StarterPack/StarterPackScreen.tsx:643 +#: 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/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Scrios" -#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:829 msgid "Delete account" msgstr "Scrios an cuntas" @@ -1678,8 +1719,8 @@ msgstr "Scrios pasfhocal na haipe" msgid "Delete app password?" msgstr "Scrios pasfhocal na haipe?" -#: src/view/screens/Settings/index.tsx:890 -#: src/view/screens/Settings/index.tsx:893 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" msgstr "Scrios taifead dearbhaithe comhrá" @@ -1703,7 +1744,7 @@ msgstr "Scrios an teachtaireacht seo domsa" msgid "Delete my account" msgstr "Scrios mo chuntas" -#: src/view/screens/Settings/index.tsx:840 +#: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" msgstr "Scrios mo chuntas…" @@ -1712,12 +1753,12 @@ msgstr "Scrios mo chuntas…" msgid "Delete post" msgstr "Scrios an phostáil" -#: src/screens/StarterPack/StarterPackScreen.tsx:478 -#: src/screens/StarterPack/StarterPackScreen.tsx:634 +#: src/screens/StarterPack/StarterPackScreen.tsx:556 +#: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" msgstr "" @@ -1737,7 +1778,7 @@ msgstr "Scriosta" msgid "Deleted post." msgstr "Scriosadh an phostáil." -#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" msgstr "Scriosann sé seo an taifead dearbhaithe comhrá" @@ -1756,7 +1797,7 @@ msgstr "Téacs malartach tuairisciúil" msgid "Did you want to say anything?" msgstr "Ar mhaith leat rud éigin a rá?" -#: src/view/screens/Settings/index.tsx:477 +#: src/view/screens/Settings/index.tsx:478 msgid "Dim" msgstr "Breacdhorcha" @@ -1806,6 +1847,10 @@ msgstr "Faigh réidh leis an dréacht?" msgid "Discourage apps from showing my account to logged-out users" msgstr "Cuir ina luí ar aipeanna gan mo chuntas a thaispeáint d'úsáideoirí atá logáilte amach" +#: src/tours/HomeTour.tsx:70 +msgid "Discover learns which posts you like as you browse." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -1815,10 +1860,14 @@ msgstr "Aimsigh sainfhothaí nua" msgid "Discover new feeds" msgstr "" -#: src/view/screens/Feeds.tsx:744 +#: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" msgstr "Aimsigh Fothaí Nua" +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "" + #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" msgstr "" @@ -1839,7 +1888,7 @@ msgstr "Painéal DNS" msgid "Does not include nudity." msgstr "Níl lomnochtacht ann." -#: src/screens/Signup/StepHandle.tsx:105 +#: src/screens/Signup/StepHandle.tsx:156 msgid "Doesn't begin or end with a hyphen" msgstr "Ní thosaíonn ná chríochnaíonn sé le fleiscín" @@ -1884,7 +1933,7 @@ msgstr "Déanta" msgid "Done{extraText}" msgstr "Déanta{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" msgstr "" @@ -1893,7 +1942,7 @@ msgstr "" msgid "Download CAR file" msgstr "Íoslódáil comhad CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:272 +#: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" msgstr "Scaoil anseo chun íomhánna a chur leis" @@ -1941,11 +1990,11 @@ msgstr "m.sh. Úsáideoirí a fhreagraíonn le fógraí" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Oibríonn gach cód uair amháin. Gheobhaidh tú tuilleadh cód go tráthrialta." -#: src/screens/StarterPack/StarterPackScreen.tsx:473 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "" @@ -1976,9 +2025,9 @@ msgstr "Athraigh mionsonraí an liosta" msgid "Edit Moderation List" msgstr "Athraigh liosta na modhnóireachta" -#: src/Navigation.tsx:271 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 +#: src/Navigation.tsx:274 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Athraigh mo chuid fothaí" @@ -2005,7 +2054,7 @@ msgstr "Athraigh an Phróifíl" #~ msgid "Edit Saved Feeds" #~ msgstr "Athraigh na fothaí sábháilte" -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" msgstr "" @@ -2025,7 +2074,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:335 +#: src/Navigation.tsx:343 msgid "Edit your starter pack" msgstr "" @@ -2038,7 +2087,7 @@ msgstr "Oideachas" msgid "Either choose \"Everybody\" or \"Nobody\"" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "Ríomhphost" @@ -2064,7 +2113,7 @@ msgstr "Seoladh ríomhphoist uasdátaithe" msgid "Email verified" msgstr "Ríomhphost dearbhaithe" -#: src/view/screens/Settings/index.tsx:349 +#: src/view/screens/Settings/index.tsx:350 msgid "Email:" msgstr "Ríomhphost:" @@ -2130,6 +2179,10 @@ msgstr "Deireadh an fhotha" #~ msgid "End of list" #~ msgstr "Curtha leis an liosta" +#: 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 "" + #: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "Cuir isteach ainm don phasfhocal aipe seo" @@ -2164,7 +2217,7 @@ msgid "Enter your birth date" msgstr "Cuir isteach do bhreithlá" #: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:92 +#: src/screens/Signup/StepInfo/index.tsx:152 msgid "Enter your email address" msgstr "Cuir isteach do sheoladh ríomhphoist" @@ -2184,11 +2237,11 @@ msgstr "Cuir isteach do leasainm agus do phasfhocal" msgid "Error occurred while saving file" msgstr "Tharla earráid le linn comhad a shábháil" -#: src/screens/Signup/StepCaptcha/index.tsx:51 +#: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." msgstr "Earráid agus an freagra ar an captcha á phróiseáil." -#: src/screens/Onboarding/StepInterests/index.tsx:197 +#: src/screens/Onboarding/StepInterests/index.tsx:216 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Earráid:" @@ -2243,7 +2296,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:227 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" msgstr "Leathnaigh an liosta úsáideoirí" @@ -2260,12 +2313,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:786 +#: src/view/screens/Settings/index.tsx:787 msgid "Export my data" msgstr "Easpórtáil mo chuid sonraí" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:797 +#: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" msgstr "Easpórtáil mo chuid sonraí" @@ -2279,13 +2332,13 @@ msgstr "Meáin sheachtracha" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Is féidir le meáin sheachtracha cumas a thabhairt do shuíomhanna ar an nGréasán eolas fútsa agus faoi do ghléas a chnuasach. Ní sheoltar ná iarrtar aon eolas go dtí go mbrúnn tú an cnaipe “play”." -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:293 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/view/screens/Settings/index.tsx:680 msgid "External Media Preferences" msgstr "Roghanna maidir le meáin sheachtracha" -#: src/view/screens/Settings/index.tsx:670 +#: src/view/screens/Settings/index.tsx:671 msgid "External media settings" msgstr "Socruithe maidir le meáin sheachtracha" @@ -2311,7 +2364,7 @@ msgstr "Teip ar theachtaireacht a scriosadh" msgid "Failed to delete post, please try again" msgstr "Teip ar scriosadh na postála. Déan iarracht eile." -#: src/screens/StarterPack/StarterPackScreen.tsx:597 +#: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" msgstr "" @@ -2369,7 +2422,7 @@ msgstr "Teip ar achomharc a dhéanamh, bain triail eile as, le do thoil." msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:285 +#: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" msgstr "" @@ -2378,11 +2431,11 @@ msgstr "" msgid "Failed to update settings" msgstr "Teip ar shocruithe a uasdátú" -#: src/Navigation.tsx:211 +#: src/Navigation.tsx:214 msgid "Feed" msgstr "Fotha" -#: src/components/FeedCard.tsx:161 +#: src/components/FeedCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "Fotha le {0}" @@ -2395,17 +2448,18 @@ msgstr "Fotha le {0}" msgid "Feed toggle" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Aiseolas" -#: src/Navigation.tsx:320 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 +#: src/Navigation.tsx:323 +#: 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:373 +#: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" @@ -2423,7 +2477,7 @@ msgstr "Is sainalgartaim iad na fothaí. Cruthaíonn úsáideoirí a bhfuil beag #~ msgid "Feeds can be topical as well!" #~ msgstr "Is féidir le fothaí a bheith bunaithe ar chúrsaí reatha freisin!" -#: src/components/FeedCard.tsx:282 +#: src/components/FeedCard.tsx:266 msgid "Feeds updated!" msgstr "" @@ -2439,7 +2493,7 @@ msgstr "Sábháladh an comhad!" msgid "Filter from feeds" msgstr "Scag ó mo chuid fothaí" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 msgid "Finalizing" msgstr "Ag cur crích air" @@ -2449,6 +2503,10 @@ msgstr "Ag cur crích air" msgid "Find accounts to follow" msgstr "Aimsigh fothaí le leanúint" +#: src/tours/HomeTour.tsx:88 +msgid "Find more feeds and accounts to follow in the Explore page." +msgstr "" + #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "Aimsigh postálacha agus úsáideoirí ar Bluesky" @@ -2477,11 +2535,15 @@ msgstr "Mionathraigh na snáitheanna chomhrá" msgid "Finish" msgstr "" +#: src/tours/Tooltip.tsx:149 +msgid "Finish tour and begin using the application" +msgstr "" + #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "Folláine" -#: src/screens/Onboarding/StepFinished.tsx:269 +#: src/screens/Onboarding/StepFinished.tsx:277 msgid "Flexible" msgstr "Solúbtha" @@ -2494,6 +2556,8 @@ msgstr "Iompaigh go cothrománach é" msgid "Flip vertically" msgstr "Iompaigh go hingearach é" +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:341 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2516,13 +2580,17 @@ msgstr "Lean {0}" msgid "Follow {name}" msgstr "Lean {name}" +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "" + #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" msgstr "Lean an cuntas seo" -#: src/screens/StarterPack/StarterPackScreen.tsx:345 -#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:405 +#: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" msgstr "" @@ -2550,7 +2618,7 @@ msgstr "" #~ msgid "Followed by" #~ msgstr "" -#: src/view/com/profile/ProfileCard.tsx:227 +#: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" msgstr "Leanta ag {0}" @@ -2578,16 +2646,20 @@ msgstr "Cuntais a leanann tú" msgid "Followed users only" msgstr "Cuntais a leanann tú amháin" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:197 msgid "followed you" msgstr "— lean sé/sí thú" +#: src/view/com/notifications/FeedItem.tsx:195 +msgid "followed you back" +msgstr "" + #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "Leantóirí" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" msgstr "" @@ -2596,17 +2668,20 @@ msgstr "" msgid "Followers you know" msgstr "" +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:335 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:630 +#: src/view/screens/Feeds.tsx:631 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Á leanúint" +#: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Ag leanúint {0}" @@ -2615,21 +2690,25 @@ msgstr "Ag leanúint {0}" msgid "Following {name}" msgstr "Ag leanacht {name}" -#: src/view/screens/Settings/index.tsx:573 +#: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" msgstr "Roghanna le haghaidh an fhotha Following" -#: src/Navigation.tsx:277 +#: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "Following Feed Preferences" msgstr "Roghanna don Fhotha Following" +#: src/tours/HomeTour.tsx:59 +msgid "Following shows the latest posts from people you follow." +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "Leanann sé/sí thú" -#: src/view/com/profile/ProfileCard.tsx:152 +#: src/components/Pills.tsx:165 msgid "Follows You" msgstr "Leanann sé/sí thú" @@ -2651,11 +2730,11 @@ msgstr "Ar chúiseanna slándála, ní bheidh tú in ann é seo a fheiceáil ar msgid "Forgot Password" msgstr "Pasfhocal dearmadta" -#: src/screens/Login/LoginForm.tsx:227 +#: src/screens/Login/LoginForm.tsx:246 msgid "Forgot password?" msgstr "Pasfhocal dearmadta?" -#: src/screens/Login/LoginForm.tsx:238 +#: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" msgstr "Dearmadta?" @@ -2689,6 +2768,10 @@ msgstr "Tús maith" msgid "Get Started" msgstr "Ar aghaidh leat anois!" +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "" + #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" msgstr "" @@ -2703,31 +2786,35 @@ msgstr "Deargshárú an dlí nó na dtéarmaí seirbhíse" #: src/components/moderation/ScreenHider.tsx:151 #: src/components/moderation/ScreenHider.tsx:160 -#: src/view/com/auth/LoggedOut.tsx:78 -#: src/view/com/auth/LoggedOut.tsx:79 +#: src/view/com/auth/LoggedOut.tsx:80 +#: src/view/com/auth/LoggedOut.tsx:81 #: src/view/screens/NotFound.tsx:55 #: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Ar ais" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:656 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Ar ais" +#: 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/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:225 +#: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" msgstr "Fill ar an gcéim roimhe seo" @@ -2760,6 +2847,10 @@ msgstr "Téigh go dtí an chéad rud eile" msgid "Go to profile" msgstr "Téigh go próifíl" +#: src/tours/Tooltip.tsx:138 +msgid "Go to the next step of the tour" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "Téigh go próifíl an úsáideora" @@ -2768,6 +2859,10 @@ msgstr "Téigh go próifíl an úsáideora" msgid "Graphic Media" msgstr "Meáin Ghrafacha" +#: src/state/shell/progress-guide.tsx:166 +msgid "Half way there!" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" msgstr "Leasainm" @@ -2780,19 +2875,19 @@ msgstr "Haptaic" msgid "Harassment, trolling, or intolerance" msgstr "Ciapadh, trolláil, nó éadulaingt" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:308 msgid "Hashtag" msgstr "Haischlib" -#: src/components/RichText.tsx:216 +#: src/components/RichText.tsx:218 msgid "Hashtag: #{tag}" msgstr "Haischlib: #{tag}" -#: src/screens/Signup/index.tsx:272 +#: src/screens/Signup/index.tsx:167 msgid "Having trouble?" msgstr "Fadhb ort?" -#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/desktop/RightNav.tsx:99 #: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Cúnamh" @@ -2828,7 +2923,7 @@ msgstr "Seo é do phasfhocal aipe." msgid "Hide" msgstr "Cuir i bhfolach" -#: src/view/com/notifications/FeedItem.tsx:433 +#: src/view/com/notifications/FeedItem.tsx:444 msgctxt "action" msgid "Hide" msgstr "Cuir i bhfolach" @@ -2847,7 +2942,7 @@ msgstr "Cuir an t-ábhar seo i bhfolach" msgid "Hide this post?" msgstr "An bhfuil fonn ort an phostáil seo a chur i bhfolach?" -#: src/view/com/notifications/FeedItem.tsx:424 +#: src/view/com/notifications/FeedItem.tsx:435 msgid "Hide user list" msgstr "Cuir liosta na gcuntas i bhfolach" @@ -2879,10 +2974,10 @@ 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:511 -#: src/Navigation.tsx:531 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: src/Navigation.tsx:519 +#: src/Navigation.tsx:539 +#: 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 msgid "Home" @@ -2893,8 +2988,8 @@ msgid "Host:" msgstr "Óstach:" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:160 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:180 +#: src/screens/Signup/StepInfo/index.tsx:106 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "Soláthraí óstála" @@ -2994,19 +3089,19 @@ msgstr "Cuir isteach an pasfhocal nua" msgid "Input password for account deletion" msgstr "Cuir isteach an pasfhocal chun an cuntas a scriosadh" -#: src/screens/Login/LoginForm.tsx:266 +#: src/screens/Login/LoginForm.tsx:286 msgid "Input the code which has been emailed to you" msgstr "Cuir isteach an cód a chuir muid chugat i dteachtaireacht r-phoist" #: src/screens/Login/LoginForm.tsx:221 -msgid "Input the password tied to {identifier}" -msgstr "Cuir isteach an pasfhocal ceangailte le {identifier}" +#~ msgid "Input the password tied to {identifier}" +#~ msgstr "Cuir isteach an pasfhocal ceangailte le {identifier}" -#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Login/LoginForm.tsx:215 msgid "Input the username or email address you used at signup" msgstr "Cuir isteach an leasainm nó an seoladh ríomhphoist a d’úsáid tú nuair a chláraigh tú" -#: src/screens/Login/LoginForm.tsx:220 +#: src/screens/Login/LoginForm.tsx:241 msgid "Input your password" msgstr "Cuir isteach do phasfhocal" @@ -3014,7 +3109,7 @@ msgstr "Cuir isteach do phasfhocal" msgid "Input your preferred hosting provider" msgstr "Cuir isteach an soláthraí óstála is fearr leat" -#: src/screens/Signup/StepHandle.tsx:63 +#: src/screens/Signup/StepHandle.tsx:111 msgid "Input your user handle" msgstr "Cuir isteach do leasainm" @@ -3022,7 +3117,7 @@ msgstr "Cuir isteach do leasainm" msgid "Introducing Direct Messages" msgstr "Ag cur Teachtaireachtaí Díreacha in aithne duit" -#: src/screens/Login/LoginForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:140 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "Tá an cód 2FA seo neamhbhailí." @@ -3031,7 +3126,7 @@ msgstr "Tá an cód 2FA seo neamhbhailí." msgid "Invalid or unsupported post record" msgstr "Taifead postála atá neamhbhailí nó gan bhunús" -#: src/screens/Login/LoginForm.tsx:140 +#: src/screens/Login/LoginForm.tsx:145 msgid "Invalid username or password" msgstr "Leasainm nó pasfhocal míchruinn" @@ -3039,11 +3134,11 @@ msgstr "Leasainm nó pasfhocal míchruinn" msgid "Invite a Friend" msgstr "Tabhair cuireadh chuig cara leat" -#: src/screens/Signup/StepInfo/index.tsx:58 +#: src/screens/Signup/StepInfo/index.tsx:124 msgid "Invite code" msgstr "Cód cuiridh" -#: src/screens/Signup/state.ts:275 +#: src/screens/Signup/state.ts:251 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Níor glacadh leis an gcód cuiridh. Bí cinnte gur scríobh tú i gceart é agus bain triail eile as." @@ -3079,8 +3174,10 @@ msgstr "" msgid "Jobs" msgstr "Jabanna" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackScreen.tsx:432 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" msgstr "" @@ -3129,16 +3226,16 @@ msgstr "Lipéid ar do chuid ábhair" msgid "Language selection" msgstr "Rogha teanga" -#: src/view/screens/Settings/index.tsx:530 +#: src/view/screens/Settings/index.tsx:531 msgid "Language settings" msgstr "Socruithe teanga" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:155 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Socruithe teanga" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Languages" msgstr "Teangacha" @@ -3198,7 +3295,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:308 +#: src/view/screens/Settings/index.tsx:309 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Stóráil oidhreachta scriosta, tá ort an aip a atosú anois." @@ -3211,11 +3308,12 @@ msgstr "" msgid "Let's get your password reset!" msgstr "Socraímis do phasfhocal arís!" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 +#: src/tours/Tooltip.tsx:151 msgid "Let's go!" msgstr "Ar aghaidh linn!" -#: src/view/screens/Settings/index.tsx:452 +#: src/view/screens/Settings/index.tsx:453 msgid "Light" msgstr "Sorcha" @@ -3223,14 +3321,23 @@ msgstr "Sorcha" #~ msgid "Like" #~ msgstr "Mol" +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:167 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 #: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Mol an fotha seo" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:216 -#: src/Navigation.tsx:221 +#: src/Navigation.tsx:219 +#: src/Navigation.tsx:224 msgid "Liked by" msgstr "Molta ag" @@ -3252,11 +3359,11 @@ msgstr "Molta ag" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "Molta ag {likeCount} {0}" -#: src/view/com/notifications/FeedItem.tsx:190 +#: src/view/com/notifications/FeedItem.tsx:201 msgid "liked your custom feed" msgstr "a mhol do shainfhotha" -#: src/view/com/notifications/FeedItem.tsx:182 +#: src/view/com/notifications/FeedItem.tsx:185 msgid "liked your post" msgstr "a mhol do phostáil" @@ -3268,7 +3375,7 @@ msgstr "Moltaí" msgid "Likes on this post" msgstr "Moltaí don phostáil seo" -#: src/Navigation.tsx:185 +#: src/Navigation.tsx:188 msgid "List" msgstr "Liosta" @@ -3280,7 +3387,7 @@ msgstr "Abhatár an Liosta" msgid "List blocked" msgstr "Liosta blocáilte" -#: src/components/FeedCard.tsx:155 +#: src/components/ListCard.tsx:113 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "Liosta le {0}" @@ -3305,10 +3412,10 @@ msgstr "Liosta díbhlocáilte" msgid "List unmuted" msgstr "Liosta nach bhfuil balbhaithe níos mó" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:125 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/desktop/LeftNav.tsx:385 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 msgid "Lists" @@ -3345,7 +3452,7 @@ msgstr "Lódáil postálacha nua" msgid "Loading..." msgstr "Ag lódáil …" -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:239 msgid "Log" msgstr "Logleabhar" @@ -3369,7 +3476,7 @@ msgstr "Feiceálacht le linn a bheith logáilte amach" msgid "Login to account that is not listed" msgstr "Logáil isteach ar chuntas nach bhfuil liostáilte" -#: src/components/RichText.tsx:217 +#: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" msgstr "Brú fada le clár na clibe le haghaidh #{tag} a oscailt" @@ -3455,7 +3562,7 @@ msgstr "Tá an teachtaireacht rófhada" msgid "Message settings" msgstr "Socruithe teachtaireachta" -#: src/Navigation.tsx:526 +#: src/Navigation.tsx:534 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3471,9 +3578,9 @@ msgstr "Teachtaireachtaí" msgid "Misleading Account" msgstr "Cuntas atá Míthreorach" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:130 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Moderation" msgstr "Modhnóireacht" @@ -3481,7 +3588,7 @@ msgstr "Modhnóireacht" msgid "Moderation details" msgstr "Mionsonraí modhnóireachta" -#: src/components/FeedCard.tsx:157 +#: src/components/ListCard.tsx:109 #: src/view/com/lists/ListCard.tsx:95 #: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" @@ -3509,16 +3616,16 @@ msgstr "Liosta modhnóireachta uasdátaithe" msgid "Moderation lists" msgstr "Liostaí modhnóireachta" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Liostaí modhnóireachta" -#: src/view/screens/Settings/index.tsx:555 +#: src/view/screens/Settings/index.tsx:556 msgid "Moderation settings" msgstr "Socruithe modhnóireachta" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:234 msgid "Moderation states" msgstr "Stádais modhnóireachta" @@ -3551,6 +3658,10 @@ msgstr "Freagraí a fuair an méid is mó moltaí ar dtús" msgid "Movies" msgstr "" +#: src/screens/Onboarding/state.ts:91 +msgid "Music" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "Cuir i bhfolach" @@ -3624,7 +3735,7 @@ msgstr "Curtha i bhfolach" msgid "Muted accounts" msgstr "Cuntais a cuireadh i bhfolach" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Cuntais a Cuireadh i bhFolach" @@ -3650,19 +3761,19 @@ msgstr "Tá an cur i bhfolach príobháideach. Is féidir leis na cuntais a chui msgid "My Birthday" msgstr "Mo Bhreithlá" -#: src/view/screens/Feeds.tsx:718 +#: src/view/screens/Feeds.tsx:731 msgid "My Feeds" msgstr "Mo Chuid Fothaí" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Mo Phróifíl" -#: src/view/screens/Settings/index.tsx:616 +#: src/view/screens/Settings/index.tsx:617 msgid "My saved feeds" msgstr "Na fothaí a shábháil mé" -#: src/view/screens/Settings/index.tsx:622 +#: src/view/screens/Settings/index.tsx:623 msgid "My Saved Feeds" msgstr "Na Fothaí a Shábháil Mé" @@ -3683,16 +3794,20 @@ msgid "Name or Description Violates Community Standards" msgstr "Sáraíonn an tAinm nó an Cur Síos Caighdeáin an Phobail" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:92 msgid "Nature" msgstr "Nádúr" +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "" + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:332 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Téann sé seo chuig an gcéad scáileán eile" @@ -3709,7 +3824,7 @@ msgstr "An bhfuil tú ag iarraidh sárú cóipchirt a thuairisciú?" #~ msgid "Never lose access to your followers and data." #~ msgstr "Ná bíodh gan fáil ar do chuid leantóirí ná ar do chuid dáta go deo." -#: src/screens/Onboarding/StepFinished.tsx:257 +#: src/screens/Onboarding/StepFinished.tsx:265 msgid "Never lose access to your followers or data." msgstr "Ná bíodh gan fáil ar do chuid leantóirí ná ar do chuid dáta go deo." @@ -3753,17 +3868,17 @@ msgctxt "action" msgid "New post" msgstr "Postáil nua" -#: src/view/screens/Feeds.tsx:580 +#: 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/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/shell/desktop/LeftNav.tsx:278 msgid "New post" msgstr "Postáil nua" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:284 msgctxt "action" msgid "New Post" msgstr "Postáil nua" @@ -3781,21 +3896,22 @@ msgid "Newest replies first" msgstr "Na freagraí is déanaí ar dtús" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:93 msgid "News" msgstr "Nuacht" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:311 -#: src/screens/Login/LoginForm.tsx:318 +#: src/screens/Login/LoginForm.tsx:331 +#: src/screens/Login/LoginForm.tsx:338 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:258 +#: src/screens/Signup/BackNextButtons.tsx:66 #: src/screens/StarterPack/Wizard/index.tsx:184 #: src/screens/StarterPack/Wizard/index.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:359 #: src/screens/StarterPack/Wizard/index.tsx:366 +#: src/tours/Tooltip.tsx:139 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3837,11 +3953,12 @@ 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/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "Ní leantar {0} níos mó" -#: src/screens/Signup/StepHandle.tsx:115 +#: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" msgstr "Gan a bheith níos faide na 253 charachtar" @@ -3853,7 +3970,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:118 +#: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "Níl aon fhógra ann fós!" @@ -3881,7 +3998,7 @@ msgstr "Toradh ar bith" msgid "No results found" msgstr "Gan torthaí" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" msgstr "Gan torthaí ar “{query}”" @@ -3932,7 +4049,7 @@ msgstr "Lomnochtacht Neamhghnéasach" #~ msgid "Not Applicable." #~ msgstr "Ní bhaineann sé sin le hábhar." -#: src/Navigation.tsx:117 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Ní bhfuarthas é sin" @@ -3944,7 +4061,7 @@ msgstr "Ní anois" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:315 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "Nóta faoi roinnt" @@ -3964,11 +4081,11 @@ msgstr "Fuaimeanna fógra" msgid "Notification Sounds" msgstr "Fuaimeanna Fógra" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:529 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 +#: 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 msgid "Notifications" @@ -4004,7 +4121,7 @@ msgstr "As" msgid "Oh no!" msgstr "Úps!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:152 msgid "Oh no! Something went wrong." msgstr "Úps! Theip ar rud éigin." @@ -4028,10 +4145,14 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:256 +#: src/view/screens/Settings/index.tsx:257 msgid "Onboarding reset" msgstr "Atosú an chláraithe" +#: src/tours/Tooltip.tsx:118 +msgid "Onboarding tour step {0}: {1}" +msgstr "" + #: src/view/com/composer/Composer.tsx:522 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." @@ -4048,7 +4169,7 @@ msgstr "" #~ msgid "Only {0} can reply." #~ msgstr "Ní féidir ach le {0} freagra a thabhairt." -#: src/screens/Signup/StepHandle.tsx:98 +#: src/screens/Signup/StepHandle.tsx:149 msgid "Only contains letters, numbers, and hyphens" msgstr "Níl ann ach litreacha, uimhreacha, agus fleiscíní" @@ -4064,7 +4185,7 @@ msgstr "Úps! Theip ar rud éigin!" msgid "Oops!" msgstr "Úps!" -#: src/screens/Onboarding/StepFinished.tsx:253 +#: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" msgstr "Oscail" @@ -4090,7 +4211,7 @@ msgstr "Oscail roghnóir na n-emoji" msgid "Open feed options menu" msgstr "Oscail roghchlár na bhfothaí" -#: src/view/screens/Settings/index.tsx:736 +#: src/view/screens/Settings/index.tsx:737 msgid "Open links with in-app browser" msgstr "Oscail nascanna leis an mbrabhsálaí san aip" @@ -4110,16 +4231,16 @@ msgstr "Oscail an nascleanúint" msgid "Open post options menu" msgstr "Oscail roghchlár na bpostálacha" -#: src/screens/StarterPack/StarterPackScreen.tsx:451 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:861 +#: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" msgstr "Oscail leathanach an Storybook" -#: src/view/screens/Settings/index.tsx:848 +#: src/view/screens/Settings/index.tsx:849 msgid "Open system log" msgstr "Oscail logleabhar an chórais" @@ -4131,7 +4252,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:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Opens accessibility settings" msgstr "Osclaíonn sé seo na socruithe inrochtaineachta" @@ -4147,7 +4268,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:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Opens chat settings" msgstr "Osclaíonn sé seo na socruithe comhrá" @@ -4155,7 +4276,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:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Opens configurable language settings" msgstr "Osclaíonn sé seo na socruithe teanga is féidir a dhéanamh" @@ -4163,7 +4284,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:671 +#: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" msgstr "Osclaíonn sé seo na socruithe le haghaidh leabuithe seachtracha" @@ -4185,27 +4306,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:808 +#: src/view/screens/Settings/index.tsx:809 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:830 +#: src/view/screens/Settings/index.tsx:831 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:765 +#: src/view/screens/Settings/index.tsx:766 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:720 +#: src/view/screens/Settings/index.tsx:721 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:788 +#: src/view/screens/Settings/index.tsx:789 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:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Opens modal for email verification" msgstr "Osclaíonn sé seo fuinneog le deimhniú an ríomhphoist" @@ -4213,11 +4334,11 @@ 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:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Opens moderation settings" msgstr "Osclaíonn sé seo socruithe na modhnóireachta" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:247 msgid "Opens password reset form" msgstr "Osclaíonn sé seo an fhoirm leis an bpasfhocal a athrú" @@ -4225,15 +4346,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:617 +#: src/view/screens/Settings/index.tsx:618 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:698 +#: src/view/screens/Settings/index.tsx:699 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:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Opens the Following feed preferences" msgstr "Osclaíonn sé seo roghanna don fhotha Following" @@ -4246,20 +4367,20 @@ 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:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Opens the storybook page" msgstr "Osclaíonn sé seo leathanach an Storybook" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" msgstr "Osclaíonn sé seo logleabhar an chórais" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Opens the threads preferences" msgstr "Osclaíonn sé seo roghanna na snáitheanna" -#: src/view/com/notifications/FeedItem.tsx:513 +#: src/view/com/notifications/FeedItem.tsx:524 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "Osclaíonn sé an phróifíl seo" @@ -4310,8 +4431,8 @@ msgstr "Leathanach gan aimsiú" msgid "Page Not Found" msgstr "Leathanach gan aimsiú" -#: src/screens/Login/LoginForm.tsx:204 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Signup/StepInfo/index.tsx:162 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4333,15 +4454,16 @@ msgstr "Pasfhocal uasdátaithe!" msgid "Pause" msgstr "Sos" +#: src/screens/StarterPack/StarterPackScreen.tsx:170 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "Daoine" -#: src/Navigation.tsx:172 +#: src/Navigation.tsx:175 msgid "People followed by @{0}" msgstr "Na daoine atá leanta ag @{0}" -#: src/Navigation.tsx:165 +#: src/Navigation.tsx:168 msgid "People following @{0}" msgstr "Na leantóirí atá ag @{0}" @@ -4358,11 +4480,11 @@ msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:94 msgid "Pets" msgstr "Peataí" -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:95 msgid "Photography" msgstr "" @@ -4413,15 +4535,16 @@ msgstr "Seinn an físeán" msgid "Plays the GIF" msgstr "Seinneann sé seo an GIF" -#: src/screens/Signup/state.ts:234 +#: src/screens/Signup/state.ts:210 msgid "Please choose your handle." msgstr "Roghnaigh do leasainm, le do thoil." -#: src/screens/Signup/state.ts:227 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:81 msgid "Please choose your password." msgstr "Roghnaigh do phasfhocal, le do thoil." -#: src/screens/Signup/state.ts:248 +#: src/screens/Signup/state.ts:224 msgid "Please complete the verification captcha." msgstr "Déan an captcha, le do thoil." @@ -4441,10 +4564,15 @@ msgstr "Cuir isteach ainm nach bhfuil in úsáid cheana féin le haghaidh Phasfh msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Cuir focal, clib, nó frása inghlactha isteach le cur i bhfolach" -#: src/screens/Signup/state.ts:213 +#: src/screens/Signup/state.ts:189 +#: src/screens/Signup/StepInfo/index.tsx:69 msgid "Please enter your email." msgstr "Cuir isteach do sheoladh ríomhphoist, le do thoil." +#: src/screens/Signup/StepInfo/index.tsx:63 +msgid "Please enter your invite code." +msgstr "" + #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" msgstr "Cuir isteach do phasfhocal freisin, le do thoil." @@ -4471,7 +4599,7 @@ 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." #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:96 msgid "Politics" msgstr "Polaitíocht" @@ -4494,9 +4622,9 @@ msgstr "Postáil" msgid "Post by {0}" msgstr "Postáil ó {0}" -#: src/Navigation.tsx:191 -#: src/Navigation.tsx:198 -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:194 +#: src/Navigation.tsx:201 +#: src/Navigation.tsx:208 msgid "Post by @{0}" msgstr "Postáil ó @{0}" @@ -4535,6 +4663,7 @@ msgstr "Ní bhfuarthas an phostáil" msgid "posts" msgstr "postálacha" +#: src/screens/StarterPack/StarterPackScreen.tsx:172 #: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Postálacha" @@ -4562,7 +4691,7 @@ msgstr "Brúigh leis an soláthraí óstála a athrú" #: src/components/Error.tsx:85 #: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/index.tsx:238 +#: src/screens/Signup/BackNextButtons.tsx:46 msgid "Press to retry" msgstr "Brúigh le iarracht eile a dhéanamh" @@ -4587,15 +4716,15 @@ msgstr "Príomhtheanga" msgid "Prioritize Your Follows" msgstr "Tabhair Tosaíocht do Do Chuid Leantóirí" -#: src/view/screens/Settings/index.tsx:654 -#: src/view/shell/desktop/RightNav.tsx:77 +#: src/view/screens/Settings/index.tsx:655 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Príobháideacht" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 +#: src/view/screens/Settings/index.tsx:958 #: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Polasaí príobháideachta" @@ -4613,8 +4742,8 @@ msgstr "Á phróiseáil..." msgid "profile" msgstr "próifíl" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 +#: 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 @@ -4625,11 +4754,11 @@ msgstr "Próifíl" msgid "Profile updated" msgstr "Próifíl uasdátaithe" -#: src/view/screens/Settings/index.tsx:1021 +#: src/view/screens/Settings/index.tsx:1022 msgid "Protect your account by verifying your email." msgstr "Dearbhaigh do ríomhphost le do chuntas a chosaint." -#: src/screens/Onboarding/StepFinished.tsx:239 +#: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" msgstr "Poiblí" @@ -4661,6 +4790,10 @@ msgstr "" msgid "QR code saved to your camera roll!" msgstr "" +#: src/tours/Tooltip.tsx:111 +msgid "Quick tip" +msgstr "" + #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:79 @@ -4720,7 +4853,7 @@ msgid "Reload conversations" msgstr "Athlódáil comhráite" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:325 +#: src/components/FeedCard.tsx:309 #: src/components/StarterPack/Wizard/WizardListCard.tsx:95 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 @@ -4769,7 +4902,7 @@ msgstr "An bhfuil fonn ort an fotha a bhaint?" msgid "Remove from my feeds" msgstr "Bain de mo chuid fothaí" -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:304 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "É sin a bhaint de mo chuid fothaí?" @@ -4920,8 +5053,8 @@ msgstr "Tuairiscigh an teachtaireacht seo" msgid "Report post" msgstr "Déan gearán faoi phostáil" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 -#: src/screens/StarterPack/StarterPackScreen.tsx:507 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 msgid "Report starter pack" msgstr "" @@ -4967,7 +5100,7 @@ msgstr "Athphostáil" msgid "Repost" msgstr "Athphostáil" -#: src/screens/StarterPack/StarterPackScreen.tsx:446 +#: src/screens/StarterPack/StarterPackScreen.tsx:524 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4990,7 +5123,7 @@ msgstr "Athphostáilte ag {0}" msgid "Reposted by <0><1/>" msgstr "Athphostáilte ag <0><1/>" -#: src/view/com/notifications/FeedItem.tsx:184 +#: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "— d'athphostáil sé/sí do phostáil" @@ -5016,7 +5149,7 @@ msgstr "Bíodh téacs malartach ann roimh phostáil i gcónaí" msgid "Require email code to log into your account" msgstr "Bíodh cód ríomhphoist ag teastáil chun logáil isteach" -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" msgstr "Riachtanach don soláthraí seo" @@ -5033,8 +5166,8 @@ msgstr "Cód athshocraithe" msgid "Reset Code" msgstr "Cód Athshocraithe" -#: src/view/screens/Settings/index.tsx:900 -#: src/view/screens/Settings/index.tsx:903 +#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" msgstr "Athshocraigh an próiseas cláraithe" @@ -5042,20 +5175,20 @@ msgstr "Athshocraigh an próiseas cláraithe" msgid "Reset password" msgstr "Athshocraigh an pasfhocal" -#: src/view/screens/Settings/index.tsx:880 -#: src/view/screens/Settings/index.tsx:883 +#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:884 msgid "Reset preferences state" msgstr "Athshocraigh na roghanna" -#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" msgstr "Athshocraíonn sé seo an clárú" -#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" msgstr "Athshocraíonn sé seo na roghanna" -#: src/screens/Login/LoginForm.tsx:292 +#: src/screens/Login/LoginForm.tsx:312 msgid "Retries login" msgstr "Baineann sé seo triail eile as an logáil isteach" @@ -5068,12 +5201,12 @@ msgstr "Baineann sé seo triail eile as an ngníomh is déanaí, ar theip air" #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:291 -#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:311 +#: src/screens/Login/LoginForm.tsx:318 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Signup/BackNextButtons.tsx:52 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" @@ -5085,7 +5218,7 @@ msgstr "Bain triail eile as" #~ msgstr "Bain triail eile as" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:650 +#: src/screens/StarterPack/StarterPackScreen.tsx:728 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Fill ar an leathanach roimhe seo" @@ -5181,13 +5314,13 @@ 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:372 -#: src/view/com/notifications/FeedItem.tsx:397 +#: src/view/com/notifications/FeedItem.tsx:383 +#: src/view/com/notifications/FeedItem.tsx:408 msgid "Say hello!" msgstr "Abair heileo!" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:97 msgid "Science" msgstr "Eolaíocht" @@ -5196,16 +5329,16 @@ msgid "Scroll to top" msgstr "Fill ar an mbarr" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:516 -#: src/view/com/auth/LoggedOut.tsx:119 +#: src/Navigation.tsx:524 +#: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 #: src/view/screens/Search/Search.tsx:791 #: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 +#: 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 @@ -5237,8 +5370,8 @@ msgstr "" #~ msgid "Search for someone to start a conversation with." #~ msgstr "Lorg duine éigin le comhrá a dhéanamh leo." -#: src/view/com/auth/LoggedOut.tsx:101 -#: src/view/com/auth/LoggedOut.tsx:102 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:107 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "Cuardaigh úsáideoirí" @@ -5366,11 +5499,11 @@ msgstr "Roghnaigh na teangacha ba mhaith leat a fheiceáil i do chuid fothaí. M msgid "Select your app language for the default text to display in the app." msgstr "Roghnaigh teanga an téacs a thaispeánfar san aip." -#: src/screens/Signup/StepInfo/index.tsx:135 +#: src/screens/Signup/StepInfo/index.tsx:192 msgid "Select your date of birth" msgstr "Roghnaigh do dháta breithe" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:225 msgid "Select your interests from the options below" msgstr "Roghnaigh na rudaí a bhfuil suim agat iontu as na roghanna thíos" @@ -5483,23 +5616,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:461 +#: src/view/screens/Settings/index.tsx:462 msgid "Sets color theme to dark" msgstr "Roghnaíonn sé seo an modh dorcha" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Sets color theme to light" msgstr "Roghnaíonn sé seo an modh sorcha" -#: src/view/screens/Settings/index.tsx:448 +#: src/view/screens/Settings/index.tsx:449 msgid "Sets color theme to system setting" msgstr "Roghnaíonn sé seo scéim dathanna an chórais" -#: src/view/screens/Settings/index.tsx:487 +#: src/view/screens/Settings/index.tsx:488 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:480 +#: src/view/screens/Settings/index.tsx:481 msgid "Sets dark theme to the dim theme" msgstr "Úsáideann sé seo an téama breacdhorcha mar théama dorcha" @@ -5519,9 +5652,9 @@ 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:147 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:395 +#: src/Navigation.tsx:150 +#: src/view/screens/Settings/index.tsx:333 +#: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:559 #: src/view/shell/Drawer.tsx:560 msgid "Settings" @@ -5536,13 +5669,13 @@ msgid "Sexually Suggestive" msgstr "Graosta" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:340 -#: src/screens/StarterPack/StarterPackScreen.tsx:493 +#: 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/post-ctrls/PostCtrls.tsx:304 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Comhroinn" @@ -5562,7 +5695,7 @@ 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/post-ctrls/PostCtrls.tsx:320 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "Comhroinn mar sin féin" @@ -5573,7 +5706,7 @@ msgstr "Comhroinn an fotha" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -5591,7 +5724,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:333 +#: src/screens/StarterPack/StarterPackScreen.tsx:393 msgid "Share this starter pack" msgstr "" @@ -5610,7 +5743,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:381 +#: src/view/screens/Settings/index.tsx:382 msgid "Show" msgstr "Taispeáin" @@ -5618,7 +5751,7 @@ msgstr "Taispeáin" #~ msgid "Show all replies" #~ msgstr "Taispeáin gach freagra" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "Taispeáin an téacs malartach" @@ -5737,17 +5870,17 @@ msgstr "Taispeánann sé seo postálacha ó {0} i d'fhotha" #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:100 #: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Login/LoginForm.tsx:177 #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.tsx:72 #: src/view/com/auth/SplashScreen.web.tsx:112 #: src/view/com/auth/SplashScreen.web.tsx:121 -#: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 #: src/view/shell/bottom-bar/BottomBar.tsx:315 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/bottom-bar/BottomBar.tsx:318 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:210 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5775,12 +5908,12 @@ msgstr "Logáil isteach i Bluesky nó cruthaigh cuntas nua" msgid "Sign out" msgstr "Logáil amach" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 #: src/view/shell/bottom-bar/BottomBar.tsx:305 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBar.tsx:306 +#: src/view/shell/bottom-bar/BottomBar.tsx:308 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:200 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5796,7 +5929,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:391 +#: src/view/screens/Settings/index.tsx:392 msgid "Signed in as" msgstr "Logáilte isteach mar" @@ -5805,21 +5938,21 @@ msgstr "Logáilte isteach mar" msgid "Signed in as @{0}" msgstr "Logáilte isteach mar @{0}" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:264 #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Ná bac leis" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:261 msgid "Skip this flow" msgstr "Ná bac leis an bpróiseas seo" @@ -5828,6 +5961,10 @@ msgstr "Ná bac leis an bpróiseas seo" msgid "Software Dev" msgstr "Forbairt Bogearraí" +#: src/components/FeedInterstitials.tsx:378 +msgid "Some other feeds you might like" +msgstr "" + #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" @@ -5852,8 +5989,8 @@ 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:96 -#: src/App.web.tsx:78 +#: src/App.native.tsx:98 +#: src/App.web.tsx:80 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." @@ -5883,7 +6020,7 @@ msgid "Spam; excessive mentions or replies" msgstr "Turscar; an iomarca tagairtí nó freagraí" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:98 msgid "Sports" msgstr "Spórt" @@ -5903,17 +6040,22 @@ msgstr "Tosaigh comhrá le {displayName}" msgid "Start chatting" msgstr "Tosaigh ag comhrá" +#: src/tours/Tooltip.tsx:99 +msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +msgstr "" + #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:328 +#: src/Navigation.tsx:333 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:65 +#: src/components/StarterPack/StarterPackCard.tsx:70 msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:614 +#: src/screens/StarterPack/StarterPackScreen.tsx:692 msgid "Starter pack is invalid" msgstr "" @@ -5929,7 +6071,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Leathanach stádais" -#: src/view/screens/Settings/index.tsx:963 +#: src/view/screens/Settings/index.tsx:964 msgid "Status Page" msgstr "Leathanach Stádais" @@ -5937,16 +6079,16 @@ msgstr "Leathanach Stádais" #~ msgid "Step" #~ msgstr "Céim" -#: src/screens/Signup/index.tsx:192 +#: src/screens/Signup/index.tsx:125 msgid "Step {0} of {1}" msgstr "Céim {0} as {1}" -#: src/view/screens/Settings/index.tsx:304 +#: src/view/screens/Settings/index.tsx:305 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:226 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:229 +#: src/view/screens/Settings/index.tsx:864 msgid "Storybook" msgstr "Storybook" @@ -5989,6 +6131,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "Cuntais le leanúint" +#: src/components/FeedInterstitials.tsx:246 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Molta duit" @@ -5997,7 +6140,7 @@ msgstr "Molta duit" msgid "Suggestive" msgstr "Gáirsiúil" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:244 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6008,6 +6151,10 @@ msgstr "Tacaíocht" msgid "Switch Account" msgstr "Athraigh an cuntas" +#: src/tours/HomeTour.tsx:48 +msgid "Switch between feeds to control your experience." +msgstr "" + #: src/view/screens/Settings/index.tsx:160 msgid "Switch to {0}" msgstr "Athraigh go {0}" @@ -6016,11 +6163,11 @@ msgstr "Athraigh go {0}" msgid "Switches the account you are logged in to" msgstr "Athraíonn sé seo an cuntas beo" -#: src/view/screens/Settings/index.tsx:445 +#: src/view/screens/Settings/index.tsx:446 msgid "System" msgstr "Córas" -#: src/view/screens/Settings/index.tsx:851 +#: src/view/screens/Settings/index.tsx:852 msgid "System log" msgstr "Logleabhar an chórais" @@ -6036,12 +6183,24 @@ msgstr "Roghchlár na gclibeanna: {displayTag}" msgid "Tall" msgstr "Ard" +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "" + #: src/view/com/util/images/AutoSizedImage.tsx:70 msgid "Tap to view fully" msgstr "Tapáil leis an rud iomlán a fheiceáil" +#: src/state/shell/progress-guide.tsx:171 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "" + #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:99 msgid "Tech" msgstr "Teic" @@ -6053,13 +6212,13 @@ msgstr "Inis scéal grinn!" msgid "Tell us a little more" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:86 +#: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Téarmaí" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:254 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/Settings/index.tsx:952 #: src/view/screens/TermsOfService.tsx:29 #: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" @@ -6090,12 +6249,14 @@ msgstr "Go raibh maith agat. Seoladh do thuairisc." msgid "That contains the following:" msgstr "Ina bhfuil an méid seo a leanas:" -#: src/screens/Signup/index.tsx:100 +#: src/screens/Signup/StepHandle.tsx:50 msgid "That handle is already taken." msgstr "Tá an leasainm sin in úsáid cheana féin." -#: src/screens/StarterPack/StarterPackScreen.tsx:105 -#: src/screens/StarterPack/StarterPackScreen.tsx:106 +#: src/screens/StarterPack/StarterPackScreen.tsx:96 +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:136 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6118,7 +6279,12 @@ msgstr "Bogadh Treoirlínte an Phobail go dtí <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "Bogadh an Polasaí Cóipchirt go dtí <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:177 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6147,7 +6313,7 @@ msgstr "Is féidir gur scriosadh an phostáil seo." msgid "The Privacy Policy has been moved to <0/>" msgstr "Bogadh Polasaí na Príobháideachta go dtí <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:624 +#: src/screens/StarterPack/StarterPackScreen.tsx:702 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6206,11 +6372,11 @@ 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:126 +#: src/view/com/notifications/Feed.tsx:125 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Bhí fadhb ann maidir le fógraí a fháil. Tapáil anseo le triail eile a bhaint as." -#: src/view/com/posts/Feed.tsx:299 +#: src/view/com/posts/Feed.tsx:459 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Bhí fadhb ann maidir le postálacha a fháil. Tapáil anseo le triail eile a bhaint as." @@ -6406,7 +6572,7 @@ msgid "This post has been deleted." msgstr "Scriosadh an phostáil seo." #: src/view/com/util/forms/PostDropdownBtn.tsx:458 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:317 +#: 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." @@ -6467,12 +6633,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:594 +#: src/view/screens/Settings/index.tsx:595 msgid "Thread preferences" msgstr "Roghanna snáitheanna" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/Settings/index.tsx:605 msgid "Thread Preferences" msgstr "Roghanna Snáitheanna" @@ -6484,7 +6650,7 @@ msgstr "" msgid "Threaded Mode" msgstr "Modh Snáithithe" -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:287 msgid "Threads Preferences" msgstr "Roghanna Snáitheanna" @@ -6535,11 +6701,11 @@ msgctxt "action" msgid "Try again" msgstr "Bain triail eile as" -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:100 msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:745 +#: src/view/screens/Settings/index.tsx:746 msgid "Two-factor authentication" msgstr "Fíordheimhniú déshraithe (2FA)" @@ -6561,14 +6727,14 @@ msgstr "Ná coinnigh an liosta sin i bhfolach níos mó" #: src/screens/Login/ForgotPasswordForm.tsx:74 #: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:79 +#: src/screens/Signup/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Ní féidir teagmháil a dhéanamh le do sheirbhís. Seiceáil do cheangal leis an idirlíon, le do thoil." -#: src/screens/StarterPack/StarterPackScreen.tsx:548 +#: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Unable to delete" msgstr "" @@ -6835,7 +7001,7 @@ msgstr "Liosta úsáideoirí uasdátaithe" msgid "User Lists" msgstr "Liostaí Úsáideoirí" -#: src/screens/Login/LoginForm.tsx:177 +#: src/screens/Login/LoginForm.tsx:197 msgid "Username or email address" msgstr "Ainm úsáideora nó ríomhphost" @@ -6874,15 +7040,15 @@ msgstr "Luach:" msgid "Verify DNS Record" msgstr "Dearbhaigh taifead DNS" -#: src/view/screens/Settings/index.tsx:982 +#: src/view/screens/Settings/index.tsx:983 msgid "Verify email" msgstr "Dearbhaigh ríomhphost" -#: src/view/screens/Settings/index.tsx:1007 +#: src/view/screens/Settings/index.tsx:1008 msgid "Verify my email" msgstr "Dearbhaigh mo ríomhphost" -#: src/view/screens/Settings/index.tsx:1016 +#: src/view/screens/Settings/index.tsx:1017 msgid "Verify My Email" msgstr "Dearbhaigh Mo Ríomhphost" @@ -6903,7 +7069,7 @@ msgstr "Dearbhaigh Do Ríomhphost" #~ msgid "Version {0}" #~ msgstr "Leagan {0}" -#: src/view/screens/Settings/index.tsx:935 +#: src/view/screens/Settings/index.tsx:936 msgid "Version {appVersion} {bundleInfo}" msgstr "Leagan {appVersion} {bundleInfo}" @@ -6916,7 +7082,7 @@ msgstr "Físchluichí" msgid "View {0}'s avatar" msgstr "Féach ar an abhatár atá ag {0}" -#: src/view/com/notifications/FeedItem.tsx:234 +#: src/view/com/notifications/FeedItem.tsx:245 msgid "View {0}'s profile" msgstr "Amharc ar phróifíl {0}" @@ -6965,7 +7131,7 @@ msgid "View users who like this feed" msgstr "Féach ar úsáideoirí ar thaitin an fotha seo leo" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -7000,7 +7166,7 @@ msgstr "Theip orainn an comhrá seo a lódáil" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Measaimid go mbeidh do chuntas réidh i gceann {estimatedTime}" -#: src/screens/Onboarding/StepFinished.tsx:231 +#: src/screens/Onboarding/StepFinished.tsx:239 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Tá súil againn go mbeidh an-chraic agat anseo. Ná déan dearmad go bhfuil Bluesky:" @@ -7024,7 +7190,7 @@ msgstr "Theip orainn do rogha maidir le dáta breithe a lódáil. Bain triail as msgid "We were unable to load your configured labelers at this time." msgstr "Theip orainn na lipéadóirí a roghnaigh tú a lódáil faoi láthair." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:157 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Níorbh fhéidir linn ceangal a bhunú. Bain triail eile as do chuntas a shocrú. Má mhaireann an fhadhb, ní gá duit an próiseas seo a chur i gcrích." @@ -7032,7 +7198,7 @@ msgstr "Níorbh fhéidir linn ceangal a bhunú. Bain triail eile as do chuntas a msgid "We will let you know when your account is ready." msgstr "Déarfaidh muid leat nuair a bheidh do chuntas réidh." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:162 msgid "We'll use this to help customize your experience." msgstr "Bainfimid úsáid as seo chun an suíomh a chur in oiriúint duit." @@ -7040,7 +7206,7 @@ msgstr "Bainfimid úsáid as seo chun an suíomh a chur in oiriúint duit." msgid "We're having network issues, try again" msgstr "Tá fadhbanna líonra againn, bain triail as arís" -#: src/screens/Signup/index.tsx:155 +#: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" msgstr "Tá muid an-sásta go bhfuil tú linn!" @@ -7085,7 +7251,7 @@ msgstr "Fáilte ar ais!" msgid "Welcome, friend!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" msgstr "Cad iad na rudaí a bhfuil suim agat iontu?" @@ -7176,7 +7342,7 @@ msgid "Write your reply" msgstr "Scríobh freagra" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:101 msgid "Writers" msgstr "Scríbhneoirí" @@ -7195,7 +7361,7 @@ msgstr "Tá" msgid "Yes, deactivate" msgstr "Tá, díghníomhaigh" -#: src/screens/StarterPack/StarterPackScreen.tsx:560 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 msgid "Yes, delete this starter pack" msgstr "" @@ -7207,7 +7373,7 @@ msgstr "Tá, athghníomhaigh mo chuntas" msgid "Yesterday, {time}" msgstr "Inné, {time}" -#: src/components/StarterPack/StarterPackCard.tsx:68 +#: src/components/StarterPack/StarterPackCard.tsx:73 msgid "you" msgstr "" @@ -7425,23 +7591,23 @@ msgstr "Tusa: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Tusa: {short}" -#: src/screens/Signup/index.tsx:169 +#: src/screens/Signup/index.tsx:102 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:174 +#: 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:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "You'll stay updated with these feeds" msgstr "" @@ -7460,7 +7626,7 @@ msgstr "Tá tú sa scuaine" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "Tá tú logáilte isteach le pasfhocal aipe. Logáil isteach le do phríomh-phasfhocal chun dul ar aghaidh le díghníomhú do chuntais." -#: src/screens/Onboarding/StepFinished.tsx:228 +#: src/screens/Onboarding/StepFinished.tsx:236 msgid "You're ready to go!" msgstr "Tá tú réidh!" @@ -7473,7 +7639,7 @@ msgstr "Roghnaigh tú focal nó clib atá sa phostáil seo a chur i bhfolach." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Tháinig tú go deireadh d’fhotha! Aimsigh cuntais eile le leanúint." -#: src/screens/Signup/index.tsx:202 +#: src/screens/Signup/index.tsx:135 msgid "Your account" msgstr "Do chuntas" @@ -7485,7 +7651,7 @@ msgstr "Scriosadh do chuntas" msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "Is féidir cartlann do chuntais, a bhfuil na taifid phoiblí uile inti, a íoslódáil mar chomhad “CAR”. Ní bheidh aon mheáin leabaithe (íomhánna, mar shampla) ná do shonraí príobháideacha inti. Ní mór iad a fháil ar dhóigh eile." -#: src/screens/Signup/StepInfo/index.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" msgstr "Do bhreithlá" @@ -7502,7 +7668,8 @@ msgstr "Sábhálfar do rogha, ach is féidir é athrú níos déanaí sna socrui #~ msgstr "Is é “Following” d’fhotha réamhshocraithe" #: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Is cosúil go bhfuil do ríomhphost neamhbhailí." @@ -7515,11 +7682,15 @@ msgstr "Uasdátaíodh do sheoladh ríomhphoist ach níor dearbhaíodh é. An ch msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "Níor dearbhaíodh do sheoladh ríomhphoist fós. Is tábhachtach an chéim shábháilteachta é sin agus molaimid é." +#: src/state/shell/progress-guide.tsx:161 +msgid "Your first like!" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Tá an fotha de na daoine a leanann tú folamh! Lean tuilleadh úsáideoirí le feiceáil céard atá ar siúl." -#: src/screens/Signup/StepHandle.tsx:73 +#: src/screens/Signup/StepHandle.tsx:122 msgid "Your full handle will be" msgstr "Do leasainm iomlán anseo:" @@ -7539,7 +7710,7 @@ msgstr "Athraíodh do phasfhocal!" msgid "Your post has been published" msgstr "Foilsíodh do phostáil" -#: src/screens/Onboarding/StepFinished.tsx:243 +#: src/screens/Onboarding/StepFinished.tsx:251 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." @@ -7559,6 +7730,6 @@ msgstr "Foilsíodh do fhreagra" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Seolfar do thuairisc go dtí Seirbhís Modhnóireachta Bluesky" -#: src/screens/Signup/index.tsx:204 +#: src/screens/Signup/index.tsx:137 msgid "Your user handle" msgstr "Do leasainm" diff --git a/src/locale/locales/hi/messages.po b/src/locale/locales/hi/messages.po index 64bd15602e..927c452b6b 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:283 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -63,7 +63,7 @@ msgstr "" msgid "{0, plural, one {following} other {following}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:259 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" @@ -71,7 +71,7 @@ msgstr "" msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:216 +#: src/components/FeedCard.tsx:206 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -80,7 +80,7 @@ msgstr "" msgid "{0, plural, one {post} other {posts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:217 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" @@ -88,15 +88,15 @@ msgstr "" msgid "{0, plural, one {repost} other {reposts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:262 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:378 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" msgstr "" @@ -152,7 +152,7 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:503 +#: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "" @@ -276,7 +276,7 @@ msgstr "" msgid "⚠Invalid Handle" msgstr "" -#: src/screens/Login/LoginForm.tsx:247 +#: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" msgstr "" @@ -284,6 +284,10 @@ msgstr "" #~ msgid "A content warning has been applied to this {0}." #~ msgstr "" +#: 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 "ऐप का एक नया संस्करण उपलब्ध है. कृपया ऐप का उपयोग जारी रखने के लिए अपडेट करें।" @@ -298,15 +302,15 @@ msgid "Access profile and other navigation links" msgstr "" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:518 +#: src/view/screens/Settings/index.tsx:519 msgid "Accessibility" msgstr "प्रवेर्शयोग्यता" -#: src/view/screens/Settings/index.tsx:509 +#: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "" @@ -315,9 +319,9 @@ msgstr "" #~ msgid "account" #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:170 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:190 +#: src/view/screens/Settings/index.tsx:346 +#: src/view/screens/Settings/index.tsx:753 msgid "Account" msgstr "अकाउंट" @@ -388,8 +392,8 @@ msgstr "इस सूची में किसी को जोड़ें" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:422 -#: src/view/screens/Settings/index.tsx:431 +#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:432 msgid "Add account" msgstr "अकाउंट जोड़ें" @@ -457,7 +461,7 @@ msgstr "" msgid "Add the following DNS record to your domain:" msgstr "अपने डोमेन में निम्नलिखित DNS रिकॉर्ड जोड़ें:" -#: src/components/FeedCard.tsx:305 +#: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" msgstr "" @@ -505,15 +509,19 @@ msgid "Adult content is disabled." msgstr "" #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Advanced" msgstr "विकसित" -#: src/screens/StarterPack/StarterPackScreen.tsx:301 +#: src/state/shell/progress-guide.tsx:176 +msgid "Algorithm training complete!" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:360 msgid "All accounts have been followed!" msgstr "" -#: src/view/screens/Feeds.tsx:721 +#: src/view/screens/Feeds.tsx:734 msgid "All the feeds you've saved, right in one place." msgstr "" @@ -543,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:177 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 msgid "ALT" msgstr "ALT" @@ -553,7 +561,7 @@ msgstr "ALT" msgid "Alt text" msgstr "वैकल्पिक पाठ" -#: src/view/com/util/post-embeds/GifEmbed.tsx:183 +#: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" msgstr "" @@ -591,7 +599,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:303 +#: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" msgstr "" @@ -601,6 +609,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/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -608,12 +618,12 @@ msgstr "" msgid "An issue occurred, please try again." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" msgstr "" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:280 +#: src/view/com/notifications/FeedItem.tsx:291 msgid "and" msgstr "और" @@ -622,7 +632,7 @@ msgstr "और" msgid "Animals" msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" msgstr "" @@ -646,7 +656,7 @@ msgstr "" msgid "App Password names must be at least 4 characters long." msgstr "" -#: src/view/screens/Settings/index.tsx:697 +#: src/view/screens/Settings/index.tsx:698 msgid "App password settings" msgstr "" @@ -654,9 +664,9 @@ msgstr "" #~ msgid "App passwords" #~ msgstr "ऐप पासवर्ड" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:269 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/view/screens/Settings/index.tsx:707 msgid "App Passwords" msgstr "ऐप पासवर्ड" @@ -698,7 +708,7 @@ msgstr "" #~ msgid "Appeal this decision." #~ msgstr "" -#: src/view/screens/Settings/index.tsx:439 +#: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "दिखावट" @@ -707,7 +717,7 @@ msgstr "दिखावट" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -735,7 +745,7 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "" -#: src/components/FeedCard.tsx:322 +#: src/components/FeedCard.tsx:306 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -764,7 +774,7 @@ msgstr "" msgid "Artistic or non-erotic nudity." msgstr "कलात्मक या गैर-कामुक नग्नता।।" -#: src/screens/Signup/StepHandle.tsx:119 +#: src/screens/Signup/StepHandle.tsx:170 msgid "At least 3 characters" msgstr "" @@ -775,14 +785,15 @@ msgstr "" #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:278 -#: src/screens/Login/LoginForm.tsx:284 +#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:304 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/index.tsx:231 +#: 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 "वापस" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "मूल बातें" @@ -805,7 +816,7 @@ msgstr "मूल बातें" msgid "Birthday" msgstr "जन्मदिन" -#: src/view/screens/Settings/index.tsx:377 +#: src/view/screens/Settings/index.tsx:378 msgid "Birthday:" msgstr "जन्मदिन:" @@ -853,7 +864,7 @@ msgstr "" msgid "Blocked accounts" msgstr "ब्लॉक किए गए खाते" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:145 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "ब्लॉक किए गए खाते" @@ -895,6 +906,10 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "" +#: 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." @@ -939,6 +954,24 @@ msgstr "" msgid "Books" msgstr "" +#: src/components/FeedInterstitials.tsx:281 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:411 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:266 +#: src/components/FeedInterstitials.tsx:396 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:289 +#: src/components/FeedInterstitials.tsx:420 +msgid "Browse more suggestions on the Explore page" +msgstr "" + #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" @@ -1069,17 +1102,17 @@ msgstr "" msgid "Change" msgstr "" -#: src/view/screens/Settings/index.tsx:371 +#: src/view/screens/Settings/index.tsx:372 msgctxt "action" msgid "Change" msgstr "परिवर्तन" -#: src/view/screens/Settings/index.tsx:718 +#: src/view/screens/Settings/index.tsx:719 msgid "Change handle" msgstr "हैंडल बदलें" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change Handle" msgstr "हैंडल बदलें" @@ -1087,12 +1120,12 @@ msgstr "हैंडल बदलें" msgid "Change my email" msgstr "मेरा ईमेल बदलें" -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/index.tsx:764 msgid "Change password" msgstr "" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Change Password" msgstr "" @@ -1108,9 +1141,9 @@ msgstr "" msgid "Change Your Email" msgstr "मेरा ईमेल बदलें" -#: src/Navigation.tsx:310 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:313 +#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" msgstr "" @@ -1120,14 +1153,14 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:318 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" msgstr "" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" msgstr "" @@ -1152,7 +1185,7 @@ msgstr "" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "कुछ अनुशंसित उपयोगकर्ताओं की जाँच करें। ऐसे ही उपयोगकर्ता देखने के लिए उनका अनुसरण करें।" -#: src/screens/Login/LoginForm.tsx:271 +#: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." msgstr "" @@ -1164,10 +1197,18 @@ msgstr "नीचे प्रवेश करने के लिए OTP को #~ msgid "Choose \"Everybody\" or \"Nobody\"" #~ msgstr "" +#: 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 "" +#: src/screens/Onboarding/StepInterests/index.tsx:325 +msgid "Choose at least {0} more" +msgstr "" + #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" msgstr "" @@ -1184,7 +1225,7 @@ msgstr "" msgid "Choose Service" msgstr "सेवा चुनें" -#: src/screens/Onboarding/StepFinished.tsx:273 +#: src/screens/Onboarding/StepFinished.tsx:281 msgid "Choose the algorithms that power your custom feeds." msgstr "" @@ -1210,23 +1251,23 @@ msgstr "" #~ msgid "Choose your main feeds" #~ msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" msgstr "अपना पासवर्ड चुनें" -#: src/view/screens/Settings/index.tsx:910 +#: src/view/screens/Settings/index.tsx:911 msgid "Clear all legacy storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:913 +#: src/view/screens/Settings/index.tsx:914 msgid "Clear all legacy storage data (restart after this)" msgstr "" -#: src/view/screens/Settings/index.tsx:922 +#: src/view/screens/Settings/index.tsx:923 msgid "Clear all storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:925 +#: src/view/screens/Settings/index.tsx:926 msgid "Clear all storage data (restart after this)" msgstr "" @@ -1235,11 +1276,11 @@ msgstr "" msgid "Clear search query" msgstr "खोज क्वेरी साफ़ करें" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" msgstr "" @@ -1288,7 +1329,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:189 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "Close" msgstr "" @@ -1351,11 +1392,11 @@ msgstr "" msgid "Closes viewer for header image" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:226 +#: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:437 msgid "Collapses list of users for a given notification" msgstr "" @@ -1369,16 +1410,16 @@ msgstr "" msgid "Comics" msgstr "" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:259 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "समुदाय दिशानिर्देश" -#: src/screens/Onboarding/StepFinished.tsx:286 +#: src/screens/Onboarding/StepFinished.tsx:294 msgid "Complete onboarding and start using your account" msgstr "" -#: src/screens/Signup/index.tsx:206 +#: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" msgstr "" @@ -1445,7 +1486,7 @@ msgstr "" msgid "Confirm your birthdate" msgstr "" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:272 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 @@ -1459,11 +1500,11 @@ msgstr "OTP कोड" #~ msgid "Confirms signing up {email} to the waitlist" #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:305 +#: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." msgstr "कनेक्टिंग ..।" -#: src/screens/Signup/index.tsx:276 +#: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "" @@ -1512,7 +1553,7 @@ msgstr "सामग्री चेतावनी" msgid "Context menu backdrop, click to close the menu." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:258 +#: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "आगे बढ़ें" @@ -1525,9 +1566,9 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:255 +#: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/index.tsx:251 +#: src/screens/Signup/BackNextButtons.tsx:59 msgid "Continue to next step" msgstr "" @@ -1552,7 +1593,7 @@ msgstr "" msgid "Copied" msgstr "कॉपी कर ली" -#: src/view/screens/Settings/index.tsx:263 +#: src/view/screens/Settings/index.tsx:264 msgid "Copied build version to clipboard" msgstr "" @@ -1561,7 +1602,7 @@ msgstr "" #: 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/post-ctrls/PostCtrls.tsx:350 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "" @@ -1622,7 +1663,7 @@ msgstr "पोस्ट टेक्स्ट कॉपी करें" msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "कॉपीराइट नीति" @@ -1664,7 +1705,7 @@ msgstr "" msgid "Create a new account" msgstr "नया खाता बनाएं" -#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" msgstr "" @@ -1674,7 +1715,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:338 msgid "Create a starter pack" msgstr "" @@ -1682,7 +1723,7 @@ msgstr "" msgid "Create a starter pack for me" msgstr "" -#: src/screens/Signup/index.tsx:154 +#: src/screens/Signup/index.tsx:88 msgid "Create Account" msgstr "खाता बनाएँ" @@ -1746,7 +1787,7 @@ msgstr "" msgid "Custom domain" msgstr "कस्टम डोमेन" -#: src/view/screens/Feeds.tsx:747 +#: src/view/screens/Feeds.tsx:760 #: src/view/screens/Search/Explore.tsx:390 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "" @@ -1759,8 +1800,8 @@ msgstr "" #~ msgid "Danger Zone" #~ msgstr "खतरा क्षेत्र" -#: src/view/screens/Settings/index.tsx:458 -#: src/view/screens/Settings/index.tsx:484 +#: src/view/screens/Settings/index.tsx:459 +#: src/view/screens/Settings/index.tsx:485 msgid "Dark" msgstr "डार्क मोड" @@ -1768,24 +1809,24 @@ msgstr "डार्क मोड" msgid "Dark mode" msgstr "" -#: src/view/screens/Settings/index.tsx:471 +#: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:134 +#: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" msgstr "" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:818 +#: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:873 +#: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" msgstr "" @@ -1794,16 +1835,16 @@ msgid "Debug panel" msgstr "" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:484 -#: src/screens/StarterPack/StarterPackScreen.tsx:563 -#: src/screens/StarterPack/StarterPackScreen.tsx:643 +#: 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/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "" -#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:829 msgid "Delete account" msgstr "खाता हटाएं" @@ -1823,8 +1864,8 @@ msgstr "अप्प पासवर्ड हटाएं" msgid "Delete app password?" msgstr "" -#: src/view/screens/Settings/index.tsx:890 -#: src/view/screens/Settings/index.tsx:893 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" msgstr "" @@ -1852,7 +1893,7 @@ msgstr "मेरा खाता हटाएं" #~ msgid "Delete my account…" #~ msgstr "मेरा खाता हटाएं…" -#: src/view/screens/Settings/index.tsx:840 +#: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" msgstr "" @@ -1861,12 +1902,12 @@ msgstr "" msgid "Delete post" msgstr "पोस्ट को हटाएं" -#: src/screens/StarterPack/StarterPackScreen.tsx:478 -#: src/screens/StarterPack/StarterPackScreen.tsx:634 +#: src/screens/StarterPack/StarterPackScreen.tsx:556 +#: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" msgstr "" @@ -1886,7 +1927,7 @@ msgstr "" msgid "Deleted post." msgstr "यह पोस्ट मिटाई जा चुकी है" -#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" msgstr "" @@ -1909,7 +1950,7 @@ msgstr "" msgid "Did you want to say anything?" msgstr "" -#: src/view/screens/Settings/index.tsx:477 +#: src/view/screens/Settings/index.tsx:478 msgid "Dim" msgstr "" @@ -1963,6 +2004,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "" +#: src/tours/HomeTour.tsx:70 +msgid "Discover learns which posts you like as you browse." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -1972,10 +2017,14 @@ msgstr "" msgid "Discover new feeds" msgstr "नए फ़ीड की खोज करें" -#: src/view/screens/Feeds.tsx:744 +#: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" msgstr "" +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "" + #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" msgstr "" @@ -1996,7 +2045,7 @@ msgstr "" msgid "Does not include nudity." msgstr "" -#: src/screens/Signup/StepHandle.tsx:105 +#: src/screens/Signup/StepHandle.tsx:156 msgid "Doesn't begin or end with a hyphen" msgstr "" @@ -2049,7 +2098,7 @@ msgstr "खत्म {extraText}" #~ msgid "Double tap to sign in" #~ msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" msgstr "" @@ -2062,7 +2111,7 @@ msgstr "" msgid "Download CAR file" msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:272 +#: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" msgstr "" @@ -2110,11 +2159,11 @@ msgstr "" msgid "Each code works once. You'll receive more invite codes periodically." msgstr "प्रत्येक कोड एक बार काम करता है। आपको समय-समय पर अधिक आमंत्रण कोड प्राप्त होंगे।" -#: src/screens/StarterPack/StarterPackScreen.tsx:473 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "" @@ -2145,9 +2194,9 @@ msgstr "सूची विवरण संपादित करें" msgid "Edit Moderation List" msgstr "" -#: src/Navigation.tsx:271 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 +#: src/Navigation.tsx:274 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "मेरी फ़ीड संपादित करें" @@ -2175,7 +2224,7 @@ msgstr "मेरी प्रोफ़ाइल संपादित करे #~ msgid "Edit Saved Feeds" #~ msgstr "एडिट सेव्ड फीड" -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" msgstr "" @@ -2195,7 +2244,7 @@ msgstr "" msgid "Edit your profile description" msgstr "" -#: src/Navigation.tsx:335 +#: src/Navigation.tsx:343 msgid "Edit your starter pack" msgstr "" @@ -2208,7 +2257,7 @@ msgstr "" msgid "Either choose \"Everybody\" or \"Nobody\"" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "ईमेल" @@ -2234,7 +2283,7 @@ msgstr "ईमेल अपडेट किया गया" msgid "Email verified" msgstr "" -#: src/view/screens/Settings/index.tsx:349 +#: src/view/screens/Settings/index.tsx:350 msgid "Email:" msgstr "ईमेल:" @@ -2304,6 +2353,10 @@ msgstr "" #~ 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 "" + #: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "" @@ -2342,7 +2395,7 @@ msgstr "" #~ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:92 +#: src/screens/Signup/StepInfo/index.tsx:152 msgid "Enter your email address" msgstr "अपना ईमेल पता दर्ज करें" @@ -2366,11 +2419,11 @@ msgstr "अपने यूज़रनेम और पासवर्ड द msgid "Error occurred while saving file" msgstr "" -#: src/screens/Signup/StepCaptcha/index.tsx:51 +#: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:197 +#: src/screens/Onboarding/StepInterests/index.tsx:216 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "" @@ -2429,7 +2482,7 @@ msgstr "" msgid "Expand alt text" msgstr "ऑल्ट टेक्स्ट" -#: src/view/com/notifications/FeedItem.tsx:227 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" msgstr "" @@ -2446,12 +2499,12 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/view/screens/Settings/index.tsx:786 +#: src/view/screens/Settings/index.tsx:787 msgid "Export my data" msgstr "" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:797 +#: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" msgstr "" @@ -2465,13 +2518,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:290 +#: src/Navigation.tsx:293 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/view/screens/Settings/index.tsx:680 msgid "External Media Preferences" msgstr "" -#: src/view/screens/Settings/index.tsx:670 +#: src/view/screens/Settings/index.tsx:671 msgid "External media settings" msgstr "" @@ -2497,7 +2550,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:597 +#: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" msgstr "" @@ -2554,7 +2607,7 @@ msgstr "" msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:285 +#: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" msgstr "" @@ -2563,11 +2616,11 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:211 +#: src/Navigation.tsx:214 msgid "Feed" msgstr "" -#: src/components/FeedCard.tsx:161 +#: src/components/FeedCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "" @@ -2584,17 +2637,18 @@ msgstr "" msgid "Feed toggle" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "प्रतिक्रिया" -#: src/Navigation.tsx:320 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 +#: src/Navigation.tsx:323 +#: 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:373 +#: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" @@ -2620,7 +2674,7 @@ msgstr "फ़ीड कस्टम एल्गोरिदम हैं ज #~ msgid "Feeds can be topical as well!" #~ msgstr "" -#: src/components/FeedCard.tsx:282 +#: src/components/FeedCard.tsx:266 msgid "Feeds updated!" msgstr "" @@ -2636,7 +2690,7 @@ msgstr "" msgid "Filter from feeds" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 msgid "Finalizing" msgstr "" @@ -2646,6 +2700,10 @@ msgstr "" msgid "Find accounts to follow" msgstr "" +#: src/tours/HomeTour.tsx:88 +msgid "Find more feeds and accounts to follow in the Explore page." +msgstr "" + #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "" @@ -2678,11 +2736,15 @@ msgstr "चर्चा धागे को ठीक-ट्यून करे msgid "Finish" msgstr "" +#: src/tours/Tooltip.tsx:149 +msgid "Finish tour and begin using the application" +msgstr "" + #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:269 +#: src/screens/Onboarding/StepFinished.tsx:277 msgid "Flexible" msgstr "" @@ -2695,6 +2757,8 @@ msgstr "" msgid "Flip vertically" msgstr "" +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:341 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2717,13 +2781,17 @@ msgstr "" msgid "Follow {name}" msgstr "" +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "" + #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:345 -#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:405 +#: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" msgstr "" @@ -2751,7 +2819,7 @@ msgstr "" #~ msgid "Followed by" #~ msgstr "" -#: src/view/com/profile/ProfileCard.tsx:227 +#: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" msgstr "" @@ -2779,16 +2847,20 @@ msgstr "" msgid "Followed users only" msgstr "केवल वे यूजर को फ़ॉलो किया गया" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:197 msgid "followed you" msgstr "" +#: src/view/com/notifications/FeedItem.tsx:195 +msgid "followed you back" +msgstr "" + #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "यह यूजर आपका फ़ोलो करता है" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" msgstr "" @@ -2797,17 +2869,20 @@ msgstr "" msgid "Followers you know" msgstr "" +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:335 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:630 +#: src/view/screens/Feeds.tsx:631 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "फोल्लोविंग" +#: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "" @@ -2816,21 +2891,25 @@ msgstr "" msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:573 +#: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:277 +#: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "Following Feed Preferences" msgstr "" +#: src/tours/HomeTour.tsx:59 +msgid "Following shows the latest posts from people you follow." +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "यह यूजर आपका फ़ोलो करता है" -#: src/view/com/profile/ProfileCard.tsx:152 +#: src/components/Pills.tsx:165 msgid "Follows You" msgstr "" @@ -2860,11 +2939,11 @@ msgstr "सुरक्षा कारणों के लिए, आप इस msgid "Forgot Password" msgstr "पासवर्ड भूल गए" -#: src/screens/Login/LoginForm.tsx:227 +#: src/screens/Login/LoginForm.tsx:246 msgid "Forgot password?" msgstr "" -#: src/screens/Login/LoginForm.tsx:238 +#: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" msgstr "" @@ -2898,6 +2977,10 @@ msgstr "" msgid "Get Started" msgstr "प्रारंभ करें" +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "" + #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" msgstr "" @@ -2912,31 +2995,35 @@ msgstr "" #: src/components/moderation/ScreenHider.tsx:151 #: src/components/moderation/ScreenHider.tsx:160 -#: src/view/com/auth/LoggedOut.tsx:78 -#: src/view/com/auth/LoggedOut.tsx:79 +#: src/view/com/auth/LoggedOut.tsx:80 +#: src/view/com/auth/LoggedOut.tsx:81 #: src/view/screens/NotFound.tsx:55 #: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "वापस जाओ" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:656 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 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/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:225 +#: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" msgstr "" @@ -2970,6 +3057,10 @@ msgstr "अगला" msgid "Go to profile" msgstr "" +#: src/tours/Tooltip.tsx:138 +msgid "Go to the next step of the tour" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "" @@ -2978,6 +3069,10 @@ msgstr "" msgid "Graphic Media" msgstr "" +#: src/state/shell/progress-guide.tsx:166 +msgid "Half way there!" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" msgstr "हैंडल" @@ -2990,7 +3085,7 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:308 msgid "Hashtag" msgstr "" @@ -2998,15 +3093,15 @@ msgstr "" #~ msgid "Hashtag: {tag}" #~ msgstr "" -#: src/components/RichText.tsx:216 +#: src/components/RichText.tsx:218 msgid "Hashtag: #{tag}" msgstr "" -#: src/screens/Signup/index.tsx:272 +#: src/screens/Signup/index.tsx:167 msgid "Having trouble?" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/desktop/RightNav.tsx:99 #: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "सहायता" @@ -3042,7 +3137,7 @@ msgstr "यहां आपका ऐप पासवर्ड है." msgid "Hide" msgstr "इसे छिपाएं" -#: src/view/com/notifications/FeedItem.tsx:433 +#: src/view/com/notifications/FeedItem.tsx:444 msgctxt "action" msgid "Hide" msgstr "" @@ -3061,7 +3156,7 @@ msgstr "" msgid "Hide this post?" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:424 +#: src/view/com/notifications/FeedItem.tsx:435 msgid "Hide user list" msgstr "उपयोगकर्ता सूची छुपाएँ" @@ -3097,10 +3192,10 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/Navigation.tsx:511 -#: src/Navigation.tsx:531 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: src/Navigation.tsx:519 +#: src/Navigation.tsx:539 +#: 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 msgid "Home" @@ -3118,8 +3213,8 @@ msgid "Host:" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:160 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:180 +#: src/screens/Signup/StepInfo/index.tsx:106 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "होस्टिंग प्रदाता" @@ -3236,15 +3331,15 @@ msgstr "" #~ msgid "Input phone number for SMS verification" #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:266 +#: src/screens/Login/LoginForm.tsx:286 msgid "Input the code which has been emailed to you" msgstr "" #: src/screens/Login/LoginForm.tsx:221 -msgid "Input the password tied to {identifier}" -msgstr "" +#~ msgid "Input the password tied to {identifier}" +#~ msgstr "" -#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Login/LoginForm.tsx:215 msgid "Input the username or email address you used at signup" msgstr "" @@ -3256,7 +3351,7 @@ msgstr "" #~ msgid "Input your email to get on the Bluesky waitlist" #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:220 +#: src/screens/Login/LoginForm.tsx:241 msgid "Input your password" msgstr "" @@ -3264,7 +3359,7 @@ msgstr "" msgid "Input your preferred hosting provider" msgstr "" -#: src/screens/Signup/StepHandle.tsx:63 +#: src/screens/Signup/StepHandle.tsx:111 msgid "Input your user handle" msgstr "" @@ -3272,7 +3367,7 @@ msgstr "" msgid "Introducing Direct Messages" msgstr "" -#: src/screens/Login/LoginForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:140 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "" @@ -3281,7 +3376,7 @@ msgstr "" msgid "Invalid or unsupported post record" msgstr "" -#: src/screens/Login/LoginForm.tsx:140 +#: src/screens/Login/LoginForm.tsx:145 msgid "Invalid username or password" msgstr "अवैध उपयोगकर्ता नाम या पासवर्ड" @@ -3293,11 +3388,11 @@ msgstr "अवैध उपयोगकर्ता नाम या पास msgid "Invite a Friend" msgstr "एक दोस्त को आमंत्रित करें" -#: src/screens/Signup/StepInfo/index.tsx:58 +#: src/screens/Signup/StepInfo/index.tsx:124 msgid "Invite code" msgstr "आमंत्रण कोड" -#: src/screens/Signup/state.ts:275 +#: src/screens/Signup/state.ts:251 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "" @@ -3337,8 +3432,10 @@ msgstr "" msgid "Jobs" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackScreen.tsx:432 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" msgstr "" @@ -3400,16 +3497,16 @@ msgstr "" msgid "Language selection" msgstr "अपनी भाषा चुने" -#: src/view/screens/Settings/index.tsx:530 +#: src/view/screens/Settings/index.tsx:531 msgid "Language settings" msgstr "" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:155 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "भाषा सेटिंग्स" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Languages" msgstr "भाषा" @@ -3477,7 +3574,7 @@ msgstr "लीविंग Bluesky" msgid "left to go." msgstr "" -#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:309 msgid "Legacy storage cleared, you need to restart the app now." msgstr "" @@ -3490,7 +3587,8 @@ msgstr "" msgid "Let's get your password reset!" msgstr "चलो अपना पासवर्ड रीसेट करें!" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 +#: src/tours/Tooltip.tsx:151 msgid "Let's go!" msgstr "" @@ -3499,7 +3597,7 @@ msgstr "" #~ msgid "Library" #~ msgstr "चित्र पुस्तकालय" -#: src/view/screens/Settings/index.tsx:452 +#: src/view/screens/Settings/index.tsx:453 msgid "Light" msgstr "लाइट मोड" @@ -3507,14 +3605,23 @@ msgstr "लाइट मोड" #~ msgid "Like" #~ msgstr "" +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:167 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 #: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "इस फ़ीड को लाइक करो" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:216 -#: src/Navigation.tsx:221 +#: src/Navigation.tsx:219 +#: src/Navigation.tsx:224 msgid "Liked by" msgstr "इन यूजर ने लाइक किया है" @@ -3538,11 +3645,11 @@ msgstr "" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "" -#: src/view/com/notifications/FeedItem.tsx:190 +#: src/view/com/notifications/FeedItem.tsx:201 msgid "liked your custom feed" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:182 +#: src/view/com/notifications/FeedItem.tsx:185 msgid "liked your post" msgstr "" @@ -3554,7 +3661,7 @@ msgstr "" msgid "Likes on this post" msgstr "" -#: src/Navigation.tsx:185 +#: src/Navigation.tsx:188 msgid "List" msgstr "" @@ -3566,7 +3673,7 @@ msgstr "सूची अवतार" msgid "List blocked" msgstr "" -#: src/components/FeedCard.tsx:155 +#: src/components/ListCard.tsx:113 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "" @@ -3591,10 +3698,10 @@ msgstr "" msgid "List unmuted" msgstr "" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:125 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/desktop/LeftNav.tsx:385 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 msgid "Lists" @@ -3640,7 +3747,7 @@ msgstr "" #~ msgid "Local dev server" #~ msgstr "स्थानीय देव सर्वर" -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:239 msgid "Log" msgstr "" @@ -3664,7 +3771,7 @@ msgstr "" msgid "Login to account that is not listed" msgstr "उस खाते में लॉग इन करें जो सूचीबद्ध नहीं है" -#: src/components/RichText.tsx:217 +#: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" msgstr "" @@ -3757,7 +3864,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:526 +#: src/Navigation.tsx:534 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3772,9 +3879,9 @@ msgstr "" msgid "Misleading Account" msgstr "" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:130 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Moderation" msgstr "मॉडरेशन" @@ -3782,7 +3889,7 @@ msgstr "मॉडरेशन" msgid "Moderation details" msgstr "" -#: src/components/FeedCard.tsx:157 +#: src/components/ListCard.tsx:109 #: src/view/com/lists/ListCard.tsx:95 #: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" @@ -3810,16 +3917,16 @@ msgstr "" msgid "Moderation lists" msgstr "मॉडरेशन सूचियाँ" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "" -#: src/view/screens/Settings/index.tsx:555 +#: src/view/screens/Settings/index.tsx:556 msgid "Moderation settings" msgstr "" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:234 msgid "Moderation states" msgstr "" @@ -3856,6 +3963,10 @@ msgstr "" msgid "Movies" msgstr "" +#: src/screens/Onboarding/state.ts:91 +msgid "Music" +msgstr "" + #: src/view/com/auth/create/Step2.tsx:122 #~ msgid "Must be at least 3 characters" #~ msgstr "" @@ -3941,7 +4052,7 @@ msgstr "" msgid "Muted accounts" msgstr "म्यूट किए गए खाते" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "म्यूट किए गए खाते" @@ -3967,19 +4078,19 @@ msgstr "म्यूट करना निजी है. म्यूट कि msgid "My Birthday" msgstr "जन्मदिन" -#: src/view/screens/Feeds.tsx:718 +#: src/view/screens/Feeds.tsx:731 msgid "My Feeds" msgstr "मेरी फ़ीड" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "मेरी प्रोफाइल" -#: src/view/screens/Settings/index.tsx:616 +#: src/view/screens/Settings/index.tsx:617 msgid "My saved feeds" msgstr "" -#: src/view/screens/Settings/index.tsx:622 +#: src/view/screens/Settings/index.tsx:623 msgid "My Saved Feeds" msgstr "मेरी फ़ीड" @@ -4004,16 +4115,20 @@ msgid "Name or Description Violates Community Standards" msgstr "" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:92 msgid "Nature" msgstr "" +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "" + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:332 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "" @@ -4036,7 +4151,7 @@ msgstr "" #~ msgid "Never lose access to your followers and data." #~ msgstr "अपने फ़ॉलोअर्स और डेटा तक पहुंच कभी न खोएं।" -#: src/screens/Onboarding/StepFinished.tsx:257 +#: src/screens/Onboarding/StepFinished.tsx:265 msgid "Never lose access to your followers or data." msgstr "" @@ -4084,17 +4199,17 @@ msgctxt "action" msgid "New post" msgstr "" -#: src/view/screens/Feeds.tsx:580 +#: 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/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/shell/desktop/LeftNav.tsx:278 msgid "New post" msgstr "नई पोस्ट" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:284 msgctxt "action" msgid "New Post" msgstr "नई पोस्ट" @@ -4112,21 +4227,22 @@ msgid "Newest replies first" msgstr "" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:93 msgid "News" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:311 -#: src/screens/Login/LoginForm.tsx:318 +#: src/screens/Login/LoginForm.tsx:331 +#: src/screens/Login/LoginForm.tsx:338 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:258 +#: src/screens/Signup/BackNextButtons.tsx:66 #: src/screens/StarterPack/Wizard/index.tsx:184 #: src/screens/StarterPack/Wizard/index.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:359 #: src/screens/StarterPack/Wizard/index.tsx:366 +#: src/tours/Tooltip.tsx:139 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4168,11 +4284,12 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" +#: src/components/ProfileCard.tsx:321 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "" -#: src/screens/Signup/StepHandle.tsx:115 +#: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" msgstr "" @@ -4184,7 +4301,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:118 +#: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "" @@ -4212,7 +4329,7 @@ msgstr "" msgid "No results found" msgstr "" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" msgstr "\"{query}\" के लिए कोई परिणाम नहीं मिला" @@ -4262,7 +4379,7 @@ msgstr "" #~ msgid "Not Applicable." #~ msgstr "लागू नहीं।" -#: src/Navigation.tsx:117 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "" @@ -4274,7 +4391,7 @@ msgstr "" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:315 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "" @@ -4294,11 +4411,11 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:529 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 +#: 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 msgid "Notifications" @@ -4338,7 +4455,7 @@ msgstr "" msgid "Oh no!" msgstr "अरे नहीं!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:152 msgid "Oh no! Something went wrong." msgstr "" @@ -4362,10 +4479,14 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:256 +#: src/view/screens/Settings/index.tsx:257 msgid "Onboarding reset" msgstr "" +#: src/tours/Tooltip.tsx:118 +msgid "Onboarding tour step {0}: {1}" +msgstr "" + #: src/view/com/composer/Composer.tsx:522 msgid "One or more images is missing alt text." msgstr "एक या अधिक छवियाँ alt पाठ याद आती हैं।।" @@ -4382,7 +4503,7 @@ msgstr "" #~ msgid "Only {0} can reply." #~ msgstr "" -#: src/screens/Signup/StepHandle.tsx:98 +#: src/screens/Signup/StepHandle.tsx:149 msgid "Only contains letters, numbers, and hyphens" msgstr "" @@ -4398,7 +4519,7 @@ msgstr "" msgid "Oops!" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:253 +#: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" msgstr "" @@ -4428,7 +4549,7 @@ msgstr "" msgid "Open feed options menu" msgstr "" -#: src/view/screens/Settings/index.tsx:736 +#: src/view/screens/Settings/index.tsx:737 msgid "Open links with in-app browser" msgstr "" @@ -4452,16 +4573,16 @@ msgstr "ओपन नेविगेशन" msgid "Open post options menu" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:451 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:861 +#: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" msgstr "" -#: src/view/screens/Settings/index.tsx:848 +#: src/view/screens/Settings/index.tsx:849 msgid "Open system log" msgstr "" @@ -4473,7 +4594,7 @@ msgstr "" msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Opens accessibility settings" msgstr "" @@ -4489,7 +4610,7 @@ msgstr "" msgid "Opens camera on device" msgstr "" -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Opens chat settings" msgstr "" @@ -4497,7 +4618,7 @@ msgstr "" msgid "Opens composer" msgstr "" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Opens configurable language settings" msgstr "भाषा सेटिंग्स खोलें" @@ -4509,7 +4630,7 @@ msgstr "" #~ msgid "Opens editor for profile display name, avatar, background image, and description" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" msgstr "" @@ -4543,11 +4664,11 @@ msgstr "" msgid "Opens list of invite codes" msgstr "" -#: src/view/screens/Settings/index.tsx:808 +#: src/view/screens/Settings/index.tsx:809 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:830 +#: src/view/screens/Settings/index.tsx:831 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "" @@ -4555,19 +4676,19 @@ msgstr "" #~ msgid "Opens modal for account deletion confirmation. Requires email code." #~ msgstr "" -#: src/view/screens/Settings/index.tsx:765 +#: src/view/screens/Settings/index.tsx:766 msgid "Opens modal for changing your Bluesky password" msgstr "" -#: src/view/screens/Settings/index.tsx:720 +#: src/view/screens/Settings/index.tsx:721 msgid "Opens modal for choosing a new Bluesky handle" msgstr "" -#: src/view/screens/Settings/index.tsx:788 +#: src/view/screens/Settings/index.tsx:789 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Opens modal for email verification" msgstr "" @@ -4575,11 +4696,11 @@ msgstr "" msgid "Opens modal for using custom domain" msgstr "कस्टम डोमेन का उपयोग करने के लिए मोडल खोलें" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Opens moderation settings" msgstr "मॉडरेशन सेटिंग्स खोलें" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:247 msgid "Opens password reset form" msgstr "" @@ -4588,11 +4709,11 @@ msgstr "" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "Opens screen with all saved feeds" msgstr "सभी बचाया फ़ीड के साथ स्क्रीन खोलें" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "Opens the app password settings" msgstr "" @@ -4600,7 +4721,7 @@ msgstr "" #~ msgid "Opens the app password settings page" #~ msgstr "ऐप पासवर्ड सेटिंग पेज खोलें" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Opens the Following feed preferences" msgstr "" @@ -4616,20 +4737,20 @@ msgstr "" #~ msgid "Opens the message settings page" #~ 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 "Opens the storybook page" msgstr "स्टोरीबुक पेज खोलें" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" msgstr "सिस्टम लॉग पेज खोलें" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Opens the threads preferences" msgstr "धागे वरीयताओं को खोलता है" -#: src/view/com/notifications/FeedItem.tsx:513 +#: src/view/com/notifications/FeedItem.tsx:524 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "" @@ -4688,8 +4809,8 @@ msgstr "पृष्ठ नहीं मिला" msgid "Page Not Found" msgstr "" -#: src/screens/Login/LoginForm.tsx:204 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Signup/StepInfo/index.tsx:162 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4711,15 +4832,16 @@ msgstr "पासवर्ड अद्यतन!" msgid "Pause" msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:170 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "" -#: src/Navigation.tsx:172 +#: src/Navigation.tsx:175 msgid "People followed by @{0}" msgstr "" -#: src/Navigation.tsx:165 +#: src/Navigation.tsx:168 msgid "People following @{0}" msgstr "" @@ -4736,7 +4858,7 @@ msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:94 msgid "Pets" msgstr "" @@ -4744,7 +4866,7 @@ msgstr "" #~ msgid "Phone number" #~ msgstr "" -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:95 msgid "Photography" msgstr "" @@ -4795,15 +4917,16 @@ msgstr "" msgid "Plays the GIF" msgstr "" -#: src/screens/Signup/state.ts:234 +#: src/screens/Signup/state.ts:210 msgid "Please choose your handle." msgstr "" -#: src/screens/Signup/state.ts:227 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:81 msgid "Please choose your password." msgstr "" -#: src/screens/Signup/state.ts:248 +#: src/screens/Signup/state.ts:224 msgid "Please complete the verification captcha." msgstr "" @@ -4835,10 +4958,15 @@ msgstr "" #~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." #~ msgstr "" -#: src/screens/Signup/state.ts:213 +#: src/screens/Signup/state.ts:189 +#: src/screens/Signup/StepInfo/index.tsx:69 msgid "Please enter your email." msgstr "" +#: src/screens/Signup/StepInfo/index.tsx:63 +msgid "Please enter your invite code." +msgstr "" + #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" msgstr "कृपया अपना पासवर्ड भी दर्ज करें:" @@ -4870,7 +4998,7 @@ msgid "Please wait for your link card to finish loading" msgstr "" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:96 msgid "Politics" msgstr "" @@ -4897,9 +5025,9 @@ msgstr "पोस्ट" msgid "Post by {0}" msgstr "" -#: src/Navigation.tsx:191 -#: src/Navigation.tsx:198 -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:194 +#: src/Navigation.tsx:201 +#: src/Navigation.tsx:208 msgid "Post by @{0}" msgstr "" @@ -4938,6 +5066,7 @@ msgstr "पोस्ट नहीं मिला" msgid "posts" msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:172 #: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "" @@ -4965,7 +5094,7 @@ msgstr "" #: src/components/Error.tsx:85 #: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/index.tsx:238 +#: src/screens/Signup/BackNextButtons.tsx:46 msgid "Press to retry" msgstr "" @@ -4990,15 +5119,15 @@ msgstr "प्राथमिक भाषा" msgid "Prioritize Your Follows" msgstr "अपने फ़ॉलोअर्स को प्राथमिकता दें" -#: src/view/screens/Settings/index.tsx:654 -#: src/view/shell/desktop/RightNav.tsx:77 +#: src/view/screens/Settings/index.tsx:655 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "गोपनीयता" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 +#: src/view/screens/Settings/index.tsx:958 #: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "गोपनीयता नीति" @@ -5016,8 +5145,8 @@ msgstr "प्रसंस्करण..." msgid "profile" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 +#: 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 @@ -5028,11 +5157,11 @@ msgstr "प्रोफ़ाइल" msgid "Profile updated" msgstr "" -#: src/view/screens/Settings/index.tsx:1021 +#: src/view/screens/Settings/index.tsx:1022 msgid "Protect your account by verifying your email." msgstr "अपने ईमेल को सत्यापित करके अपने खाते को सुरक्षित रखें।।" -#: src/screens/Onboarding/StepFinished.tsx:239 +#: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" msgstr "" @@ -5064,6 +5193,10 @@ msgstr "" msgid "QR code saved to your camera roll!" msgstr "" +#: src/tours/Tooltip.tsx:111 +msgid "Quick tip" +msgstr "" + #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:79 @@ -5122,7 +5255,7 @@ msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:325 +#: src/components/FeedCard.tsx:309 #: src/components/StarterPack/Wizard/WizardListCard.tsx:95 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 @@ -5175,7 +5308,7 @@ msgstr "" msgid "Remove from my feeds" msgstr "मेरे फ़ीड से हटाएँ" -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:304 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "" @@ -5339,8 +5472,8 @@ msgstr "" msgid "Report post" msgstr "रिपोर्ट पोस्ट" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 -#: src/screens/StarterPack/StarterPackScreen.tsx:507 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 msgid "Report starter pack" msgstr "" @@ -5386,7 +5519,7 @@ msgstr "" msgid "Repost" msgstr "पुन: पोस्ट" -#: src/screens/StarterPack/StarterPackScreen.tsx:446 +#: src/screens/StarterPack/StarterPackScreen.tsx:524 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5409,7 +5542,7 @@ msgstr "" msgid "Reposted by <0><1/>" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:184 +#: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "" @@ -5439,7 +5572,7 @@ msgstr "पोस्ट करने से पहले वैकल्पि msgid "Require email code to log into your account" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" msgstr "इस प्रदाता के लिए आवश्यक" @@ -5460,8 +5593,8 @@ msgstr "" #~ msgid "Reset onboarding" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:900 -#: src/view/screens/Settings/index.tsx:903 +#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" msgstr "ऑनबोर्डिंग स्टेट को रीसेट करें" @@ -5473,20 +5606,20 @@ msgstr "पासवर्ड रीसेट" #~ msgid "Reset preferences" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:880 -#: src/view/screens/Settings/index.tsx:883 +#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:884 msgid "Reset preferences state" msgstr "प्राथमिकताओं को रीसेट करें" -#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" msgstr "ऑनबोर्डिंग स्टेट को रीसेट करें" -#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" msgstr "प्राथमिकताओं की स्थिति को रीसेट करें" -#: src/screens/Login/LoginForm.tsx:292 +#: src/screens/Login/LoginForm.tsx:312 msgid "Retries login" msgstr "" @@ -5499,12 +5632,12 @@ msgstr "" #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:291 -#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:311 +#: src/screens/Login/LoginForm.tsx:318 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Signup/BackNextButtons.tsx:52 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" @@ -5515,7 +5648,7 @@ msgstr "फिर से कोशिश करो" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:650 +#: src/screens/StarterPack/StarterPackScreen.tsx:728 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "" @@ -5615,13 +5748,13 @@ msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:372 -#: src/view/com/notifications/FeedItem.tsx:397 +#: src/view/com/notifications/FeedItem.tsx:383 +#: src/view/com/notifications/FeedItem.tsx:408 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:97 msgid "Science" msgstr "" @@ -5630,16 +5763,16 @@ msgid "Scroll to top" msgstr "" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:516 -#: src/view/com/auth/LoggedOut.tsx:119 +#: src/Navigation.tsx:524 +#: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 #: src/view/screens/Search/Search.tsx:791 #: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 +#: 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 @@ -5679,8 +5812,8 @@ msgstr "" #~ msgid "Search for someone to start a conversation with." #~ msgstr "" -#: src/view/com/auth/LoggedOut.tsx:101 -#: src/view/com/auth/LoggedOut.tsx:102 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:107 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "" @@ -5834,11 +5967,11 @@ msgstr "चुनें कि आप अपनी सदस्यता वा msgid "Select your app language for the default text to display in the app." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:135 +#: src/screens/Signup/StepInfo/index.tsx:192 msgid "Select your date of birth" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:225 msgid "Select your interests from the options below" msgstr "" @@ -5997,23 +6130,23 @@ msgstr "" msgid "Sets Bluesky username" msgstr "" -#: src/view/screens/Settings/index.tsx:461 +#: src/view/screens/Settings/index.tsx:462 msgid "Sets color theme to dark" msgstr "" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Sets color theme to light" msgstr "" -#: src/view/screens/Settings/index.tsx:448 +#: src/view/screens/Settings/index.tsx:449 msgid "Sets color theme to system setting" msgstr "" -#: src/view/screens/Settings/index.tsx:487 +#: src/view/screens/Settings/index.tsx:488 msgid "Sets dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings/index.tsx:480 +#: src/view/screens/Settings/index.tsx:481 msgid "Sets dark theme to the dim theme" msgstr "" @@ -6042,9 +6175,9 @@ msgstr "" #~ msgid "Sets server for the Bluesky client" #~ msgstr "" -#: src/Navigation.tsx:147 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:395 +#: src/Navigation.tsx:150 +#: src/view/screens/Settings/index.tsx:333 +#: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:559 #: src/view/shell/Drawer.tsx:560 msgid "Settings" @@ -6059,13 +6192,13 @@ msgid "Sexually Suggestive" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:340 -#: src/screens/StarterPack/StarterPackScreen.tsx:493 +#: 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/post-ctrls/PostCtrls.tsx:304 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "शेयर" @@ -6085,7 +6218,7 @@ msgstr "" #: src/view/com/profile/ProfileMenu.tsx:377 #: src/view/com/util/forms/PostDropdownBtn.tsx:461 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:320 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "" @@ -6096,7 +6229,7 @@ msgstr "" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -6114,7 +6247,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:333 +#: src/screens/StarterPack/StarterPackScreen.tsx:393 msgid "Share this starter pack" msgstr "" @@ -6133,7 +6266,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:381 +#: src/view/screens/Settings/index.tsx:382 msgid "Show" msgstr "दिखाओ" @@ -6141,7 +6274,7 @@ msgstr "दिखाओ" #~ msgid "Show all replies" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "" @@ -6268,17 +6401,17 @@ msgstr "" #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:100 #: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Login/LoginForm.tsx:177 #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.tsx:72 #: src/view/com/auth/SplashScreen.web.tsx:112 #: src/view/com/auth/SplashScreen.web.tsx:121 -#: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 #: src/view/shell/bottom-bar/BottomBar.tsx:315 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/bottom-bar/BottomBar.tsx:318 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:210 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -6316,12 +6449,12 @@ msgstr "" msgid "Sign out" msgstr "साइन आउट" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 #: src/view/shell/bottom-bar/BottomBar.tsx:305 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBar.tsx:306 +#: src/view/shell/bottom-bar/BottomBar.tsx:308 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:200 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -6337,7 +6470,7 @@ msgstr "" msgid "Sign-in Required" msgstr "" -#: src/view/screens/Settings/index.tsx:391 +#: src/view/screens/Settings/index.tsx:392 msgid "Signed in as" msgstr "आपने इस रूप में साइन इन करा है:" @@ -6346,7 +6479,7 @@ msgstr "आपने इस रूप में साइन इन करा msgid "Signed in as @{0}" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "signed up with your starter pack" msgstr "" @@ -6354,17 +6487,17 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:264 #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "स्किप" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:261 msgid "Skip this flow" msgstr "" @@ -6377,6 +6510,10 @@ msgstr "" msgid "Software Dev" msgstr "" +#: src/components/FeedInterstitials.tsx:378 +msgid "Some other feeds you might like" +msgstr "" + #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" @@ -6413,8 +6550,8 @@ msgstr "" #~ msgid "Something went wrong. Check your email and try again." #~ msgstr "" -#: src/App.native.tsx:96 -#: src/App.web.tsx:78 +#: src/App.native.tsx:98 +#: src/App.web.tsx:80 msgid "Sorry! Your session expired. Please log in again." msgstr "" @@ -6444,7 +6581,7 @@ msgid "Spam; excessive mentions or replies" msgstr "" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:98 msgid "Sports" msgstr "" @@ -6468,17 +6605,22 @@ msgstr "" msgid "Start chatting" msgstr "" +#: src/tours/Tooltip.tsx:99 +msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +msgstr "" + #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:328 +#: src/Navigation.tsx:333 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:65 +#: src/components/StarterPack/StarterPackCard.tsx:70 msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:614 +#: src/screens/StarterPack/StarterPackScreen.tsx:692 msgid "Starter pack is invalid" msgstr "" @@ -6494,7 +6636,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "स्थिति पृष्ठ" -#: src/view/screens/Settings/index.tsx:963 +#: src/view/screens/Settings/index.tsx:964 msgid "Status Page" msgstr "" @@ -6502,7 +6644,7 @@ msgstr "" #~ msgid "Step" #~ msgstr "" -#: src/screens/Signup/index.tsx:192 +#: src/screens/Signup/index.tsx:125 msgid "Step {0} of {1}" msgstr "" @@ -6510,12 +6652,12 @@ msgstr "" #~ msgid "Step {0} of {numSteps}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:304 +#: src/view/screens/Settings/index.tsx:305 msgid "Storage cleared, you need to restart the app now." msgstr "" -#: src/Navigation.tsx:226 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:229 +#: src/view/screens/Settings/index.tsx:864 msgid "Storybook" msgstr "Storybook" @@ -6559,6 +6701,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "अनुशंसित लोग" +#: src/components/FeedInterstitials.tsx:246 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "" @@ -6567,7 +6710,7 @@ msgstr "" msgid "Suggestive" msgstr "" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:244 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6582,6 +6725,10 @@ msgstr "सहायता" msgid "Switch Account" msgstr "खाते बदलें" +#: src/tours/HomeTour.tsx:48 +msgid "Switch between feeds to control your experience." +msgstr "" + #: src/view/screens/Settings/index.tsx:160 msgid "Switch to {0}" msgstr "" @@ -6590,11 +6737,11 @@ msgstr "" msgid "Switches the account you are logged in to" msgstr "" -#: src/view/screens/Settings/index.tsx:445 +#: src/view/screens/Settings/index.tsx:446 msgid "System" msgstr "प्रणाली" -#: src/view/screens/Settings/index.tsx:851 +#: src/view/screens/Settings/index.tsx:852 msgid "System log" msgstr "सिस्टम लॉग" @@ -6614,12 +6761,24 @@ msgstr "" msgid "Tall" msgstr "लंबा" +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "" + #: src/view/com/util/images/AutoSizedImage.tsx:70 msgid "Tap to view fully" msgstr "" +#: src/state/shell/progress-guide.tsx:171 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "" + #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:99 msgid "Tech" msgstr "" @@ -6631,13 +6790,13 @@ msgstr "" msgid "Tell us a little more" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:86 +#: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "शर्तें" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:254 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/Settings/index.tsx:952 #: src/view/screens/TermsOfService.tsx:29 #: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" @@ -6668,12 +6827,14 @@ msgstr "" msgid "That contains the following:" msgstr "" -#: src/screens/Signup/index.tsx:100 +#: src/screens/Signup/StepHandle.tsx:50 msgid "That handle is already taken." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:105 -#: src/screens/StarterPack/StarterPackScreen.tsx:106 +#: src/screens/StarterPack/StarterPackScreen.tsx:96 +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:136 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6696,7 +6857,12 @@ msgstr "सामुदायिक दिशानिर्देशों क msgid "The Copyright Policy has been moved to <0/>" msgstr "कॉपीराइट नीति को <0/> पर स्थानांतरित कर दिया गया है" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:177 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6725,7 +6891,7 @@ msgstr "हो सकता है कि यह पोस्ट हटा द msgid "The Privacy Policy has been moved to <0/>" msgstr "गोपनीयता नीति को <0/> पर स्थानांतरित किया गया है" -#: src/screens/StarterPack/StarterPackScreen.tsx:624 +#: src/screens/StarterPack/StarterPackScreen.tsx:702 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6783,11 +6949,11 @@ msgstr "" msgid "There was an issue contacting your server" msgstr "" -#: src/view/com/notifications/Feed.tsx:126 +#: src/view/com/notifications/Feed.tsx:125 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "" -#: src/view/com/posts/Feed.tsx:299 +#: src/view/com/posts/Feed.tsx:459 msgid "There was an issue fetching posts. Tap here to try again." msgstr "" @@ -6991,7 +7157,7 @@ msgid "This post has been deleted." msgstr "इस पोस्ट को हटा दिया गया है।।" #: src/view/com/util/forms/PostDropdownBtn.tsx:458 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:317 +#: 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 "" @@ -7068,12 +7234,12 @@ msgstr "" #~ msgid "This will hide this post from your feeds." #~ msgstr "" -#: src/view/screens/Settings/index.tsx:594 +#: src/view/screens/Settings/index.tsx:595 msgid "Thread preferences" msgstr "" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/Settings/index.tsx:605 msgid "Thread Preferences" msgstr "थ्रेड प्राथमिकता" @@ -7085,7 +7251,7 @@ msgstr "" msgid "Threaded Mode" msgstr "थ्रेड मोड" -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:287 msgid "Threads Preferences" msgstr "" @@ -7136,11 +7302,11 @@ msgctxt "action" msgid "Try again" msgstr "फिर से कोशिश करो" -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:100 msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:745 +#: src/view/screens/Settings/index.tsx:746 msgid "Two-factor authentication" msgstr "" @@ -7162,14 +7328,14 @@ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:74 #: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:79 +#: src/screens/Signup/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "आपकी सेवा से संपर्क करने में असमर्थ। कृपया अपने इंटरनेट कनेक्शन की जांच करें।।" -#: src/screens/StarterPack/StarterPackScreen.tsx:548 +#: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Unable to delete" msgstr "" @@ -7458,7 +7624,7 @@ msgstr "" msgid "User Lists" msgstr "लोग सूचियाँ" -#: src/screens/Login/LoginForm.tsx:177 +#: src/screens/Login/LoginForm.tsx:197 msgid "Username or email address" msgstr "यूजर नाम या ईमेल पता" @@ -7501,15 +7667,15 @@ msgstr "" msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:982 +#: src/view/screens/Settings/index.tsx:983 msgid "Verify email" msgstr "ईमेल सत्यापित करें" -#: src/view/screens/Settings/index.tsx:1007 +#: src/view/screens/Settings/index.tsx:1008 msgid "Verify my email" msgstr "मेरी ईमेल सत्यापित करें" -#: src/view/screens/Settings/index.tsx:1016 +#: src/view/screens/Settings/index.tsx:1017 msgid "Verify My Email" msgstr "मेरी ईमेल सत्यापित करें" @@ -7530,7 +7696,7 @@ msgstr "" #~ msgid "Version {0}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:935 +#: src/view/screens/Settings/index.tsx:936 msgid "Version {appVersion} {bundleInfo}" msgstr "" @@ -7543,7 +7709,7 @@ msgstr "" msgid "View {0}'s avatar" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:234 +#: src/view/com/notifications/FeedItem.tsx:245 msgid "View {0}'s profile" msgstr "" @@ -7592,7 +7758,7 @@ msgid "View users who like this feed" msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -7631,7 +7797,7 @@ msgstr "" msgid "We estimate {estimatedTime} until your account is ready." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:231 +#: src/screens/Onboarding/StepFinished.tsx:239 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "" @@ -7659,7 +7825,7 @@ msgstr "" msgid "We were unable to load your configured labelers at this time." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:157 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "" @@ -7671,7 +7837,7 @@ msgstr "" #~ msgid "We'll look into your appeal promptly." #~ msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:162 msgid "We'll use this to help customize your experience." msgstr "" @@ -7679,7 +7845,7 @@ msgstr "" msgid "We're having network issues, try again" msgstr "" -#: src/screens/Signup/index.tsx:155 +#: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" msgstr "हम आपके हमारी सेवा में शामिल होने को लेकर बहुत उत्साहित हैं!" @@ -7724,7 +7890,7 @@ msgstr "" msgid "Welcome, friend!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" msgstr "" @@ -7819,7 +7985,7 @@ msgid "Write your reply" msgstr "अपना जवाब दें" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:101 msgid "Writers" msgstr "" @@ -7842,7 +8008,7 @@ msgstr "हाँ" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:560 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 msgid "Yes, delete this starter pack" msgstr "" @@ -7854,7 +8020,7 @@ msgstr "" msgid "Yesterday, {time}" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:68 +#: src/components/StarterPack/StarterPackCard.tsx:73 msgid "you" msgstr "" @@ -8095,23 +8261,23 @@ msgstr "" msgid "You: {short}" msgstr "" -#: src/screens/Signup/index.tsx:169 +#: src/screens/Signup/index.tsx:102 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:174 +#: 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:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "You'll stay updated with these feeds" msgstr "" @@ -8130,7 +8296,7 @@ msgstr "" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:228 +#: src/screens/Onboarding/StepFinished.tsx:236 msgid "You're ready to go!" msgstr "" @@ -8143,7 +8309,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "" -#: src/screens/Signup/index.tsx:202 +#: src/screens/Signup/index.tsx:135 msgid "Your account" msgstr "आपका खाता" @@ -8155,7 +8321,7 @@ msgstr "" msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" msgstr "जन्म तिथि" @@ -8172,7 +8338,8 @@ msgstr "" #~ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "" @@ -8189,11 +8356,15 @@ msgstr "आपका ईमेल अद्यतन किया गया ह msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "आपका ईमेल अभी तक सत्यापित नहीं हुआ है। यह एक महत्वपूर्ण सुरक्षा कदम है जिसे हम अनुशंसा करते हैं।।" +#: src/state/shell/progress-guide.tsx:161 +msgid "Your first like!" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "" -#: src/screens/Signup/StepHandle.tsx:73 +#: src/screens/Signup/StepHandle.tsx:122 msgid "Your full handle will be" msgstr "आपका पूरा हैंडल होगा" @@ -8219,7 +8390,7 @@ msgstr "" msgid "Your post has been published" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:243 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "आपकी पोस्ट, पसंद और ब्लॉक सार्वजनिक हैं। म्यूट निजी हैं।।" @@ -8239,6 +8410,6 @@ msgstr "" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" -#: src/screens/Signup/index.tsx:204 +#: src/screens/Signup/index.tsx:137 msgid "Your user handle" msgstr "आपका यूजर हैंडल" diff --git a/src/locale/locales/id/messages.po b/src/locale/locales/id/messages.po index 58881b17ed..a5c7873f80 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:283 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, other {{formattedCount} lainnya}}" @@ -64,7 +64,7 @@ msgstr "{0, plural, other {pengikut}}" msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, other {mengikuti}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:259 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, other {Suka (# menyukai)}}" @@ -72,7 +72,7 @@ msgstr "{0, plural, other {Suka (# menyukai)}}" msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, other {suka}}" -#: src/components/FeedCard.tsx:216 +#: 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, other {Disukai oleh # pengguna}}" @@ -81,7 +81,7 @@ msgstr "{0, plural, other {Disukai oleh # pengguna}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, other {postingan}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:217 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, other {Balas (# balasan)}}" @@ -89,15 +89,15 @@ msgstr "{0, plural, other {Balas (# balasan)}}" msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, other {posting ulang}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:262 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, other {Batal suka (# menyukai)}}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" msgstr "{0} telah bergabung minggu ini" -#: src/screens/StarterPack/StarterPackScreen.tsx:378 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" msgstr "{0} orang telah menggunakan paket pemula ini!" @@ -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:503 +#: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} mengikuti" @@ -259,10 +259,14 @@ msgstr "<0>Anda dan<1> <2>{0} sudah disertakan dalam paket pemula" msgid "⚠Invalid Handle" msgstr "⚠Panggilan Tidak Valid" -#: src/screens/Login/LoginForm.tsx:247 +#: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" msgstr "Konfirmasi 2FA" +#: src/tours/Tooltip.tsx:70 +msgid "A help tooltip" +msgstr "" + #: src/view/com/util/ViewHeader.tsx:93 #: src/view/screens/Search/Search.tsx:684 msgid "Access navigation links and settings" @@ -273,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:518 +#: src/view/screens/Settings/index.tsx:519 msgid "Accessibility" msgstr "Aksesibilitas" -#: src/view/screens/Settings/index.tsx:509 +#: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" msgstr "Pengaturan aksesibilitas" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "Pengaturan Aksesibilitas" @@ -290,9 +294,9 @@ msgstr "Pengaturan Aksesibilitas" #~ msgid "account" #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:170 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:190 +#: src/view/screens/Settings/index.tsx:346 +#: src/view/screens/Settings/index.tsx:753 msgid "Account" msgstr "Akun" @@ -363,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:422 -#: src/view/screens/Settings/index.tsx:431 +#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:432 msgid "Add account" msgstr "Tambahkan akun" @@ -423,7 +427,7 @@ msgstr "Tambahkan feed bawaan hanya untuk orang yang Anda ikuti" msgid "Add the following DNS record to your domain:" msgstr "Tambahkan catatan DNS berikut ke domain Anda:" -#: src/components/FeedCard.tsx:305 +#: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" msgstr "Tambahkan feed ini ke daftar feed Anda" @@ -467,15 +471,19 @@ msgid "Adult content is disabled." msgstr "Konten dewasa dinonaktifkan." #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Advanced" msgstr "Lanjutan" -#: src/screens/StarterPack/StarterPackScreen.tsx:301 +#: src/state/shell/progress-guide.tsx:176 +msgid "Algorithm training complete!" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:360 msgid "All accounts have been followed!" msgstr "Semua akun telah diikuti!" -#: src/view/screens/Feeds.tsx:721 +#: src/view/screens/Feeds.tsx:734 msgid "All the feeds you've saved, right in one place." msgstr "Berisi semua feed yang telah Anda simpan dalam satu tempat." @@ -505,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:177 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 msgid "ALT" msgstr "ALT" @@ -515,7 +523,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Teks alt" -#: src/view/com/util/post-embeds/GifEmbed.tsx:183 +#: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" msgstr "Teks Alt" @@ -553,7 +561,7 @@ msgstr "Terjadi kesalahan saat menyimpan kode QR!" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:303 +#: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" msgstr "Terjadi kesalahan saat mencoba mengikuti semua" @@ -563,6 +571,8 @@ msgstr "Masalah lain yang tidak termasuk dalam pilihan" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:309 +#: src/components/ProfileCard.tsx:329 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -570,12 +580,12 @@ msgstr "Masalah lain yang tidak termasuk dalam pilihan" msgid "An issue occurred, please try again." msgstr "Terjadi masalah, silakan coba lagi." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" msgstr "terjadi kesalahan yang tidak diketahui" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:280 +#: src/view/com/notifications/FeedItem.tsx:291 msgid "and" msgstr "dan" @@ -584,7 +594,7 @@ msgstr "dan" msgid "Animals" msgstr "Hewan" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" msgstr "Animasi GIF" @@ -608,13 +618,13 @@ 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:697 +#: src/view/screens/Settings/index.tsx:698 msgid "App password settings" msgstr "Pengaturan kata sandi aplikasi" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:269 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/view/screens/Settings/index.tsx:707 msgid "App Passwords" msgstr "Kata Sandi Aplikasi" @@ -643,7 +653,7 @@ msgstr "Banding diajukan" msgid "Appeal this decision" msgstr "Ajukan banding atas keputusan ini" -#: src/view/screens/Settings/index.tsx:439 +#: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "Tampilan" @@ -652,7 +662,7 @@ msgstr "Tampilan" msgid "Apply default recommended feeds" msgstr "Tambahkan feed bawaan yang direkomendasikan" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: 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?" @@ -680,7 +690,7 @@ msgstr "Anda yakin ingin meninggalkan percakapan ini? Pesan akan dihapus untuk A msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Apakah Anda yakin ingin menghapus {0} dari daftar feed Anda?" -#: src/components/FeedCard.tsx:322 +#: src/components/FeedCard.tsx:306 msgid "Are you sure you want to remove this from your feeds?" msgstr "Apakah Anda yakin ingin menghapus ini dari daftar feed Anda?" @@ -705,7 +715,7 @@ msgstr "Seni" msgid "Artistic or non-erotic nudity." msgstr "Ketelanjangan artistik atau non-erotis." -#: src/screens/Signup/StepHandle.tsx:119 +#: src/screens/Signup/StepHandle.tsx:170 msgid "At least 3 characters" msgstr "Minimal 3 karakter" @@ -716,14 +726,15 @@ msgstr "Minimal 3 karakter" #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:278 -#: src/screens/Login/LoginForm.tsx:284 +#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:304 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/index.tsx:231 +#: 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" @@ -733,7 +744,7 @@ msgstr "Kembali" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "Dasar" @@ -741,7 +752,7 @@ msgstr "Dasar" msgid "Birthday" msgstr "Tanggal lahir" -#: src/view/screens/Settings/index.tsx:377 +#: src/view/screens/Settings/index.tsx:378 msgid "Birthday:" msgstr "Tanggal lahir:" @@ -785,7 +796,7 @@ msgstr "Diblokir" msgid "Blocked accounts" msgstr "Akun yang diblokir" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:145 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Akun yang diblokir" @@ -827,6 +838,10 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky adalah jaringan terbuka di mana Anda dapat memilih penyedia hosting sendiri. Hosting kustom kini tersedia dalam versi beta untuk pengembang." +#: 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." @@ -863,6 +878,24 @@ msgstr "Buramkan gambar dan saring dari feed" msgid "Books" msgstr "Buku" +#: src/components/FeedInterstitials.tsx:281 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:411 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:266 +#: src/components/FeedInterstitials.tsx:396 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:289 +#: src/components/FeedInterstitials.tsx:420 +msgid "Browse more suggestions on the Explore page" +msgstr "" + #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" @@ -981,17 +1014,17 @@ msgstr "Membatalkan membuka situs web tertaut" msgid "Change" msgstr "Ubah" -#: src/view/screens/Settings/index.tsx:371 +#: src/view/screens/Settings/index.tsx:372 msgctxt "action" msgid "Change" msgstr "Ubah" -#: src/view/screens/Settings/index.tsx:718 +#: src/view/screens/Settings/index.tsx:719 msgid "Change handle" msgstr "Ubah panggilan" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change Handle" msgstr "Ubah Panggilan" @@ -999,12 +1032,12 @@ msgstr "Ubah Panggilan" msgid "Change my email" msgstr "Ubah email saya" -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/index.tsx:764 msgid "Change password" msgstr "Ubah kata sandi" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Change Password" msgstr "Ubah Kata Sandi" @@ -1016,9 +1049,9 @@ msgstr "Ubah bahasa postingan menjadi {0}" msgid "Change Your Email" msgstr "Ubah Email Anda" -#: src/Navigation.tsx:310 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:313 +#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" msgstr "Obrolan" @@ -1028,14 +1061,14 @@ msgstr "Obrolan dibisukan" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:318 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" msgstr "Pengaturan obrolan" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" msgstr "Pengaturan Obrolan" @@ -1060,7 +1093,7 @@ msgstr "Periksa status saya" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:271 +#: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." msgstr "Periksa email Anda untuk mendapatkan kode login dan masukkan di sini." @@ -1072,6 +1105,14 @@ msgstr "Periksa kotak masuk email Anda untuk kode konfirmasi dan masukkan di baw #~ msgid "Choose \"Everybody\" or \"Nobody\"" #~ msgstr "" +#: src/screens/Onboarding/StepInterests/index.tsx:190 +msgid "Choose 3 or more:" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:325 +msgid "Choose at least {0} more" +msgstr "" + #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" msgstr "Pilih Feed" @@ -1088,7 +1129,7 @@ msgstr "Pilih Pengguna" msgid "Choose Service" msgstr "Pilih Layanan" -#: src/screens/Onboarding/StepFinished.tsx:273 +#: src/screens/Onboarding/StepFinished.tsx:281 msgid "Choose the algorithms that power your custom feeds." msgstr "Pilih algoritma yang akan digunakan untuk feed kustom Anda." @@ -1110,23 +1151,23 @@ msgstr "Pilih siapa yang dapat membalas" #~ msgid "Choose your main feeds" #~ msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" msgstr "Pilih kata sandi Anda" -#: src/view/screens/Settings/index.tsx:910 +#: src/view/screens/Settings/index.tsx:911 msgid "Clear all legacy storage data" msgstr "Hapus semua data penyimpanan lama" -#: src/view/screens/Settings/index.tsx:913 +#: src/view/screens/Settings/index.tsx:914 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:922 +#: src/view/screens/Settings/index.tsx:923 msgid "Clear all storage data" msgstr "Hapus semua data penyimpanan" -#: src/view/screens/Settings/index.tsx:925 +#: src/view/screens/Settings/index.tsx:926 msgid "Clear all storage data (restart after this)" msgstr "Hapus semua data penyimpanan (mulai ulang setelah ini)" @@ -1135,11 +1176,11 @@ msgstr "Hapus semua data penyimpanan (mulai ulang setelah ini)" msgid "Clear search query" msgstr "Hapus kueri pencarian" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" msgstr "Bersihkan semua penyimpanan data lama" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" msgstr "Hapus semua data penyimpanan" @@ -1188,7 +1229,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:189 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "Close" msgstr "Tutup" @@ -1251,11 +1292,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:226 +#: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" msgstr "Ciutkan daftar pengguna" -#: src/view/com/notifications/FeedItem.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:437 msgid "Collapses list of users for a given notification" msgstr "Menciutkan daftar pengguna untuk notifikasi tertentu" @@ -1269,16 +1310,16 @@ msgstr "Komedi" msgid "Comics" msgstr "Komik" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:259 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Panduan Komunitas" -#: src/screens/Onboarding/StepFinished.tsx:286 +#: src/screens/Onboarding/StepFinished.tsx:294 msgid "Complete onboarding and start using your account" msgstr "Selesaikan onboarding dan mulai menggunakan akun Anda" -#: src/screens/Signup/index.tsx:206 +#: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" msgstr "Selesaikan tantangan" @@ -1335,7 +1376,7 @@ msgstr "Konfirmasi usia Anda:" msgid "Confirm your birthdate" msgstr "Konfirmasi tanggal lahir Anda" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:272 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 @@ -1345,11 +1386,11 @@ msgstr "Konfirmasi tanggal lahir Anda" msgid "Confirmation code" msgstr "Kode konfirmasi" -#: src/screens/Login/LoginForm.tsx:305 +#: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." msgstr "Menghubungkan..." -#: src/screens/Signup/index.tsx:276 +#: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "Hubungi pusat bantuan" @@ -1390,7 +1431,7 @@ msgstr "Peringatan konten" msgid "Context menu backdrop, click to close the menu." msgstr "Latar menu konteks, klik untuk menutup menu." -#: src/screens/Onboarding/StepInterests/index.tsx:258 +#: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Lanjutkan" @@ -1403,9 +1444,9 @@ msgstr "Lanjutkan sebagai {0} (sudah masuk)" msgid "Continue thread..." msgstr "Lanjutkan utas..." -#: src/screens/Onboarding/StepInterests/index.tsx:255 +#: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/index.tsx:251 +#: src/screens/Signup/BackNextButtons.tsx:59 msgid "Continue to next step" msgstr "Lanjutkan ke langkah berikutnya" @@ -1430,7 +1471,7 @@ msgstr "Memasak" msgid "Copied" msgstr "Disalin" -#: src/view/screens/Settings/index.tsx:263 +#: src/view/screens/Settings/index.tsx:264 msgid "Copied build version to clipboard" msgstr "Menyalin versi build ke papan klip" @@ -1439,7 +1480,7 @@ msgstr "Menyalin versi build ke papan klip" #: 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/post-ctrls/PostCtrls.tsx:350 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Disalin ke papan klip" @@ -1496,7 +1537,7 @@ msgstr "Salin teks postingan" msgid "Copy QR code" msgstr "Salin kode QR" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Kebijakan Hak Cipta" @@ -1534,7 +1575,7 @@ msgstr "Buat" msgid "Create a new account" msgstr "Buat akun baru" -#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" msgstr "Buat akun Bluesky baru" @@ -1544,7 +1585,7 @@ msgstr "Buat kode QR untuk paket pemula" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:338 msgid "Create a starter pack" msgstr "Buat paket pemula" @@ -1552,7 +1593,7 @@ msgstr "Buat paket pemula" msgid "Create a starter pack for me" msgstr "Buatkan paket pemula untuk saya" -#: src/screens/Signup/index.tsx:154 +#: src/screens/Signup/index.tsx:88 msgid "Create Account" msgstr "Buat Akun" @@ -1608,7 +1649,7 @@ msgstr "Kustom" msgid "Custom domain" msgstr "Domain kustom" -#: src/view/screens/Feeds.tsx:747 +#: src/view/screens/Feeds.tsx:760 #: src/view/screens/Search/Explore.tsx:390 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." @@ -1617,8 +1658,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:458 -#: src/view/screens/Settings/index.tsx:484 +#: src/view/screens/Settings/index.tsx:459 +#: src/view/screens/Settings/index.tsx:485 msgid "Dark" msgstr "Gelap" @@ -1626,24 +1667,24 @@ msgstr "Gelap" msgid "Dark mode" msgstr "Mode gelap" -#: src/view/screens/Settings/index.tsx:471 +#: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" msgstr "Tema Gelap" -#: src/screens/Signup/StepInfo/index.tsx:134 +#: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" msgstr "Tanggal lahir" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" msgstr "Nonaktifkan akun" -#: src/view/screens/Settings/index.tsx:818 +#: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" msgstr "Nonaktifkan akun saya" -#: src/view/screens/Settings/index.tsx:873 +#: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" msgstr "Debug Moderasi" @@ -1652,16 +1693,16 @@ msgid "Debug panel" msgstr "Panel awakutu" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:484 -#: src/screens/StarterPack/StarterPackScreen.tsx:563 -#: src/screens/StarterPack/StarterPackScreen.tsx:643 +#: 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/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Hapus" -#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:829 msgid "Delete account" msgstr "Hapus akun" @@ -1681,8 +1722,8 @@ msgstr "Hapus kata sandi aplikasi" msgid "Delete app password?" msgstr "Hapus kata sandi aplikasi?" -#: src/view/screens/Settings/index.tsx:890 -#: src/view/screens/Settings/index.tsx:893 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" msgstr "Hapus catatan deklarasi obrolan" @@ -1706,7 +1747,7 @@ msgstr "Hapus pesan untuk saya" msgid "Delete my account" msgstr "Hapus akun saya" -#: src/view/screens/Settings/index.tsx:840 +#: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" msgstr "Hapus Akun Saya…" @@ -1715,12 +1756,12 @@ msgstr "Hapus Akun Saya…" msgid "Delete post" msgstr "Hapus postingan" -#: src/screens/StarterPack/StarterPackScreen.tsx:478 -#: src/screens/StarterPack/StarterPackScreen.tsx:634 +#: src/screens/StarterPack/StarterPackScreen.tsx:556 +#: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" msgstr "Hapus paket pemula" -#: src/screens/StarterPack/StarterPackScreen.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" msgstr "Hapus paket pemula?" @@ -1740,7 +1781,7 @@ msgstr "Dihapus" msgid "Deleted post." msgstr "Postingan dihapus." -#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" msgstr "Menghapus catatan deklarasi obrolan" @@ -1759,7 +1800,7 @@ msgstr "Teks alt deskriptif" msgid "Did you want to say anything?" msgstr "Apakah Anda ingin mengatakan sesuatu?" -#: src/view/screens/Settings/index.tsx:477 +#: src/view/screens/Settings/index.tsx:478 msgid "Dim" msgstr "Redup" @@ -1809,6 +1850,10 @@ msgstr "Buang draf?" msgid "Discourage apps from showing my account to logged-out users" msgstr "Cegah aplikasi menampilkan akun saya ke pengguna yang tidak masuk" +#: src/tours/HomeTour.tsx:70 +msgid "Discover learns which posts you like as you browse." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -1818,10 +1863,14 @@ msgstr "Temukan feed kustom baru" msgid "Discover new feeds" msgstr "Temukan feed baru" -#: src/view/screens/Feeds.tsx:744 +#: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" msgstr "Temukan Feed Baru" +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "" + #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" msgstr "Tampilkan lencana teks alt yang lebih besar" @@ -1842,7 +1891,7 @@ msgstr "Panel DNS" msgid "Does not include nudity." msgstr "Tidak termasuk ketelanjangan." -#: src/screens/Signup/StepHandle.tsx:105 +#: src/screens/Signup/StepHandle.tsx:156 msgid "Doesn't begin or end with a hyphen" msgstr "Tidak diawali atau diakhiri dengan tanda hubung" @@ -1887,7 +1936,7 @@ msgstr "Selesai" msgid "Done{extraText}" msgstr "Selesai{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" msgstr "Unduh Bluesky" @@ -1896,7 +1945,7 @@ msgstr "Unduh Bluesky" msgid "Download CAR file" msgstr "Unduh berkas CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:272 +#: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" msgstr "Lepaskan untuk menambahkan gambar" @@ -1944,11 +1993,11 @@ msgstr "contoh: Pengguna yang membalas dengan iklan secara berulang." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Tiap kode hanya berlaku sekali. Anda akan mendapatkan tambahan kode undangan secara berkala." -#: src/screens/StarterPack/StarterPackScreen.tsx:473 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "Ubah" @@ -1979,9 +2028,9 @@ msgstr "Ubah rincian daftar" msgid "Edit Moderation List" msgstr "Ubah Daftar Moderasi" -#: src/Navigation.tsx:271 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 +#: src/Navigation.tsx:274 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Ubah Daftar Feed" @@ -2009,7 +2058,7 @@ msgstr "Edit Profil" #~ msgid "Edit Saved Feeds" #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" msgstr "Ubah paket pemula" @@ -2029,7 +2078,7 @@ msgstr "Ubah nama tampilan Anda" msgid "Edit your profile description" msgstr "Sunting deskripsi profil Anda" -#: src/Navigation.tsx:335 +#: src/Navigation.tsx:343 msgid "Edit your starter pack" msgstr "Ubah paket pemula Anda" @@ -2042,7 +2091,7 @@ msgstr "Pendidikan" msgid "Either choose \"Everybody\" or \"Nobody\"" msgstr "Pilih \"Semua orang\" atau \"Tak seorang pun\"" -#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "Email" @@ -2068,7 +2117,7 @@ msgstr "Email Diperbarui" msgid "Email verified" msgstr "Email terverifikasi" -#: src/view/screens/Settings/index.tsx:349 +#: src/view/screens/Settings/index.tsx:350 msgid "Email:" msgstr "Email:" @@ -2134,6 +2183,10 @@ msgstr "Akhir feed" #~ 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 "" + #: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "Masukkan nama untuk Sandi Aplikasi ini" @@ -2168,7 +2221,7 @@ msgid "Enter your birth date" msgstr "Masukkan tanggal lahir Anda" #: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:92 +#: src/screens/Signup/StepInfo/index.tsx:152 msgid "Enter your email address" msgstr "Masukkan alamat email Anda" @@ -2188,11 +2241,11 @@ msgstr "Masukkan nama pengguna dan kata sandi Anda" msgid "Error occurred while saving file" msgstr "Terjadi kesalahan saat menyimpan berkas" -#: src/screens/Signup/StepCaptcha/index.tsx:51 +#: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." msgstr "Kesalahan saat menerima respons captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:197 +#: src/screens/Onboarding/StepInterests/index.tsx:216 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Eror:" @@ -2247,7 +2300,7 @@ msgstr "Keluar dari memasukkan permintaan pencarian" msgid "Expand alt text" msgstr "Bentangkan teks alt" -#: src/view/com/notifications/FeedItem.tsx:227 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" msgstr "Bentangkan daftar pengguna" @@ -2264,12 +2317,12 @@ msgstr "Media eksplisit atau berpotensi mengganggu." msgid "Explicit sexual images." msgstr "Gambar seksual eksplisit." -#: src/view/screens/Settings/index.tsx:786 +#: src/view/screens/Settings/index.tsx:787 msgid "Export my data" msgstr "Ekspor data saya" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:797 +#: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" msgstr "Ekspor Data Saya" @@ -2283,13 +2336,13 @@ msgstr "Media Eksternal" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Media eksternal memungkinkan situs web untuk mengumpulkan informasi tentang Anda dan perangkat Anda. Tidak ada informasi yang dikirim atau diminta hingga Anda menekan tombol \"play\"." -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:293 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/view/screens/Settings/index.tsx:680 msgid "External Media Preferences" msgstr "Preferensi Media Eksternal" -#: src/view/screens/Settings/index.tsx:670 +#: src/view/screens/Settings/index.tsx:671 msgid "External media settings" msgstr "Pengaturan media eksternal" @@ -2315,7 +2368,7 @@ msgstr "Gagal menghapus pesan" msgid "Failed to delete post, please try again" msgstr "Gagal menghapus postingan, silakan coba lagi" -#: src/screens/StarterPack/StarterPackScreen.tsx:597 +#: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" msgstr "Gagal menghapus paket pemula" @@ -2372,7 +2425,7 @@ msgstr "Gagal mengajukan banding, silakan coba lagi." msgid "Failed to toggle thread mute, please try again" msgstr "Gagal membisukan utas, silakan coba lagi" -#: src/components/FeedCard.tsx:285 +#: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" msgstr "Gagal memperbarui daftar feed" @@ -2381,11 +2434,11 @@ msgstr "Gagal memperbarui daftar feed" msgid "Failed to update settings" msgstr "Gagal memperbarui pengaturan" -#: src/Navigation.tsx:211 +#: src/Navigation.tsx:214 msgid "Feed" msgstr "Feed" -#: src/components/FeedCard.tsx:161 +#: src/components/FeedCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "Feed oleh {0}" @@ -2398,17 +2451,18 @@ msgstr "Feed oleh {0}" msgid "Feed toggle" msgstr "Tombol alih feed" -#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Masukan" -#: src/Navigation.tsx:320 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 +#: src/Navigation.tsx:323 +#: 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:373 +#: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" @@ -2426,7 +2480,7 @@ msgstr "Feed adalah algoritma kustom yang dibuat pengguna dengan sedikit keahlia #~ msgid "Feeds can be topical as well!" #~ msgstr "" -#: src/components/FeedCard.tsx:282 +#: src/components/FeedCard.tsx:266 msgid "Feeds updated!" msgstr "Daftar feed diperbarui!" @@ -2442,7 +2496,7 @@ msgstr "Berkas berhasil disimpan!" msgid "Filter from feeds" msgstr "Saring dari feed" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 msgid "Finalizing" msgstr "Menyelesaikan" @@ -2452,6 +2506,10 @@ msgstr "Menyelesaikan" msgid "Find accounts to follow" msgstr "Temukan akun untuk diikuti" +#: src/tours/HomeTour.tsx:88 +msgid "Find more feeds and accounts to follow in the Explore page." +msgstr "" + #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "Temukan postingan dan pengguna di Bluesky" @@ -2480,11 +2538,15 @@ msgstr "Sesuaikan utas diskusi." msgid "Finish" msgstr "Selesai" +#: src/tours/Tooltip.tsx:149 +msgid "Finish tour and begin using the application" +msgstr "" + #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "Kebugaran" -#: src/screens/Onboarding/StepFinished.tsx:269 +#: src/screens/Onboarding/StepFinished.tsx:277 msgid "Flexible" msgstr "Fleksibel" @@ -2497,6 +2559,8 @@ msgstr "Balik secara horizontal" msgid "Flip vertically" msgstr "Balik secara vertikal" +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:341 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2519,13 +2583,17 @@ msgstr "Ikuti {0}" msgid "Follow {name}" msgstr "Ikuti {name}" +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "" + #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" msgstr "Ikuti Akun" -#: src/screens/StarterPack/StarterPackScreen.tsx:345 -#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:405 +#: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" msgstr "Ikuti semua" @@ -2553,7 +2621,7 @@ msgstr "Ikuti lebih banyak akun untuk terhubung sesuai minat Anda dan membangun #~ msgid "Followed by" #~ msgstr "" -#: src/view/com/profile/ProfileCard.tsx:227 +#: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" msgstr "Diikuti oleh {0}" @@ -2581,16 +2649,20 @@ msgstr "Pengguna yang Anda ikuti" msgid "Followed users only" msgstr "Hanya pengguna yang diikuti" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:197 msgid "followed you" msgstr "mengikuti Anda" +#: src/view/com/notifications/FeedItem.tsx:195 +msgid "followed you back" +msgstr "" + #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "Pengikut" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" msgstr "Pengikut @{0} yang Anda kenal" @@ -2599,17 +2671,20 @@ msgstr "Pengikut @{0} yang Anda kenal" msgid "Followers you know" msgstr "Pengikut yang Anda kenal" +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:335 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:630 +#: src/view/screens/Feeds.tsx:631 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Mengikuti" +#: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Mengikuti {0}" @@ -2618,21 +2693,25 @@ msgstr "Mengikuti {0}" msgid "Following {name}" msgstr "Mengikuti {name}" -#: src/view/screens/Settings/index.tsx:573 +#: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" msgstr "Preferensi feed Mengikuti" -#: src/Navigation.tsx:277 +#: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "Following Feed Preferences" msgstr "Preferensi Feed Mengikuti" +#: src/tours/HomeTour.tsx:59 +msgid "Following shows the latest posts from people you follow." +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "Mengikuti Anda" -#: src/view/com/profile/ProfileCard.tsx:152 +#: src/components/Pills.tsx:165 msgid "Follows You" msgstr "Mengikuti Anda" @@ -2654,11 +2733,11 @@ msgstr "Untuk alasan keamanan, Anda tidak akan dapat melihat ini lagi. Jika Anda msgid "Forgot Password" msgstr "Lupa Kata Sandi" -#: src/screens/Login/LoginForm.tsx:227 +#: src/screens/Login/LoginForm.tsx:246 msgid "Forgot password?" msgstr "Lupa kata sandi?" -#: src/screens/Login/LoginForm.tsx:238 +#: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" msgstr "Lupa?" @@ -2692,6 +2771,10 @@ msgstr "Mulai" msgid "Get Started" msgstr "Mulai" +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "" + #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" msgstr "GIF" @@ -2706,31 +2789,35 @@ msgstr "Pelanggaran hukum atau ketentuan layanan secara terang-terangan" #: src/components/moderation/ScreenHider.tsx:151 #: src/components/moderation/ScreenHider.tsx:160 -#: src/view/com/auth/LoggedOut.tsx:78 -#: src/view/com/auth/LoggedOut.tsx:79 +#: src/view/com/auth/LoggedOut.tsx:80 +#: src/view/com/auth/LoggedOut.tsx:81 #: src/view/screens/NotFound.tsx:55 #: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Kembali" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:656 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Kembali" +#: 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/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:225 +#: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" msgstr "Kembali ke langkah sebelumnya" @@ -2764,6 +2851,10 @@ msgstr "Berikutnya" msgid "Go to profile" msgstr "Buka profil" +#: src/tours/Tooltip.tsx:138 +msgid "Go to the next step of the tour" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "Buka profil pengguna" @@ -2772,6 +2863,10 @@ msgstr "Buka profil pengguna" msgid "Graphic Media" msgstr "Media Sensitif" +#: src/state/shell/progress-guide.tsx:166 +msgid "Half way there!" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" msgstr "Panggilan" @@ -2784,19 +2879,19 @@ msgstr "Haptik" msgid "Harassment, trolling, or intolerance" msgstr "Pelecehan, unggah sulut, atau intoleransi" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:308 msgid "Hashtag" msgstr "Tagar" -#: src/components/RichText.tsx:216 +#: src/components/RichText.tsx:218 msgid "Hashtag: #{tag}" msgstr "Tagar: #{tag}" -#: src/screens/Signup/index.tsx:272 +#: src/screens/Signup/index.tsx:167 msgid "Having trouble?" msgstr "Mengalami masalah?" -#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/desktop/RightNav.tsx:99 #: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Bantuan" @@ -2832,7 +2927,7 @@ msgstr "Berikut kata sandi aplikasi Anda." msgid "Hide" msgstr "Sembunyikan" -#: src/view/com/notifications/FeedItem.tsx:433 +#: src/view/com/notifications/FeedItem.tsx:444 msgctxt "action" msgid "Hide" msgstr "Sembunyikan" @@ -2851,7 +2946,7 @@ msgstr "Sembunyikan konten" msgid "Hide this post?" msgstr "Sembunyikan postingan ini?" -#: src/view/com/notifications/FeedItem.tsx:424 +#: src/view/com/notifications/FeedItem.tsx:435 msgid "Hide user list" msgstr "Sembunyikan daftar pengguna" @@ -2883,10 +2978,10 @@ 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:511 -#: src/Navigation.tsx:531 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: src/Navigation.tsx:519 +#: src/Navigation.tsx:539 +#: 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 msgid "Home" @@ -2897,8 +2992,8 @@ msgid "Host:" msgstr "Host:" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:160 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:180 +#: src/screens/Signup/StepInfo/index.tsx:106 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "Penyedia hosting" @@ -2998,19 +3093,19 @@ msgstr "Masukkan kata sandi baru" msgid "Input password for account deletion" msgstr "Masukkan kata sandi untuk penghapusan akun" -#: src/screens/Login/LoginForm.tsx:266 +#: src/screens/Login/LoginForm.tsx:286 msgid "Input the code which has been emailed to you" msgstr "Masukkan kode yang telah dikirim ke email Anda" #: src/screens/Login/LoginForm.tsx:221 -msgid "Input the password tied to {identifier}" -msgstr "Masukkan kata sandi yang terkait dengan {identifier}" +#~ msgid "Input the password tied to {identifier}" +#~ msgstr "Masukkan kata sandi yang terkait dengan {identifier}" -#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Login/LoginForm.tsx:215 msgid "Input the username or email address you used at signup" msgstr "Masukkan nama pengguna atau alamat email yang Anda gunakan saat mendaftar" -#: src/screens/Login/LoginForm.tsx:220 +#: src/screens/Login/LoginForm.tsx:241 msgid "Input your password" msgstr "Masukkan kata sandi Anda" @@ -3018,7 +3113,7 @@ msgstr "Masukkan kata sandi Anda" msgid "Input your preferred hosting provider" msgstr "Masukkan penyedia hosting pilihan Anda" -#: src/screens/Signup/StepHandle.tsx:63 +#: src/screens/Signup/StepHandle.tsx:111 msgid "Input your user handle" msgstr "Masukkan panggilan Anda" @@ -3026,7 +3121,7 @@ msgstr "Masukkan panggilan Anda" msgid "Introducing Direct Messages" msgstr "Memperkenalkan Pesan Langsung" -#: src/screens/Login/LoginForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:140 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "Kode konfirmasi 2FA tidak valid." @@ -3035,7 +3130,7 @@ msgstr "Kode konfirmasi 2FA tidak valid." msgid "Invalid or unsupported post record" msgstr "Catatan postingan tidak valid atau tidak didukung" -#: src/screens/Login/LoginForm.tsx:140 +#: src/screens/Login/LoginForm.tsx:145 msgid "Invalid username or password" msgstr "Username atau kata sandi salah" @@ -3043,11 +3138,11 @@ msgstr "Username atau kata sandi salah" msgid "Invite a Friend" msgstr "Undang Teman" -#: src/screens/Signup/StepInfo/index.tsx:58 +#: src/screens/Signup/StepInfo/index.tsx:124 msgid "Invite code" msgstr "Kode Undangan" -#: src/screens/Signup/state.ts:275 +#: src/screens/Signup/state.ts:251 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Kode undangan salah. Periksa bahwa Anda memasukkannya dengan benar dan coba lagi." @@ -3083,8 +3178,10 @@ msgstr "Hanya ada Anda saat ini! Tambahkan lebih banyak orang ke paket pemula An msgid "Jobs" msgstr "Karir" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackScreen.tsx:432 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" msgstr "Bergabung di Bluesky" @@ -3133,16 +3230,16 @@ msgstr "Label pada konten Anda" msgid "Language selection" msgstr "Pilih bahasa" -#: src/view/screens/Settings/index.tsx:530 +#: src/view/screens/Settings/index.tsx:531 msgid "Language settings" msgstr "Pengaturan bahasa" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:155 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Pengaturan Bahasa" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Languages" msgstr "Bahasa" @@ -3202,7 +3299,7 @@ msgstr "Meninggalkan Bluesky" msgid "left to go." msgstr "yang tersisa" -#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:309 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Penyimpanan lama dibersihkan, Anda perlu memulai ulang aplikasi sekarang." @@ -3215,11 +3312,12 @@ msgstr "Biarkan saya memilih" msgid "Let's get your password reset!" msgstr "Reset kata sandi Anda!" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 +#: src/tours/Tooltip.tsx:151 msgid "Let's go!" msgstr "Ayo!" -#: src/view/screens/Settings/index.tsx:452 +#: src/view/screens/Settings/index.tsx:453 msgid "Light" msgstr "Terang" @@ -3227,14 +3325,23 @@ msgstr "Terang" #~ msgid "Like" #~ msgstr "" +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:167 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 #: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Suka feed ini" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:216 -#: src/Navigation.tsx:221 +#: src/Navigation.tsx:219 +#: src/Navigation.tsx:224 msgid "Liked by" msgstr "Disukai oleh" @@ -3258,11 +3365,11 @@ msgstr "Disukai Oleh" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "" -#: src/view/com/notifications/FeedItem.tsx:190 +#: src/view/com/notifications/FeedItem.tsx:201 msgid "liked your custom feed" msgstr "menyukai feed kustom Anda" -#: src/view/com/notifications/FeedItem.tsx:182 +#: src/view/com/notifications/FeedItem.tsx:185 msgid "liked your post" msgstr "menyukai postingan Anda" @@ -3274,7 +3381,7 @@ msgstr "Suka" msgid "Likes on this post" msgstr "Suka pada postingan ini" -#: src/Navigation.tsx:185 +#: src/Navigation.tsx:188 msgid "List" msgstr "Daftar" @@ -3286,7 +3393,7 @@ msgstr "Avatar Daftar" msgid "List blocked" msgstr "Daftar diblokir" -#: src/components/FeedCard.tsx:155 +#: src/components/ListCard.tsx:113 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "Daftar oleh {0}" @@ -3311,10 +3418,10 @@ msgstr "Daftar batal diblokir" msgid "List unmuted" msgstr "Daftar batal dibisukan" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:125 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/desktop/LeftNav.tsx:385 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 msgid "Lists" @@ -3351,7 +3458,7 @@ msgstr "Muat postingan baru" msgid "Loading..." msgstr "Memuat..." -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:239 msgid "Log" msgstr "Catatan" @@ -3375,7 +3482,7 @@ msgstr "Visibilitas pengguna yang tidak masuk" msgid "Login to account that is not listed" msgstr "Masuk ke akun yang tidak tercantum dalam daftar" -#: src/components/RichText.tsx:217 +#: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" msgstr "Tekan lama untuk membuka menu tagar #{tag}" @@ -3460,7 +3567,7 @@ msgstr "Pesan terlalu panjang" msgid "Message settings" msgstr "Pengaturan pesan" -#: src/Navigation.tsx:526 +#: src/Navigation.tsx:534 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3475,9 +3582,9 @@ msgstr "Pesan" msgid "Misleading Account" msgstr "Akun Menyesatkan" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:130 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Moderation" msgstr "Moderasi" @@ -3485,7 +3592,7 @@ msgstr "Moderasi" msgid "Moderation details" msgstr "Detail moderasi" -#: src/components/FeedCard.tsx:157 +#: src/components/ListCard.tsx:109 #: src/view/com/lists/ListCard.tsx:95 #: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" @@ -3513,16 +3620,16 @@ msgstr "Daftar moderasi diperbarui" msgid "Moderation lists" msgstr "Daftar moderasi" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Daftar Moderasi" -#: src/view/screens/Settings/index.tsx:555 +#: src/view/screens/Settings/index.tsx:556 msgid "Moderation settings" msgstr "Pengaturan moderasi" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:234 msgid "Moderation states" msgstr "Status moderasi" @@ -3555,6 +3662,10 @@ msgstr "Balasan yang paling disukai lebih dulu" msgid "Movies" msgstr "Film" +#: src/screens/Onboarding/state.ts:91 +msgid "Music" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "Bisukan" @@ -3628,7 +3739,7 @@ msgstr "Dibisukan" msgid "Muted accounts" msgstr "Akun yang dibisukan" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Akun yang Dibisukan" @@ -3654,19 +3765,19 @@ msgstr "Pembisuan bersifat privat. Akun yang dibisukan tetap dapat berinteraksi msgid "My Birthday" msgstr "Tanggal Lahir Saya" -#: src/view/screens/Feeds.tsx:718 +#: src/view/screens/Feeds.tsx:731 msgid "My Feeds" msgstr "Daftar Feed Saya" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Profil Saya" -#: src/view/screens/Settings/index.tsx:616 +#: src/view/screens/Settings/index.tsx:617 msgid "My saved feeds" msgstr "Feed tersimpan saya" -#: src/view/screens/Settings/index.tsx:622 +#: src/view/screens/Settings/index.tsx:623 msgid "My Saved Feeds" msgstr "Feed Tersimpan Saya" @@ -3687,16 +3798,20 @@ msgid "Name or Description Violates Community Standards" msgstr "Nama atau Deskripsi Melanggar Standar Komunitas" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:92 msgid "Nature" msgstr "Alam" +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "" + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" msgstr "Menuju ke paket pemula" #: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:332 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Menuju ke layar berikutnya" @@ -3714,7 +3829,7 @@ msgstr "Perlu melaporkan pelanggaran hak cipta?" #~ msgid "Never lose access to your followers and data." #~ msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:257 +#: src/screens/Onboarding/StepFinished.tsx:265 msgid "Never lose access to your followers or data." msgstr "Tidak akan lagi kehilangan akses ke data dan pengikut Anda." @@ -3758,17 +3873,17 @@ msgctxt "action" msgid "New post" msgstr "Postingan baru" -#: src/view/screens/Feeds.tsx:580 +#: 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/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/shell/desktop/LeftNav.tsx:278 msgid "New post" msgstr "Postingan baru" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:284 msgctxt "action" msgid "New Post" msgstr "Postingan baru" @@ -3786,21 +3901,22 @@ msgid "Newest replies first" msgstr "Balasan terbaru lebih dulu" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:93 msgid "News" msgstr "Berita" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:311 -#: src/screens/Login/LoginForm.tsx:318 +#: src/screens/Login/LoginForm.tsx:331 +#: src/screens/Login/LoginForm.tsx:338 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:258 +#: src/screens/Signup/BackNextButtons.tsx:66 #: src/screens/StarterPack/Wizard/index.tsx:184 #: src/screens/StarterPack/Wizard/index.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:359 #: src/screens/StarterPack/Wizard/index.tsx:366 +#: src/tours/Tooltip.tsx:139 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3842,11 +3958,12 @@ 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/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "Tidak lagi mengikuti {0}" -#: src/screens/Signup/StepHandle.tsx:115 +#: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" msgstr "Tidak lebih dari 253 karakter" @@ -3858,7 +3975,7 @@ msgstr "Belum ada pesan" msgid "No more conversations to show" msgstr "Tidak ada percakapan lain untuk ditampilkan" -#: src/view/com/notifications/Feed.tsx:118 +#: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "Belum ada notifikasi!" @@ -3886,7 +4003,7 @@ msgstr "Tidak ada hasil" msgid "No results found" msgstr "Tidak ditemukan hasil" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" msgstr "Tidak ditemukan hasil untuk \"{query}\"" @@ -3936,7 +4053,7 @@ msgstr "Ketelanjangan Non-Seksual" #~ msgid "Not Applicable." #~ msgstr "" -#: src/Navigation.tsx:117 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Tidak ditemukan" @@ -3948,7 +4065,7 @@ msgstr "Jangan sekarang" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:315 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "Catatan tentang berbagi" @@ -3968,11 +4085,11 @@ msgstr "Suara notifikasi" msgid "Notification Sounds" msgstr "Suara Notifikasi" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:529 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 +#: 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 msgid "Notifications" @@ -4008,7 +4125,7 @@ msgstr "Matikan" msgid "Oh no!" msgstr "Oh tidak!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:152 msgid "Oh no! Something went wrong." msgstr "Oh tidak! Ada yang tidak beres." @@ -4032,10 +4149,14 @@ msgstr "di" msgid "on {str}" msgstr "pada {str}" -#: src/view/screens/Settings/index.tsx:256 +#: src/view/screens/Settings/index.tsx:257 msgid "Onboarding reset" msgstr "Atur ulang orientasi" +#: src/tours/Tooltip.tsx:118 +msgid "Onboarding tour step {0}: {1}" +msgstr "" + #: src/view/com/composer/Composer.tsx:522 msgid "One or more images is missing alt text." msgstr "Satu atau lebih gambar belum ada teks alt." @@ -4052,7 +4173,7 @@ msgstr "Hanya {0} yang dapat membalas" #~ msgid "Only {0} can reply." #~ msgstr "" -#: src/screens/Signup/StepHandle.tsx:98 +#: src/screens/Signup/StepHandle.tsx:149 msgid "Only contains letters, numbers, and hyphens" msgstr "Hanya berisi huruf, angka, dan tanda hubung" @@ -4068,7 +4189,7 @@ msgstr "Ups, ada yang tidak beres!" msgid "Oops!" msgstr "Ups!" -#: src/screens/Onboarding/StepFinished.tsx:253 +#: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" msgstr "Terbuka" @@ -4094,7 +4215,7 @@ msgstr "Buka pemilih emoji" msgid "Open feed options menu" msgstr "Buka menu opsi feed" -#: src/view/screens/Settings/index.tsx:736 +#: src/view/screens/Settings/index.tsx:737 msgid "Open links with in-app browser" msgstr "Buka tautan dengan browser dalam aplikasi" @@ -4114,16 +4235,16 @@ msgstr "Buka navigasi" msgid "Open post options menu" msgstr "Buka menu opsi postingan" -#: src/screens/StarterPack/StarterPackScreen.tsx:451 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Open starter pack menu" msgstr "Buka menu paket pemula" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:861 +#: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" msgstr "Buka halaman buku cerita" -#: src/view/screens/Settings/index.tsx:848 +#: src/view/screens/Settings/index.tsx:849 msgid "Open system log" msgstr "Buka log sistem" @@ -4135,7 +4256,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:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Opens accessibility settings" msgstr "Membuka pengaturan aksesibilitas" @@ -4151,7 +4272,7 @@ msgstr "Membuka detail tambahan untuk entri debug" msgid "Opens camera on device" msgstr "Membuka kamera pada perangkat" -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Opens chat settings" msgstr "Membuka pengaturan obrolan" @@ -4159,7 +4280,7 @@ msgstr "Membuka pengaturan obrolan" msgid "Opens composer" msgstr "Membuka penyusun postingan" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Opens configurable language settings" msgstr "Membuka pengaturan bahasa yang dapat dikonfigurasi" @@ -4167,7 +4288,7 @@ msgstr "Membuka pengaturan bahasa yang dapat dikonfigurasi" msgid "Opens device photo gallery" msgstr "Membuka galeri foto perangkat" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" msgstr "Membuka pengaturan sisipan eksternal" @@ -4189,27 +4310,27 @@ msgstr "Membuka dialog pemilihan GIF" msgid "Opens list of invite codes" msgstr "Membuka daftar kode undangan" -#: src/view/screens/Settings/index.tsx:808 +#: src/view/screens/Settings/index.tsx:809 msgid "Opens modal for account deactivation confirmation" msgstr "Membuka jendela modal untuk konfirmasi penonaktifan akun" -#: src/view/screens/Settings/index.tsx:830 +#: src/view/screens/Settings/index.tsx:831 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:765 +#: src/view/screens/Settings/index.tsx:766 msgid "Opens modal for changing your Bluesky password" msgstr "Membuka jendela modal untuk mengubah kata sandi Bluesky Anda" -#: src/view/screens/Settings/index.tsx:720 +#: src/view/screens/Settings/index.tsx:721 msgid "Opens modal for choosing a new Bluesky handle" msgstr "Membuka jendela modal untuk memilih panggilan Bluesky baru" -#: src/view/screens/Settings/index.tsx:788 +#: src/view/screens/Settings/index.tsx:789 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:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Opens modal for email verification" msgstr "Membuka jendela modal untuk verifikasi email" @@ -4217,11 +4338,11 @@ 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:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Opens moderation settings" msgstr "Membuka pengaturan moderasi" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:247 msgid "Opens password reset form" msgstr "Membuka formulir pengaturan ulang kata sandi" @@ -4230,15 +4351,15 @@ msgstr "Membuka formulir pengaturan ulang kata sandi" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "Opens screen with all saved feeds" msgstr "Membuka layar berisi semua feed tersimpan" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "Opens the app password settings" msgstr "Membuka pengaturan kata sandi aplikasi" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Opens the Following feed preferences" msgstr "Membuka preferensi feed Mengikuti" @@ -4250,20 +4371,20 @@ msgstr "Membuka situs web tertaut" #~ msgid "Opens the message settings page" #~ 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 "Opens the storybook page" msgstr "Membuka halaman storybook" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" msgstr "Membuka halaman log sistem" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Opens the threads preferences" msgstr "Membuka preferensi utas" -#: src/view/com/notifications/FeedItem.tsx:513 +#: src/view/com/notifications/FeedItem.tsx:524 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "Membuka profil ini" @@ -4314,8 +4435,8 @@ msgstr "Halaman tidak ditemukan" msgid "Page Not Found" msgstr "Halaman Tidak Ditemukan" -#: src/screens/Login/LoginForm.tsx:204 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Signup/StepInfo/index.tsx:162 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4337,15 +4458,16 @@ msgstr "Kata sandi diganti!" msgid "Pause" msgstr "Jeda" +#: src/screens/StarterPack/StarterPackScreen.tsx:170 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "Orang" -#: src/Navigation.tsx:172 +#: src/Navigation.tsx:175 msgid "People followed by @{0}" msgstr "Orang yang diikuti oleh @{0}" -#: src/Navigation.tsx:165 +#: src/Navigation.tsx:168 msgid "People following @{0}" msgstr "Orang yang mengikuti @{0}" @@ -4362,11 +4484,11 @@ msgid "Person toggle" msgstr "Tombol alih pengguna" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:94 msgid "Pets" msgstr "Hewan Peliharaan" -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:95 msgid "Photography" msgstr "Fotografi" @@ -4417,15 +4539,16 @@ msgstr "Putar Video" msgid "Plays the GIF" msgstr "Putar GIF" -#: src/screens/Signup/state.ts:234 +#: src/screens/Signup/state.ts:210 msgid "Please choose your handle." msgstr "Silakan tentukan panggilan Anda." -#: src/screens/Signup/state.ts:227 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:81 msgid "Please choose your password." msgstr "Masukkan kata sandi Anda." -#: src/screens/Signup/state.ts:248 +#: src/screens/Signup/state.ts:224 msgid "Please complete the verification captcha." msgstr "Mohon selesaikan verifikasi captcha." @@ -4445,10 +4568,15 @@ msgstr "Masukkan nama unik untuk Kata Sandi Aplikasi ini atau gunakan nama yang msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Silakan masukkan kata, tagar, atau frasa yang valid untuk dibisukan" -#: src/screens/Signup/state.ts:213 +#: src/screens/Signup/state.ts:189 +#: src/screens/Signup/StepInfo/index.tsx:69 msgid "Please enter your email." msgstr "Masukkan email Anda." +#: src/screens/Signup/StepInfo/index.tsx:63 +msgid "Please enter your invite code." +msgstr "" + #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" msgstr "Masukkan juga kata sandi Anda:" @@ -4475,7 +4603,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Harap tunggu hingga kartu tautan Anda selesai dimuat" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:96 msgid "Politics" msgstr "Politik" @@ -4498,9 +4626,9 @@ msgstr "Postingan" msgid "Post by {0}" msgstr "Postingan oleh {0}" -#: src/Navigation.tsx:191 -#: src/Navigation.tsx:198 -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:194 +#: src/Navigation.tsx:201 +#: src/Navigation.tsx:208 msgid "Post by @{0}" msgstr "Postingan oleh @{0}" @@ -4539,6 +4667,7 @@ msgstr "Postingan tidak ditemukan" msgid "posts" msgstr "postingan" +#: src/screens/StarterPack/StarterPackScreen.tsx:172 #: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Postingan" @@ -4566,7 +4695,7 @@ msgstr "Tekan untuk mengganti penyedia hosting" #: src/components/Error.tsx:85 #: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/index.tsx:238 +#: src/screens/Signup/BackNextButtons.tsx:46 msgid "Press to retry" msgstr "Tekan untuk mengulangi" @@ -4591,15 +4720,15 @@ msgstr "Bahasa Utama" msgid "Prioritize Your Follows" msgstr "Dahulukan yang Anda Ikuti" -#: src/view/screens/Settings/index.tsx:654 -#: src/view/shell/desktop/RightNav.tsx:77 +#: src/view/screens/Settings/index.tsx:655 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privasi" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 +#: src/view/screens/Settings/index.tsx:958 #: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Kebijakan Privasi" @@ -4617,8 +4746,8 @@ msgstr "Memproses..." msgid "profile" msgstr "profil" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 +#: 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 @@ -4629,11 +4758,11 @@ msgstr "Profil" msgid "Profile updated" msgstr "Profil diperbarui" -#: src/view/screens/Settings/index.tsx:1021 +#: src/view/screens/Settings/index.tsx:1022 msgid "Protect your account by verifying your email." msgstr "Verifikasi email untuk mengamankan akun Anda." -#: src/screens/Onboarding/StepFinished.tsx:239 +#: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" msgstr "Publik" @@ -4665,6 +4794,10 @@ msgstr "Kode QR telah diunduh!" msgid "QR code saved to your camera roll!" msgstr "Kode QR disimpan ke rol kamera Anda!" +#: src/tours/Tooltip.tsx:111 +msgid "Quick tip" +msgstr "" + #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:79 @@ -4723,7 +4856,7 @@ msgid "Reload conversations" msgstr "Memuat ulang percakapan" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:325 +#: src/components/FeedCard.tsx:309 #: src/components/StarterPack/Wizard/WizardListCard.tsx:95 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 @@ -4772,7 +4905,7 @@ msgstr "Hapus feed?" msgid "Remove from my feeds" msgstr "Hapus dari daftar feed saya" -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:304 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Hapus dari daftar feed saya?" @@ -4924,8 +5057,8 @@ msgstr "Laporkan pesan" msgid "Report post" msgstr "Laporkan postingan" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 -#: src/screens/StarterPack/StarterPackScreen.tsx:507 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 msgid "Report starter pack" msgstr "Laporkan paket pemula" @@ -4971,7 +5104,7 @@ msgstr "Posting ulang" msgid "Repost" msgstr "Posting ulang" -#: src/screens/StarterPack/StarterPackScreen.tsx:446 +#: src/screens/StarterPack/StarterPackScreen.tsx:524 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4994,7 +5127,7 @@ msgstr "Diposting ulang oleh {0}" msgid "Reposted by <0><1/>" msgstr "Diposting ulang oleh <0><1/>" -#: src/view/com/notifications/FeedItem.tsx:184 +#: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "memposting ulang postingan Anda" @@ -5020,7 +5153,7 @@ msgstr "Wajibkan teks alt sebelum memposting" msgid "Require email code to log into your account" msgstr "Gunakan kode email untuk masuk ke akun Anda" -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" msgstr "Diwajibkan untuk provider ini" @@ -5037,8 +5170,8 @@ msgstr "Kode reset" msgid "Reset Code" msgstr "Kode Reset" -#: src/view/screens/Settings/index.tsx:900 -#: src/view/screens/Settings/index.tsx:903 +#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" msgstr "Reset status onboarding" @@ -5046,20 +5179,20 @@ msgstr "Reset status onboarding" msgid "Reset password" msgstr "Reset kata sandi" -#: src/view/screens/Settings/index.tsx:880 -#: src/view/screens/Settings/index.tsx:883 +#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:884 msgid "Reset preferences state" msgstr "Atur ulang status preferensi" -#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" msgstr "Reset status onboarding" -#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" msgstr "Reset status preferensi" -#: src/screens/Login/LoginForm.tsx:292 +#: src/screens/Login/LoginForm.tsx:312 msgid "Retries login" msgstr "Mencoba masuk kembali" @@ -5072,12 +5205,12 @@ msgstr "Mencoba kembali tindakan terakhir yang gagal" #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:291 -#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:311 +#: src/screens/Login/LoginForm.tsx:318 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Signup/BackNextButtons.tsx:52 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" @@ -5088,7 +5221,7 @@ msgstr "Ulangi" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:650 +#: src/screens/StarterPack/StarterPackScreen.tsx:728 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Kembali ke halaman sebelumnya" @@ -5184,13 +5317,13 @@ msgstr "Menyimpan pengaturan pemangkasan gambar" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:372 -#: src/view/com/notifications/FeedItem.tsx:397 +#: src/view/com/notifications/FeedItem.tsx:383 +#: src/view/com/notifications/FeedItem.tsx:408 msgid "Say hello!" msgstr "Katakan halo!" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:97 msgid "Science" msgstr "Sains" @@ -5199,16 +5332,16 @@ msgid "Scroll to top" msgstr "Gulir ke atas" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:516 -#: src/view/com/auth/LoggedOut.tsx:119 +#: src/Navigation.tsx:524 +#: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 #: src/view/screens/Search/Search.tsx:791 #: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 +#: 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 @@ -5240,8 +5373,8 @@ msgstr "Cari feed yang ingin Anda sarankan kepada orang lain." #~ msgid "Search for someone to start a conversation with." #~ msgstr "" -#: src/view/com/auth/LoggedOut.tsx:101 -#: src/view/com/auth/LoggedOut.tsx:102 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:107 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "Cari pengguna" @@ -5370,11 +5503,11 @@ msgstr "Pilih bahasa yang ingin Anda sertakan dalam feed langganan Anda. Jika ti msgid "Select your app language for the default text to display in the app." msgstr "Pilih bahasa untuk teks bawaan yang akan ditampilkan dalam aplikasi." -#: src/screens/Signup/StepInfo/index.tsx:135 +#: src/screens/Signup/StepInfo/index.tsx:192 msgid "Select your date of birth" msgstr "Pilih tanggal lahir Anda" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:225 msgid "Select your interests from the options below" msgstr "Pilih minat Anda dari opsi di bawah ini" @@ -5487,23 +5620,23 @@ msgstr "Atur akun Anda" msgid "Sets Bluesky username" msgstr "Mengatur nama pengguna Bluesky" -#: src/view/screens/Settings/index.tsx:461 +#: src/view/screens/Settings/index.tsx:462 msgid "Sets color theme to dark" msgstr "Mengatur tema menjadi gelap" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Sets color theme to light" msgstr "Mengatur tema menjadi terang" -#: src/view/screens/Settings/index.tsx:448 +#: src/view/screens/Settings/index.tsx:449 msgid "Sets color theme to system setting" msgstr "Mengatur tema sesuai pengaturan sistem" -#: src/view/screens/Settings/index.tsx:487 +#: src/view/screens/Settings/index.tsx:488 msgid "Sets dark theme to the dark theme" msgstr "Mengatur tema gelap menjadi tema gelap" -#: src/view/screens/Settings/index.tsx:480 +#: src/view/screens/Settings/index.tsx:481 msgid "Sets dark theme to the dim theme" msgstr "Mengatur tema gelap menjadi tema redup" @@ -5523,9 +5656,9 @@ msgstr "Mengatur aspek rasio gambar menjadi tinggi" msgid "Sets image aspect ratio to wide" msgstr "Mengatur aspek rasio gambar menjadi lebar" -#: src/Navigation.tsx:147 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:395 +#: src/Navigation.tsx:150 +#: src/view/screens/Settings/index.tsx:333 +#: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:559 #: src/view/shell/Drawer.tsx:560 msgid "Settings" @@ -5540,13 +5673,13 @@ msgid "Sexually Suggestive" msgstr "Bermuatan Seksual" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:340 -#: src/screens/StarterPack/StarterPackScreen.tsx:493 +#: 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/post-ctrls/PostCtrls.tsx:304 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Bagikan" @@ -5566,7 +5699,7 @@ msgstr "Bagikan fakta menarik!" #: src/view/com/profile/ProfileMenu.tsx:377 #: src/view/com/util/forms/PostDropdownBtn.tsx:461 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:320 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "Tetap bagikan" @@ -5577,7 +5710,7 @@ msgstr "Bagikan feed" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "Bagikan tautan" @@ -5595,7 +5728,7 @@ msgstr "Dialog berbagi tautan" msgid "Share QR code" msgstr "Bagikan kode QR" -#: src/screens/StarterPack/StarterPackScreen.tsx:333 +#: src/screens/StarterPack/StarterPackScreen.tsx:393 msgid "Share this starter pack" msgstr "Bagikan paket pemula ini" @@ -5614,7 +5747,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:381 +#: src/view/screens/Settings/index.tsx:382 msgid "Show" msgstr "Tampilkan" @@ -5622,7 +5755,7 @@ msgstr "Tampilkan" #~ msgid "Show all replies" #~ msgstr "" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "Tampilkan teks alt" @@ -5741,17 +5874,17 @@ msgstr "Tampilkan postingan dari {0} di feed Anda" #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:100 #: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Login/LoginForm.tsx:177 #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.tsx:72 #: src/view/com/auth/SplashScreen.web.tsx:112 #: src/view/com/auth/SplashScreen.web.tsx:121 -#: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 #: src/view/shell/bottom-bar/BottomBar.tsx:315 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/bottom-bar/BottomBar.tsx:318 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:210 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5779,12 +5912,12 @@ msgstr "Masuk ke Bluesky atau buat akun baru" msgid "Sign out" msgstr "Keluar" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 #: src/view/shell/bottom-bar/BottomBar.tsx:305 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBar.tsx:306 +#: src/view/shell/bottom-bar/BottomBar.tsx:308 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:200 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5800,7 +5933,7 @@ msgstr "Daftar atau masuk untuk bergabung dalam obrolan" msgid "Sign-in Required" msgstr "Wajib Masuk" -#: src/view/screens/Settings/index.tsx:391 +#: src/view/screens/Settings/index.tsx:392 msgid "Signed in as" msgstr "Masuk sebagai" @@ -5809,21 +5942,21 @@ msgstr "Masuk sebagai" msgid "Signed in as @{0}" msgstr "Masuk sebagai @{0}" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "signed up with your starter pack" msgstr "mendaftar dengan paket pemula Anda" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 msgid "Signup without a starter pack" msgstr "Mendaftar tanpa paket pemula" -#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:264 #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Lewati" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:261 msgid "Skip this flow" msgstr "Lewati tahap ini" @@ -5832,6 +5965,10 @@ msgstr "Lewati tahap ini" msgid "Software Dev" msgstr "Pengembang Perangkat Lunak" +#: src/components/FeedInterstitials.tsx:378 +msgid "Some other feeds you might like" +msgstr "" + #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" @@ -5856,8 +5993,8 @@ 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:96 -#: src/App.web.tsx:78 +#: src/App.native.tsx:98 +#: src/App.web.tsx:80 msgid "Sorry! Your session expired. Please log in again." msgstr "Maaf! Sesi Anda telah berakhir. Silakan masuk lagi." @@ -5887,7 +6024,7 @@ msgid "Spam; excessive mentions or replies" msgstr "Spam; menyebut atau membalas secara berlebihan" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:98 msgid "Sports" msgstr "Olahraga" @@ -5907,17 +6044,22 @@ msgstr "Mulai obrolan dengan {displayName}" msgid "Start chatting" msgstr "Mulai mengobrol" +#: src/tours/Tooltip.tsx:99 +msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +msgstr "" + #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:328 +#: src/Navigation.tsx:333 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "Paket Pemula" -#: src/components/StarterPack/StarterPackCard.tsx:65 +#: src/components/StarterPack/StarterPackCard.tsx:70 msgid "Starter pack by {0}" msgstr "Paket pemula dari {0}" -#: src/screens/StarterPack/StarterPackScreen.tsx:614 +#: src/screens/StarterPack/StarterPackScreen.tsx:692 msgid "Starter pack is invalid" msgstr "Paket pemula tidak valid" @@ -5933,7 +6075,7 @@ msgstr "Paket pemula memudahkan Anda untuk berbagi feed dan akun favorit Anda de #~ msgid "Status page" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:963 +#: src/view/screens/Settings/index.tsx:964 msgid "Status Page" msgstr "Halaman Status" @@ -5941,16 +6083,16 @@ msgstr "Halaman Status" #~ msgid "Step" #~ msgstr "" -#: src/screens/Signup/index.tsx:192 +#: src/screens/Signup/index.tsx:125 msgid "Step {0} of {1}" msgstr "Langkah {0} dari {1}" -#: src/view/screens/Settings/index.tsx:304 +#: src/view/screens/Settings/index.tsx:305 msgid "Storage cleared, you need to restart the app now." msgstr "Penyimpanan dibersihkan, Anda perlu memulai ulang aplikasi sekarang." -#: src/Navigation.tsx:226 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:229 +#: src/view/screens/Settings/index.tsx:864 msgid "Storybook" msgstr "Storybook" @@ -5994,6 +6136,7 @@ msgstr "Akun yang disarankan" #~ msgid "Suggested Follows" #~ msgstr "" +#: src/components/FeedInterstitials.tsx:246 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Disarankan untuk Anda" @@ -6002,7 +6145,7 @@ msgstr "Disarankan untuk Anda" msgid "Suggestive" msgstr "Sugestif" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:244 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6013,6 +6156,10 @@ msgstr "Dukungan" msgid "Switch Account" msgstr "Beralih Akun" +#: src/tours/HomeTour.tsx:48 +msgid "Switch between feeds to control your experience." +msgstr "" + #: src/view/screens/Settings/index.tsx:160 msgid "Switch to {0}" msgstr "Beralih ke {0}" @@ -6021,11 +6168,11 @@ msgstr "Beralih ke {0}" msgid "Switches the account you are logged in to" msgstr "Alihkan akun yang Anda gunakan untuk masuk" -#: src/view/screens/Settings/index.tsx:445 +#: src/view/screens/Settings/index.tsx:446 msgid "System" msgstr "Sistem" -#: src/view/screens/Settings/index.tsx:851 +#: src/view/screens/Settings/index.tsx:852 msgid "System log" msgstr "Log sistem" @@ -6041,12 +6188,24 @@ msgstr "Menu tagar: {displayTag}" msgid "Tall" msgstr "Tinggi" +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "" + #: src/view/com/util/images/AutoSizedImage.tsx:70 msgid "Tap to view fully" msgstr "Ketuk untuk melihat sepenuhnya" +#: src/state/shell/progress-guide.tsx:171 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "" + #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:99 msgid "Tech" msgstr "Teknologi" @@ -6058,13 +6217,13 @@ msgstr "Ceritakan sebuah lelucon!" msgid "Tell us a little more" msgstr "Beritahu kami lebih lanjut" -#: src/view/shell/desktop/RightNav.tsx:86 +#: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Ketentuan" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:254 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/Settings/index.tsx:952 #: src/view/screens/TermsOfService.tsx:29 #: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" @@ -6095,12 +6254,14 @@ msgstr "Terima kasih. Laporan Anda telah terkirim." msgid "That contains the following:" msgstr "Berisi hal berikut:" -#: src/screens/Signup/index.tsx:100 +#: src/screens/Signup/StepHandle.tsx:50 msgid "That handle is already taken." msgstr "Panggilan telah terpakai." -#: src/screens/StarterPack/StarterPackScreen.tsx:105 -#: src/screens/StarterPack/StarterPackScreen.tsx:106 +#: src/screens/StarterPack/StarterPackScreen.tsx:96 +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:136 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6123,7 +6284,12 @@ msgstr "Panduan Komunitas telah dipindahkan ke <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "Kebijakan Hak Cipta telah dipindahkan ke <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:177 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 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." @@ -6152,7 +6318,7 @@ msgstr "Postingan mungkin telah dihapus." msgid "The Privacy Policy has been moved to <0/>" msgstr "Kebijakan Privasi telah dipindahkan ke <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:624 +#: src/screens/StarterPack/StarterPackScreen.tsx:702 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "Paket pemula yang ingin Anda lihat tidak valid. Anda dapat menghapus paket pemula ini." @@ -6210,11 +6376,11 @@ 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:126 +#: src/view/com/notifications/Feed.tsx:125 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Ada masalah saat mengambil notifikasi. Ketuk di sini untuk mencoba lagi." -#: src/view/com/posts/Feed.tsx:299 +#: src/view/com/posts/Feed.tsx:459 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Ada masalah saat mengambil postingan. Ketuk di sini untuk mencoba lagi." @@ -6410,7 +6576,7 @@ msgid "This post has been deleted." msgstr "Postingan ini telah dihapus." #: src/view/com/util/forms/PostDropdownBtn.tsx:458 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:317 +#: 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." @@ -6471,12 +6637,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:594 +#: src/view/screens/Settings/index.tsx:595 msgid "Thread preferences" msgstr "Preferensi utas" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/Settings/index.tsx:605 msgid "Thread Preferences" msgstr "Preferensi Utas" @@ -6488,7 +6654,7 @@ msgstr "Pengaturan utas diperbarui" msgid "Threaded Mode" msgstr "Mode Bersusun" -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:287 msgid "Threads Preferences" msgstr "Preferensi Utas" @@ -6539,11 +6705,11 @@ msgctxt "action" msgid "Try again" msgstr "Coba lagi" -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:100 msgid "TV" msgstr "TV" -#: src/view/screens/Settings/index.tsx:745 +#: src/view/screens/Settings/index.tsx:746 msgid "Two-factor authentication" msgstr "Autentikasi dua faktor" @@ -6565,14 +6731,14 @@ msgstr "Bunyikan daftar" #: src/screens/Login/ForgotPasswordForm.tsx:74 #: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:79 +#: src/screens/Signup/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Tidak dapat terhubung ke layanan. Mohon periksa koneksi internet Anda." -#: src/screens/StarterPack/StarterPackScreen.tsx:548 +#: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Unable to delete" msgstr "Tidak dapat menghapus" @@ -6837,7 +7003,7 @@ msgstr "Daftar pengguna diperbarui" msgid "User Lists" msgstr "Daftar Pengguna" -#: src/screens/Login/LoginForm.tsx:177 +#: src/screens/Login/LoginForm.tsx:197 msgid "Username or email address" msgstr "Nama pengguna atau alamat email" @@ -6876,15 +7042,15 @@ msgstr "Nilai:" msgid "Verify DNS Record" msgstr "Verifikasi DNS" -#: src/view/screens/Settings/index.tsx:982 +#: src/view/screens/Settings/index.tsx:983 msgid "Verify email" msgstr "Verifikasi email" -#: src/view/screens/Settings/index.tsx:1007 +#: src/view/screens/Settings/index.tsx:1008 msgid "Verify my email" msgstr "Verifikasi email saya" -#: src/view/screens/Settings/index.tsx:1016 +#: src/view/screens/Settings/index.tsx:1017 msgid "Verify My Email" msgstr "Verifikasi Email Saya" @@ -6905,7 +7071,7 @@ msgstr "Verifikasi Email Anda" #~ msgid "Version {0}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:935 +#: src/view/screens/Settings/index.tsx:936 msgid "Version {appVersion} {bundleInfo}" msgstr "Versi {appVersion} {bundleInfo}" @@ -6918,7 +7084,7 @@ msgstr "Permainan Video" msgid "View {0}'s avatar" msgstr "Lihat avatar {0}" -#: src/view/com/notifications/FeedItem.tsx:234 +#: src/view/com/notifications/FeedItem.tsx:245 msgid "View {0}'s profile" msgstr "Lihat profil {0}" @@ -6967,7 +7133,7 @@ msgid "View users who like this feed" msgstr "Lihat pengguna yang menyukai feed ini" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "Lihat daftar feed Anda dan jelajahi lebih lanjut" @@ -7002,7 +7168,7 @@ msgstr "Kami tidak dapat memuat percakapan ini" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Kami perkirakan {estimatedTime} hingga akun Anda siap." -#: src/screens/Onboarding/StepFinished.tsx:231 +#: src/screens/Onboarding/StepFinished.tsx:239 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Semoga Anda senang dan betah di sini. Ingat, Bluesky itu:" @@ -7026,7 +7192,7 @@ msgstr "Kami tidak dapat memuat preferensi tanggal lahir Anda. Silakan coba lagi msgid "We were unable to load your configured labelers at this time." msgstr "Kami tidak dapat memuat pelabel yang Anda konfigurasikan saat ini." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:157 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Sepertinya ada masalah koneksi. Mohon coba lagi untuk melanjutkan pengaturan akun Anda. Jika terus gagal, Anda dapat melewati langkah ini." @@ -7034,7 +7200,7 @@ msgstr "Sepertinya ada masalah koneksi. Mohon coba lagi untuk melanjutkan pengat msgid "We will let you know when your account is ready." msgstr "Kami akan memberi tahu Anda ketika akun Anda siap." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:162 msgid "We'll use this to help customize your experience." msgstr "Kami akan menggunakan ini untuk menyesuaikan pengalaman Anda." @@ -7042,7 +7208,7 @@ msgstr "Kami akan menggunakan ini untuk menyesuaikan pengalaman Anda." msgid "We're having network issues, try again" msgstr "Kami mengalami masalah jaringan, coba lagi" -#: src/screens/Signup/index.tsx:155 +#: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" msgstr "Kami sangat senang Anda bergabung dengan kami!" @@ -7087,7 +7253,7 @@ msgstr "Selamat datang kembali!" msgid "Welcome, friend!" msgstr "Selamat datang, kawan!" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" msgstr "Apa saja minat Anda?" @@ -7178,7 +7344,7 @@ msgid "Write your reply" msgstr "Tulis balasan Anda" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:101 msgid "Writers" msgstr "Penulis" @@ -7197,7 +7363,7 @@ msgstr "Ya" msgid "Yes, deactivate" msgstr "Ya, nonaktifkan" -#: src/screens/StarterPack/StarterPackScreen.tsx:560 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 msgid "Yes, delete this starter pack" msgstr "Ya, hapus paket pemula ini" @@ -7209,7 +7375,7 @@ msgstr "Ya, aktifkan kembali akun saya" msgid "Yesterday, {time}" msgstr "Kemarin, {time}" -#: src/components/StarterPack/StarterPackCard.tsx:68 +#: src/components/StarterPack/StarterPackCard.tsx:73 msgid "you" msgstr "Anda" @@ -7426,23 +7592,23 @@ msgstr "Anda: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "Anda: {short}" -#: src/screens/Signup/index.tsx:169 +#: src/screens/Signup/index.tsx:102 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "Anda akan mengikuti pengguna dan feed yang disarankan setelah selesai membuat akun!" -#: src/screens/Signup/index.tsx:174 +#: src/screens/Signup/index.tsx:107 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:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 msgid "You'll follow these people and {0} others" msgstr "Anda akan mengikuti pengguna ini dan {0} lainnya" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 msgid "You'll follow these people right away" msgstr "Anda akan otomatis mengikuti para pengguna ini" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "You'll stay updated with these feeds" msgstr "Dapatkan informasi terbaru melalui feed berikut" @@ -7461,7 +7627,7 @@ msgstr "Anda sedang dalam antrian" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "Anda masuk menggunakan Sandi Aplikasi. Mohon gunakan kata sandi utama untuk melanjutkan penonaktifan akun Anda." -#: src/screens/Onboarding/StepFinished.tsx:228 +#: src/screens/Onboarding/StepFinished.tsx:236 msgid "You're ready to go!" msgstr "Anda siap untuk mulai!" @@ -7474,7 +7640,7 @@ msgstr "Anda telah memilih untuk menyembunyikan kata atau tagar dalam postingan msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Anda telah mencapai bagian akhir feed! Temukan lebih banyak akun lain untuk diikuti." -#: src/screens/Signup/index.tsx:202 +#: src/screens/Signup/index.tsx:135 msgid "Your account" msgstr "Akun Anda" @@ -7486,7 +7652,7 @@ msgstr "Akun Anda telah dihapus" msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "Semua catatan data publik dalam repositori akun Anda dapat diunduh sebagai berkas \"CAR\". Tidak termasuk konten media seperti gambar dan data pribadi yang harus diunduh secara terpisah." -#: src/screens/Signup/StepInfo/index.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" msgstr "Tanggal lahir Anda" @@ -7503,7 +7669,8 @@ msgstr "Pilihan Anda akan disimpan, tetapi dapat diubah nanti di pengaturan." #~ msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Email Anda tidak valid." @@ -7516,11 +7683,15 @@ msgstr "Alamat email Anda telah diperbarui namun belum diverifikasi. Silakan ver msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "Alamat email Anda belum diverifikasi. Ini merupakan langkah keamanan penting yang kami rekomendasikan." +#: src/state/shell/progress-guide.tsx:161 +msgid "Your first like!" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Feed mengikuti Anda kosong! Ikuti lebih banyak pengguna untuk melihat apa yang terjadi." -#: src/screens/Signup/StepHandle.tsx:73 +#: src/screens/Signup/StepHandle.tsx:122 msgid "Your full handle will be" msgstr "Panggilan lengkap Anda akan menjadi" @@ -7540,7 +7711,7 @@ msgstr "Kata sandi Anda telah berhasil diubah!" msgid "Your post has been published" msgstr "Postingan Anda telah dipublikasikan" -#: src/screens/Onboarding/StepFinished.tsx:243 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Postingan, suka, dan pemblokiran Anda bersifat publik. Sedangkan pembisuan bersifat privat." @@ -7560,7 +7731,6 @@ msgstr "Balasan Anda telah dipublikasikan" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Laporan Anda akan dikirim ke Layanan Moderasi Bluesky" -#: src/screens/Signup/index.tsx:204 +#: src/screens/Signup/index.tsx:137 msgid "Your user handle" msgstr "Panggilan Anda" - diff --git a/src/locale/locales/it/messages.po b/src/locale/locales/it/messages.po index 4d253dbfe1..28a8676958 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:283 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -55,7 +55,7 @@ msgstr "" msgid "{0, plural, one {following} other {following}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:259 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" @@ -63,7 +63,7 @@ msgstr "" msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:216 +#: src/components/FeedCard.tsx:206 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -72,7 +72,7 @@ msgstr "" msgid "{0, plural, one {post} other {posts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:217 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" @@ -80,7 +80,7 @@ msgstr "" msgid "{0, plural, one {repost} other {reposts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:262 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" @@ -90,11 +90,11 @@ msgstr "" #~ msgid "{0} {purposeLabel} List" #~ msgstr "Lista {purposeLabel} {0}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:378 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" msgstr "" @@ -149,7 +149,7 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:503 +#: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} following" @@ -260,13 +260,17 @@ msgstr "" msgid "⚠Invalid Handle" msgstr "⚠Nome utente non valido" -#: src/screens/Login/LoginForm.tsx:247 +#: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" msgstr "Conferma 2FA" #~ msgid "A content warning has been applied to this {0}." #~ msgstr "A questo post è stato applicato un avviso di contenuto {0}." +#: src/tours/Tooltip.tsx:70 +msgid "A help tooltip" +msgstr "" + #~ msgid "A new version of the app is available. Please update to continue using the app." #~ msgstr "È disponibile una nuova versione dell'app. Aggiorna per continuare a utilizzarla." @@ -280,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:518 +#: src/view/screens/Settings/index.tsx:519 msgid "Accessibility" msgstr "Accessibilità" -#: src/view/screens/Settings/index.tsx:509 +#: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" msgstr "Impostazioni di accessibilità" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "Impostazioni di Accessibilità" @@ -296,9 +300,9 @@ msgstr "Impostazioni di Accessibilità" #~ msgid "account" #~ msgstr "account" -#: src/screens/Login/LoginForm.tsx:170 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:190 +#: src/view/screens/Settings/index.tsx:346 +#: src/view/screens/Settings/index.tsx:753 msgid "Account" msgstr "Account" @@ -369,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:422 -#: src/view/screens/Settings/index.tsx:431 +#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:432 msgid "Add account" msgstr "Aggiungi account" @@ -432,7 +436,7 @@ msgstr "Aggiungi il feed predefinito delle sole persone che segui" msgid "Add the following DNS record to your domain:" msgstr "Aggiungi il seguente record DNS al tuo dominio:" -#: src/components/FeedCard.tsx:305 +#: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" msgstr "" @@ -478,15 +482,19 @@ msgid "Adult content is disabled." msgstr "Il contenuto per adulti è disattivato." #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Advanced" msgstr "Avanzato" -#: src/screens/StarterPack/StarterPackScreen.tsx:301 +#: src/state/shell/progress-guide.tsx:176 +msgid "Algorithm training complete!" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:360 msgid "All accounts have been followed!" msgstr "" -#: src/view/screens/Feeds.tsx:721 +#: src/view/screens/Feeds.tsx:734 msgid "All the feeds you've saved, right in one place." msgstr "Tutti i feed che hai salvato, in un unico posto." @@ -515,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:177 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 msgid "ALT" msgstr "ALT" @@ -525,7 +533,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Testo alternativo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:183 +#: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" msgstr "Testo Alternativo" @@ -562,7 +570,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "È avvenuto un errore durante la cancellazione del messaggio. Riprovare un altra volta" -#: src/screens/StarterPack/StarterPackScreen.tsx:303 +#: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" msgstr "" @@ -572,6 +580,8 @@ msgstr "Un problema non incluso in queste opzioni" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:309 +#: src/components/ProfileCard.tsx:329 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -579,12 +589,12 @@ msgstr "Un problema non incluso in queste opzioni" msgid "An issue occurred, please try again." msgstr "Si è verificato un problema, riprova un'altra volta." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" msgstr "si è verificato un errore sconosciuto" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:280 +#: src/view/com/notifications/FeedItem.tsx:291 msgid "and" msgstr "e" @@ -593,7 +603,7 @@ msgstr "e" msgid "Animals" msgstr "Animali" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" msgstr "GIF animata" @@ -617,16 +627,16 @@ 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:697 +#: src/view/screens/Settings/index.tsx:698 msgid "App password settings" msgstr "Impostazioni della password dell'app" #~ msgid "App passwords" #~ msgstr "Passwords dell'app" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:269 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/view/screens/Settings/index.tsx:707 msgid "App Passwords" msgstr "Password dell'App" @@ -666,7 +676,7 @@ msgstr "Appella contro questa decisione" #~ msgid "Appeal this decision." #~ msgstr "Appella contro questa decisione." -#: src/view/screens/Settings/index.tsx:439 +#: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "Aspetto" @@ -675,7 +685,7 @@ msgstr "Aspetto" msgid "Apply default recommended feeds" msgstr "Applica i feed raccomandati predefiniti" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -699,7 +709,7 @@ msgstr "Sei sicuro di voler abbandonare questa conversazione? I messaggi verrann msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Confermi di voler rimuovere {0} dai tuoi feed?" -#: src/components/FeedCard.tsx:322 +#: src/components/FeedCard.tsx:306 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -727,7 +737,7 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Nudità artistica o non erotica." -#: src/screens/Signup/StepHandle.tsx:119 +#: src/screens/Signup/StepHandle.tsx:170 msgid "At least 3 characters" msgstr "Almeno 3 caratteri" @@ -738,14 +748,15 @@ msgstr "Almeno 3 caratteri" #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:278 -#: src/screens/Login/LoginForm.tsx:284 +#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:304 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/index.tsx:231 +#: 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" @@ -759,7 +770,7 @@ msgstr "Indietro" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Basato sui tuoi interessi {interestsText}" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "Preferenze" @@ -767,7 +778,7 @@ msgstr "Preferenze" msgid "Birthday" msgstr "Compleanno" -#: src/view/screens/Settings/index.tsx:377 +#: src/view/screens/Settings/index.tsx:378 msgid "Birthday:" msgstr "Compleanno:" @@ -814,7 +825,7 @@ msgstr "Bloccato" msgid "Blocked accounts" msgstr "Accounts bloccati" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:145 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Accounts bloccati" @@ -856,6 +867,10 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky è un network aperto in cui puoi scegliere il tuo provider di hosting. L'hosting personalizzato è adesso disponibile in versione beta per gli sviluppatori." +#: src/components/ProgressGuide/List.tsx:55 +msgid "Bluesky is better with friends!" +msgstr "" + #~ msgid "Bluesky is flexible." #~ msgstr "Bluesky è flessibile." @@ -892,6 +907,24 @@ msgstr "Sfoca le immagini e filtra dai feed" msgid "Books" msgstr "Libri" +#: src/components/FeedInterstitials.tsx:281 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:411 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:266 +#: src/components/FeedInterstitials.tsx:396 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:289 +#: src/components/FeedInterstitials.tsx:420 +msgid "Browse more suggestions on the Explore page" +msgstr "" + #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" @@ -1021,17 +1054,17 @@ msgstr "Annulla l'apertura del sito collegato" msgid "Change" msgstr "Cambia" -#: src/view/screens/Settings/index.tsx:371 +#: src/view/screens/Settings/index.tsx:372 msgctxt "action" msgid "Change" msgstr "Cambia" -#: src/view/screens/Settings/index.tsx:718 +#: src/view/screens/Settings/index.tsx:719 msgid "Change handle" msgstr "Cambia il nome utente" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change Handle" msgstr "Cambia il Nome Utente" @@ -1039,12 +1072,12 @@ msgstr "Cambia il Nome Utente" msgid "Change my email" msgstr "Cambia la mia email" -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/index.tsx:764 msgid "Change password" msgstr "Cambia la password" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Change Password" msgstr "Cambia la Password" @@ -1059,9 +1092,9 @@ msgstr "Cambia la lingua del post a {0}" msgid "Change Your Email" msgstr "Cambia la tua email" -#: src/Navigation.tsx:310 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:313 +#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" msgstr "Messaggi" @@ -1071,14 +1104,14 @@ msgstr "Conversazione silenziata" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:318 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" msgstr "Impostazioni messaggi" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" msgstr "Impostazioni messaggi" @@ -1101,7 +1134,7 @@ msgstr "Verifica il mio stato" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "Scopri alcuni utenti consigliati. Seguili per vedere utenti simili." -#: src/screens/Login/LoginForm.tsx:271 +#: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." msgstr "Controlla la tua email per il codice di accesso e inseriscilo qui." @@ -1113,9 +1146,17 @@ msgstr "Controlla la tua posta in arrivo, dovrebbe contenere un'e-mail con il co #~ msgid "Choose \"Everybody\" or \"Nobody\"" #~ msgstr "Scegli \"Tutti\" o \"Nessuno\"" +#: src/screens/Onboarding/StepInterests/index.tsx:190 +msgid "Choose 3 or more:" +msgstr "" + #~ msgid "Choose a new Bluesky username or create" #~ msgstr "Scegli un nuovo nome utente Bluesky o creane uno" +#: src/screens/Onboarding/StepInterests/index.tsx:325 +msgid "Choose at least {0} more" +msgstr "" + #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" msgstr "" @@ -1132,7 +1173,7 @@ msgstr "" msgid "Choose Service" msgstr "Scegli il servizio" -#: src/screens/Onboarding/StepFinished.tsx:273 +#: src/screens/Onboarding/StepFinished.tsx:281 msgid "Choose the algorithms that power your custom feeds." msgstr "Scegli gli algoritmi che compilano i tuoi feed personalizzati." @@ -1152,23 +1193,23 @@ msgstr "" #~ msgid "Choose your main feeds" #~ msgstr "Scegli i tuoi feed principali" -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" msgstr "Scegli la tua password" -#: src/view/screens/Settings/index.tsx:910 +#: src/view/screens/Settings/index.tsx:911 msgid "Clear all legacy storage data" msgstr "Cancella tutti i dati legacy in archivio" -#: src/view/screens/Settings/index.tsx:913 +#: src/view/screens/Settings/index.tsx:914 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:922 +#: src/view/screens/Settings/index.tsx:923 msgid "Clear all storage data" msgstr "Cancella tutti i dati in archivio" -#: src/view/screens/Settings/index.tsx:925 +#: src/view/screens/Settings/index.tsx:926 msgid "Clear all storage data (restart after this)" msgstr "Cancella tutti i dati in archivio (poi ricomincia)" @@ -1177,11 +1218,11 @@ msgstr "Cancella tutti i dati in archivio (poi ricomincia)" msgid "Clear search query" msgstr "Annulla la ricerca" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" msgstr "Cancella tutti i dati di archiviazione legacy" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" msgstr "Cancella tutti i dati di archiviazione" @@ -1229,7 +1270,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:189 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "Close" msgstr "Chiudi" @@ -1292,11 +1333,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:226 +#: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:437 msgid "Collapses list of users for a given notification" msgstr "Comprime l'elenco degli utenti per una determinata notifica" @@ -1310,16 +1351,16 @@ msgstr "Commedia" msgid "Comics" msgstr "Fumetti" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:259 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Linee guida della community" -#: src/screens/Onboarding/StepFinished.tsx:286 +#: src/screens/Onboarding/StepFinished.tsx:294 msgid "Complete onboarding and start using your account" msgstr "Completa l'incorporazione e inizia a utilizzare il tuo account" -#: src/screens/Signup/index.tsx:206 +#: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" msgstr "Completa la challenge" @@ -1383,7 +1424,7 @@ msgstr "Conferma la tua età:" msgid "Confirm your birthdate" msgstr "Conferma la tua data di nascita" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:272 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 @@ -1396,11 +1437,11 @@ msgstr "Codice di conferma" #~ msgid "Confirms signing up {email} to the waitlist" #~ msgstr "Conferma l'iscrizione di {email} alla lista d'attesa" -#: src/screens/Login/LoginForm.tsx:305 +#: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." msgstr "Connessione in corso..." -#: src/screens/Signup/index.tsx:276 +#: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "Contatta il supporto" @@ -1446,7 +1487,7 @@ msgstr "Avviso sui contenuti" msgid "Context menu backdrop, click to close the menu." msgstr "Sfondo del menu contestuale, clicca per chiudere il menu." -#: src/screens/Onboarding/StepInterests/index.tsx:258 +#: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Continua" @@ -1459,9 +1500,9 @@ msgstr "Continua come {0} (attualmente connesso)" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:255 +#: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/index.tsx:251 +#: src/screens/Signup/BackNextButtons.tsx:59 msgid "Continue to next step" msgstr "Vai al passaggio successivo" @@ -1486,7 +1527,7 @@ msgstr "Cucina" msgid "Copied" msgstr "Copiato" -#: src/view/screens/Settings/index.tsx:263 +#: src/view/screens/Settings/index.tsx:264 msgid "Copied build version to clipboard" msgstr "Versione di build copiata nella clipboard" @@ -1495,7 +1536,7 @@ msgstr "Versione di build copiata nella clipboard" #: 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/post-ctrls/PostCtrls.tsx:350 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Copiato nel clipboard" @@ -1555,7 +1596,7 @@ msgstr "Copia il testo del post" msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Politica sul diritto d'autore" @@ -1592,7 +1633,7 @@ msgstr "" msgid "Create a new account" msgstr "Crea un nuovo account" -#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" msgstr "Crea un nuovo Bluesky account" @@ -1602,7 +1643,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:338 msgid "Create a starter pack" msgstr "" @@ -1610,7 +1651,7 @@ msgstr "" msgid "Create a starter pack for me" msgstr "" -#: src/screens/Signup/index.tsx:154 +#: src/screens/Signup/index.tsx:88 msgid "Create Account" msgstr "Crea un account" @@ -1671,7 +1712,7 @@ msgstr "Personalizzato" msgid "Custom domain" msgstr "Dominio personalizzato" -#: src/view/screens/Feeds.tsx:747 +#: src/view/screens/Feeds.tsx:760 #: src/view/screens/Search/Explore.tsx:390 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." @@ -1683,8 +1724,8 @@ msgstr "Personalizza i media da i siti esterni." #~ msgid "Danger Zone" #~ msgstr "Zona di Pericolo" -#: src/view/screens/Settings/index.tsx:458 -#: src/view/screens/Settings/index.tsx:484 +#: src/view/screens/Settings/index.tsx:459 +#: src/view/screens/Settings/index.tsx:485 msgid "Dark" msgstr "Scuro" @@ -1692,24 +1733,24 @@ msgstr "Scuro" msgid "Dark mode" msgstr "Aspetto scuro" -#: src/view/screens/Settings/index.tsx:471 +#: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" msgstr "Tema scuro" -#: src/screens/Signup/StepInfo/index.tsx:134 +#: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" msgstr "Data di nascita" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:818 +#: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:873 +#: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" msgstr "Eliminare errori nella Moderazione" @@ -1718,16 +1759,16 @@ msgid "Debug panel" msgstr "Pannello per il debug" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:484 -#: src/screens/StarterPack/StarterPackScreen.tsx:563 -#: src/screens/StarterPack/StarterPackScreen.tsx:643 +#: 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/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Elimina" -#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:829 msgid "Delete account" msgstr "Elimina l'account" @@ -1746,8 +1787,8 @@ msgstr "Elimina la password dell'app" msgid "Delete app password?" msgstr "Eliminare la password dell'app?" -#: src/view/screens/Settings/index.tsx:890 -#: src/view/screens/Settings/index.tsx:893 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" msgstr "" @@ -1774,7 +1815,7 @@ msgstr "Cancellare account" #~ msgid "Delete my account…" #~ msgstr "Cancella il mio account…" -#: src/view/screens/Settings/index.tsx:840 +#: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" msgstr "Cancellare Account…" @@ -1783,12 +1824,12 @@ msgstr "Cancellare Account…" msgid "Delete post" msgstr "Elimina il post" -#: src/screens/StarterPack/StarterPackScreen.tsx:478 -#: src/screens/StarterPack/StarterPackScreen.tsx:634 +#: src/screens/StarterPack/StarterPackScreen.tsx:556 +#: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" msgstr "" @@ -1808,7 +1849,7 @@ msgstr "Eliminato" msgid "Deleted post." msgstr "Post eliminato." -#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" msgstr "" @@ -1833,7 +1874,7 @@ msgstr "Testo descrittivo alternativo" msgid "Did you want to say anything?" msgstr "Volevi dire qualcosa?" -#: src/view/screens/Settings/index.tsx:477 +#: src/view/screens/Settings/index.tsx:478 msgid "Dim" msgstr "Fioco" @@ -1878,6 +1919,10 @@ msgstr "Scartare la bozza?" msgid "Discourage apps from showing my account to logged-out users" msgstr "Scoraggia le app dal mostrare il mio account agli utenti disconnessi" +#: src/tours/HomeTour.tsx:70 +msgid "Discover learns which posts you like as you browse." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -1887,10 +1932,14 @@ msgstr "Scopri nuovi feed personalizzati" msgid "Discover new feeds" msgstr "Scopri nuovi feed" -#: src/view/screens/Feeds.tsx:744 +#: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" msgstr "Scopri nuovi feed" +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "" + #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" msgstr "" @@ -1911,7 +1960,7 @@ msgstr "Pannello DNS" msgid "Does not include nudity." msgstr "Non include nudità." -#: src/screens/Signup/StepHandle.tsx:105 +#: src/screens/Signup/StepHandle.tsx:156 msgid "Doesn't begin or end with a hyphen" msgstr "Non inizia o termina con un trattino" @@ -1962,7 +2011,7 @@ msgstr "Fatto{extraText}" #~ msgid "Double tap to sign in" #~ msgstr "Usa il doppio tocco per accedere" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" msgstr "" @@ -1974,7 +2023,7 @@ msgstr "" msgid "Download CAR file" msgstr "Scarica il CAR file" -#: src/view/com/composer/text-input/TextInput.web.tsx:272 +#: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" msgstr "Trascina e rilascia per aggiungere immagini" @@ -2022,11 +2071,11 @@ msgstr "e.g. Utenti che rispondono ripetutamente con annunci." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Ogni codice funziona per un solo uso. Riceverai periodicamente più codici di invito." -#: src/screens/StarterPack/StarterPackScreen.tsx:473 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "" @@ -2057,9 +2106,9 @@ msgstr "Modifica i dettagli della lista" msgid "Edit Moderation List" msgstr "Modifica l'elenco di moderazione" -#: src/Navigation.tsx:271 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 +#: src/Navigation.tsx:274 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Modifica i miei feed" @@ -2087,7 +2136,7 @@ msgstr "Modifica il Profilo" #~ msgid "Edit Saved Feeds" #~ msgstr "Modifica i feed memorizzati" -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" msgstr "" @@ -2107,7 +2156,7 @@ msgstr "Modifica il tuo nome visualizzato" msgid "Edit your profile description" msgstr "Modifica la descrizione del tuo profilo" -#: src/Navigation.tsx:335 +#: src/Navigation.tsx:343 msgid "Edit your starter pack" msgstr "" @@ -2120,7 +2169,7 @@ msgstr "Formazione scolastica" msgid "Either choose \"Everybody\" or \"Nobody\"" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "Email" @@ -2146,7 +2195,7 @@ msgstr "Email Aggiornata" msgid "Email verified" msgstr "Email verificata" -#: src/view/screens/Settings/index.tsx:349 +#: src/view/screens/Settings/index.tsx:350 msgid "Email:" msgstr "Email:" @@ -2211,6 +2260,10 @@ msgstr "Abilitato" msgid "End of feed" msgstr "Fine del feed" +#: 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 "" + #: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "Inserisci un nome per questa password dell'app" @@ -2251,7 +2304,7 @@ msgstr "Inserisci la tua data di nascita" #~ msgstr "Inserisci la tua email" #: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:92 +#: src/screens/Signup/StepInfo/index.tsx:152 msgid "Enter your email address" msgstr "Inserisci il tuo indirizzo email" @@ -2274,11 +2327,11 @@ msgstr "Inserisci il tuo nome di utente e la tua password" msgid "Error occurred while saving file" msgstr "Un errore è avvenuto durante il salvataggio del file" -#: src/screens/Signup/StepCaptcha/index.tsx:51 +#: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." msgstr "Errore nella risposta del captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:197 +#: src/screens/Onboarding/StepInterests/index.tsx:216 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Errore:" @@ -2336,7 +2389,7 @@ msgstr "Uscita dall'inserzione della domanda di ricerca" msgid "Expand alt text" msgstr "Ampliare il testo alternativo" -#: src/view/com/notifications/FeedItem.tsx:227 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" msgstr "" @@ -2353,12 +2406,12 @@ msgstr "Media espliciti o potenzialmente inquietanti." msgid "Explicit sexual images." msgstr "Immagini sessuali esplicite." -#: src/view/screens/Settings/index.tsx:786 +#: src/view/screens/Settings/index.tsx:787 msgid "Export my data" msgstr "Esporta i miei dati" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:797 +#: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" msgstr "Esporta i miei dati" @@ -2372,13 +2425,13 @@ msgstr "Media esterni" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "I 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:290 +#: src/Navigation.tsx:293 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/view/screens/Settings/index.tsx:680 msgid "External Media Preferences" msgstr "Preferenze multimediali esterni" -#: src/view/screens/Settings/index.tsx:670 +#: src/view/screens/Settings/index.tsx:671 msgid "External media settings" msgstr "Impostazioni multimediali esterni" @@ -2404,7 +2457,7 @@ msgstr "Errore nel cancellare il messaggio" msgid "Failed to delete post, please try again" msgstr "Non possiamo eliminare il post, riprova di nuovo" -#: src/screens/StarterPack/StarterPackScreen.tsx:597 +#: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" msgstr "" @@ -2451,7 +2504,7 @@ msgstr "Errore nel invio dell'appello, si prega di riprovare." msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:285 +#: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" msgstr "" @@ -2460,11 +2513,11 @@ msgstr "" msgid "Failed to update settings" msgstr "Errore nell'aggiornamento delle impostazioni" -#: src/Navigation.tsx:211 +#: src/Navigation.tsx:214 msgid "Feed" msgstr "Feed" -#: src/components/FeedCard.tsx:161 +#: src/components/FeedCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "Feed fatto da {0}" @@ -2480,17 +2533,18 @@ msgstr "Feed fatto da {0}" msgid "Feed toggle" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Commenti" -#: src/Navigation.tsx:320 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 +#: src/Navigation.tsx:323 +#: 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:373 +#: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" @@ -2507,7 +2561,7 @@ msgstr "I feed sono algoritmi personalizzati che gli utenti creano con un minimo #~ msgid "Feeds can be topical as well!" #~ msgstr "I feed possono anche avere tematiche!" -#: src/components/FeedCard.tsx:282 +#: src/components/FeedCard.tsx:266 msgid "Feeds updated!" msgstr "" @@ -2523,7 +2577,7 @@ msgstr "File salvata con successo!" msgid "Filter from feeds" msgstr "Filtra dai feed" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 msgid "Finalizing" msgstr "Finalizzando" @@ -2533,6 +2587,10 @@ msgstr "Finalizzando" msgid "Find accounts to follow" msgstr "Trova account da seguire" +#: src/tours/HomeTour.tsx:88 +msgid "Find more feeds and accounts to follow in the Explore page." +msgstr "" + #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "Trova post e utenti su Bluesky" @@ -2561,11 +2619,15 @@ msgstr "Ottimizza i la visualizzazione delle discussioni." msgid "Finish" msgstr "" +#: src/tours/Tooltip.tsx:149 +msgid "Finish tour and begin using the application" +msgstr "" + #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "Fitness" -#: src/screens/Onboarding/StepFinished.tsx:269 +#: src/screens/Onboarding/StepFinished.tsx:277 msgid "Flexible" msgstr "Flessibile" @@ -2578,6 +2640,8 @@ msgstr "Gira in orizzontale" msgid "Flip vertically" msgstr "Gira in verticale" +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:341 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2600,13 +2664,17 @@ msgstr "Segui {0}" msgid "Follow {name}" msgstr "" +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "" + #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" msgstr "Segui l'Account" -#: src/screens/StarterPack/StarterPackScreen.tsx:345 -#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:405 +#: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" msgstr "" @@ -2633,7 +2701,7 @@ msgstr "" #~ msgid "Followed by" #~ msgstr "" -#: src/view/com/profile/ProfileCard.tsx:227 +#: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" msgstr "Seguito da {0}" @@ -2661,16 +2729,20 @@ msgstr "Utenti seguiti" msgid "Followed users only" msgstr "Solo utenti seguiti" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:197 msgid "followed you" msgstr "ti segue" +#: src/view/com/notifications/FeedItem.tsx:195 +msgid "followed you back" +msgstr "" + #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "Followers" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" msgstr "" @@ -2682,17 +2754,20 @@ msgstr "" #~ msgid "following" #~ msgstr "following" +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:335 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:630 +#: src/view/screens/Feeds.tsx:631 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Following" +#: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Seguiti {0}" @@ -2701,21 +2776,25 @@ msgstr "Seguiti {0}" msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:573 +#: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" msgstr "Preferenze del Following feed" -#: src/Navigation.tsx:277 +#: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "Following Feed Preferences" msgstr "Preferenze del Following Feed" +#: src/tours/HomeTour.tsx:59 +msgid "Following shows the latest posts from people you follow." +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "Ti segue" -#: src/view/com/profile/ProfileCard.tsx:152 +#: src/components/Pills.tsx:165 msgid "Follows You" msgstr "Ti Segue" @@ -2743,11 +2822,11 @@ msgstr "Per motivi di sicurezza non potrai visualizzarlo nuovamente. Se perdi qu msgid "Forgot Password" msgstr "Hai dimenticato la Password" -#: src/screens/Login/LoginForm.tsx:227 +#: src/screens/Login/LoginForm.tsx:246 msgid "Forgot password?" msgstr "Hai dimenticato la password?" -#: src/screens/Login/LoginForm.tsx:238 +#: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" msgstr "Hai dimenticato?" @@ -2781,6 +2860,10 @@ msgstr "Iniziamo" msgid "Get Started" msgstr "Inizia" +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "" + #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" msgstr "" @@ -2795,31 +2878,35 @@ msgstr "Evidenti violazioni della legge o dei termini di servizio" #: src/components/moderation/ScreenHider.tsx:151 #: src/components/moderation/ScreenHider.tsx:160 -#: src/view/com/auth/LoggedOut.tsx:78 -#: src/view/com/auth/LoggedOut.tsx:79 +#: src/view/com/auth/LoggedOut.tsx:80 +#: src/view/com/auth/LoggedOut.tsx:81 #: src/view/screens/NotFound.tsx:55 #: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Torna indietro" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:656 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Torna Indietro" +#: 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/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:225 +#: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" msgstr "Torna al passaggio precedente" @@ -2851,6 +2938,10 @@ msgstr "Seguente" msgid "Go to profile" msgstr "Va al profilo" +#: src/tours/Tooltip.tsx:138 +msgid "Go to the next step of the tour" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "Vai al profilo dell'utente" @@ -2859,6 +2950,10 @@ msgstr "Vai al profilo dell'utente" msgid "Graphic Media" msgstr "Media grafici" +#: src/state/shell/progress-guide.tsx:166 +msgid "Half way there!" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" msgstr "Nome Utente" @@ -2871,19 +2966,19 @@ msgstr "Aptica" msgid "Harassment, trolling, or intolerance" msgstr "Molestie, trolling o intolleranza" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:308 msgid "Hashtag" msgstr "Hashtag" -#: src/components/RichText.tsx:216 +#: src/components/RichText.tsx:218 msgid "Hashtag: #{tag}" msgstr "Hashtag: #{tag}" -#: src/screens/Signup/index.tsx:272 +#: src/screens/Signup/index.tsx:167 msgid "Having trouble?" msgstr "Ci sono problemi?" -#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/desktop/RightNav.tsx:99 #: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Aiuto" @@ -2919,7 +3014,7 @@ msgstr "Ecco la password dell'app." msgid "Hide" msgstr "Nascondi" -#: src/view/com/notifications/FeedItem.tsx:433 +#: src/view/com/notifications/FeedItem.tsx:444 msgctxt "action" msgid "Hide" msgstr "Nascondi" @@ -2938,7 +3033,7 @@ msgstr "Nascondere il contenuto" msgid "Hide this post?" msgstr "Vuoi nascondere questo post?" -#: src/view/com/notifications/FeedItem.tsx:424 +#: src/view/com/notifications/FeedItem.tsx:435 msgid "Hide user list" msgstr "Nascondi elenco utenti" @@ -2973,10 +3068,10 @@ 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:511 -#: src/Navigation.tsx:531 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: src/Navigation.tsx:519 +#: src/Navigation.tsx:539 +#: 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 msgid "Home" @@ -2990,8 +3085,8 @@ msgid "Host:" msgstr "Hosting:" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:160 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:180 +#: src/screens/Signup/StepInfo/index.tsx:106 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "Servizio di hosting" @@ -3106,15 +3201,15 @@ msgstr "Inserisci la password per la cancellazione dell'account" #~ msgid "Input phone number for SMS verification" #~ msgstr "Inserisci il numero di telefono per la verifica via SMS" -#: src/screens/Login/LoginForm.tsx:266 +#: src/screens/Login/LoginForm.tsx:286 msgid "Input the code which has been emailed to you" msgstr "Inserisci il codice che ti è stato inviato via email" #: src/screens/Login/LoginForm.tsx:221 -msgid "Input the password tied to {identifier}" -msgstr "Inserisci la password relazionata a {identifier}" +#~ msgid "Input the password tied to {identifier}" +#~ msgstr "Inserisci la password relazionata a {identifier}" -#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Login/LoginForm.tsx:215 msgid "Input the username or email address you used at signup" msgstr "Inserisci il nome utente o l'indirizzo email che hai utilizzato al momento della registrazione" @@ -3124,7 +3219,7 @@ msgstr "Inserisci il nome utente o l'indirizzo email che hai utilizzato al momen #~ msgid "Input your email to get on the Bluesky waitlist" #~ msgstr "Inserisci la tua email per entrare nella lista d'attesa di Bluesky" -#: src/screens/Login/LoginForm.tsx:220 +#: src/screens/Login/LoginForm.tsx:241 msgid "Input your password" msgstr "Inserisci la tua password" @@ -3132,7 +3227,7 @@ msgstr "Inserisci la tua password" msgid "Input your preferred hosting provider" msgstr "Inserisci il tuo provider di hosting preferito" -#: src/screens/Signup/StepHandle.tsx:63 +#: src/screens/Signup/StepHandle.tsx:111 msgid "Input your user handle" msgstr "Inserisci il tuo identificatore" @@ -3140,7 +3235,7 @@ msgstr "Inserisci il tuo identificatore" msgid "Introducing Direct Messages" msgstr "Introduzione ai Messaggi Diretti" -#: src/screens/Login/LoginForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:140 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "Codice di conferma 2FA non valido." @@ -3149,7 +3244,7 @@ msgstr "Codice di conferma 2FA non valido." msgid "Invalid or unsupported post record" msgstr "Protocollo del post non valido o non supportato" -#: src/screens/Login/LoginForm.tsx:140 +#: src/screens/Login/LoginForm.tsx:145 msgid "Invalid username or password" msgstr "Nome dell'utente o password errato" @@ -3160,11 +3255,11 @@ msgstr "Nome dell'utente o password errato" msgid "Invite a Friend" msgstr "Invita un amico" -#: src/screens/Signup/StepInfo/index.tsx:58 +#: src/screens/Signup/StepInfo/index.tsx:124 msgid "Invite code" msgstr "Codice d'invito" -#: src/screens/Signup/state.ts:275 +#: src/screens/Signup/state.ts:251 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Codice invito non accettato. Controlla di averlo inserito correttamente e riprova." @@ -3203,8 +3298,10 @@ msgstr "" msgid "Jobs" msgstr "Lavori" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackScreen.tsx:432 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" msgstr "" @@ -3260,16 +3357,16 @@ msgstr "Etichette sul tuo contenuto" msgid "Language selection" msgstr "Seleziona la lingua" -#: src/view/screens/Settings/index.tsx:530 +#: src/view/screens/Settings/index.tsx:531 msgid "Language settings" msgstr "Impostazione delle lingue" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:155 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Impostazione delle Lingue" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Languages" msgstr "Lingue" @@ -3335,7 +3432,7 @@ msgstr "Stai lasciando Bluesky" msgid "left to go." msgstr "mancano." -#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:309 msgid "Legacy storage cleared, you need to restart the app now." msgstr "L'archivio legacy è stato cancellato, riattiva la app." @@ -3348,28 +3445,38 @@ msgstr "" msgid "Let's get your password reset!" msgstr "Reimpostazione della password!" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 +#: src/tours/Tooltip.tsx:151 msgid "Let's go!" msgstr "Andiamo!" #~ msgid "Library" #~ msgstr "Biblioteca" -#: src/view/screens/Settings/index.tsx:452 +#: src/view/screens/Settings/index.tsx:453 msgid "Light" msgstr "Chiaro" #~ msgid "Like" #~ msgstr "Mi piace" +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:167 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 #: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Metti mi piace a questo feed" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:216 -#: src/Navigation.tsx:221 +#: src/Navigation.tsx:219 +#: src/Navigation.tsx:224 msgid "Liked by" msgstr "Piace a" @@ -3388,14 +3495,14 @@ msgstr "Piace A" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "Piace a {likeCount} {0}" -#: src/view/com/notifications/FeedItem.tsx:190 +#: src/view/com/notifications/FeedItem.tsx:201 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:182 +#: src/view/com/notifications/FeedItem.tsx:185 msgid "liked your post" msgstr "piace il tuo post" @@ -3407,7 +3514,7 @@ msgstr "Mi piace" msgid "Likes on this post" msgstr "Mi Piace in questo post" -#: src/Navigation.tsx:185 +#: src/Navigation.tsx:188 msgid "List" msgstr "Lista" @@ -3419,7 +3526,7 @@ msgstr "Lista avatar" msgid "List blocked" msgstr "Lista bloccata" -#: src/components/FeedCard.tsx:155 +#: src/components/ListCard.tsx:113 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "Lista di {0}" @@ -3444,10 +3551,10 @@ msgstr "Lista sbloccata" msgid "List unmuted" msgstr "Lista non mutata" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:125 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/desktop/LeftNav.tsx:385 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 msgid "Lists" @@ -3490,7 +3597,7 @@ msgstr "Caricamento..." #~ msgid "Local dev server" #~ msgstr "Server di sviluppo locale" -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:239 msgid "Log" msgstr "Log" @@ -3514,7 +3621,7 @@ msgstr "Visibilità degli utenti disconnessi" msgid "Login to account that is not listed" msgstr "Accedi all'account che non è nella lista" -#: src/components/RichText.tsx:217 +#: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" msgstr "Tieni premutoper aprire il menu dei tag per #{tag}" @@ -3607,7 +3714,7 @@ msgstr "Il messaggio è troppo lungo" msgid "Message settings" msgstr "Impostazioni messaggio" -#: src/Navigation.tsx:526 +#: src/Navigation.tsx:534 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3618,9 +3725,9 @@ msgstr "Messaggi" msgid "Misleading Account" msgstr "Account Ingannevole" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:130 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Moderation" msgstr "Moderazione" @@ -3628,7 +3735,7 @@ msgstr "Moderazione" msgid "Moderation details" msgstr "Dettagli sulla moderazione" -#: src/components/FeedCard.tsx:157 +#: src/components/ListCard.tsx:109 #: src/view/com/lists/ListCard.tsx:95 #: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" @@ -3656,16 +3763,16 @@ msgstr "Lista di moderazione aggiornata" msgid "Moderation lists" msgstr "Liste di moderazione" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Liste di Moderazione" -#: src/view/screens/Settings/index.tsx:555 +#: src/view/screens/Settings/index.tsx:556 msgid "Moderation settings" msgstr "Impostazioni di moderazione" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:234 msgid "Moderation states" msgstr "Stati di moderazione" @@ -3701,6 +3808,10 @@ msgstr "Dai priorità alle risposte con più likes" msgid "Movies" msgstr "" +#: src/screens/Onboarding/state.ts:91 +msgid "Music" +msgstr "" + #~ msgid "Must be at least 3 characters" #~ msgstr "Deve contenere almeno 3 caratteri" @@ -3780,7 +3891,7 @@ msgstr "Silenziato" msgid "Muted accounts" msgstr "Account silenziato" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Accounts Silenziati" @@ -3806,19 +3917,19 @@ msgstr "Silenziare un account è privato. Gli account silenziati possono interag msgid "My Birthday" msgstr "Il mio Compleanno" -#: src/view/screens/Feeds.tsx:718 +#: src/view/screens/Feeds.tsx:731 msgid "My Feeds" msgstr "I miei Feed" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Il mio Profilo" -#: src/view/screens/Settings/index.tsx:616 +#: src/view/screens/Settings/index.tsx:617 msgid "My saved feeds" msgstr "I miei feed salvati" -#: src/view/screens/Settings/index.tsx:622 +#: src/view/screens/Settings/index.tsx:623 msgid "My Saved Feeds" msgstr "I miei Feed Salvati" @@ -3842,16 +3953,20 @@ msgid "Name or Description Violates Community Standards" msgstr "Il Nome o la Descrizione Viola gli Standard della Comunità" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:92 msgid "Nature" msgstr "Natura" +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "" + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:332 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Vai alla schermata successiva" @@ -3870,7 +3985,7 @@ msgstr "Hai bisogno di segnalare una violazione del copyright?" #~ msgid "Never lose access to your followers and data." #~ msgstr "Non perdere mai l'accesso ai tuoi follower e ai tuoi dati." -#: src/screens/Onboarding/StepFinished.tsx:257 +#: src/screens/Onboarding/StepFinished.tsx:265 msgid "Never lose access to your followers or data." msgstr "Non perdere mai l'accesso ai tuoi follower o ai tuoi dati." @@ -3914,17 +4029,17 @@ msgctxt "action" msgid "New post" msgstr "Nuovo Post" -#: src/view/screens/Feeds.tsx:580 +#: 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/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/shell/desktop/LeftNav.tsx:278 msgid "New post" msgstr "Nuovo post" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:284 msgctxt "action" msgid "New Post" msgstr "Nuovo post" @@ -3945,21 +4060,22 @@ msgid "Newest replies first" msgstr "Mostrare prima le risposte più recenti" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:93 msgid "News" msgstr "Notizie" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:311 -#: src/screens/Login/LoginForm.tsx:318 +#: src/screens/Login/LoginForm.tsx:331 +#: src/screens/Login/LoginForm.tsx:338 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:258 +#: src/screens/Signup/BackNextButtons.tsx:66 #: src/screens/StarterPack/Wizard/index.tsx:184 #: src/screens/StarterPack/Wizard/index.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:359 #: src/screens/StarterPack/Wizard/index.tsx:366 +#: src/tours/Tooltip.tsx:139 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4000,11 +4116,12 @@ 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/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "Non segui più {0}" -#: src/screens/Signup/StepHandle.tsx:115 +#: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" msgstr "Non più di 253 caratteri" @@ -4016,7 +4133,7 @@ msgstr "Ancora nessun messaggio" msgid "No more conversations to show" msgstr "Nessuna conversazione da visualizzare" -#: src/view/com/notifications/Feed.tsx:118 +#: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "Ancora nessuna notifica!" @@ -4044,7 +4161,7 @@ msgstr "Nessun risultato" msgid "No results found" msgstr "Non si è trovato nessun risultato" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" msgstr "Nessun risultato trovato per \"{query}\"" @@ -4089,7 +4206,7 @@ msgstr "Nudità non sessuale" #~ msgid "Not Applicable." #~ msgstr "Non applicabile." -#: src/Navigation.tsx:117 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Non trovato" @@ -4101,7 +4218,7 @@ msgstr "Non adesso" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:315 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "Nota sulla condivisione" @@ -4121,11 +4238,11 @@ msgstr "Suoni di notifica" msgid "Notification Sounds" msgstr "Suoni di notifica" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:529 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 +#: 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 msgid "Notifications" @@ -4163,7 +4280,7 @@ msgstr "Spento" msgid "Oh no!" msgstr "Oh no!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:152 msgid "Oh no! Something went wrong." msgstr "Oh no! Qualcosa è andato male." @@ -4187,10 +4304,14 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:256 +#: src/view/screens/Settings/index.tsx:257 msgid "Onboarding reset" msgstr "Reimpostazione dell'onboarding" +#: src/tours/Tooltip.tsx:118 +msgid "Onboarding tour step {0}: {1}" +msgstr "" + #: src/view/com/composer/Composer.tsx:522 msgid "One or more images is missing alt text." msgstr "A una o più immagini manca il testo alternativo." @@ -4207,7 +4328,7 @@ msgstr "" #~ msgid "Only {0} can reply." #~ msgstr "Solo {0} può rispondere." -#: src/screens/Signup/StepHandle.tsx:98 +#: src/screens/Signup/StepHandle.tsx:149 msgid "Only contains letters, numbers, and hyphens" msgstr "Contiene solo lettere, numeri e trattini" @@ -4223,7 +4344,7 @@ msgstr "Ops! Qualcosa è andato male!" msgid "Oops!" msgstr "Ops!" -#: src/screens/Onboarding/StepFinished.tsx:253 +#: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" msgstr "Apri" @@ -4249,7 +4370,7 @@ msgstr "Apri il selettore emoji" msgid "Open feed options menu" msgstr "Apri il menu delle opzioni del feed" -#: src/view/screens/Settings/index.tsx:736 +#: src/view/screens/Settings/index.tsx:737 msgid "Open links with in-app browser" msgstr "Apri i links con il navigatore della app" @@ -4269,16 +4390,16 @@ msgstr "Apri la navigazione" msgid "Open post options menu" msgstr "Apri il menu delle opzioni del post" -#: src/screens/StarterPack/StarterPackScreen.tsx:451 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:861 +#: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" msgstr "Apri la pagina della cronologia" -#: src/view/screens/Settings/index.tsx:848 +#: src/view/screens/Settings/index.tsx:849 msgid "Open system log" msgstr "Apri il registro di sistema" @@ -4290,7 +4411,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:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Opens accessibility settings" msgstr "Apre le impostazioni di accessibilità" @@ -4306,7 +4427,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:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Opens chat settings" msgstr "Apre impostazioni messaggi" @@ -4314,7 +4435,7 @@ msgstr "Apre impostazioni messaggi" msgid "Opens composer" msgstr "Apre il compositore" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Opens configurable language settings" msgstr "Apre le impostazioni configurabili delle lingue" @@ -4325,7 +4446,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:671 +#: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" msgstr "Apre le impostazioni esterne per gli incorporamenti" @@ -4356,30 +4477,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:808 +#: src/view/screens/Settings/index.tsx:809 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:830 +#: src/view/screens/Settings/index.tsx:831 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:765 +#: src/view/screens/Settings/index.tsx:766 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:720 +#: src/view/screens/Settings/index.tsx:721 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:788 +#: src/view/screens/Settings/index.tsx:789 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:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Opens modal for email verification" msgstr "Apre la modale per la verifica dell'e-mail" @@ -4387,11 +4508,11 @@ 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:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Opens moderation settings" msgstr "Apre le impostazioni di moderazione" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:247 msgid "Opens password reset form" msgstr "Apre il modulo di reimpostazione della password" @@ -4400,18 +4521,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:617 +#: src/view/screens/Settings/index.tsx:618 msgid "Opens screen with all saved feeds" msgstr "Apre la schermata con tutti i feed salvati" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 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:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Opens the Following feed preferences" msgstr "Apre le preferenze del feed Following" @@ -4426,20 +4547,20 @@ msgstr "Apre il sito Web collegato" #~ msgid "Opens the message settings page" #~ 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 "Opens the storybook page" msgstr "Apri la pagina della cronologia" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" msgstr "Apre la pagina del registro di sistema" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Opens the threads preferences" msgstr "Apre le preferenze dei threads" -#: src/view/com/notifications/FeedItem.tsx:513 +#: src/view/com/notifications/FeedItem.tsx:524 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "" @@ -4493,8 +4614,8 @@ msgstr "Pagina non trovata" msgid "Page Not Found" msgstr "Pagina non trovata" -#: src/screens/Login/LoginForm.tsx:204 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Signup/StepInfo/index.tsx:162 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4516,15 +4637,16 @@ msgstr "Password aggiornata!" msgid "Pause" msgstr "Pausa" +#: src/screens/StarterPack/StarterPackScreen.tsx:170 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "Gente" -#: src/Navigation.tsx:172 +#: src/Navigation.tsx:175 msgid "People followed by @{0}" msgstr "Persone seguite da @{0}" -#: src/Navigation.tsx:165 +#: src/Navigation.tsx:168 msgid "People following @{0}" msgstr "Persone che seguono @{0}" @@ -4541,14 +4663,14 @@ msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:94 msgid "Pets" msgstr "Animali di compagnia" #~ msgid "Phone number" #~ msgstr "Numero di telefono" -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:95 msgid "Photography" msgstr "" @@ -4594,15 +4716,16 @@ msgstr "Riproduci video" msgid "Plays the GIF" msgstr "Riproduci questa GIF" -#: src/screens/Signup/state.ts:234 +#: src/screens/Signup/state.ts:210 msgid "Please choose your handle." msgstr "Scegli il tuo nome utente." -#: src/screens/Signup/state.ts:227 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:81 msgid "Please choose your password." msgstr "Scegli la tua password." -#: src/screens/Signup/state.ts:248 +#: src/screens/Signup/state.ts:224 msgid "Please complete the verification captcha." msgstr "Si prega di completare il captcha di verifica." @@ -4631,10 +4754,15 @@ msgstr "Inserisci una parola, un tag o una frase valida da silenziare" #~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." #~ msgstr "Inserisci il codice di verifica inviato a {phoneNumberFormatted}." -#: src/screens/Signup/state.ts:213 +#: src/screens/Signup/state.ts:189 +#: src/screens/Signup/StepInfo/index.tsx:69 msgid "Please enter your email." msgstr "Inserisci la tua email." +#: src/screens/Signup/StepInfo/index.tsx:63 +msgid "Please enter your invite code." +msgstr "" + #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" msgstr "Inserisci anche la tua password:" @@ -4667,7 +4795,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Attendi il caricamento della scheda di collegamento" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:96 msgid "Politics" msgstr "Politica" @@ -4696,9 +4824,9 @@ msgstr "Post" msgid "Post by {0}" msgstr "Pubblicato da {0}" -#: src/Navigation.tsx:191 -#: src/Navigation.tsx:198 -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:194 +#: src/Navigation.tsx:201 +#: src/Navigation.tsx:208 msgid "Post by @{0}" msgstr "Pubblicato da @{0}" @@ -4737,6 +4865,7 @@ msgstr "Post non trovato" msgid "posts" msgstr "post" +#: src/screens/StarterPack/StarterPackScreen.tsx:172 #: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Post" @@ -4764,7 +4893,7 @@ msgstr "Premi per cambiare provider di hosting" #: src/components/Error.tsx:85 #: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/index.tsx:238 +#: src/screens/Signup/BackNextButtons.tsx:46 msgid "Press to retry" msgstr "Premere per riprovare" @@ -4784,15 +4913,15 @@ msgstr "Lingua principale" msgid "Prioritize Your Follows" msgstr "Dai priorità a quelli che segui" -#: src/view/screens/Settings/index.tsx:654 -#: src/view/shell/desktop/RightNav.tsx:77 +#: src/view/screens/Settings/index.tsx:655 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privacy" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 +#: src/view/screens/Settings/index.tsx:958 #: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Informativa sulla privacy" @@ -4810,8 +4939,8 @@ msgstr "Elaborazione in corso…" msgid "profile" msgstr "profilo" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 +#: 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 @@ -4822,11 +4951,11 @@ msgstr "Profilo" msgid "Profile updated" msgstr "Profilo aggiornato" -#: src/view/screens/Settings/index.tsx:1021 +#: src/view/screens/Settings/index.tsx:1022 msgid "Protect your account by verifying your email." msgstr "Proteggi il tuo account verificando la tua email." -#: src/screens/Onboarding/StepFinished.tsx:239 +#: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" msgstr "Pubblico" @@ -4858,6 +4987,10 @@ msgstr "" msgid "QR code saved to your camera roll!" msgstr "" +#: src/tours/Tooltip.tsx:111 +msgid "Quick tip" +msgstr "" + #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:79 @@ -4913,7 +5046,7 @@ msgid "Reload conversations" msgstr "Ricarica conversazioni" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:325 +#: src/components/FeedCard.tsx:309 #: src/components/StarterPack/Wizard/WizardListCard.tsx:95 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 @@ -4965,7 +5098,7 @@ msgstr "Rimuovere il feed?" msgid "Remove from my feeds" msgstr "Rimuovi dai miei feed" -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:304 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Rimuovere dai miei feed?" @@ -5119,8 +5252,8 @@ msgstr "Segnala il messaggio" msgid "Report post" msgstr "Segnala il post" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 -#: src/screens/StarterPack/StarterPackScreen.tsx:507 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 msgid "Report starter pack" msgstr "" @@ -5166,7 +5299,7 @@ msgstr "Ripubblicare" msgid "Repost" msgstr "Ripubblicare" -#: src/screens/StarterPack/StarterPackScreen.tsx:446 +#: src/screens/StarterPack/StarterPackScreen.tsx:524 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5194,7 +5327,7 @@ msgstr "Ripubblicato da{0}" msgid "Reposted by <0><1/>" msgstr "Ripubblicato da <0><1/>" -#: src/view/com/notifications/FeedItem.tsx:184 +#: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "ripubblicato il tuo post" @@ -5223,7 +5356,7 @@ msgstr "Richiedi il testo alternativo prima di pubblicare" msgid "Require email code to log into your account" msgstr "Richiedi il codice via email per accedere al tuo account" -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" msgstr "Obbligatorio per questo operatore" @@ -5243,8 +5376,8 @@ msgstr "Reimposta il Codice" #~ msgid "Reset onboarding" #~ msgstr "Reimposta l'incorporazione" -#: src/view/screens/Settings/index.tsx:900 -#: src/view/screens/Settings/index.tsx:903 +#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" msgstr "Reimposta lo stato dell' incorporazione" @@ -5255,20 +5388,20 @@ msgstr "Reimposta la password" #~ msgid "Reset preferences" #~ msgstr "Reimposta le preferenze" -#: src/view/screens/Settings/index.tsx:880 -#: src/view/screens/Settings/index.tsx:883 +#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:884 msgid "Reset preferences state" msgstr "Reimposta lo stato delle preferenze" -#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" msgstr "Reimposta lo stato dell'incorporazione" -#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" msgstr "Reimposta lo stato delle preferenze" -#: src/screens/Login/LoginForm.tsx:292 +#: src/screens/Login/LoginForm.tsx:312 msgid "Retries login" msgstr "Ritenta l'accesso" @@ -5281,12 +5414,12 @@ msgstr "Ritenta l'ultima azione che ha generato un errore" #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:291 -#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:311 +#: src/screens/Login/LoginForm.tsx:318 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Signup/BackNextButtons.tsx:52 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" @@ -5296,7 +5429,7 @@ msgstr "Riprova" #~ msgstr "Riprova." #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:650 +#: src/screens/StarterPack/StarterPackScreen.tsx:728 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Ritorna alla pagina precedente" @@ -5394,13 +5527,13 @@ 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:372 -#: src/view/com/notifications/FeedItem.tsx:397 +#: src/view/com/notifications/FeedItem.tsx:383 +#: src/view/com/notifications/FeedItem.tsx:408 msgid "Say hello!" msgstr "Di ciao!" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:97 msgid "Science" msgstr "Scienza" @@ -5409,16 +5542,16 @@ msgid "Scroll to top" msgstr "Scorri verso l'alto" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:516 -#: src/view/com/auth/LoggedOut.tsx:119 +#: src/Navigation.tsx:524 +#: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 #: src/view/screens/Search/Search.tsx:791 #: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 +#: 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 @@ -5446,8 +5579,8 @@ msgstr "Cerca tutti i post con il tag {displayTag}" msgid "Search for feeds that you want to suggest to others." msgstr "" -#: src/view/com/auth/LoggedOut.tsx:101 -#: src/view/com/auth/LoggedOut.tsx:102 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:107 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "Cerca utenti" @@ -5584,11 +5717,11 @@ msgstr "Seleziona le lingue che desideri includere nei feed a cui sei iscritto. msgid "Select your app language for the default text to display in the app." msgstr "Seleziona la lingua dell'app per il testo predefinito da visualizzare nell'app." -#: src/screens/Signup/StepInfo/index.tsx:135 +#: src/screens/Signup/StepInfo/index.tsx:192 msgid "Select your date of birth" msgstr "Seleziona la tua data di nascita" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:225 msgid "Select your interests from the options below" msgstr "Seleziona i tuoi interessi dalle seguenti opzioni" @@ -5738,23 +5871,23 @@ msgstr "Configura il tuo account" msgid "Sets Bluesky username" msgstr "Imposta il tuo nome utente di Bluesky" -#: src/view/screens/Settings/index.tsx:461 +#: src/view/screens/Settings/index.tsx:462 msgid "Sets color theme to dark" msgstr "Imposta il tema colore su scuro" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Sets color theme to light" msgstr "Imposta il tema colore su chiaro" -#: src/view/screens/Settings/index.tsx:448 +#: src/view/screens/Settings/index.tsx:449 msgid "Sets color theme to system setting" msgstr "Imposta il tema colore basato impostazioni di sistema" -#: src/view/screens/Settings/index.tsx:487 +#: src/view/screens/Settings/index.tsx:488 msgid "Sets dark theme to the dark theme" msgstr "Imposta il tema scuro sul tema scuro" -#: src/view/screens/Settings/index.tsx:480 +#: src/view/screens/Settings/index.tsx:481 msgid "Sets dark theme to the dim theme" msgstr "Imposta il tema scuro sul tema semi fosco" @@ -5780,9 +5913,9 @@ 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:147 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:395 +#: src/Navigation.tsx:150 +#: src/view/screens/Settings/index.tsx:333 +#: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:559 #: src/view/shell/Drawer.tsx:560 msgid "Settings" @@ -5797,13 +5930,13 @@ msgid "Sexually Suggestive" msgstr "Sessualmente suggestivo" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:340 -#: src/screens/StarterPack/StarterPackScreen.tsx:493 +#: 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/post-ctrls/PostCtrls.tsx:304 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Condividi" @@ -5823,7 +5956,7 @@ msgstr "Condividi un fatto divertente!" #: src/view/com/profile/ProfileMenu.tsx:377 #: src/view/com/util/forms/PostDropdownBtn.tsx:461 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:320 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "Condividi comunque" @@ -5834,7 +5967,7 @@ msgstr "Condividi il feed" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -5852,7 +5985,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:333 +#: src/screens/StarterPack/StarterPackScreen.tsx:393 msgid "Share this starter pack" msgstr "" @@ -5871,14 +6004,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:381 +#: src/view/screens/Settings/index.tsx:382 msgid "Show" msgstr "Mostra" #~ msgid "Show all replies" #~ msgstr "Mostra tutte le repliche" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "Mostra testo alternativo" @@ -6002,17 +6135,17 @@ msgstr "Mostra i post di {0} nel tuo feed" #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:100 #: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Login/LoginForm.tsx:177 #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.tsx:72 #: src/view/com/auth/SplashScreen.web.tsx:112 #: src/view/com/auth/SplashScreen.web.tsx:121 -#: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 #: src/view/shell/bottom-bar/BottomBar.tsx:315 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/bottom-bar/BottomBar.tsx:318 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:210 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -6046,12 +6179,12 @@ msgstr "Accedi a Bluesky o crea un nuovo account" msgid "Sign out" msgstr "Disconnetta" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 #: src/view/shell/bottom-bar/BottomBar.tsx:305 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBar.tsx:306 +#: src/view/shell/bottom-bar/BottomBar.tsx:308 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:200 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -6067,7 +6200,7 @@ msgstr "Iscriviti o accedi per partecipare alla conversazione" msgid "Sign-in Required" msgstr "È richiesta l'autenticazione" -#: src/view/screens/Settings/index.tsx:391 +#: src/view/screens/Settings/index.tsx:392 msgid "Signed in as" msgstr "Registrato/a come" @@ -6076,24 +6209,24 @@ msgstr "Registrato/a come" msgid "Signed in as @{0}" msgstr "Registrato/a come @{0}" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "signed up with your starter pack" msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "{0} esce da Bluesky" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:264 #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Salta questo passo" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:261 msgid "Skip this flow" msgstr "Salta questa corrente" @@ -6105,6 +6238,10 @@ msgstr "Salta questa corrente" msgid "Software Dev" msgstr "Sviluppo Software" +#: src/components/FeedInterstitials.tsx:378 +msgid "Some other feeds you might like" +msgstr "" + #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" @@ -6135,8 +6272,8 @@ msgstr "Qualcosa è andato male, prova di nuovo." #~ msgid "Something went wrong. Check your email and try again." #~ msgstr "Qualcosa è andato storto. Controlla la tua email e riprova." -#: src/App.native.tsx:96 -#: src/App.web.tsx:78 +#: src/App.native.tsx:98 +#: src/App.web.tsx:80 msgid "Sorry! Your session expired. Please log in again." msgstr "Scusa! La tua sessione è scaduta. Per favore accedi di nuovo." @@ -6165,7 +6302,7 @@ msgid "Spam; excessive mentions or replies" msgstr "Spam; menzioni o risposte eccessive" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:98 msgid "Sports" msgstr "Sports" @@ -6188,17 +6325,22 @@ msgstr "Avvia conversazione con {displayName}" msgid "Start chatting" msgstr "Iniza a conversare" +#: src/tours/Tooltip.tsx:99 +msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +msgstr "" + #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:328 +#: src/Navigation.tsx:333 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:65 +#: src/components/StarterPack/StarterPackCard.tsx:70 msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:614 +#: src/screens/StarterPack/StarterPackScreen.tsx:692 msgid "Starter pack is invalid" msgstr "" @@ -6213,26 +6355,26 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Pagina di stato" -#: src/view/screens/Settings/index.tsx:963 +#: src/view/screens/Settings/index.tsx:964 msgid "Status Page" msgstr "Pagina di stato" #~ msgid "Step" #~ msgstr "Passo" -#: src/screens/Signup/index.tsx:192 +#: src/screens/Signup/index.tsx:125 msgid "Step {0} of {1}" msgstr "Step {0} di {1}" #~ msgid "Step {0} of {numSteps}" #~ msgstr "Passo {0} di {numSteps}" -#: src/view/screens/Settings/index.tsx:304 +#: src/view/screens/Settings/index.tsx:305 msgid "Storage cleared, you need to restart the app now." msgstr "Spazio di archiviazione eliminato. Riavvia l'app." -#: src/Navigation.tsx:226 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:229 +#: src/view/screens/Settings/index.tsx:864 msgid "Storybook" msgstr "Cronologia" @@ -6276,6 +6418,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "Accounts da seguire" +#: src/components/FeedInterstitials.tsx:246 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Suggerito per te" @@ -6284,7 +6427,7 @@ msgstr "Suggerito per te" msgid "Suggestive" msgstr "Suggestivo" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:244 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6298,6 +6441,10 @@ msgstr "Supporto" msgid "Switch Account" msgstr "Cambia account" +#: src/tours/HomeTour.tsx:48 +msgid "Switch between feeds to control your experience." +msgstr "" + #: src/view/screens/Settings/index.tsx:160 msgid "Switch to {0}" msgstr "Cambia a {0}" @@ -6306,11 +6453,11 @@ msgstr "Cambia a {0}" 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:445 +#: src/view/screens/Settings/index.tsx:446 msgid "System" msgstr "Sistema" -#: src/view/screens/Settings/index.tsx:851 +#: src/view/screens/Settings/index.tsx:852 msgid "System log" msgstr "Registro di sistema" @@ -6326,12 +6473,24 @@ msgstr "Tag menu: {displayTag}" msgid "Tall" msgstr "Alto" +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "" + #: src/view/com/util/images/AutoSizedImage.tsx:70 msgid "Tap to view fully" msgstr "Tocca per visualizzare completamente" +#: src/state/shell/progress-guide.tsx:171 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "" + #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:99 msgid "Tech" msgstr "Tecnologia" @@ -6343,13 +6502,13 @@ msgstr "Racconta una barzalletta!" msgid "Tell us a little more" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:86 +#: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Termini" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:254 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/Settings/index.tsx:952 #: src/view/screens/TermsOfService.tsx:29 #: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" @@ -6380,12 +6539,14 @@ msgstr "Grazie. La tua segnalazione è stata inviata." msgid "That contains the following:" msgstr "Che contiene il seguente:" -#: src/screens/Signup/index.tsx:100 +#: src/screens/Signup/StepHandle.tsx:50 msgid "That handle is already taken." msgstr "Questo handle è già stato preso." -#: src/screens/StarterPack/StarterPackScreen.tsx:105 -#: src/screens/StarterPack/StarterPackScreen.tsx:106 +#: src/screens/StarterPack/StarterPackScreen.tsx:96 +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:136 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6407,7 +6568,12 @@ msgstr "Le Linee guida della community sono state spostate a<0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "La politica sul copyright è stata spostata a <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:177 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6436,7 +6602,7 @@ msgstr "Il post potrebbe essere stato cancellato." msgid "The Privacy Policy has been moved to <0/>" msgstr "La politica sulla privacy è stata spostata a <0/><0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:624 +#: src/screens/StarterPack/StarterPackScreen.tsx:702 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6497,11 +6663,11 @@ 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:126 +#: src/view/com/notifications/Feed.tsx:125 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Si è verificato un problema durante il recupero delle notifiche. Tocca qui per riprovare." -#: src/view/com/posts/Feed.tsx:299 +#: src/view/com/posts/Feed.tsx:459 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Si è verificato un problema nel recupero dei post. Tocca qui per riprovare." @@ -6700,7 +6866,7 @@ msgid "This post has been deleted." msgstr "Questo post è stato cancellato." #: src/view/com/util/forms/PostDropdownBtn.tsx:458 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:317 +#: 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." @@ -6772,12 +6938,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:594 +#: src/view/screens/Settings/index.tsx:595 msgid "Thread preferences" msgstr "Preferenze delle discussioni" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/Settings/index.tsx:605 msgid "Thread Preferences" msgstr "Preferenze delle Discussioni" @@ -6789,7 +6955,7 @@ msgstr "" msgid "Threaded Mode" msgstr "Modalità discussione" -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:287 msgid "Threads Preferences" msgstr "Preferenze per le discussioni" @@ -6843,11 +7009,11 @@ msgstr "Riprova" #~ msgid "Try again" #~ msgstr "Provalo di nuovo" -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:100 msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:745 +#: src/view/screens/Settings/index.tsx:746 msgid "Two-factor authentication" msgstr "Autenticazione a due fattori" @@ -6869,14 +7035,14 @@ msgstr "Riattiva questa lista" #: src/screens/Login/ForgotPasswordForm.tsx:74 #: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:79 +#: src/screens/Signup/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Impossibile contattare il servizio. Per favore controlla la tua connessione Internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:548 +#: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Unable to delete" msgstr "" @@ -7147,7 +7313,7 @@ msgstr "Lista aggiornata" msgid "User Lists" msgstr "Liste publiche" -#: src/screens/Login/LoginForm.tsx:177 +#: src/screens/Login/LoginForm.tsx:197 msgid "Username or email address" msgstr "Nome utente o indirizzo Email" @@ -7188,15 +7354,15 @@ msgstr "Valore:" msgid "Verify DNS Record" msgstr "Verifica record DNS" -#: src/view/screens/Settings/index.tsx:982 +#: src/view/screens/Settings/index.tsx:983 msgid "Verify email" msgstr "Verifica Email" -#: src/view/screens/Settings/index.tsx:1007 +#: src/view/screens/Settings/index.tsx:1008 msgid "Verify my email" msgstr "Verifica la mia email" -#: src/view/screens/Settings/index.tsx:1016 +#: src/view/screens/Settings/index.tsx:1017 msgid "Verify My Email" msgstr "Verifica la Mia Email" @@ -7216,7 +7382,7 @@ msgstr "Verifica la tua email" #~ msgid "Version {0}" #~ msgstr "Versione {0}" -#: src/view/screens/Settings/index.tsx:935 +#: src/view/screens/Settings/index.tsx:936 msgid "Version {appVersion} {bundleInfo}" msgstr "Versione {appVersion} {bundleInfo}" @@ -7229,7 +7395,7 @@ msgstr "Video Games" msgid "View {0}'s avatar" msgstr "Vedi l'avatar di {0}" -#: src/view/com/notifications/FeedItem.tsx:234 +#: src/view/com/notifications/FeedItem.tsx:245 msgid "View {0}'s profile" msgstr "" @@ -7278,7 +7444,7 @@ msgid "View users who like this feed" msgstr "Visualizza gli utenti a cui piace questo feed" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -7316,7 +7482,7 @@ msgstr "Non riusciamo a caricare questa conversazione" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Stimiamo {estimatedTime} prima che il tuo account sia pronto." -#: src/screens/Onboarding/StepFinished.tsx:231 +#: src/screens/Onboarding/StepFinished.tsx:239 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Speriamo di darti dei momenti dei bei momenti. Ricorda, Bluesky è:" @@ -7340,7 +7506,7 @@ msgstr "Non siamo riusciti a caricare le tue preferenze relative alla data di na msgid "We were unable to load your configured labelers at this time." msgstr "Al momento non è stato possibile caricare le etichettatori configurati." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:157 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Non siamo riusciti a connetterci. Riprova per continuare a configurare il tuo account. Se il problema persiste, puoi ignorare questo flusso." @@ -7351,7 +7517,7 @@ msgstr "Ti faremo sapere quando il tuo account sarà pronto." #~ msgid "We'll look into your appeal promptly." #~ msgstr "Esamineremo il tuo ricorso al più presto." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:162 msgid "We'll use this to help customize your experience." msgstr "Lo useremo per personalizzare la tua esperienza." @@ -7359,7 +7525,7 @@ msgstr "Lo useremo per personalizzare la tua esperienza." msgid "We're having network issues, try again" msgstr "Stiamo riscontrando problemi di rete, riprova" -#: src/screens/Signup/index.tsx:155 +#: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" msgstr "Siamo felici che tu ti unisca a noi!" @@ -7403,7 +7569,7 @@ msgstr "" msgid "Welcome, friend!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" msgstr "Quali sono i tuoi interessi?" @@ -7500,7 +7666,7 @@ msgid "Write your reply" msgstr "Scrivi la tua risposta" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:101 msgid "Writers" msgstr "Scrittori" @@ -7522,7 +7688,7 @@ msgstr "Si" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:560 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 msgid "Yes, delete this starter pack" msgstr "" @@ -7534,7 +7700,7 @@ msgstr "" msgid "Yesterday, {time}" msgstr "Ieri, {time}" -#: src/components/StarterPack/StarterPackCard.tsx:68 +#: src/components/StarterPack/StarterPackCard.tsx:73 msgid "you" msgstr "" @@ -7761,23 +7927,23 @@ msgstr "" msgid "You: {short}" msgstr "" -#: src/screens/Signup/index.tsx:169 +#: src/screens/Signup/index.tsx:102 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:174 +#: 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:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "You'll stay updated with these feeds" msgstr "" @@ -7796,7 +7962,7 @@ msgstr "Sei in fila" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:228 +#: src/screens/Onboarding/StepFinished.tsx:236 msgid "You're ready to go!" msgstr "Sei pronto per iniziare!" @@ -7809,7 +7975,7 @@ msgstr "Hai scelto di nascondere una parola o un tag in questo post." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Hai raggiunto la fine del tuo feed! Trova altri account da seguire." -#: src/screens/Signup/index.tsx:202 +#: src/screens/Signup/index.tsx:135 msgid "Your account" msgstr "Il tuo account" @@ -7821,7 +7987,7 @@ msgstr "Il tuo account è stato eliminato" msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "L'archivio del tuo account, che contiene tutti i record di dati pubblici, può essere scaricato come file \"CAR\". Questo file non include elementi multimediali incorporati, come immagini o dati privati, che devono essere recuperati separatamente." -#: src/screens/Signup/StepInfo/index.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" msgstr "La tua data di nascita" @@ -7838,7 +8004,8 @@ msgstr "La tua scelta verrà salvata, ma potrà essere modificata successivament #~ msgstr "Il tuo feed predefinito è \"Following\"" #: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Your email appears to be invalid." @@ -7854,11 +8021,15 @@ msgstr "La tua email è stata aggiornata ma non verificata. Come passo successiv msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "La tua email non è stata ancora verificata. Ti consigliamo di fare questo importante passo per la sicurezza del tuo account." +#: src/state/shell/progress-guide.tsx:161 +msgid "Your first like!" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Il tuo feed seguente è vuoto! Segui più utenti per vedere cosa sta succedendo." -#: src/screens/Signup/StepHandle.tsx:73 +#: src/screens/Signup/StepHandle.tsx:122 msgid "Your full handle will be" msgstr "Il tuo nome di utente completo sarà" @@ -7884,7 +8055,7 @@ msgstr "La tua password è stata modificata correttamente!" msgid "Your post has been published" msgstr "Il tuo post è stato pubblicato" -#: src/screens/Onboarding/StepFinished.tsx:243 +#: src/screens/Onboarding/StepFinished.tsx:251 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." @@ -7904,6 +8075,6 @@ msgstr "La tua risposta è stata pubblicata" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "La tua segnalazione verrà inviata al Servizio Moderazione di Bluesky" -#: src/screens/Signup/index.tsx:204 +#: src/screens/Signup/index.tsx:137 msgid "Your user handle" msgstr "Il tuo handle utente" diff --git a/src/locale/locales/ja/messages.po b/src/locale/locales/ja/messages.po index 3b97ab285e..98b3148382 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:283 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, other {他{formattedCount}人}}" @@ -47,7 +47,7 @@ msgstr "{0, plural, other {フォロワー}}" msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, other {フォロー中}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:259 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, other {いいね(#個のいいね)}}" @@ -55,7 +55,7 @@ msgstr "{0, plural, other {いいね(#個のいいね)}}" msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, other {いいね}}" -#: src/components/FeedCard.tsx:216 +#: 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, other {#人のユーザーがいいね}}" @@ -64,7 +64,7 @@ msgstr "{0, plural, other {#人のユーザーがいいね}}" msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, other {投稿}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:217 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, other {返信(#件の返信)}}" @@ -72,15 +72,15 @@ msgstr "{0, plural, other {返信(#件の返信)}}" msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, other {リポスト}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:262 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, other {いいねを外す(#個のいいね)}}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" msgstr "今週、{0}人が参加しました" -#: src/screens/StarterPack/StarterPackScreen.tsx:378 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" 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:503 +#: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} フォロー" @@ -205,7 +205,7 @@ msgstr "<0>あなたと<1><2>{0}はあなたのスターターパッ msgid "⚠Invalid Handle" msgstr "⚠無効なハンドル" -#: src/screens/Login/LoginForm.tsx:247 +#: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" msgstr "2要素認証の確認" @@ -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:518 +#: src/view/screens/Settings/index.tsx:519 msgid "Accessibility" msgstr "アクセシビリティ" -#: src/view/screens/Settings/index.tsx:509 +#: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" msgstr "アクセシビリティの設定" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "アクセシビリティの設定" -#: src/screens/Login/LoginForm.tsx:170 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:190 +#: src/view/screens/Settings/index.tsx:346 +#: src/view/screens/Settings/index.tsx:753 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:422 -#: src/view/screens/Settings/index.tsx:431 +#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:432 msgid "Add account" msgstr "アカウントを追加" @@ -353,7 +353,7 @@ msgstr "フォローしているユーザーのみのデフォルトのフィー msgid "Add the following DNS record to your domain:" msgstr "次のDNSレコードをドメインに追加してください:" -#: src/components/FeedCard.tsx:305 +#: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" msgstr "このフィードをあなたのフィードに追加する" @@ -393,19 +393,19 @@ msgid "Adult content is disabled." msgstr "成人向けコンテンツは無効になっています。" #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Advanced" msgstr "高度な設定" -#: src/state/shell/progress-guide.tsx:177 +#: src/state/shell/progress-guide.tsx:176 msgid "Algorithm training complete!" msgstr "アルゴリズムのトレーニング完了!" -#: src/screens/StarterPack/StarterPackScreen.tsx:301 +#: src/screens/StarterPack/StarterPackScreen.tsx:360 msgid "All accounts have been followed!" msgstr "すべてのアカウントをフォローしました!" -#: src/view/screens/Feeds.tsx:721 +#: src/view/screens/Feeds.tsx:734 msgid "All the feeds you've saved, right in one place." msgstr "保存したすべてのフィードを1箇所にまとめます。" @@ -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:177 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 msgid "ALT" msgstr "ALT" @@ -440,7 +440,7 @@ msgstr "ALT" msgid "Alt text" msgstr "ALTテキスト" -#: src/view/com/util/post-embeds/GifEmbed.tsx:183 +#: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" msgstr "ALTテキスト" @@ -470,7 +470,7 @@ msgstr "スターターパックの生成中にエラーが発生しました。 msgid "An error occurred while saving the QR code!" msgstr "QRコードの保存中にエラーが発生しました!" -#: src/screens/StarterPack/StarterPackScreen.tsx:303 +#: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" msgstr "すべてフォローしようとしたらエラーが発生しました" @@ -480,6 +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/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -487,12 +489,12 @@ msgstr "ほかの選択肢にはあてはまらない問題" msgid "An issue occurred, please try again." msgstr "問題が発生しました。もう一度お試しください。" -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" msgstr "何らかのエラーが発生しました" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:280 +#: src/view/com/notifications/FeedItem.tsx:291 msgid "and" msgstr "および" @@ -501,7 +503,7 @@ msgstr "および" msgid "Animals" msgstr "動物" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" msgstr "アニメーションGIF" @@ -525,13 +527,13 @@ msgstr "アプリパスワードの名前には、英数字、スペース、ハ msgid "App Password names must be at least 4 characters long." msgstr "アプリパスワードの名前は長さが4文字以上である必要があります。" -#: src/view/screens/Settings/index.tsx:697 +#: src/view/screens/Settings/index.tsx:698 msgid "App password settings" msgstr "アプリパスワードの設定" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:269 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/view/screens/Settings/index.tsx:707 msgid "App Passwords" msgstr "アプリパスワード" @@ -556,7 +558,7 @@ msgstr "異議申し立てを提出しました" msgid "Appeal this decision" msgstr "この決定に異議を申し立てる" -#: src/view/screens/Settings/index.tsx:439 +#: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "背景" @@ -565,7 +567,7 @@ msgstr "背景" msgid "Apply default recommended feeds" msgstr "デフォルトのおすすめフィードを追加" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Are you sure you want delete this starter pack?" msgstr "このスターターパックを本当に削除したいですか?" @@ -585,7 +587,7 @@ msgstr "この会話から退出しますか?あなたのメッセージはあ msgid "Are you sure you want to remove {0} from your feeds?" msgstr "あなたのフィードから{0}を削除してもよろしいですか?" -#: src/components/FeedCard.tsx:322 +#: src/components/FeedCard.tsx:306 msgid "Are you sure you want to remove this from your feeds?" msgstr "本当にこのフィードをあなたのフィードから削除したいですか?" @@ -610,7 +612,7 @@ msgstr "アート" msgid "Artistic or non-erotic nudity." msgstr "芸術的または性的ではないヌード。" -#: src/screens/Signup/StepHandle.tsx:119 +#: src/screens/Signup/StepHandle.tsx:170 msgid "At least 3 characters" msgstr "少なくとも3文字" @@ -621,20 +623,21 @@ msgstr "少なくとも3文字" #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:278 -#: src/screens/Login/LoginForm.tsx:284 +#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:304 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/index.tsx:231 +#: 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:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "基本" @@ -642,7 +645,7 @@ msgstr "基本" msgid "Birthday" msgstr "生年月日" -#: src/view/screens/Settings/index.tsx:377 +#: src/view/screens/Settings/index.tsx:378 msgid "Birthday:" msgstr "生年月日:" @@ -686,7 +689,7 @@ msgstr "ブロックされています" msgid "Blocked accounts" msgstr "ブロック中のアカウント" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:145 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "ブロック中のアカウント" @@ -753,21 +756,21 @@ msgstr "画像のぼかしとフィードからのフィルタリング" msgid "Books" msgstr "書籍" -#: src/components/FeedInterstitials.tsx:206 +#: src/components/FeedInterstitials.tsx:281 msgid "Browse more accounts on the Explore page" msgstr "検索ページでさらにアカウントを見る" -#: src/components/FeedInterstitials.tsx:332 +#: src/components/FeedInterstitials.tsx:411 msgid "Browse more feeds on the Explore page" msgstr "検索ページでさらにフィードを見る" -#: src/components/FeedInterstitials.tsx:195 -#: src/components/FeedInterstitials.tsx:321 +#: src/components/FeedInterstitials.tsx:266 +#: src/components/FeedInterstitials.tsx:396 msgid "Browse more suggestions" msgstr "さらにおすすめを見る" -#: src/components/FeedInterstitials.tsx:214 -#: src/components/FeedInterstitials.tsx:341 +#: src/components/FeedInterstitials.tsx:289 +#: src/components/FeedInterstitials.tsx:420 msgid "Browse more suggestions on the Explore page" msgstr "検索ページでさらにおすすめを見る" @@ -881,17 +884,17 @@ msgstr "リンク先のウェブサイトを開くことをキャンセル" msgid "Change" msgstr "変更" -#: src/view/screens/Settings/index.tsx:371 +#: src/view/screens/Settings/index.tsx:372 msgctxt "action" msgid "Change" msgstr "変更" -#: src/view/screens/Settings/index.tsx:718 +#: src/view/screens/Settings/index.tsx:719 msgid "Change handle" msgstr "ハンドルを変更" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change Handle" msgstr "ハンドルを変更" @@ -899,12 +902,12 @@ msgstr "ハンドルを変更" msgid "Change my email" msgstr "メールアドレスを変更" -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/index.tsx:764 msgid "Change password" msgstr "パスワードを変更" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Change Password" msgstr "パスワードを変更" @@ -916,9 +919,9 @@ msgstr "投稿の言語を{0}に変更します" msgid "Change Your Email" msgstr "メールアドレスを変更" -#: src/Navigation.tsx:310 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:313 +#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" msgstr "チャット" @@ -928,14 +931,14 @@ msgstr "チャットをミュートしました" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:318 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" msgstr "チャットの設定" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" msgstr "チャットの設定" @@ -948,7 +951,7 @@ msgstr "チャットのミュートを解除しました" msgid "Check my status" msgstr "ステータスを確認" -#: src/screens/Login/LoginForm.tsx:271 +#: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." msgstr "確認コードが記載されたメールを確認し、ここに入力してください。" @@ -980,7 +983,7 @@ msgstr "ユーザーの選択" msgid "Choose Service" msgstr "サービスを選択" -#: src/screens/Onboarding/StepFinished.tsx:273 +#: src/screens/Onboarding/StepFinished.tsx:281 msgid "Choose the algorithms that power your custom feeds." msgstr "カスタムフィードのアルゴリズムを選択できます。" @@ -993,23 +996,23 @@ msgstr "この色をアバターとして選択" msgid "Choose who can reply" msgstr "誰が返信できるかを選択" -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" msgstr "パスワードを入力" -#: src/view/screens/Settings/index.tsx:910 +#: src/view/screens/Settings/index.tsx:911 msgid "Clear all legacy storage data" msgstr "レガシーストレージデータをすべてクリア" -#: src/view/screens/Settings/index.tsx:913 +#: src/view/screens/Settings/index.tsx:914 msgid "Clear all legacy storage data (restart after this)" msgstr "すべてのレガシーストレージデータをクリア(このあと再起動します)" -#: src/view/screens/Settings/index.tsx:922 +#: src/view/screens/Settings/index.tsx:923 msgid "Clear all storage data" msgstr "すべてのストレージデータをクリア" -#: src/view/screens/Settings/index.tsx:925 +#: src/view/screens/Settings/index.tsx:926 msgid "Clear all storage data (restart after this)" msgstr "すべてのストレージデータをクリア(このあと再起動します)" @@ -1018,11 +1021,11 @@ msgstr "すべてのストレージデータをクリア(このあと再起動 msgid "Clear search query" msgstr "検索クエリをクリア" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" msgstr "すべてのレガシーストレージデータをクリア" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" msgstr "すべてのストレージデータをクリア" @@ -1063,7 +1066,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:189 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "Close" msgstr "閉じる" @@ -1126,11 +1129,11 @@ msgstr "投稿の編集画面を閉じて下書きを削除する" msgid "Closes viewer for header image" msgstr "ヘッダー画像のビューワーを閉じる" -#: src/view/com/notifications/FeedItem.tsx:226 +#: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" msgstr "ユーザーリストを折りたたむ" -#: src/view/com/notifications/FeedItem.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:437 msgid "Collapses list of users for a given notification" msgstr "指定した通知のユーザーリストを折りたたむ" @@ -1144,16 +1147,16 @@ msgstr "コメディー" msgid "Comics" msgstr "漫画" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:259 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "コミュニティーガイドライン" -#: src/screens/Onboarding/StepFinished.tsx:286 +#: src/screens/Onboarding/StepFinished.tsx:294 msgid "Complete onboarding and start using your account" msgstr "初期設定を完了してアカウントを使い始める" -#: src/screens/Signup/index.tsx:206 +#: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" msgstr "テストをクリアしてください" @@ -1206,7 +1209,7 @@ msgstr "年齢の確認:" msgid "Confirm your birthdate" msgstr "生年月日の確認" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:272 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 @@ -1216,11 +1219,11 @@ msgstr "生年月日の確認" msgid "Confirmation code" msgstr "確認コード" -#: src/screens/Login/LoginForm.tsx:305 +#: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." msgstr "接続中…" -#: src/screens/Signup/index.tsx:276 +#: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "サポートに連絡" @@ -1257,7 +1260,7 @@ msgstr "コンテンツの警告" msgid "Context menu backdrop, click to close the menu." msgstr "コンテキストメニューの背景をクリックし、メニューを閉じる。" -#: src/screens/Onboarding/StepInterests/index.tsx:258 +#: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "続行" @@ -1270,9 +1273,9 @@ msgstr "{0}として続行(現在サインイン中)" msgid "Continue thread..." msgstr "スレッドの続き…" -#: src/screens/Onboarding/StepInterests/index.tsx:255 +#: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/index.tsx:251 +#: src/screens/Signup/BackNextButtons.tsx:59 msgid "Continue to next step" msgstr "次のステップへ進む" @@ -1289,7 +1292,7 @@ msgstr "料理" msgid "Copied" msgstr "コピーしました" -#: src/view/screens/Settings/index.tsx:263 +#: src/view/screens/Settings/index.tsx:264 msgid "Copied build version to clipboard" msgstr "ビルドバージョンをクリップボードにコピーしました" @@ -1298,7 +1301,7 @@ msgstr "ビルドバージョンをクリップボードにコピーしました #: 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/post-ctrls/PostCtrls.tsx:350 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "クリップボードにコピーしました" @@ -1355,7 +1358,7 @@ msgstr "投稿のテキストをコピー" msgid "Copy QR code" msgstr "QRコードをコピー" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "著作権ポリシー" @@ -1385,7 +1388,7 @@ msgstr "作成" msgid "Create a new account" msgstr "新しいアカウントを作成" -#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" msgstr "新しいBlueskyアカウントを作成" @@ -1395,7 +1398,7 @@ msgstr "スターターパックのQRコードを作成" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:338 msgid "Create a starter pack" msgstr "スターターパックを作成" @@ -1403,7 +1406,7 @@ msgstr "スターターパックを作成" msgid "Create a starter pack for me" msgstr "私向けのスターターパックを作成" -#: src/screens/Signup/index.tsx:154 +#: src/screens/Signup/index.tsx:88 msgid "Create Account" msgstr "アカウントを作成" @@ -1451,7 +1454,7 @@ msgstr "カスタム" msgid "Custom domain" msgstr "カスタムドメイン" -#: src/view/screens/Feeds.tsx:747 +#: src/view/screens/Feeds.tsx:760 #: src/view/screens/Search/Explore.tsx:390 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "コミュニティーによって作成されたカスタムフィードは、あなたに新しい体験をもたらし、あなたが好きなコンテンツを見つけるのに役立ちます。" @@ -1460,8 +1463,8 @@ msgstr "コミュニティーによって作成されたカスタムフィード msgid "Customize media from external sites." msgstr "外部サイトのメディアをカスタマイズします。" -#: src/view/screens/Settings/index.tsx:458 -#: src/view/screens/Settings/index.tsx:484 +#: src/view/screens/Settings/index.tsx:459 +#: src/view/screens/Settings/index.tsx:485 msgid "Dark" msgstr "ダーク" @@ -1469,24 +1472,24 @@ msgstr "ダーク" msgid "Dark mode" msgstr "ダークモード" -#: src/view/screens/Settings/index.tsx:471 +#: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" msgstr "ダークテーマ" -#: src/screens/Signup/StepInfo/index.tsx:134 +#: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" msgstr "生年月日" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" msgstr "アカウントを無効化" -#: src/view/screens/Settings/index.tsx:818 +#: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" msgstr "アカウントを無効化" -#: src/view/screens/Settings/index.tsx:873 +#: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" msgstr "モデレーションをデバッグ" @@ -1495,16 +1498,16 @@ msgid "Debug panel" msgstr "デバッグパネル" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:484 -#: src/screens/StarterPack/StarterPackScreen.tsx:563 -#: src/screens/StarterPack/StarterPackScreen.tsx:643 +#: 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/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "削除" -#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:829 msgid "Delete account" msgstr "アカウントを削除" @@ -1520,8 +1523,8 @@ msgstr "アプリパスワードを削除" msgid "Delete app password?" msgstr "アプリパスワードを削除しますか?" -#: src/view/screens/Settings/index.tsx:890 -#: src/view/screens/Settings/index.tsx:893 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" msgstr "チャットの宣言レコードを削除" @@ -1545,7 +1548,7 @@ msgstr "メッセージの宛先から自分を削除" msgid "Delete my account" msgstr "アカウントを削除" -#: src/view/screens/Settings/index.tsx:840 +#: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" msgstr "アカウントを削除…" @@ -1554,12 +1557,12 @@ msgstr "アカウントを削除…" msgid "Delete post" msgstr "投稿を削除" -#: src/screens/StarterPack/StarterPackScreen.tsx:478 -#: src/screens/StarterPack/StarterPackScreen.tsx:634 +#: src/screens/StarterPack/StarterPackScreen.tsx:556 +#: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" msgstr "スターターパックを削除" -#: src/screens/StarterPack/StarterPackScreen.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" msgstr "スターターパックを削除しますか?" @@ -1579,7 +1582,7 @@ msgstr "削除されています" msgid "Deleted post." msgstr "投稿を削除しました。" -#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" msgstr "チャットの宣言レコードを削除する" @@ -1598,7 +1601,7 @@ msgstr "説明的なALTテキスト" msgid "Did you want to say anything?" msgstr "なにか言いたいことはあった?" -#: src/view/screens/Settings/index.tsx:477 +#: src/view/screens/Settings/index.tsx:478 msgid "Dim" msgstr "グレー" @@ -1653,7 +1656,7 @@ msgstr "新しいカスタムフィードを見つける" msgid "Discover new feeds" msgstr "新しいフィードを探す" -#: src/view/screens/Feeds.tsx:744 +#: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" msgstr "新しいフィードを探す" @@ -1681,7 +1684,7 @@ msgstr "DNSパネルがある場合" msgid "Does not include nudity." msgstr "ヌードは含まれません。" -#: src/screens/Signup/StepHandle.tsx:105 +#: src/screens/Signup/StepHandle.tsx:156 msgid "Doesn't begin or end with a hyphen" msgstr "ハイフンで始まったり終ったりしない" @@ -1726,7 +1729,7 @@ msgstr "完了" msgid "Done{extraText}" msgstr "完了{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" msgstr "Blueskyをダウンロード" @@ -1735,7 +1738,7 @@ msgstr "Blueskyをダウンロード" msgid "Download CAR file" msgstr "CARファイルをダウンロード" -#: src/view/com/composer/text-input/TextInput.web.tsx:272 +#: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" msgstr "ドロップして画像を追加する" @@ -1779,11 +1782,11 @@ msgstr "例:返信として広告を繰り返し送ってくるユーザー。 msgid "Each code works once. You'll receive more invite codes periodically." msgstr "それぞれのコードは一回限り有効です。定期的に追加の招待コードをお送りします。" -#: src/screens/StarterPack/StarterPackScreen.tsx:473 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "編集" @@ -1814,9 +1817,9 @@ msgstr "リストの詳細を編集" msgid "Edit Moderation List" msgstr "モデレーションリストを編集" -#: src/Navigation.tsx:271 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 +#: src/Navigation.tsx:274 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "マイフィードを編集" @@ -1839,7 +1842,7 @@ msgstr "プロフィールを編集" msgid "Edit Profile" msgstr "プロフィールを編集" -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" msgstr "スターターパックを編集" @@ -1859,7 +1862,7 @@ msgstr "あなたの表示名を編集します" msgid "Edit your profile description" msgstr "あなたのプロフィールの説明を編集します" -#: src/Navigation.tsx:335 +#: src/Navigation.tsx:343 msgid "Edit your starter pack" msgstr "スターターパックを編集" @@ -1872,7 +1875,7 @@ msgstr "教育" msgid "Either choose \"Everybody\" or \"Nobody\"" msgstr "「全員」か「返信不可」を選択" -#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "メールアドレス" @@ -1898,7 +1901,7 @@ msgstr "メールアドレスは更新されました" msgid "Email verified" msgstr "メールアドレスは認証されました" -#: src/view/screens/Settings/index.tsx:349 +#: src/view/screens/Settings/index.tsx:350 msgid "Email:" msgstr "メールアドレス:" @@ -1989,7 +1992,7 @@ msgid "Enter your birth date" msgstr "生年月日を入力してください" #: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:92 +#: src/screens/Signup/StepInfo/index.tsx:152 msgid "Enter your email address" msgstr "メールアドレスを入力してください" @@ -2009,11 +2012,11 @@ msgstr "ユーザー名とパスワードを入力してください" msgid "Error occurred while saving file" msgstr "ファイルの保存中にエラーが発生しました" -#: src/screens/Signup/StepCaptcha/index.tsx:51 +#: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." msgstr "Captchaレスポンスの受信中にエラーが発生しました。" -#: src/screens/Onboarding/StepInterests/index.tsx:197 +#: src/screens/Onboarding/StepInterests/index.tsx:216 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "エラー:" @@ -2068,7 +2071,7 @@ msgstr "検索クエリの入力を終了" msgid "Expand alt text" msgstr "ALTテキストを展開" -#: src/view/com/notifications/FeedItem.tsx:227 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" msgstr "ユーザーリストを展開" @@ -2085,12 +2088,12 @@ msgstr "露骨な、または不愉快になる可能性のあるメディア。 msgid "Explicit sexual images." msgstr "露骨な性的画像。" -#: src/view/screens/Settings/index.tsx:786 +#: src/view/screens/Settings/index.tsx:787 msgid "Export my data" msgstr "私のデータをエクスポートする" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:797 +#: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" msgstr "私のデータをエクスポートする" @@ -2104,13 +2107,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:290 +#: src/Navigation.tsx:293 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/view/screens/Settings/index.tsx:680 msgid "External Media Preferences" msgstr "外部メディアの設定" -#: src/view/screens/Settings/index.tsx:670 +#: src/view/screens/Settings/index.tsx:671 msgid "External media settings" msgstr "外部メディアの設定" @@ -2136,7 +2139,7 @@ msgstr "メッセージの削除に失敗しました" msgid "Failed to delete post, please try again" msgstr "投稿の削除に失敗しました。もう一度お試しください。" -#: src/screens/StarterPack/StarterPackScreen.tsx:597 +#: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" msgstr "スターターパックの削除に失敗しました" @@ -2180,7 +2183,7 @@ msgstr "異議申し立ての送信に失敗しました。再度試してくだ msgid "Failed to toggle thread mute, please try again" msgstr "スレッドのミュートの切り替えに失敗しました。再度試してください" -#: src/components/FeedCard.tsx:285 +#: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" msgstr "フィードの更新に失敗しました" @@ -2189,11 +2192,11 @@ msgstr "フィードの更新に失敗しました" msgid "Failed to update settings" msgstr "設定の更新に失敗しました" -#: src/Navigation.tsx:211 +#: src/Navigation.tsx:214 msgid "Feed" msgstr "フィード" -#: src/components/FeedCard.tsx:161 +#: src/components/FeedCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "{0}によるフィード" @@ -2202,17 +2205,18 @@ msgstr "{0}によるフィード" msgid "Feed toggle" msgstr "フィードの切替" -#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "フィードバック" -#: src/Navigation.tsx:320 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 +#: src/Navigation.tsx:323 +#: 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:373 +#: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" @@ -2222,7 +2226,7 @@ msgstr "フィード" msgid "Feeds are custom algorithms that users build with a little coding expertise. <0/> for more information." msgstr "フィードはユーザーがプログラミングの専門知識を持って構築するカスタムアルゴリズムです。詳細については、<0/>を参照してください。" -#: src/components/FeedCard.tsx:282 +#: src/components/FeedCard.tsx:266 msgid "Feeds updated!" msgstr "フィードを更新しました!" @@ -2238,7 +2242,7 @@ msgstr "ファイルの保存に成功しました!" msgid "Filter from feeds" msgstr "フィードからのフィルター" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 msgid "Finalizing" msgstr "最後に" @@ -2276,7 +2280,7 @@ msgstr "ツアーを終了してアプリを使用開始" msgid "Fitness" msgstr "フィットネス" -#: src/screens/Onboarding/StepFinished.tsx:269 +#: src/screens/Onboarding/StepFinished.tsx:277 msgid "Flexible" msgstr "柔軟です" @@ -2290,6 +2294,7 @@ msgid "Flip vertically" msgstr "垂直方向に反転" #. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:341 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2321,8 +2326,8 @@ msgstr "7アカウントをフォロー" msgid "Follow Account" msgstr "アカウントをフォロー" -#: src/screens/StarterPack/StarterPackScreen.tsx:345 -#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:405 +#: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" msgstr "すべてフォロー" @@ -2334,7 +2339,7 @@ msgstr "フォローバック" msgid "Follow more accounts to get connected to your interests and build your network." msgstr "もっとたくさんのアカウントをフォローして、興味あることにつながり、ネットワークを広げましょう。" -#: src/view/com/profile/ProfileCard.tsx:227 +#: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" msgstr "{0}がフォロー中" @@ -2362,7 +2367,7 @@ msgstr "自分がフォローしているユーザー" msgid "Followed users only" msgstr "自分がフォローしているユーザーのみ" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:197 msgid "followed you" msgstr "があなたをフォローしました" @@ -2375,7 +2380,7 @@ msgstr "があなたをフォローバックしました" msgid "Followers" msgstr "フォロワー" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" msgstr "あなたが知っている@{0}のフォロワー" @@ -2385,17 +2390,19 @@ msgid "Followers you know" msgstr "あなたが知っているフォロワー" #. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:335 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:630 +#: src/view/screens/Feeds.tsx:631 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "フォロー中" +#: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "{0}をフォローしています" @@ -2404,13 +2411,13 @@ msgstr "{0}をフォローしています" msgid "Following {name}" msgstr "{name}をフォローしています" -#: src/view/screens/Settings/index.tsx:573 +#: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" msgstr "Followingフィードの設定" -#: src/Navigation.tsx:277 +#: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "Following Feed Preferences" msgstr "Followingフィードの設定" @@ -2422,7 +2429,7 @@ msgstr "Followingはフォローしてるユーザーの最新の投稿を表示 msgid "Follows you" msgstr "あなたをフォロー" -#: src/view/com/profile/ProfileCard.tsx:152 +#: src/components/Pills.tsx:165 msgid "Follows You" msgstr "あなたをフォロー" @@ -2444,11 +2451,11 @@ msgstr "セキュリティ上の理由から、これを再度表示すること msgid "Forgot Password" msgstr "パスワードを忘れた" -#: src/screens/Login/LoginForm.tsx:227 +#: src/screens/Login/LoginForm.tsx:246 msgid "Forgot password?" msgstr "パスワードを忘れた?" -#: src/screens/Login/LoginForm.tsx:238 +#: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" msgstr "忘れた?" @@ -2500,19 +2507,19 @@ msgstr "法律または利用規約への明らかな違反" #: src/components/moderation/ScreenHider.tsx:151 #: src/components/moderation/ScreenHider.tsx:160 -#: src/view/com/auth/LoggedOut.tsx:78 -#: src/view/com/auth/LoggedOut.tsx:79 +#: src/view/com/auth/LoggedOut.tsx:80 +#: src/view/com/auth/LoggedOut.tsx:81 #: src/view/screens/NotFound.tsx:55 #: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "戻る" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:656 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 @@ -2528,7 +2535,7 @@ msgstr "前の画面に戻る" #: src/components/ReportDialog/SubmitView.tsx:104 #: src/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:225 +#: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" msgstr "前のステップに戻る" @@ -2569,7 +2576,7 @@ msgstr "ユーザーのプロフィールへ移動" msgid "Graphic Media" msgstr "生々しいメディア" -#: src/state/shell/progress-guide.tsx:167 +#: src/state/shell/progress-guide.tsx:166 msgid "Half way there!" msgstr "半分まで来ました!" @@ -2585,19 +2592,19 @@ msgstr "触覚フィードバック" msgid "Harassment, trolling, or intolerance" msgstr "嫌がらせ、荒らし、不寛容" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:308 msgid "Hashtag" msgstr "ハッシュタグ" -#: src/components/RichText.tsx:216 +#: src/components/RichText.tsx:218 msgid "Hashtag: #{tag}" msgstr "ハッシュタグ:#{tag}" -#: src/screens/Signup/index.tsx:272 +#: src/screens/Signup/index.tsx:167 msgid "Having trouble?" msgstr "なにか問題が発生しましたか?" -#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/desktop/RightNav.tsx:99 #: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "ヘルプ" @@ -2621,7 +2628,7 @@ msgstr "アプリパスワードをお知らせします。" msgid "Hide" msgstr "非表示" -#: src/view/com/notifications/FeedItem.tsx:433 +#: src/view/com/notifications/FeedItem.tsx:444 msgctxt "action" msgid "Hide" msgstr "非表示" @@ -2640,7 +2647,7 @@ msgstr "コンテンツを非表示" msgid "Hide this post?" msgstr "この投稿を非表示にしますか?" -#: src/view/com/notifications/FeedItem.tsx:424 +#: src/view/com/notifications/FeedItem.tsx:435 msgid "Hide user list" msgstr "ユーザーリストを非表示" @@ -2672,10 +2679,10 @@ msgstr "このデータの読み込みに問題があるようです。詳細は msgid "Hmmmm, we couldn't load that moderation service." msgstr "そのモデレーションサービスを読み込めませんでした。" -#: src/Navigation.tsx:511 -#: src/Navigation.tsx:531 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: src/Navigation.tsx:519 +#: src/Navigation.tsx:539 +#: 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 msgid "Home" @@ -2686,8 +2693,8 @@ msgid "Host:" msgstr "ホスト:" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:160 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:180 +#: src/screens/Signup/StepInfo/index.tsx:106 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "ホスティングプロバイダー" @@ -2787,15 +2794,15 @@ msgstr "新しいパスワードを入力" msgid "Input password for account deletion" msgstr "アカウント削除のためにパスワードを入力" -#: src/screens/Login/LoginForm.tsx:266 +#: src/screens/Login/LoginForm.tsx:286 msgid "Input the code which has been emailed to you" msgstr "メールで送られたコードを入力" -#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Login/LoginForm.tsx:215 msgid "Input the username or email address you used at signup" msgstr "サインアップ時に使用したユーザー名またはメールアドレスを入力" -#: src/screens/Login/LoginForm.tsx:220 +#: src/screens/Login/LoginForm.tsx:241 msgid "Input your password" msgstr "あなたのパスワードを入力" @@ -2803,7 +2810,7 @@ msgstr "あなたのパスワードを入力" msgid "Input your preferred hosting provider" msgstr "ご希望のホスティングプロバイダーを入力" -#: src/screens/Signup/StepHandle.tsx:63 +#: src/screens/Signup/StepHandle.tsx:111 msgid "Input your user handle" msgstr "あなたのユーザーハンドルを入力" @@ -2811,7 +2818,7 @@ msgstr "あなたのユーザーハンドルを入力" msgid "Introducing Direct Messages" msgstr "ダイレクトメッセージの紹介" -#: src/screens/Login/LoginForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:140 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "無効な2要素認証の確認コードです。" @@ -2820,7 +2827,7 @@ msgstr "無効な2要素認証の確認コードです。" msgid "Invalid or unsupported post record" msgstr "無効またはサポートされていない投稿のレコード" -#: src/screens/Login/LoginForm.tsx:140 +#: src/screens/Login/LoginForm.tsx:145 msgid "Invalid username or password" msgstr "無効なユーザー名またはパスワード" @@ -2828,11 +2835,11 @@ msgstr "無効なユーザー名またはパスワード" msgid "Invite a Friend" msgstr "友達を招待" -#: src/screens/Signup/StepInfo/index.tsx:58 +#: src/screens/Signup/StepInfo/index.tsx:124 msgid "Invite code" msgstr "招待コード" -#: src/screens/Signup/state.ts:275 +#: src/screens/Signup/state.ts:251 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "招待コードが確認できません。正しく入力されていることを確認し、もう一度実行してください。" @@ -2864,8 +2871,10 @@ msgstr "今はあなただけ!上で検索してスターターパックによ msgid "Jobs" msgstr "仕事" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackScreen.tsx:432 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" msgstr "Blueskyに参加" @@ -2906,16 +2915,16 @@ msgstr "あなたのコンテンツのラベル" msgid "Language selection" msgstr "言語の選択" -#: src/view/screens/Settings/index.tsx:530 +#: src/view/screens/Settings/index.tsx:531 msgid "Language settings" msgstr "言語の設定" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:155 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "言語の設定" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Languages" msgstr "言語" @@ -2975,7 +2984,7 @@ msgstr "Blueskyから離れる" msgid "left to go." msgstr "あと少しです。" -#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:309 msgid "Legacy storage cleared, you need to restart the app now." msgstr "レガシーストレージがクリアされたため、今すぐアプリを再起動する必要があります。" @@ -2988,11 +2997,12 @@ msgstr "選ばせて" msgid "Let's get your password reset!" msgstr "パスワードをリセットしましょう!" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 +#: src/tours/Tooltip.tsx:151 msgid "Let's go!" msgstr "さあ始めましょう!" -#: src/view/screens/Settings/index.tsx:452 +#: src/view/screens/Settings/index.tsx:453 msgid "Light" msgstr "ライト" @@ -3000,8 +3010,8 @@ msgstr "ライト" msgid "Like 10 posts" msgstr "10投稿をいいね" -#: src/state/shell/progress-guide.tsx:163 -#: src/state/shell/progress-guide.tsx:168 +#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:167 msgid "Like 10 posts to train the Discover feed" msgstr "Discoverフィードを訓練するために10投稿をいいねする" @@ -3011,8 +3021,8 @@ msgid "Like this feed" msgstr "このフィードをいいね" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:216 -#: src/Navigation.tsx:221 +#: src/Navigation.tsx:219 +#: src/Navigation.tsx:224 msgid "Liked by" msgstr "いいねしたユーザー" @@ -3022,11 +3032,11 @@ msgstr "いいねしたユーザー" msgid "Liked By" msgstr "いいねしたユーザー" -#: src/view/com/notifications/FeedItem.tsx:190 +#: src/view/com/notifications/FeedItem.tsx:201 msgid "liked your custom feed" msgstr "があなたのカスタムフィードをいいねしました" -#: src/view/com/notifications/FeedItem.tsx:182 +#: src/view/com/notifications/FeedItem.tsx:185 msgid "liked your post" msgstr "があなたの投稿をいいねしました" @@ -3038,7 +3048,7 @@ msgstr "いいね" msgid "Likes on this post" msgstr "この投稿をいいねする" -#: src/Navigation.tsx:185 +#: src/Navigation.tsx:188 msgid "List" msgstr "リスト" @@ -3050,7 +3060,7 @@ msgstr "リストのアバター" msgid "List blocked" msgstr "リストをブロックしました" -#: src/components/FeedCard.tsx:155 +#: src/components/ListCard.tsx:113 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "{0}によるリスト" @@ -3075,10 +3085,10 @@ msgstr "リストのブロックを解除しました" msgid "List unmuted" msgstr "リストのミュートを解除しました" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:125 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/desktop/LeftNav.tsx:385 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 msgid "Lists" @@ -3115,7 +3125,7 @@ msgstr "最新の投稿を読み込む" msgid "Loading..." msgstr "読み込み中…" -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:239 msgid "Log" msgstr "ログ" @@ -3139,7 +3149,7 @@ msgstr "ログアウトしたユーザーからの可視性" msgid "Login to account that is not listed" msgstr "リストにないアカウントにログイン" -#: src/components/RichText.tsx:217 +#: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" msgstr "長押しで #{tag} のタグメニューを開く" @@ -3220,7 +3230,7 @@ msgstr "メッセージが長すぎます" msgid "Message settings" msgstr "メッセージの設定" -#: src/Navigation.tsx:526 +#: src/Navigation.tsx:534 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3231,9 +3241,9 @@ msgstr "メッセージ" msgid "Misleading Account" msgstr "誤解を招くアカウント" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:130 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Moderation" msgstr "モデレーション" @@ -3241,7 +3251,7 @@ msgstr "モデレーション" msgid "Moderation details" msgstr "モデレーションの詳細" -#: src/components/FeedCard.tsx:157 +#: src/components/ListCard.tsx:109 #: src/view/com/lists/ListCard.tsx:95 #: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" @@ -3269,16 +3279,16 @@ msgstr "モデレーションリストを更新しました" msgid "Moderation lists" msgstr "モデレーションリスト" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "モデレーションリスト" -#: src/view/screens/Settings/index.tsx:555 +#: src/view/screens/Settings/index.tsx:556 msgid "Moderation settings" msgstr "モデレーションの設定" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:234 msgid "Moderation states" msgstr "モデレーションのステータス" @@ -3383,7 +3393,7 @@ msgstr "ミュートされています" msgid "Muted accounts" msgstr "ミュート中のアカウント" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "ミュート中のアカウント" @@ -3409,19 +3419,19 @@ msgstr "ミュートの設定は非公開です。ミュート中のアカウン msgid "My Birthday" msgstr "生年月日" -#: src/view/screens/Feeds.tsx:718 +#: src/view/screens/Feeds.tsx:731 msgid "My Feeds" msgstr "マイフィード" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "マイプロフィール" -#: src/view/screens/Settings/index.tsx:616 +#: src/view/screens/Settings/index.tsx:617 msgid "My saved feeds" msgstr "保存されたフィード" -#: src/view/screens/Settings/index.tsx:622 +#: src/view/screens/Settings/index.tsx:623 msgid "My Saved Feeds" msgstr "保存されたフィード" @@ -3442,7 +3452,7 @@ msgid "Name or Description Violates Community Standards" msgstr "名前または説明がコミュニティ基準に違反" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:92 msgid "Nature" msgstr "自然" @@ -3455,7 +3465,7 @@ msgid "Navigate to starter pack" msgstr "スターターパックへ移動します" #: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:332 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "次の画面に移動します" @@ -3468,7 +3478,7 @@ msgstr "あなたのプロフィールに移動します" msgid "Need to report a copyright violation?" msgstr "著作権侵害を報告する必要がありますか?" -#: src/screens/Onboarding/StepFinished.tsx:257 +#: src/screens/Onboarding/StepFinished.tsx:265 msgid "Never lose access to your followers or data." msgstr "フォロワーやデータへのアクセスを失うことはありません。" @@ -3512,17 +3522,17 @@ msgctxt "action" msgid "New post" msgstr "新しい投稿" -#: src/view/screens/Feeds.tsx:580 +#: 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/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/shell/desktop/LeftNav.tsx:278 msgid "New post" msgstr "新しい投稿" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:284 msgctxt "action" msgid "New Post" msgstr "新しい投稿" @@ -3540,21 +3550,22 @@ msgid "Newest replies first" msgstr "新しい順に返信を表示" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:93 msgid "News" msgstr "ニュース" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:311 -#: src/screens/Login/LoginForm.tsx:318 +#: src/screens/Login/LoginForm.tsx:331 +#: src/screens/Login/LoginForm.tsx:338 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:258 +#: src/screens/Signup/BackNextButtons.tsx:66 #: src/screens/StarterPack/Wizard/index.tsx:184 #: src/screens/StarterPack/Wizard/index.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:359 #: src/screens/StarterPack/Wizard/index.tsx:366 +#: src/tours/Tooltip.tsx:139 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3591,11 +3602,12 @@ msgstr "おすすめのGIFが見つかりません。Tenorに問題があるか msgid "No feeds found. Try searching for something else." msgstr "フィードが見つかりませんでした。他を探してみて。" +#: src/components/ProfileCard.tsx:321 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "{0}のフォローを解除しました" -#: src/screens/Signup/StepHandle.tsx:115 +#: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" msgstr "253文字まで" @@ -3607,7 +3619,7 @@ msgstr "メッセージはありません" msgid "No more conversations to show" msgstr "これ以上表示できる会話はありません" -#: src/view/com/notifications/Feed.tsx:118 +#: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "お知らせはありません!" @@ -3635,7 +3647,7 @@ msgstr "結果はありません" msgid "No results found" msgstr "結果は見つかりません" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" msgstr "「{query}」の検索結果はありません" @@ -3677,7 +3689,7 @@ msgstr "誰も見つかりませんでした。他を探してみて。" msgid "Non-sexual Nudity" msgstr "性的ではないヌード" -#: src/Navigation.tsx:117 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "見つかりません" @@ -3689,7 +3701,7 @@ msgstr "今はしない" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:315 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "共有についての注意事項" @@ -3709,11 +3721,11 @@ msgstr "通知音" msgid "Notification Sounds" msgstr "通知音" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:529 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 +#: 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 msgid "Notifications" @@ -3745,7 +3757,7 @@ msgstr "オフ" msgid "Oh no!" msgstr "ちょっと!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:152 msgid "Oh no! Something went wrong." msgstr "ちょっと!なにかがおかしいです。" @@ -3769,7 +3781,7 @@ msgstr "on" msgid "on {str}" msgstr "{str}" -#: src/view/screens/Settings/index.tsx:256 +#: src/view/screens/Settings/index.tsx:257 msgid "Onboarding reset" msgstr "オンボーディングのリセット" @@ -3789,7 +3801,7 @@ msgstr ".jpgと.pngファイルのみに対応しています" msgid "Only {0} can reply" msgstr "{0}のみ返信可能" -#: src/screens/Signup/StepHandle.tsx:98 +#: src/screens/Signup/StepHandle.tsx:149 msgid "Only contains letters, numbers, and hyphens" msgstr "英数字とハイフンのみ" @@ -3805,7 +3817,7 @@ msgstr "おっと、なにかが間違っているようです!" msgid "Oops!" msgstr "おっと!" -#: src/screens/Onboarding/StepFinished.tsx:253 +#: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" msgstr "開かれています" @@ -3831,7 +3843,7 @@ msgstr "絵文字を入力" msgid "Open feed options menu" msgstr "フィードの設定メニューを開く" -#: src/view/screens/Settings/index.tsx:736 +#: src/view/screens/Settings/index.tsx:737 msgid "Open links with in-app browser" msgstr "アプリ内ブラウザーでリンクを開く" @@ -3851,16 +3863,16 @@ msgstr "ナビゲーションを開く" msgid "Open post options menu" msgstr "投稿のオプションを開く" -#: src/screens/StarterPack/StarterPackScreen.tsx:451 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Open starter pack menu" msgstr "スターターパックのメニューを開く" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:861 +#: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" msgstr "絵本のページを開く" -#: src/view/screens/Settings/index.tsx:848 +#: src/view/screens/Settings/index.tsx:849 msgid "Open system log" msgstr "システムのログを開く" @@ -3872,7 +3884,7 @@ msgstr "{numItems}個のオプションを開く" msgid "Opens a dialog to choose who can reply to this thread" msgstr "このスレッドに誰が返信できるかを選択するダイアログを開く" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Opens accessibility settings" msgstr "アクセシビリティの設定を開く" @@ -3884,7 +3896,7 @@ msgstr "デバッグエントリーの追加詳細を開く" msgid "Opens camera on device" msgstr "デバイスのカメラを開く" -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Opens chat settings" msgstr "チャットの設定を開く" @@ -3892,7 +3904,7 @@ msgstr "チャットの設定を開く" msgid "Opens composer" msgstr "編集画面を開く" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Opens configurable language settings" msgstr "構成可能な言語設定を開く" @@ -3900,7 +3912,7 @@ msgstr "構成可能な言語設定を開く" msgid "Opens device photo gallery" msgstr "デバイスのフォトギャラリーを開く" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" msgstr "外部コンテンツの埋め込みの設定を開く" @@ -3922,27 +3934,27 @@ msgstr "GIFの選択のダイアログを開く" msgid "Opens list of invite codes" msgstr "招待コードのリストを開く" -#: src/view/screens/Settings/index.tsx:808 +#: src/view/screens/Settings/index.tsx:809 msgid "Opens modal for account deactivation confirmation" msgstr "アカウント無効化の確認のモーダルを開く" -#: src/view/screens/Settings/index.tsx:830 +#: src/view/screens/Settings/index.tsx:831 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "アカウントの削除確認用のモーダルを開きます。メールアドレスのコードが必要です" -#: src/view/screens/Settings/index.tsx:765 +#: src/view/screens/Settings/index.tsx:766 msgid "Opens modal for changing your Bluesky password" msgstr "Blueskyのパスワードを変更するためのモーダルを開く" -#: src/view/screens/Settings/index.tsx:720 +#: src/view/screens/Settings/index.tsx:721 msgid "Opens modal for choosing a new Bluesky handle" msgstr "新しいBlueskyのハンドルを選択するためのモーダルを開く" -#: src/view/screens/Settings/index.tsx:788 +#: src/view/screens/Settings/index.tsx:789 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Blueskyのアカウントのデータ(リポジトリ)をダウンロードするためのモーダルを開く" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Opens modal for email verification" msgstr "メールアドレスの認証のためのモーダルを開く" @@ -3950,23 +3962,23 @@ msgstr "メールアドレスの認証のためのモーダルを開く" msgid "Opens modal for using custom domain" msgstr "カスタムドメインを使用するためのモーダルを開く" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Opens moderation settings" msgstr "モデレーションの設定を開く" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:247 msgid "Opens password reset form" msgstr "パスワードリセットのフォームを開く" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "Opens screen with all saved feeds" msgstr "保存されたすべてのフィードで画面を開く" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "Opens the app password settings" msgstr "アプリパスワードの設定を開く" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Opens the Following feed preferences" msgstr "Followingフィードの設定を開く" @@ -3974,20 +3986,20 @@ msgstr "Followingフィードの設定を開く" msgid "Opens the linked website" 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 "Opens the storybook page" msgstr "ストーリーブックのページを開く" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" msgstr "システムログのページを開く" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Opens the threads preferences" msgstr "スレッドの設定を開く" -#: src/view/com/notifications/FeedItem.tsx:513 +#: src/view/com/notifications/FeedItem.tsx:524 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "プロフィールを開く" @@ -4038,8 +4050,8 @@ msgstr "ページが見つかりません" msgid "Page Not Found" msgstr "ページが見つかりません" -#: src/screens/Login/LoginForm.tsx:204 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Signup/StepInfo/index.tsx:162 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4061,15 +4073,16 @@ msgstr "パスワードが更新されました!" msgid "Pause" msgstr "一時停止" +#: src/screens/StarterPack/StarterPackScreen.tsx:170 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "ユーザー" -#: src/Navigation.tsx:172 +#: src/Navigation.tsx:175 msgid "People followed by @{0}" msgstr "@{0}がフォロー中のユーザー" -#: src/Navigation.tsx:165 +#: src/Navigation.tsx:168 msgid "People following @{0}" msgstr "@{0}をフォロー中のユーザー" @@ -4086,11 +4099,11 @@ msgid "Person toggle" msgstr "ユーザーを切替" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:94 msgid "Pets" msgstr "ペット" -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:95 msgid "Photography" msgstr "写真" @@ -4136,15 +4149,16 @@ msgstr "動画を再生" msgid "Plays the GIF" msgstr "GIFを再生" -#: src/screens/Signup/state.ts:234 +#: src/screens/Signup/state.ts:210 msgid "Please choose your handle." msgstr "ハンドルをお選びください。" -#: src/screens/Signup/state.ts:227 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:81 msgid "Please choose your password." msgstr "パスワードを選択してください。" -#: src/screens/Signup/state.ts:248 +#: src/screens/Signup/state.ts:224 msgid "Please complete the verification captcha." msgstr "Captcha認証を完了してください。" @@ -4164,7 +4178,8 @@ msgstr "このアプリパスワードに固有の名前を入力するか、ラ msgid "Please enter a valid word, tag, or phrase to mute" msgstr "ミュートにする有効な単語、タグ、フレーズを入力してください" -#: src/screens/Signup/state.ts:213 +#: src/screens/Signup/state.ts:189 +#: src/screens/Signup/StepInfo/index.tsx:69 msgid "Please enter your email." msgstr "メールアドレスを入力してください。" @@ -4198,7 +4213,7 @@ msgid "Please wait for your link card to finish loading" msgstr "リンクカードが読み込まれるまでお待ちください" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:96 msgid "Politics" msgstr "政治" @@ -4221,9 +4236,9 @@ msgstr "投稿" msgid "Post by {0}" msgstr "{0}による投稿" -#: src/Navigation.tsx:191 -#: src/Navigation.tsx:198 -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:194 +#: src/Navigation.tsx:201 +#: src/Navigation.tsx:208 msgid "Post by @{0}" msgstr "@{0}による投稿" @@ -4262,6 +4277,7 @@ msgstr "投稿が見つかりません" msgid "posts" msgstr "投稿" +#: src/screens/StarterPack/StarterPackScreen.tsx:172 #: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "投稿" @@ -4289,7 +4305,7 @@ msgstr "ホスティングプロバイダーを変える" #: src/components/Error.tsx:85 #: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/index.tsx:238 +#: src/screens/Signup/BackNextButtons.tsx:46 msgid "Press to retry" msgstr "再実行する" @@ -4309,15 +4325,15 @@ msgstr "第一言語" msgid "Prioritize Your Follows" msgstr "あなたのフォローを優先" -#: src/view/screens/Settings/index.tsx:654 -#: src/view/shell/desktop/RightNav.tsx:77 +#: src/view/screens/Settings/index.tsx:655 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "プライバシー" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 +#: src/view/screens/Settings/index.tsx:958 #: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "プライバシーポリシー" @@ -4335,8 +4351,8 @@ msgstr "処理中…" msgid "profile" msgstr "プロフィール" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 +#: 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 @@ -4347,11 +4363,11 @@ msgstr "プロフィール" msgid "Profile updated" msgstr "プロフィールを更新しました" -#: src/view/screens/Settings/index.tsx:1021 +#: src/view/screens/Settings/index.tsx:1022 msgid "Protect your account by verifying your email." msgstr "メールアドレスを確認してアカウントを保護します。" -#: src/screens/Onboarding/StepFinished.tsx:239 +#: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" msgstr "公開されています" @@ -4423,7 +4439,7 @@ msgid "Reload conversations" msgstr "会話を再読み込み" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:325 +#: src/components/FeedCard.tsx:309 #: src/components/StarterPack/Wizard/WizardListCard.tsx:95 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 @@ -4472,7 +4488,7 @@ msgstr "フィードを削除しますか?" msgid "Remove from my feeds" msgstr "マイフィードから削除" -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:304 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "マイフィードから削除しますか?" @@ -4609,8 +4625,8 @@ msgstr "メッセージを報告" msgid "Report post" msgstr "投稿を報告" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 -#: src/screens/StarterPack/StarterPackScreen.tsx:507 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 msgid "Report starter pack" msgstr "スタータパックを報告" @@ -4656,7 +4672,7 @@ msgstr "リポスト" msgid "Repost" msgstr "リポスト" -#: src/screens/StarterPack/StarterPackScreen.tsx:446 +#: src/screens/StarterPack/StarterPackScreen.tsx:524 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4675,7 +4691,7 @@ msgstr "{0}にリポストされた" msgid "Reposted by <0><1/>" msgstr "<0><1/>がリポスト" -#: src/view/com/notifications/FeedItem.tsx:184 +#: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "があなたの投稿をリポストしました" @@ -4701,7 +4717,7 @@ msgstr "画像投稿時にALTテキストを必須とする" msgid "Require email code to log into your account" msgstr "アカウントにログインする時にメールのコードを必須とする" -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" msgstr "このプロバイダーに必要" @@ -4718,8 +4734,8 @@ msgstr "リセットコード" msgid "Reset Code" msgstr "リセットコード" -#: src/view/screens/Settings/index.tsx:900 -#: src/view/screens/Settings/index.tsx:903 +#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" msgstr "オンボーディングの状態をリセット" @@ -4727,20 +4743,20 @@ msgstr "オンボーディングの状態をリセット" msgid "Reset password" msgstr "パスワードをリセット" -#: src/view/screens/Settings/index.tsx:880 -#: src/view/screens/Settings/index.tsx:883 +#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:884 msgid "Reset preferences state" msgstr "設定をリセット" -#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" msgstr "オンボーディングの状態をリセットします" -#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" msgstr "設定の状態をリセットします" -#: src/screens/Login/LoginForm.tsx:292 +#: src/screens/Login/LoginForm.tsx:312 msgid "Retries login" msgstr "ログインをやり直す" @@ -4753,19 +4769,19 @@ msgstr "エラーになった最後のアクションをやり直す" #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:291 -#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:311 +#: src/screens/Login/LoginForm.tsx:318 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Signup/BackNextButtons.tsx:52 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" msgstr "再試行" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:650 +#: src/screens/StarterPack/StarterPackScreen.tsx:728 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "前のページに戻る" @@ -4857,13 +4873,13 @@ msgstr "画像の切り抜き設定を保存" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:372 -#: src/view/com/notifications/FeedItem.tsx:397 +#: src/view/com/notifications/FeedItem.tsx:383 +#: src/view/com/notifications/FeedItem.tsx:408 msgid "Say hello!" msgstr "よろしく!" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:97 msgid "Science" msgstr "科学" @@ -4872,16 +4888,16 @@ msgid "Scroll to top" msgstr "一番上までスクロール" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:516 -#: src/view/com/auth/LoggedOut.tsx:119 +#: src/Navigation.tsx:524 +#: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 #: src/view/screens/Search/Search.tsx:791 #: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 +#: 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 @@ -4909,8 +4925,8 @@ msgstr "{displayTag}のすべての投稿を検索(すべてのユーザー) msgid "Search for feeds that you want to suggest to others." msgstr "他の人におすすめしたいフィードを検索。" -#: src/view/com/auth/LoggedOut.tsx:101 -#: src/view/com/auth/LoggedOut.tsx:102 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:107 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "ユーザーを検索" @@ -5018,11 +5034,11 @@ msgstr "登録されたフィードに含める言語を選択します。選択 msgid "Select your app language for the default text to display in the app." msgstr "アプリに表示されるデフォルトのテキストの言語を選択" -#: src/screens/Signup/StepInfo/index.tsx:135 +#: src/screens/Signup/StepInfo/index.tsx:192 msgid "Select your date of birth" msgstr "生年月日を選択" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:225 msgid "Select your interests from the options below" msgstr "次のオプションから興味のあるものを選択してください" @@ -5127,23 +5143,23 @@ msgstr "アカウントを設定する" msgid "Sets Bluesky username" msgstr "Blueskyのユーザーネームを設定" -#: src/view/screens/Settings/index.tsx:461 +#: src/view/screens/Settings/index.tsx:462 msgid "Sets color theme to dark" msgstr "カラーテーマをダークに設定します" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Sets color theme to light" msgstr "カラーテーマをライトに設定します" -#: src/view/screens/Settings/index.tsx:448 +#: src/view/screens/Settings/index.tsx:449 msgid "Sets color theme to system setting" msgstr "デバイスで設定したカラーテーマを使用するように設定します" -#: src/view/screens/Settings/index.tsx:487 +#: src/view/screens/Settings/index.tsx:488 msgid "Sets dark theme to the dark theme" msgstr "ダークテーマを暗いものに設定します" -#: src/view/screens/Settings/index.tsx:480 +#: src/view/screens/Settings/index.tsx:481 msgid "Sets dark theme to the dim theme" msgstr "ダークテーマを薄暗いものに設定します" @@ -5163,9 +5179,9 @@ msgstr "画像のアスペクト比を縦長に設定" msgid "Sets image aspect ratio to wide" msgstr "画像のアスペクト比をワイドに設定" -#: src/Navigation.tsx:147 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:395 +#: src/Navigation.tsx:150 +#: src/view/screens/Settings/index.tsx:333 +#: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:559 #: src/view/shell/Drawer.tsx:560 msgid "Settings" @@ -5180,13 +5196,13 @@ msgid "Sexually Suggestive" msgstr "性的にきわどい" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:340 -#: src/screens/StarterPack/StarterPackScreen.tsx:493 +#: 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/post-ctrls/PostCtrls.tsx:304 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "共有" @@ -5206,7 +5222,7 @@ msgstr "面白いことをシェアして!" #: src/view/com/profile/ProfileMenu.tsx:377 #: src/view/com/util/forms/PostDropdownBtn.tsx:461 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:320 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "とにかく共有" @@ -5217,7 +5233,7 @@ msgstr "フィードを共有" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "リンクを共有" @@ -5235,7 +5251,7 @@ msgstr "リンク共有のダイアログ" msgid "Share QR code" msgstr "QRコードを共有" -#: src/screens/StarterPack/StarterPackScreen.tsx:333 +#: src/screens/StarterPack/StarterPackScreen.tsx:393 msgid "Share this starter pack" msgstr "このスターターパックを共有" @@ -5254,11 +5270,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:381 +#: src/view/screens/Settings/index.tsx:382 msgid "Show" msgstr "表示" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "ALTテキストを表示" @@ -5345,17 +5361,17 @@ msgstr "マイフィード内の{0}からの投稿を表示します" #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:100 #: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Login/LoginForm.tsx:177 #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.tsx:72 #: src/view/com/auth/SplashScreen.web.tsx:112 #: src/view/com/auth/SplashScreen.web.tsx:121 -#: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 #: src/view/shell/bottom-bar/BottomBar.tsx:315 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/bottom-bar/BottomBar.tsx:318 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:210 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5383,12 +5399,12 @@ msgstr "Blueskyにサインイン または 新規アカウントの登録" msgid "Sign out" msgstr "サインアウト" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 #: src/view/shell/bottom-bar/BottomBar.tsx:305 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBar.tsx:306 +#: src/view/shell/bottom-bar/BottomBar.tsx:308 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:200 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5404,7 +5420,7 @@ msgstr "サインアップまたはサインインして会話に参加" msgid "Sign-in Required" msgstr "サインインが必要" -#: src/view/screens/Settings/index.tsx:391 +#: src/view/screens/Settings/index.tsx:392 msgid "Signed in as" msgstr "サインイン済み" @@ -5413,21 +5429,21 @@ msgstr "サインイン済み" msgid "Signed in as @{0}" msgstr "@{0}でサインイン" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "signed up with your starter pack" msgstr "あなたのスターターパックでサインアップ" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 msgid "Signup without a starter pack" msgstr "スターターパックを使わずにサインアップ" -#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:264 #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "スキップ" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:261 msgid "Skip this flow" msgstr "この手順をスキップする" @@ -5436,7 +5452,7 @@ msgstr "この手順をスキップする" msgid "Software Dev" msgstr "ソフトウェア開発" -#: src/components/FeedInterstitials.tsx:303 +#: src/components/FeedInterstitials.tsx:378 msgid "Some other feeds you might like" msgstr "お好みかもしれない他のフィード" @@ -5460,8 +5476,8 @@ msgstr "なにか間違っているようなので、もう一度お試しくだ msgid "Something went wrong, please try again." msgstr "なにか間違っているようなので、もう一度お試しください。" -#: src/App.native.tsx:96 -#: src/App.web.tsx:78 +#: src/App.native.tsx:98 +#: src/App.web.tsx:80 msgid "Sorry! Your session expired. Please log in again." msgstr "大変申し訳ありません!セッションの有効期限が切れました。もう一度ログインしてください。" @@ -5487,7 +5503,7 @@ msgid "Spam; excessive mentions or replies" msgstr "スパム、過剰なメンションや返信" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:98 msgid "Sports" msgstr "スポーツ" @@ -5512,16 +5528,17 @@ msgid "Start of onboarding tour window. Do not move backward. Instead, go forwar msgstr "オンボーディングツアー・ウインドウ開始。前へ戻らないでください。代わりに、進んで他のオプションを見るか、スキップしてください。" #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:328 +#: src/Navigation.tsx:333 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "スターターパック" -#: src/components/StarterPack/StarterPackCard.tsx:65 +#: src/components/StarterPack/StarterPackCard.tsx:70 msgid "Starter pack by {0}" msgstr "{0}によるスターターパック" -#: src/screens/StarterPack/StarterPackScreen.tsx:614 +#: src/screens/StarterPack/StarterPackScreen.tsx:692 msgid "Starter pack is invalid" msgstr "スターターパックが無効です" @@ -5533,20 +5550,20 @@ msgstr "スターターパック" msgid "Starter packs let you easily share your favorite feeds and people with your friends." msgstr "スターターパックを使ってお気に入りのフィードやユーザーを友人へ簡単に共有できます。" -#: src/view/screens/Settings/index.tsx:963 +#: src/view/screens/Settings/index.tsx:964 msgid "Status Page" msgstr "ステータスページ" -#: src/screens/Signup/index.tsx:192 +#: src/screens/Signup/index.tsx:125 msgid "Step {0} of {1}" msgstr "ステップ {0} / {1}" -#: src/view/screens/Settings/index.tsx:304 +#: src/view/screens/Settings/index.tsx:305 msgid "Storage cleared, you need to restart the app now." msgstr "ストレージがクリアされたため、今すぐアプリを再起動する必要があります。" -#: src/Navigation.tsx:226 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:229 +#: src/view/screens/Settings/index.tsx:864 msgid "Storybook" msgstr "ストーリーブック" @@ -5581,6 +5598,7 @@ msgstr "このリストに登録" msgid "Suggested accounts" msgstr "おすすめのアカウント" +#: src/components/FeedInterstitials.tsx:246 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "あなたへのおすすめ" @@ -5589,7 +5607,7 @@ msgstr "あなたへのおすすめ" msgid "Suggestive" msgstr "きわどい" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:244 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -5612,11 +5630,11 @@ msgstr "{0}に切り替え" msgid "Switches the account you are logged in to" msgstr "ログインしているアカウントを切り替えます" -#: src/view/screens/Settings/index.tsx:445 +#: src/view/screens/Settings/index.tsx:446 msgid "System" msgstr "システム" -#: src/view/screens/Settings/index.tsx:851 +#: src/view/screens/Settings/index.tsx:852 msgid "System log" msgstr "システムログ" @@ -5640,7 +5658,7 @@ msgstr "タップして消す" msgid "Tap to view fully" msgstr "タップして全体を表示" -#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:171 msgid "Task complete - 10 likes!" msgstr "タスク完了 - 10いいね!" @@ -5649,7 +5667,7 @@ msgid "Teach our algorithm what you like" msgstr "アルゴリズムを鍛える" #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:99 msgid "Tech" msgstr "テクノロジー" @@ -5661,13 +5679,13 @@ msgstr "ジョークを言って!" msgid "Tell us a little more" msgstr "もう少し教えて" -#: src/view/shell/desktop/RightNav.tsx:86 +#: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "条件" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:254 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/Settings/index.tsx:952 #: src/view/screens/TermsOfService.tsx:29 #: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" @@ -5698,12 +5716,14 @@ msgstr "ありがとうございます。あなたの報告は送信されまし msgid "That contains the following:" msgstr "その内容は以下の通りです:" -#: src/screens/Signup/index.tsx:100 +#: src/screens/Signup/StepHandle.tsx:50 msgid "That handle is already taken." msgstr "そのハンドルはすでに使用されています。" -#: src/screens/StarterPack/StarterPackScreen.tsx:105 -#: src/screens/StarterPack/StarterPackScreen.tsx:106 +#: src/screens/StarterPack/StarterPackScreen.tsx:96 +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:136 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -5722,12 +5742,12 @@ msgstr "コミュニティーガイドラインは<0/>に移動しました" msgid "The Copyright Policy has been moved to <0/>" msgstr "著作権ポリシーは<0/>に移動しました" -#: src/state/shell/progress-guide.tsx:173 -#: src/state/shell/progress-guide.tsx:178 +#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:177 msgid "The Discover feed now knows what you like" msgstr "Discoverフィードはあなたの好みを学習しました" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "アプリのほうがより良い体験をすることができます。今すぐBlueskyをダウンロードして、中断したところから再開しましょう。" @@ -5756,7 +5776,7 @@ msgstr "投稿が削除された可能性があります。" msgid "The Privacy Policy has been moved to <0/>" msgstr "プライバシーポリシーは<0/>に移動しました" -#: src/screens/StarterPack/StarterPackScreen.tsx:624 +#: src/screens/StarterPack/StarterPackScreen.tsx:702 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "見ようとしたスターターパックが無効です。代わりにスターターパックを削除してください。" @@ -5806,11 +5826,11 @@ msgstr "サーバーへの問い合わせ中に問題が発生しました" msgid "There was an issue contacting your server" msgstr "サーバーへの問い合わせ中に問題が発生しました" -#: src/view/com/notifications/Feed.tsx:126 +#: src/view/com/notifications/Feed.tsx:125 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "通知の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。" -#: src/view/com/posts/Feed.tsx:299 +#: src/view/com/posts/Feed.tsx:459 msgid "There was an issue fetching posts. Tap here to try again." msgstr "投稿の取得中に問題が発生しました。もう一度試すにはこちらをタップしてください。" @@ -5980,7 +6000,7 @@ msgid "This post has been deleted." msgstr "この投稿は削除されました。" #: src/view/com/util/forms/PostDropdownBtn.tsx:458 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:317 +#: 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 "この投稿はログインしているユーザーにのみ表示されます。ログインしていない方には見えません。" @@ -6037,12 +6057,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:594 +#: src/view/screens/Settings/index.tsx:595 msgid "Thread preferences" msgstr "スレッドの設定" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/Settings/index.tsx:605 msgid "Thread Preferences" msgstr "スレッドの設定" @@ -6054,7 +6074,7 @@ msgstr "スレッドの設定を更新しました" msgid "Threaded Mode" msgstr "スレッドモード" -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:287 msgid "Threads Preferences" msgstr "スレッドの設定" @@ -6105,11 +6125,11 @@ msgctxt "action" msgid "Try again" msgstr "再試行" -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:100 msgid "TV" msgstr "テレビ" -#: src/view/screens/Settings/index.tsx:745 +#: src/view/screens/Settings/index.tsx:746 msgid "Two-factor authentication" msgstr "2要素認証" @@ -6131,14 +6151,14 @@ msgstr "リストでのミュートを解除" #: src/screens/Login/ForgotPasswordForm.tsx:74 #: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:79 +#: src/screens/Signup/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "あなたのサービスに接続できません。インターネットの接続を確認してください。" -#: src/screens/StarterPack/StarterPackScreen.tsx:548 +#: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Unable to delete" msgstr "削除できません" @@ -6391,7 +6411,7 @@ msgstr "ユーザーリストを更新しました" msgid "User Lists" msgstr "ユーザーリスト" -#: src/screens/Login/LoginForm.tsx:177 +#: src/screens/Login/LoginForm.tsx:197 msgid "Username or email address" msgstr "ユーザー名またはメールアドレス" @@ -6426,15 +6446,15 @@ msgstr "値:" msgid "Verify DNS Record" msgstr "DNSレコードを確認" -#: src/view/screens/Settings/index.tsx:982 +#: src/view/screens/Settings/index.tsx:983 msgid "Verify email" msgstr "メールアドレスを確認" -#: src/view/screens/Settings/index.tsx:1007 +#: src/view/screens/Settings/index.tsx:1008 msgid "Verify my email" msgstr "メールアドレスを確認" -#: src/view/screens/Settings/index.tsx:1016 +#: src/view/screens/Settings/index.tsx:1017 msgid "Verify My Email" msgstr "メールアドレスを確認" @@ -6451,7 +6471,7 @@ msgstr "テキストファイルを確認" msgid "Verify Your Email" msgstr "メールアドレスを確認" -#: src/view/screens/Settings/index.tsx:935 +#: src/view/screens/Settings/index.tsx:936 msgid "Version {appVersion} {bundleInfo}" msgstr "バージョン {appVersion} {bundleInfo}" @@ -6464,7 +6484,7 @@ msgstr "ビデオゲーム" msgid "View {0}'s avatar" msgstr "{0}のアバターを表示" -#: src/view/com/notifications/FeedItem.tsx:234 +#: src/view/com/notifications/FeedItem.tsx:245 msgid "View {0}'s profile" msgstr "{0}のプロフィールを表示" @@ -6513,7 +6533,7 @@ msgid "View users who like this feed" msgstr "このフィードにいいねしたユーザーを見る" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "フィードを表示し、さらにフィードを探す" @@ -6548,7 +6568,7 @@ msgstr "この会話を読み込めませんでした" msgid "We estimate {estimatedTime} until your account is ready." msgstr "あなたのアカウントが準備できるまで{estimatedTime}ほどかかります。" -#: src/screens/Onboarding/StepFinished.tsx:231 +#: src/screens/Onboarding/StepFinished.tsx:239 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "素敵なひとときをお過ごしください。覚えておいてください、Blueskyは:" @@ -6568,7 +6588,7 @@ msgstr "生年月日の設定を読み込むことはできませんでした。 msgid "We were unable to load your configured labelers at this time." msgstr "現在設定されたラベラーを読み込めません。" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:157 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "接続できませんでした。アカウントの設定を続けるためにもう一度お試しください。繰り返し失敗する場合は、この手順をスキップすることもできます。" @@ -6576,7 +6596,7 @@ msgstr "接続できませんでした。アカウントの設定を続けるた msgid "We will let you know when your account is ready." msgstr "アカウントの準備ができたらお知らせします。" -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:162 msgid "We'll use this to help customize your experience." msgstr "これはあなたの体験をカスタマイズするために使用されます。" @@ -6584,7 +6604,7 @@ msgstr "これはあなたの体験をカスタマイズするために使用さ msgid "We're having network issues, try again" msgstr "ネットワークで問題が発生しています。再度試してください" -#: src/screens/Signup/index.tsx:155 +#: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" msgstr "私たちはあなたが参加してくれることをとても楽しみにしています!" @@ -6621,7 +6641,7 @@ msgstr "おかえりなさい!" msgid "Welcome, friend!" msgstr "ようこそ、友よ!" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" msgstr "なにに興味がありますか?" @@ -6712,7 +6732,7 @@ msgid "Write your reply" msgstr "返信を書く" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:101 msgid "Writers" msgstr "ライター" @@ -6731,7 +6751,7 @@ msgstr "はい" msgid "Yes, deactivate" msgstr "はい、無効化します" -#: src/screens/StarterPack/StarterPackScreen.tsx:560 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 msgid "Yes, delete this starter pack" msgstr "はい、このスターターパックを削除します" @@ -6743,7 +6763,7 @@ msgstr "はい、アカウントを再有効化します" msgid "Yesterday, {time}" msgstr "昨日、{time}" -#: src/components/StarterPack/StarterPackCard.tsx:68 +#: src/components/StarterPack/StarterPackCard.tsx:73 msgid "you" msgstr "あなた" @@ -6944,23 +6964,23 @@ msgstr "あなた: {defaultEmbeddedContentMessage}" msgid "You: {short}" msgstr "あなた: {short}" -#: src/screens/Signup/index.tsx:169 +#: src/screens/Signup/index.tsx:102 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "アカウントの作成を完了するとおすすめのユーザーやフィードをフォローします!" -#: src/screens/Signup/index.tsx:174 +#: 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:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 msgid "You'll follow these people and {0} others" msgstr "これらのユーザーや他{0}をフォローします" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 msgid "You'll follow these people right away" msgstr "これらのユーザーをすぐにフォローします" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "You'll stay updated with these feeds" msgstr "これらのフィードの更新を受け取ります" @@ -6975,7 +6995,7 @@ msgstr "あなたは並んでいます。" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "アプリパスワードでログイン中です。アカウントの無効化を続けるにはメインのパスワードでログインしてください。" -#: src/screens/Onboarding/StepFinished.tsx:228 +#: src/screens/Onboarding/StepFinished.tsx:236 msgid "You're ready to go!" msgstr "準備ができました!" @@ -6988,7 +7008,7 @@ msgstr "この投稿でワードまたはタグを隠すことを選択しまし msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "フィードはここまでです!もっとフォローするアカウントを見つけましょう。" -#: src/screens/Signup/index.tsx:202 +#: src/screens/Signup/index.tsx:135 msgid "Your account" msgstr "あなたのアカウント" @@ -7000,7 +7020,7 @@ msgstr "あなたのアカウントは削除されました" 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」ファイルとしてダウンロードできます。このファイルには、画像などのメディア埋め込み、また非公開のデータは含まれていないため、それらは個別に取得する必要があります。" -#: src/screens/Signup/StepInfo/index.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" msgstr "生年月日" @@ -7013,7 +7033,8 @@ msgid "Your choice will be saved, but can be changed later in settings." msgstr "ここで選択した内容は保存されますが、あとから設定で変更できます。" #: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "メールアドレスが無効なようです。" @@ -7026,7 +7047,7 @@ msgstr "メールアドレスは更新されましたが、確認されていま msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "メールアドレスはまだ確認されていません。これは、当社が推奨する重要なセキュリティステップです。" -#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:161 msgid "Your first like!" msgstr "最初のいいね!" @@ -7034,7 +7055,7 @@ msgstr "最初のいいね!" msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Followingフィードは空です!もっと多くのユーザーをフォローして、近況を確認しましょう。" -#: src/screens/Signup/StepHandle.tsx:73 +#: src/screens/Signup/StepHandle.tsx:122 msgid "Your full handle will be" msgstr "フルハンドルは" @@ -7054,7 +7075,7 @@ msgstr "パスワードの変更が完了しました!" msgid "Your post has been published" msgstr "投稿を公開しました" -#: src/screens/Onboarding/StepFinished.tsx:243 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "投稿、いいね、ブロックは公開されます。ミュートは非公開です。" @@ -7074,6 +7095,6 @@ msgstr "返信を公開しました" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "あなたの報告はBluesky Moderation Serviceに送られます" -#: src/screens/Signup/index.tsx:204 +#: src/screens/Signup/index.tsx:137 msgid "Your user handle" msgstr "あなたのユーザーハンドル" diff --git a/src/locale/locales/ko/messages.po b/src/locale/locales/ko/messages.po index 55a8706219..e7ec53e94e 100644 --- a/src/locale/locales/ko/messages.po +++ b/src/locale/locales/ko/messages.po @@ -480,8 +480,8 @@ msgstr "어떤 옵션에도 포함되지 않는 문제" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:294 -#: src/components/ProfileCard.tsx:306 +#: src/components/ProfileCard.tsx:309 +#: src/components/ProfileCard.tsx:329 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -756,21 +756,21 @@ msgstr "이미지 흐리게 및 피드에서 필터링" msgid "Books" msgstr "책" -#: src/components/FeedInterstitials.tsx:274 +#: src/components/FeedInterstitials.tsx:281 msgid "Browse more accounts on the Explore page" msgstr "탐색 페이지에서 더 많은 계정 찾아보기" -#: src/components/FeedInterstitials.tsx:400 +#: src/components/FeedInterstitials.tsx:411 msgid "Browse more feeds on the Explore page" msgstr "탐색 페이지에서 더 많은 피드 찾아보기" -#: src/components/FeedInterstitials.tsx:263 -#: src/components/FeedInterstitials.tsx:389 +#: src/components/FeedInterstitials.tsx:266 +#: src/components/FeedInterstitials.tsx:396 msgid "Browse more suggestions" msgstr "더 많은 추천 찾아보기" -#: src/components/FeedInterstitials.tsx:282 -#: src/components/FeedInterstitials.tsx:409 +#: src/components/FeedInterstitials.tsx:289 +#: src/components/FeedInterstitials.tsx:420 msgid "Browse more suggestions on the Explore page" msgstr "탐색 페이지에서 더 많은 추천 찾아보기" @@ -2294,7 +2294,7 @@ msgid "Flip vertically" msgstr "세로로 뒤집기" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:318 +#: src/components/ProfileCard.tsx:341 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2390,7 +2390,7 @@ msgid "Followers you know" msgstr "내가 아는 팔로워" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:312 +#: src/components/ProfileCard.tsx:335 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2402,6 +2402,7 @@ msgstr "내가 아는 팔로워" msgid "Following" msgstr "팔로우 중" +#: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "{0} 님을 팔로우했습니다" @@ -3601,6 +3602,7 @@ msgstr "인기 GIF를 찾을 수 없습니다. Tenor에 문제가 있을 수 있 msgid "No feeds found. Try searching for something else." msgstr "피드를 찾을 수 없습니다. 다른 피드를 검색해 보세요." +#: src/components/ProfileCard.tsx:321 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "더 이상 {0} 님을 팔로우하지 않음" @@ -5450,7 +5452,7 @@ msgstr "이 단계 건너뛰기" msgid "Software Dev" msgstr "소프트웨어 개발" -#: src/components/FeedInterstitials.tsx:371 +#: src/components/FeedInterstitials.tsx:378 msgid "Some other feeds you might like" msgstr "좋아할 만한 다른 피드" @@ -5596,7 +5598,7 @@ msgstr "이 리스트 구독하기" msgid "Suggested accounts" msgstr "추천 계정" -#: src/components/FeedInterstitials.tsx:243 +#: src/components/FeedInterstitials.tsx:246 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "나를 위한 추천" diff --git a/src/locale/locales/pt-BR/messages.po b/src/locale/locales/pt-BR/messages.po index 72b7b200be..287ce60df3 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:283 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "{0, plural, one {{formattedCount} outro} other {{formattedCount} outros}}" @@ -59,7 +59,7 @@ msgstr "{0, plural, one {seguidor} other {seguidores}}" msgid "{0, plural, one {following} other {following}}" msgstr "{0, plural, one {seguindo} other {seguindo}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:259 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "{0, plural, one {Curtir (# curtida)} other {Curtir (# curtidas)}}" @@ -67,7 +67,7 @@ msgstr "{0, plural, one {Curtir (# curtida)} other {Curtir (# curtidas)}}" msgid "{0, plural, one {like} other {likes}}" msgstr "{0, plural, one {curtida} other {curtidas}}" -#: src/components/FeedCard.tsx:216 +#: 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 {Curtido por # usuário} other {Curtido por # usuários}}" @@ -76,7 +76,7 @@ msgstr "{0, plural, one {Curtido por # usuário} other {Curtido por # usuários} msgid "{0, plural, one {post} other {posts}}" msgstr "{0, plural, one {post} other {posts}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:217 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "{0, plural, one {Responder (# resposta)} other {Responder (# respostas)}}" @@ -84,15 +84,15 @@ msgstr "{0, plural, one {Responder (# resposta)} other {Responder (# respostas)} msgid "{0, plural, one {repost} other {reposts}}" msgstr "{0, plural, one {repost} other {reposts}}" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:262 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "{0, plural, one {Descurtir (# curtida)} other {Descurtir (# curtidas)}}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:378 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" 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:503 +#: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} seguindo" @@ -254,10 +254,14 @@ msgstr "" msgid "⚠Invalid Handle" msgstr "⚠Usuário Inválido" -#: src/screens/Login/LoginForm.tsx:247 +#: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" msgstr "Confirmação do 2FA" +#: src/tours/Tooltip.tsx:70 +msgid "A help tooltip" +msgstr "" + #: src/view/com/util/ViewHeader.tsx:93 #: src/view/screens/Search/Search.tsx:684 msgid "Access navigation links and settings" @@ -268,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:518 +#: src/view/screens/Settings/index.tsx:519 msgid "Accessibility" msgstr "Acessibilidade" -#: src/view/screens/Settings/index.tsx:509 +#: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" msgstr "Configurações de acessibilidade" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "Configurações de acessibilidade" @@ -285,9 +289,9 @@ msgstr "Configurações de acessibilidade" #~ msgid "account" #~ msgstr "conta" -#: src/screens/Login/LoginForm.tsx:170 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:190 +#: src/view/screens/Settings/index.tsx:346 +#: src/view/screens/Settings/index.tsx:753 msgid "Account" msgstr "Conta" @@ -358,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:422 -#: src/view/screens/Settings/index.tsx:431 +#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:432 msgid "Add account" msgstr "Adicionar conta" @@ -418,7 +422,7 @@ msgstr "Adicionar o feed padrão com as pessoas que você segue" msgid "Add the following DNS record to your domain:" msgstr "Adicione o seguinte registro DNS ao seu domínio:" -#: src/components/FeedCard.tsx:305 +#: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" msgstr "" @@ -462,15 +466,19 @@ msgid "Adult content is disabled." msgstr "O conteúdo adulto está desabilitado." #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Advanced" msgstr "Avançado" -#: src/screens/StarterPack/StarterPackScreen.tsx:301 +#: src/state/shell/progress-guide.tsx:176 +msgid "Algorithm training complete!" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:360 msgid "All accounts have been followed!" msgstr "" -#: src/view/screens/Feeds.tsx:721 +#: src/view/screens/Feeds.tsx:734 msgid "All the feeds you've saved, right in one place." msgstr "Todos os feeds que você salvou, em um único lugar." @@ -500,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:177 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 msgid "ALT" msgstr "ALT" @@ -510,7 +518,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Texto alternativo" -#: src/view/com/util/post-embeds/GifEmbed.tsx:183 +#: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" msgstr "Texto alternativo" @@ -548,7 +556,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "Ocorreu um erro ao tentar deletar esta mensagem. Por favor, tente novamente." -#: src/screens/StarterPack/StarterPackScreen.tsx:303 +#: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" msgstr "" @@ -558,6 +566,8 @@ msgstr "Outro problema" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 +#: src/components/ProfileCard.tsx:309 +#: src/components/ProfileCard.tsx:329 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -565,12 +575,12 @@ msgstr "Outro problema" msgid "An issue occurred, please try again." msgstr "Ocorreu um problema, por favor tente novamente." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" msgstr "ocorreu um erro desconhecido" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:280 +#: src/view/com/notifications/FeedItem.tsx:291 msgid "and" msgstr "e" @@ -579,7 +589,7 @@ msgstr "e" msgid "Animals" msgstr "Animais" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" msgstr "GIF animado" @@ -603,13 +613,13 @@ 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:697 +#: src/view/screens/Settings/index.tsx:698 msgid "App password settings" msgstr "Configurações de Senha de Aplicativo" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:269 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/view/screens/Settings/index.tsx:707 msgid "App Passwords" msgstr "Senhas de Aplicativos" @@ -638,7 +648,7 @@ msgstr "Contestação enviada." msgid "Appeal this decision" msgstr "" -#: src/view/screens/Settings/index.tsx:439 +#: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "Aparência" @@ -647,7 +657,7 @@ msgstr "Aparência" msgid "Apply default recommended feeds" msgstr "Utilizar feeds recomendados" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -675,7 +685,7 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Tem certeza que deseja remover {0} dos seus feeds?" -#: src/components/FeedCard.tsx:322 +#: src/components/FeedCard.tsx:306 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -700,7 +710,7 @@ msgstr "Arte" msgid "Artistic or non-erotic nudity." msgstr "Nudez artística ou não erótica." -#: src/screens/Signup/StepHandle.tsx:119 +#: src/screens/Signup/StepHandle.tsx:170 msgid "At least 3 characters" msgstr "No mínimo 3 caracteres" @@ -711,14 +721,15 @@ msgstr "No mínimo 3 caracteres" #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:278 -#: src/screens/Login/LoginForm.tsx:284 +#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:304 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/index.tsx:231 +#: 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" @@ -728,7 +739,7 @@ msgstr "Voltar" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Com base no seu interesse em {interestsText}" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "Básicos" @@ -736,7 +747,7 @@ msgstr "Básicos" msgid "Birthday" msgstr "Aniversário" -#: src/view/screens/Settings/index.tsx:377 +#: src/view/screens/Settings/index.tsx:378 msgid "Birthday:" msgstr "Aniversário:" @@ -780,7 +791,7 @@ msgstr "Bloqueado" msgid "Blocked accounts" msgstr "Contas bloqueadas" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:145 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Contas Bloqueadas" @@ -822,6 +833,10 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky é uma rede aberta que permite a escolha do seu provedor de hospedagem. Desenvolvedores já conseguem utilizar a versão beta de hospedagem própria." +#: 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." @@ -858,6 +873,24 @@ msgstr "Desfocar imagens e filtrar dos feeds" msgid "Books" msgstr "Livros" +#: src/components/FeedInterstitials.tsx:281 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:411 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:266 +#: src/components/FeedInterstitials.tsx:396 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:289 +#: src/components/FeedInterstitials.tsx:420 +msgid "Browse more suggestions on the Explore page" +msgstr "" + #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" @@ -976,17 +1009,17 @@ msgstr "Cancela a abertura do link" msgid "Change" msgstr "Trocar" -#: src/view/screens/Settings/index.tsx:371 +#: src/view/screens/Settings/index.tsx:372 msgctxt "action" msgid "Change" msgstr "Alterar" -#: src/view/screens/Settings/index.tsx:718 +#: src/view/screens/Settings/index.tsx:719 msgid "Change handle" msgstr "Alterar usuário" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change Handle" msgstr "Alterar Usuário" @@ -994,12 +1027,12 @@ msgstr "Alterar Usuário" msgid "Change my email" msgstr "Alterar meu email" -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/index.tsx:764 msgid "Change password" msgstr "Alterar senha" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Change Password" msgstr "Alterar Senha" @@ -1011,9 +1044,9 @@ msgstr "Trocar idioma do post para {0}" msgid "Change Your Email" msgstr "Altere o Seu Email" -#: src/Navigation.tsx:310 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:313 +#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" msgstr "Chat" @@ -1023,14 +1056,14 @@ msgstr "Chat silenciado" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:318 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" msgstr "Configurações do Chat" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" msgstr "" @@ -1055,7 +1088,7 @@ msgstr "Verificar minha situação" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "Confira alguns usuários recomendados. Siga-os para ver usuários semelhantes." -#: src/screens/Login/LoginForm.tsx:271 +#: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." msgstr "Um código de login foi enviado para o seu e-mail. Insira-o aqui." @@ -1067,6 +1100,14 @@ msgstr "Verifique em sua caixa de entrada um e-mail com o código de confirmaç #~ msgid "Choose \"Everybody\" or \"Nobody\"" #~ msgstr "Escolha \"Todos\" ou \"Ninguém\"" +#: src/screens/Onboarding/StepInterests/index.tsx:190 +msgid "Choose 3 or more:" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:325 +msgid "Choose at least {0} more" +msgstr "" + #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" msgstr "" @@ -1083,7 +1124,7 @@ msgstr "" msgid "Choose Service" msgstr "Escolher Serviço" -#: src/screens/Onboarding/StepFinished.tsx:273 +#: src/screens/Onboarding/StepFinished.tsx:281 msgid "Choose the algorithms that power your custom feeds." msgstr "Escolha os algoritmos que geram seus feeds customizados." @@ -1105,23 +1146,23 @@ msgstr "" #~ msgid "Choose your main feeds" #~ msgstr "Escolha seus feeds principais" -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" msgstr "Escolha sua senha" -#: src/view/screens/Settings/index.tsx:910 +#: src/view/screens/Settings/index.tsx:911 msgid "Clear all legacy storage data" msgstr "Limpar todos os dados de armazenamento legados" -#: src/view/screens/Settings/index.tsx:913 +#: src/view/screens/Settings/index.tsx:914 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:922 +#: src/view/screens/Settings/index.tsx:923 msgid "Clear all storage data" msgstr "Limpar todos os dados de armazenamento" -#: src/view/screens/Settings/index.tsx:925 +#: src/view/screens/Settings/index.tsx:926 msgid "Clear all storage data (restart after this)" msgstr "Limpar todos os dados de armazenamento (reinicie em seguida)" @@ -1130,11 +1171,11 @@ msgstr "Limpar todos os dados de armazenamento (reinicie em seguida)" msgid "Clear search query" msgstr "Limpar busca" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" msgstr "Limpa todos os dados antigos" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" msgstr "Limpa todos os dados antigos" @@ -1183,7 +1224,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:189 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "Close" msgstr "Fechar" @@ -1246,11 +1287,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:226 +#: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:437 msgid "Collapses list of users for a given notification" msgstr "Fecha lista de usuários da notificação" @@ -1264,16 +1305,16 @@ msgstr "Comédia" msgid "Comics" msgstr "Quadrinhos" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:259 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Diretrizes da Comunidade" -#: src/screens/Onboarding/StepFinished.tsx:286 +#: src/screens/Onboarding/StepFinished.tsx:294 msgid "Complete onboarding and start using your account" msgstr "Completar e começar a usar sua conta" -#: src/screens/Signup/index.tsx:206 +#: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" msgstr "Complete o captcha" @@ -1330,7 +1371,7 @@ msgstr "Confirme sua idade:" msgid "Confirm your birthdate" msgstr "Confirme sua data de nascimento" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:272 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 @@ -1340,11 +1381,11 @@ msgstr "Confirme sua data de nascimento" msgid "Confirmation code" msgstr "Código de confirmação" -#: src/screens/Login/LoginForm.tsx:305 +#: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." msgstr "Conectando..." -#: src/screens/Signup/index.tsx:276 +#: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "Contatar suporte" @@ -1385,7 +1426,7 @@ msgstr "Avisos de conteúdo" msgid "Context menu backdrop, click to close the menu." msgstr "Fundo do menu, clique para fechá-lo." -#: src/screens/Onboarding/StepInterests/index.tsx:258 +#: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Continuar" @@ -1398,9 +1439,9 @@ msgstr "Continuar como {0} (já conectado)" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:255 +#: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/index.tsx:251 +#: src/screens/Signup/BackNextButtons.tsx:59 msgid "Continue to next step" msgstr "Continuar para o próximo passo" @@ -1425,7 +1466,7 @@ msgstr "Culinária" msgid "Copied" msgstr "Copiado" -#: src/view/screens/Settings/index.tsx:263 +#: src/view/screens/Settings/index.tsx:264 msgid "Copied build version to clipboard" msgstr "Versão do aplicativo copiada" @@ -1434,7 +1475,7 @@ msgstr "Versão do aplicativo copiada" #: 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/post-ctrls/PostCtrls.tsx:350 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Copiado" @@ -1491,7 +1532,7 @@ msgstr "Copiar texto do post" msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Política de Direitos Autorais" @@ -1529,7 +1570,7 @@ msgstr "" msgid "Create a new account" msgstr "Criar uma nova conta" -#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" msgstr "Criar uma nova conta do Bluesky" @@ -1539,7 +1580,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:338 msgid "Create a starter pack" msgstr "" @@ -1547,7 +1588,7 @@ msgstr "" msgid "Create a starter pack for me" msgstr "" -#: src/screens/Signup/index.tsx:154 +#: src/screens/Signup/index.tsx:88 msgid "Create Account" msgstr "Criar Conta" @@ -1603,7 +1644,7 @@ msgstr "Customizado" msgid "Custom domain" msgstr "Domínio personalizado" -#: src/view/screens/Feeds.tsx:747 +#: src/view/screens/Feeds.tsx:760 #: src/view/screens/Search/Explore.tsx:390 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." @@ -1612,8 +1653,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:458 -#: src/view/screens/Settings/index.tsx:484 +#: src/view/screens/Settings/index.tsx:459 +#: src/view/screens/Settings/index.tsx:485 msgid "Dark" msgstr "Escuro" @@ -1621,24 +1662,24 @@ msgstr "Escuro" msgid "Dark mode" msgstr "Modo escuro" -#: src/view/screens/Settings/index.tsx:471 +#: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" msgstr "Modo Escuro" -#: src/screens/Signup/StepInfo/index.tsx:134 +#: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" msgstr "Data de nascimento" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:818 +#: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:873 +#: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" msgstr "Testar Moderação" @@ -1647,16 +1688,16 @@ msgid "Debug panel" msgstr "Painel de depuração" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:484 -#: src/screens/StarterPack/StarterPackScreen.tsx:563 -#: src/screens/StarterPack/StarterPackScreen.tsx:643 +#: 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/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Excluir" -#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:829 msgid "Delete account" msgstr "Excluir a conta" @@ -1676,8 +1717,8 @@ msgstr "Excluir senha de aplicativo" msgid "Delete app password?" msgstr "Excluir senha de aplicativo?" -#: src/view/screens/Settings/index.tsx:890 -#: src/view/screens/Settings/index.tsx:893 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" msgstr "" @@ -1701,7 +1742,7 @@ msgstr "Excluir mensagem para mim" msgid "Delete my account" msgstr "Excluir minha conta" -#: src/view/screens/Settings/index.tsx:840 +#: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" msgstr "Excluir minha conta…" @@ -1710,12 +1751,12 @@ msgstr "Excluir minha conta…" msgid "Delete post" msgstr "Excluir post" -#: src/screens/StarterPack/StarterPackScreen.tsx:478 -#: src/screens/StarterPack/StarterPackScreen.tsx:634 +#: src/screens/StarterPack/StarterPackScreen.tsx:556 +#: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" msgstr "" @@ -1735,7 +1776,7 @@ msgstr "Excluído" msgid "Deleted post." msgstr "Post excluído." -#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" msgstr "" @@ -1754,7 +1795,7 @@ msgstr "Texto alternativo" msgid "Did you want to say anything?" msgstr "Você gostaria de dizer alguma coisa?" -#: src/view/screens/Settings/index.tsx:477 +#: src/view/screens/Settings/index.tsx:478 msgid "Dim" msgstr "Menos escuro" @@ -1804,6 +1845,10 @@ msgstr "Descartar rascunho?" msgid "Discourage apps from showing my account to logged-out users" msgstr "Desencorajar aplicativos a mostrar minha conta para usuários desautenticados" +#: src/tours/HomeTour.tsx:70 +msgid "Discover learns which posts you like as you browse." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -1813,10 +1858,14 @@ msgstr "Descubra novos feeds" msgid "Discover new feeds" msgstr "" -#: src/view/screens/Feeds.tsx:744 +#: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" msgstr "Descubra Novos Feeds" +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "" + #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" msgstr "" @@ -1837,7 +1886,7 @@ msgstr "Painel DNS" msgid "Does not include nudity." msgstr "Não inclui nudez." -#: src/screens/Signup/StepHandle.tsx:105 +#: src/screens/Signup/StepHandle.tsx:156 msgid "Doesn't begin or end with a hyphen" msgstr "Não começa ou termina com um hífen" @@ -1882,7 +1931,7 @@ msgstr "Feito" msgid "Done{extraText}" msgstr "Feito{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" msgstr "" @@ -1891,7 +1940,7 @@ msgstr "" msgid "Download CAR file" msgstr "Baixar arquivo CAR" -#: src/view/com/composer/text-input/TextInput.web.tsx:272 +#: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" msgstr "Solte para adicionar imagens" @@ -1939,11 +1988,11 @@ msgstr "ex. Perfis que enchem o saco." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Cada convite só funciona uma vez. Você receberá mais convites periodicamente." -#: src/screens/StarterPack/StarterPackScreen.tsx:473 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "" @@ -1974,9 +2023,9 @@ msgstr "Editar detalhes da lista" msgid "Edit Moderation List" msgstr "Editar lista de moderação" -#: src/Navigation.tsx:271 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 +#: src/Navigation.tsx:274 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Editar Meus Feeds" @@ -2004,7 +2053,7 @@ msgstr "Editar Perfil" #~ msgid "Edit Saved Feeds" #~ msgstr "Editar Feeds Salvos" -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" msgstr "" @@ -2024,7 +2073,7 @@ msgstr "Editar seu nome" msgid "Edit your profile description" msgstr "Editar sua descrição" -#: src/Navigation.tsx:335 +#: src/Navigation.tsx:343 msgid "Edit your starter pack" msgstr "" @@ -2037,7 +2086,7 @@ msgstr "Educação" msgid "Either choose \"Everybody\" or \"Nobody\"" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "E-mail" @@ -2063,7 +2112,7 @@ msgstr "E-mail Atualizado" msgid "Email verified" msgstr "E-mail verificado" -#: src/view/screens/Settings/index.tsx:349 +#: src/view/screens/Settings/index.tsx:350 msgid "Email:" msgstr "E-mail:" @@ -2129,6 +2178,10 @@ msgstr "Fim do feed" #~ 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 "" + #: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "Insira um nome para esta Senha de Aplicativo" @@ -2163,7 +2216,7 @@ msgid "Enter your birth date" msgstr "Insira seu aniversário" #: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:92 +#: src/screens/Signup/StepInfo/index.tsx:152 msgid "Enter your email address" msgstr "Digite seu endereço de e-mail" @@ -2183,11 +2236,11 @@ msgstr "Digite seu nome de usuário e senha" msgid "Error occurred while saving file" msgstr "Não foi possível salvar o arquivo" -#: src/screens/Signup/StepCaptcha/index.tsx:51 +#: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." msgstr "Não foi possível processar o captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:197 +#: src/screens/Onboarding/StepInterests/index.tsx:216 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Erro:" @@ -2242,7 +2295,7 @@ msgstr "Sair da busca" msgid "Expand alt text" msgstr "Expandir texto alternativo" -#: src/view/com/notifications/FeedItem.tsx:227 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" msgstr "" @@ -2259,12 +2312,12 @@ msgstr "Imagens explícitas ou potencialmente perturbadoras." msgid "Explicit sexual images." msgstr "Imagens sexualmente explícitas." -#: src/view/screens/Settings/index.tsx:786 +#: src/view/screens/Settings/index.tsx:787 msgid "Export my data" msgstr "Exportar meus dados" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:797 +#: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" msgstr "Exportar Meus Dados" @@ -2278,13 +2331,13 @@ msgstr "Mídia Externa" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Mídias externas podem permitir que sites coletem informações sobre você e seu dispositivo. Nenhuma informação é enviada ou solicitada até que você pressione o botão de \"play\"." -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:293 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/view/screens/Settings/index.tsx:680 msgid "External Media Preferences" msgstr "Preferências de Mídia Externa" -#: src/view/screens/Settings/index.tsx:670 +#: src/view/screens/Settings/index.tsx:671 msgid "External media settings" msgstr "Preferências de mídia externa" @@ -2310,7 +2363,7 @@ msgstr "Não foi possível excluir esta mensagem" msgid "Failed to delete post, please try again" msgstr "Não foi possível excluir o post, por favor tente novamente." -#: src/screens/StarterPack/StarterPackScreen.tsx:597 +#: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" msgstr "" @@ -2367,7 +2420,7 @@ msgstr "" msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:285 +#: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" msgstr "" @@ -2376,11 +2429,11 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:211 +#: src/Navigation.tsx:214 msgid "Feed" msgstr "Feed" -#: src/components/FeedCard.tsx:161 +#: src/components/FeedCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "Feed por {0}" @@ -2393,17 +2446,18 @@ msgstr "Feed por {0}" msgid "Feed toggle" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Comentários" -#: src/Navigation.tsx:320 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 +#: src/Navigation.tsx:323 +#: 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:373 +#: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" @@ -2421,7 +2475,7 @@ msgstr "Os feeds são algoritmos personalizados que os usuários com um pouco de #~ msgid "Feeds can be topical as well!" #~ msgstr "Feeds podem ser de assuntos específicos também!" -#: src/components/FeedCard.tsx:282 +#: src/components/FeedCard.tsx:266 msgid "Feeds updated!" msgstr "" @@ -2437,7 +2491,7 @@ msgstr "Arquivo salvo com sucesso!" msgid "Filter from feeds" msgstr "Filtrar dos feeds" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 msgid "Finalizing" msgstr "Finalizando" @@ -2447,6 +2501,10 @@ msgstr "Finalizando" msgid "Find accounts to follow" msgstr "Encontre contas para seguir" +#: src/tours/HomeTour.tsx:88 +msgid "Find more feeds and accounts to follow in the Explore page." +msgstr "" + #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "Encontre posts e usuários no Bluesky" @@ -2475,11 +2533,15 @@ msgstr "Ajuste as threads." msgid "Finish" msgstr "" +#: src/tours/Tooltip.tsx:149 +msgid "Finish tour and begin using the application" +msgstr "" + #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "Fitness" -#: src/screens/Onboarding/StepFinished.tsx:269 +#: src/screens/Onboarding/StepFinished.tsx:277 msgid "Flexible" msgstr "Flexível" @@ -2492,6 +2554,8 @@ msgstr "Virar horizontalmente" msgid "Flip vertically" msgstr "Virar verticalmente" +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:341 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2514,13 +2578,17 @@ msgstr "Seguir {0}" msgid "Follow {name}" msgstr "" +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "" + #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" msgstr "Seguir Conta" -#: src/screens/StarterPack/StarterPackScreen.tsx:345 -#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:405 +#: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" msgstr "" @@ -2548,7 +2616,7 @@ msgstr "" #~ msgid "Followed by" #~ msgstr "" -#: src/view/com/profile/ProfileCard.tsx:227 +#: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" msgstr "Seguido por {0}" @@ -2576,16 +2644,20 @@ msgstr "Usuários seguidos" msgid "Followed users only" msgstr "Somente usuários seguidos" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:197 msgid "followed you" msgstr "seguiu você" +#: src/view/com/notifications/FeedItem.tsx:195 +msgid "followed you back" +msgstr "" + #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "Seguidores" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" msgstr "" @@ -2594,17 +2666,20 @@ msgstr "" msgid "Followers you know" msgstr "" +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:335 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:630 +#: src/view/screens/Feeds.tsx:631 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Seguindo" +#: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Seguindo {0}" @@ -2613,21 +2688,25 @@ msgstr "Seguindo {0}" msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:573 +#: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" msgstr "Configurações do feed principal" -#: src/Navigation.tsx:277 +#: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "Following Feed Preferences" msgstr "Configurações do feed principal" +#: src/tours/HomeTour.tsx:59 +msgid "Following shows the latest posts from people you follow." +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "Segue você" -#: src/view/com/profile/ProfileCard.tsx:152 +#: src/components/Pills.tsx:165 msgid "Follows You" msgstr "Segue Você" @@ -2649,11 +2728,11 @@ msgstr "Por motivos de segurança, você não poderá ver esta senha novamente. msgid "Forgot Password" msgstr "Esqueci a Senha" -#: src/screens/Login/LoginForm.tsx:227 +#: src/screens/Login/LoginForm.tsx:246 msgid "Forgot password?" msgstr "Esqueceu a senha?" -#: src/screens/Login/LoginForm.tsx:238 +#: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" msgstr "Esqueceu?" @@ -2687,6 +2766,10 @@ msgstr "" msgid "Get Started" msgstr "Vamos começar" +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "" + #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" msgstr "" @@ -2701,31 +2784,35 @@ msgstr "Violações flagrantes da lei ou dos termos de serviço" #: src/components/moderation/ScreenHider.tsx:151 #: src/components/moderation/ScreenHider.tsx:160 -#: src/view/com/auth/LoggedOut.tsx:78 -#: src/view/com/auth/LoggedOut.tsx:79 +#: src/view/com/auth/LoggedOut.tsx:80 +#: src/view/com/auth/LoggedOut.tsx:81 #: src/view/screens/NotFound.tsx:55 #: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Voltar" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:656 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Voltar" +#: 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/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:225 +#: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" msgstr "Voltar para o passo anterior" @@ -2759,6 +2846,10 @@ msgstr "Próximo" msgid "Go to profile" msgstr "Ir para este perfil" +#: src/tours/Tooltip.tsx:138 +msgid "Go to the next step of the tour" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "Ir para o perfil deste usuário" @@ -2767,6 +2858,10 @@ msgstr "Ir para o perfil deste usuário" msgid "Graphic Media" msgstr "Conteúdo Gráfico" +#: src/state/shell/progress-guide.tsx:166 +msgid "Half way there!" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" msgstr "Usuário" @@ -2779,19 +2874,19 @@ msgstr "Feedback tátil" msgid "Harassment, trolling, or intolerance" msgstr "Assédio, intolerância ou \"trollagem\"" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:308 msgid "Hashtag" msgstr "Hashtag" -#: src/components/RichText.tsx:216 +#: src/components/RichText.tsx:218 msgid "Hashtag: #{tag}" msgstr "Hashtag: #{tag}" -#: src/screens/Signup/index.tsx:272 +#: src/screens/Signup/index.tsx:167 msgid "Having trouble?" msgstr "Precisa de ajuda?" -#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/desktop/RightNav.tsx:99 #: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Ajuda" @@ -2827,7 +2922,7 @@ msgstr "Aqui está a sua senha de aplicativo." msgid "Hide" msgstr "Ocultar" -#: src/view/com/notifications/FeedItem.tsx:433 +#: src/view/com/notifications/FeedItem.tsx:444 msgctxt "action" msgid "Hide" msgstr "Esconder" @@ -2846,7 +2941,7 @@ msgstr "Esconder o conteúdo" msgid "Hide this post?" msgstr "Ocultar este post?" -#: src/view/com/notifications/FeedItem.tsx:424 +#: src/view/com/notifications/FeedItem.tsx:435 msgid "Hide user list" msgstr "Ocultar lista de usuários" @@ -2878,10 +2973,10 @@ 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:511 -#: src/Navigation.tsx:531 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: src/Navigation.tsx:519 +#: src/Navigation.tsx:539 +#: 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 msgid "Home" @@ -2892,8 +2987,8 @@ msgid "Host:" msgstr "Host:" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:160 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:180 +#: src/screens/Signup/StepInfo/index.tsx:106 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "Provedor de hospedagem" @@ -2993,19 +3088,19 @@ msgstr "Insira a nova senha" msgid "Input password for account deletion" msgstr "Insira a senha para excluir a conta" -#: src/screens/Login/LoginForm.tsx:266 +#: src/screens/Login/LoginForm.tsx:286 msgid "Input the code which has been emailed to you" msgstr "Insira o código que você recebeu por e-mail" #: src/screens/Login/LoginForm.tsx:221 -msgid "Input the password tied to {identifier}" -msgstr "Insira a senha da conta {identifier}" +#~ msgid "Input the password tied to {identifier}" +#~ msgstr "Insira a senha da conta {identifier}" -#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Login/LoginForm.tsx:215 msgid "Input the username or email address you used at signup" msgstr "Insira o usuário ou e-mail que você cadastrou" -#: src/screens/Login/LoginForm.tsx:220 +#: src/screens/Login/LoginForm.tsx:241 msgid "Input your password" msgstr "Insira sua senha" @@ -3013,7 +3108,7 @@ msgstr "Insira sua senha" msgid "Input your preferred hosting provider" msgstr "Insira seu provedor de hospedagem" -#: src/screens/Signup/StepHandle.tsx:63 +#: src/screens/Signup/StepHandle.tsx:111 msgid "Input your user handle" msgstr "Insira o usuário" @@ -3021,7 +3116,7 @@ msgstr "Insira o usuário" msgid "Introducing Direct Messages" msgstr "" -#: src/screens/Login/LoginForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:140 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "Código de confirmação inválido." @@ -3030,7 +3125,7 @@ msgstr "Código de confirmação inválido." msgid "Invalid or unsupported post record" msgstr "Post inválido" -#: src/screens/Login/LoginForm.tsx:140 +#: src/screens/Login/LoginForm.tsx:145 msgid "Invalid username or password" msgstr "Credenciais inválidas" @@ -3038,11 +3133,11 @@ msgstr "Credenciais inválidas" msgid "Invite a Friend" msgstr "Convide um Amigo" -#: src/screens/Signup/StepInfo/index.tsx:58 +#: src/screens/Signup/StepInfo/index.tsx:124 msgid "Invite code" msgstr "Convite" -#: src/screens/Signup/state.ts:275 +#: src/screens/Signup/state.ts:251 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Convite inválido. Verifique se você o inseriu corretamente e tente novamente." @@ -3078,8 +3173,10 @@ msgstr "" msgid "Jobs" msgstr "Carreiras" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackScreen.tsx:432 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" msgstr "" @@ -3128,16 +3225,16 @@ msgstr "Rótulos sobre seu conteúdo" msgid "Language selection" msgstr "Seleção de idioma" -#: src/view/screens/Settings/index.tsx:530 +#: src/view/screens/Settings/index.tsx:531 msgid "Language settings" msgstr "Configuração de Idioma" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:155 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Configurações de Idiomas" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Languages" msgstr "Idiomas" @@ -3197,7 +3294,7 @@ msgstr "Saindo do Bluesky" msgid "left to go." msgstr "na sua frente." -#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:309 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Armazenamento limpo, você precisa reiniciar o app agora." @@ -3210,11 +3307,12 @@ msgstr "" msgid "Let's get your password reset!" msgstr "Vamos redefinir sua senha!" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 +#: src/tours/Tooltip.tsx:151 msgid "Let's go!" msgstr "Vamos lá!" -#: src/view/screens/Settings/index.tsx:452 +#: src/view/screens/Settings/index.tsx:453 msgid "Light" msgstr "Claro" @@ -3222,14 +3320,23 @@ msgstr "Claro" #~ msgid "Like" #~ msgstr "Curtir" +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:167 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 #: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Curtir este feed" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:216 -#: src/Navigation.tsx:221 +#: src/Navigation.tsx:219 +#: src/Navigation.tsx:224 msgid "Liked by" msgstr "Curtido por" @@ -3253,11 +3360,11 @@ msgstr "Curtido Por" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "Curtido por {likeCount} {0}" -#: src/view/com/notifications/FeedItem.tsx:190 +#: src/view/com/notifications/FeedItem.tsx:201 msgid "liked your custom feed" msgstr "curtiram seu feed" -#: src/view/com/notifications/FeedItem.tsx:182 +#: src/view/com/notifications/FeedItem.tsx:185 msgid "liked your post" msgstr "curtiu seu post" @@ -3269,7 +3376,7 @@ msgstr "Curtidas" msgid "Likes on this post" msgstr "Curtidas neste post" -#: src/Navigation.tsx:185 +#: src/Navigation.tsx:188 msgid "List" msgstr "Lista" @@ -3281,7 +3388,7 @@ msgstr "Avatar da lista" msgid "List blocked" msgstr "Lista bloqueada" -#: src/components/FeedCard.tsx:155 +#: src/components/ListCard.tsx:113 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "Lista por {0}" @@ -3306,10 +3413,10 @@ msgstr "Lista desbloqueada" msgid "List unmuted" msgstr "Lista dessilenciada" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:125 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/desktop/LeftNav.tsx:385 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 msgid "Lists" @@ -3346,7 +3453,7 @@ msgstr "Carregar novos posts" msgid "Loading..." msgstr "Carregando..." -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:239 msgid "Log" msgstr "Registros" @@ -3370,7 +3477,7 @@ msgstr "Visibilidade do seu perfil" msgid "Login to account that is not listed" msgstr "Fazer login em uma conta que não está listada" -#: src/components/RichText.tsx:217 +#: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" msgstr "Segure para abrir o menu da tag #{tag}" @@ -3455,7 +3562,7 @@ msgstr "Mensagem longa demais" msgid "Message settings" msgstr "Configurações das mensagens" -#: src/Navigation.tsx:526 +#: src/Navigation.tsx:534 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3470,9 +3577,9 @@ msgstr "Mensagens" msgid "Misleading Account" msgstr "Conta Enganosa" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:130 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Moderation" msgstr "Moderação" @@ -3480,7 +3587,7 @@ msgstr "Moderação" msgid "Moderation details" msgstr "Detalhes da moderação" -#: src/components/FeedCard.tsx:157 +#: src/components/ListCard.tsx:109 #: src/view/com/lists/ListCard.tsx:95 #: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" @@ -3508,16 +3615,16 @@ msgstr "Lista de moderação criada" msgid "Moderation lists" msgstr "Listas de moderação" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Listas de Moderação" -#: src/view/screens/Settings/index.tsx:555 +#: src/view/screens/Settings/index.tsx:556 msgid "Moderation settings" msgstr "Moderação" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:234 msgid "Moderation states" msgstr "Moderação" @@ -3550,6 +3657,10 @@ msgstr "Respostas mais curtidas primeiro" msgid "Movies" msgstr "" +#: src/screens/Onboarding/state.ts:91 +msgid "Music" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "Silenciar" @@ -3623,7 +3734,7 @@ msgstr "Silenciada" msgid "Muted accounts" msgstr "Contas silenciadas" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Contas Silenciadas" @@ -3649,19 +3760,19 @@ msgstr "Silenciar é privado. Contas silenciadas podem interagir com você, mas msgid "My Birthday" msgstr "Meu Aniversário" -#: src/view/screens/Feeds.tsx:718 +#: src/view/screens/Feeds.tsx:731 msgid "My Feeds" msgstr "Meus Feeds" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Meu Perfil" -#: src/view/screens/Settings/index.tsx:616 +#: src/view/screens/Settings/index.tsx:617 msgid "My saved feeds" msgstr "Meus feeds salvos" -#: src/view/screens/Settings/index.tsx:622 +#: src/view/screens/Settings/index.tsx:623 msgid "My Saved Feeds" msgstr "Meus Feeds Salvos" @@ -3682,16 +3793,20 @@ msgid "Name or Description Violates Community Standards" msgstr "Nome ou Descrição Viola os Padrões da Comunidade" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:92 msgid "Nature" msgstr "Natureza" +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "" + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:332 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Navega para próxima tela" @@ -3709,7 +3824,7 @@ msgstr "Precisa denunciar uma violação de copyright?" #~ msgid "Never lose access to your followers and data." #~ msgstr "Nunca perca o acesso aos seus seguidores e dados." -#: src/screens/Onboarding/StepFinished.tsx:257 +#: src/screens/Onboarding/StepFinished.tsx:265 msgid "Never lose access to your followers or data." msgstr "Nunca perca o acesso aos seus seguidores ou dados." @@ -3753,17 +3868,17 @@ msgctxt "action" msgid "New post" msgstr "Novo post" -#: src/view/screens/Feeds.tsx:580 +#: 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/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/shell/desktop/LeftNav.tsx:278 msgid "New post" msgstr "Novo post" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:284 msgctxt "action" msgid "New Post" msgstr "Novo Post" @@ -3781,21 +3896,22 @@ msgid "Newest replies first" msgstr "Respostas mais recentes primeiro" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:93 msgid "News" msgstr "Notícias" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:311 -#: src/screens/Login/LoginForm.tsx:318 +#: src/screens/Login/LoginForm.tsx:331 +#: src/screens/Login/LoginForm.tsx:338 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:258 +#: src/screens/Signup/BackNextButtons.tsx:66 #: src/screens/StarterPack/Wizard/index.tsx:184 #: src/screens/StarterPack/Wizard/index.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:359 #: src/screens/StarterPack/Wizard/index.tsx:366 +#: src/tours/Tooltip.tsx:139 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3837,11 +3953,12 @@ msgstr "Nenhum GIF em destaque encontrado." msgid "No feeds found. Try searching for something else." msgstr "" +#: src/components/ProfileCard.tsx:321 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "Você não está mais seguindo {0}" -#: src/screens/Signup/StepHandle.tsx:115 +#: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" msgstr "No máximo 253 caracteres" @@ -3853,7 +3970,7 @@ msgstr "Nenhuma mensagem ainda" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:118 +#: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "Nenhuma notificação!" @@ -3881,7 +3998,7 @@ msgstr "" msgid "No results found" msgstr "Nenhum resultado encontrado" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" msgstr "Nenhum resultado encontrado para \"{query}\"" @@ -3931,7 +4048,7 @@ msgstr "Nudez não-erótica" #~ msgid "Not Applicable." #~ msgstr "Não Aplicável." -#: src/Navigation.tsx:117 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Não encontrado" @@ -3943,7 +4060,7 @@ msgstr "Agora não" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:315 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "Nota sobre compartilhamento" @@ -3963,11 +4080,11 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:529 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 +#: 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 msgid "Notifications" @@ -4003,7 +4120,7 @@ msgstr "Desligado" msgid "Oh no!" msgstr "Opa!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:152 msgid "Oh no! Something went wrong." msgstr "Opa! Algo deu errado." @@ -4027,10 +4144,14 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:256 +#: src/view/screens/Settings/index.tsx:257 msgid "Onboarding reset" msgstr "Resetar tutoriais" +#: src/tours/Tooltip.tsx:118 +msgid "Onboarding tour step {0}: {1}" +msgstr "" + #: src/view/com/composer/Composer.tsx:522 msgid "One or more images is missing alt text." msgstr "Uma ou mais imagens estão sem texto alternativo." @@ -4047,7 +4168,7 @@ msgstr "" #~ msgid "Only {0} can reply." #~ msgstr "Apenas {0} pode responder." -#: src/screens/Signup/StepHandle.tsx:98 +#: src/screens/Signup/StepHandle.tsx:149 msgid "Only contains letters, numbers, and hyphens" msgstr "Contém apenas letras, números e hífens" @@ -4063,7 +4184,7 @@ msgstr "Opa, algo deu errado!" msgid "Oops!" msgstr "Opa!" -#: src/screens/Onboarding/StepFinished.tsx:253 +#: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" msgstr "Abrir" @@ -4089,7 +4210,7 @@ msgstr "Abrir seletor de emojis" msgid "Open feed options menu" msgstr "Abrir opções do feed" -#: src/view/screens/Settings/index.tsx:736 +#: src/view/screens/Settings/index.tsx:737 msgid "Open links with in-app browser" msgstr "Abrir links no navegador interno" @@ -4109,16 +4230,16 @@ msgstr "Abrir navegação" msgid "Open post options menu" msgstr "Abrir opções do post" -#: src/screens/StarterPack/StarterPackScreen.tsx:451 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:861 +#: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" msgstr "Abre o storybook" -#: src/view/screens/Settings/index.tsx:848 +#: src/view/screens/Settings/index.tsx:849 msgid "Open system log" msgstr "Abrir registros do sistema" @@ -4130,7 +4251,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:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Opens accessibility settings" msgstr "Abre as configurações de acessibilidade" @@ -4146,7 +4267,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:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Opens chat settings" msgstr "" @@ -4154,7 +4275,7 @@ msgstr "" msgid "Opens composer" msgstr "Abre o editor de post" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Opens configurable language settings" msgstr "Abre definições de idioma configuráveis" @@ -4162,7 +4283,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:671 +#: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" msgstr "Abre as configurações de anexos externos" @@ -4184,27 +4305,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:808 +#: src/view/screens/Settings/index.tsx:809 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:830 +#: src/view/screens/Settings/index.tsx:831 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:765 +#: src/view/screens/Settings/index.tsx:766 msgid "Opens modal for changing your Bluesky password" msgstr "Abre modal para troca da sua senha do Bluesky" -#: src/view/screens/Settings/index.tsx:720 +#: src/view/screens/Settings/index.tsx:721 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:788 +#: src/view/screens/Settings/index.tsx:789 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:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Opens modal for email verification" msgstr "Abre modal para verificação de email" @@ -4212,11 +4333,11 @@ 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:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Opens moderation settings" msgstr "Abre configurações de moderação" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:247 msgid "Opens password reset form" msgstr "Abre o formulário de redefinição de senha" @@ -4225,15 +4346,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:617 +#: src/view/screens/Settings/index.tsx:618 msgid "Opens screen with all saved feeds" msgstr "Abre a tela com todos os feeds salvos" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "Opens the app password settings" msgstr "Abre as configurações de senha do aplicativo" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Opens the Following feed preferences" msgstr "Abre as preferências do feed inicial" @@ -4245,20 +4366,20 @@ 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:861 -#: src/view/screens/Settings/index.tsx:871 +#: src/view/screens/Settings/index.tsx:862 +#: src/view/screens/Settings/index.tsx:872 msgid "Opens the storybook page" msgstr "Abre a página do storybook" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" msgstr "Abre a página de log do sistema" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Opens the threads preferences" msgstr "Abre as preferências de threads" -#: src/view/com/notifications/FeedItem.tsx:513 +#: src/view/com/notifications/FeedItem.tsx:524 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "" @@ -4309,8 +4430,8 @@ msgstr "Página não encontrada" msgid "Page Not Found" msgstr "Página Não Encontrada" -#: src/screens/Login/LoginForm.tsx:204 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Signup/StepInfo/index.tsx:162 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4332,15 +4453,16 @@ msgstr "Senha atualizada!" msgid "Pause" msgstr "Pausar" +#: src/screens/StarterPack/StarterPackScreen.tsx:170 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "Pessoas" -#: src/Navigation.tsx:172 +#: src/Navigation.tsx:175 msgid "People followed by @{0}" msgstr "Pessoas seguidas por @{0}" -#: src/Navigation.tsx:165 +#: src/Navigation.tsx:168 msgid "People following @{0}" msgstr "Pessoas seguindo @{0}" @@ -4357,11 +4479,11 @@ msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:94 msgid "Pets" msgstr "Pets" -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:95 msgid "Photography" msgstr "" @@ -4412,15 +4534,16 @@ msgstr "Reproduzir Vídeo" msgid "Plays the GIF" msgstr "Reproduz o GIF" -#: src/screens/Signup/state.ts:234 +#: src/screens/Signup/state.ts:210 msgid "Please choose your handle." msgstr "Por favor, escolha seu usuário." -#: src/screens/Signup/state.ts:227 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:81 msgid "Please choose your password." msgstr "Por favor, escolha sua senha." -#: src/screens/Signup/state.ts:248 +#: src/screens/Signup/state.ts:224 msgid "Please complete the verification captcha." msgstr "Por favor, complete o captcha de verificação." @@ -4440,10 +4563,15 @@ msgstr "Por favor, insira um nome único para esta Senha de Aplicativo ou use no msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Por favor, insira uma palavra, tag ou frase para silenciar" -#: src/screens/Signup/state.ts:213 +#: src/screens/Signup/state.ts:189 +#: src/screens/Signup/StepInfo/index.tsx:69 msgid "Please enter your email." msgstr "Por favor, digite o seu e-mail." +#: src/screens/Signup/StepInfo/index.tsx:63 +msgid "Please enter your invite code." +msgstr "" + #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" msgstr "Por favor, digite sua senha também:" @@ -4470,7 +4598,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Aguarde até que a prévia de link termine de carregar" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:96 msgid "Politics" msgstr "Política" @@ -4493,9 +4621,9 @@ msgstr "Post" msgid "Post by {0}" msgstr "Post por {0}" -#: src/Navigation.tsx:191 -#: src/Navigation.tsx:198 -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:194 +#: src/Navigation.tsx:201 +#: src/Navigation.tsx:208 msgid "Post by @{0}" msgstr "Post por @{0}" @@ -4534,6 +4662,7 @@ msgstr "Post não encontrado" msgid "posts" msgstr "posts" +#: src/screens/StarterPack/StarterPackScreen.tsx:172 #: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Posts" @@ -4561,7 +4690,7 @@ msgstr "Trocar de provedor de hospedagem" #: src/components/Error.tsx:85 #: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/index.tsx:238 +#: src/screens/Signup/BackNextButtons.tsx:46 msgid "Press to retry" msgstr "Tentar novamente" @@ -4586,15 +4715,15 @@ msgstr "Idioma Principal" msgid "Prioritize Your Follows" msgstr "Priorizar seus Seguidores" -#: src/view/screens/Settings/index.tsx:654 -#: src/view/shell/desktop/RightNav.tsx:77 +#: src/view/screens/Settings/index.tsx:655 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Privacidade" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 +#: src/view/screens/Settings/index.tsx:958 #: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Política de Privacidade" @@ -4612,8 +4741,8 @@ msgstr "Processando..." msgid "profile" msgstr "perfil" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 +#: 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 @@ -4624,11 +4753,11 @@ msgstr "Perfil" msgid "Profile updated" msgstr "Perfil atualizado" -#: src/view/screens/Settings/index.tsx:1021 +#: src/view/screens/Settings/index.tsx:1022 msgid "Protect your account by verifying your email." msgstr "Proteja a sua conta verificando o seu e-mail." -#: src/screens/Onboarding/StepFinished.tsx:239 +#: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" msgstr "Público" @@ -4660,6 +4789,10 @@ msgstr "" msgid "QR code saved to your camera roll!" msgstr "" +#: src/tours/Tooltip.tsx:111 +msgid "Quick tip" +msgstr "" + #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:79 @@ -4718,7 +4851,7 @@ msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:325 +#: src/components/FeedCard.tsx:309 #: src/components/StarterPack/Wizard/WizardListCard.tsx:95 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 @@ -4767,7 +4900,7 @@ msgstr "Remover feed?" msgid "Remove from my feeds" msgstr "Remover dos meus feeds" -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:304 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Remover dos meus feeds?" @@ -4919,8 +5052,8 @@ msgstr "Denunciar mensagem" msgid "Report post" msgstr "Denunciar post" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 -#: src/screens/StarterPack/StarterPackScreen.tsx:507 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 msgid "Report starter pack" msgstr "" @@ -4966,7 +5099,7 @@ msgstr "Repostar" msgid "Repost" msgstr "Repostar" -#: src/screens/StarterPack/StarterPackScreen.tsx:446 +#: src/screens/StarterPack/StarterPackScreen.tsx:524 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4989,7 +5122,7 @@ msgstr "Repostado por {0}" msgid "Reposted by <0><1/>" msgstr "Repostado por <0><1/>" -#: src/view/com/notifications/FeedItem.tsx:184 +#: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "repostou seu post" @@ -5015,7 +5148,7 @@ msgstr "Exigir texto alternativo antes de postar" msgid "Require email code to log into your account" msgstr "Torna obrigatório um código de verificação por e-mail ao entrar nesta conta" -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" msgstr "Obrigatório para este provedor" @@ -5032,8 +5165,8 @@ msgstr "Código de redefinição" msgid "Reset Code" msgstr "Código de Redefinição" -#: src/view/screens/Settings/index.tsx:900 -#: src/view/screens/Settings/index.tsx:903 +#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" msgstr "Redefinir tutoriais" @@ -5041,20 +5174,20 @@ msgstr "Redefinir tutoriais" msgid "Reset password" msgstr "Redefinir senha" -#: src/view/screens/Settings/index.tsx:880 -#: src/view/screens/Settings/index.tsx:883 +#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:884 msgid "Reset preferences state" msgstr "Redefinir configurações" -#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" msgstr "Redefine tutoriais" -#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" msgstr "Redefine as configurações" -#: src/screens/Login/LoginForm.tsx:292 +#: src/screens/Login/LoginForm.tsx:312 msgid "Retries login" msgstr "Tenta entrar novamente" @@ -5067,12 +5200,12 @@ msgstr "Tenta a última ação, que deu erro" #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:291 -#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:311 +#: src/screens/Login/LoginForm.tsx:318 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Signup/BackNextButtons.tsx:52 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" @@ -5083,7 +5216,7 @@ msgstr "Tente novamente" #~ msgstr "Tentar novamente." #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:650 +#: src/screens/StarterPack/StarterPackScreen.tsx:728 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Voltar para página anterior" @@ -5179,13 +5312,13 @@ msgstr "Salva o corte da imagem" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:372 -#: src/view/com/notifications/FeedItem.tsx:397 +#: src/view/com/notifications/FeedItem.tsx:383 +#: src/view/com/notifications/FeedItem.tsx:408 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:97 msgid "Science" msgstr "Ciência" @@ -5194,16 +5327,16 @@ msgid "Scroll to top" msgstr "Ir para o topo" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:516 -#: src/view/com/auth/LoggedOut.tsx:119 +#: src/Navigation.tsx:524 +#: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 #: src/view/screens/Search/Search.tsx:791 #: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 +#: 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 @@ -5235,8 +5368,8 @@ msgstr "" #~ msgid "Search for someone to start a conversation with." #~ msgstr "Pesquise por alguém para começar um novo chat." -#: src/view/com/auth/LoggedOut.tsx:101 -#: src/view/com/auth/LoggedOut.tsx:102 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:107 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "Buscar usuários" @@ -5365,11 +5498,11 @@ msgstr "Selecione quais idiomas você deseja ver nos seus feeds. Se nenhum for s msgid "Select your app language for the default text to display in the app." msgstr "Selecione o idioma do seu aplicativo" -#: src/screens/Signup/StepInfo/index.tsx:135 +#: src/screens/Signup/StepInfo/index.tsx:192 msgid "Select your date of birth" msgstr "Selecione sua data de nascimento" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:225 msgid "Select your interests from the options below" msgstr "Selecione seus interesses" @@ -5482,23 +5615,23 @@ msgstr "Configure sua conta" msgid "Sets Bluesky username" msgstr "Configura o usuário no Bluesky" -#: src/view/screens/Settings/index.tsx:461 +#: src/view/screens/Settings/index.tsx:462 msgid "Sets color theme to dark" msgstr "Define o tema para escuro" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Sets color theme to light" msgstr "Define o tema para claro" -#: src/view/screens/Settings/index.tsx:448 +#: src/view/screens/Settings/index.tsx:449 msgid "Sets color theme to system setting" msgstr "Define o tema para seguir o sistema" -#: src/view/screens/Settings/index.tsx:487 +#: src/view/screens/Settings/index.tsx:488 msgid "Sets dark theme to the dark theme" msgstr "Define o tema escuro para o padrão" -#: src/view/screens/Settings/index.tsx:480 +#: src/view/screens/Settings/index.tsx:481 msgid "Sets dark theme to the dim theme" msgstr "Define o tema escuro para o menos escuro" @@ -5518,9 +5651,9 @@ 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:147 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:395 +#: src/Navigation.tsx:150 +#: src/view/screens/Settings/index.tsx:333 +#: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:559 #: src/view/shell/Drawer.tsx:560 msgid "Settings" @@ -5535,13 +5668,13 @@ msgid "Sexually Suggestive" msgstr "Sexualmente Sugestivo" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:340 -#: src/screens/StarterPack/StarterPackScreen.tsx:493 +#: 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/post-ctrls/PostCtrls.tsx:304 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Compartilhar" @@ -5561,7 +5694,7 @@ msgstr "" #: src/view/com/profile/ProfileMenu.tsx:377 #: src/view/com/util/forms/PostDropdownBtn.tsx:461 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:320 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "Compartilhar assim" @@ -5572,7 +5705,7 @@ msgstr "Compartilhar feed" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -5590,7 +5723,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:333 +#: src/screens/StarterPack/StarterPackScreen.tsx:393 msgid "Share this starter pack" msgstr "" @@ -5609,7 +5742,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:381 +#: src/view/screens/Settings/index.tsx:382 msgid "Show" msgstr "Mostrar" @@ -5617,7 +5750,7 @@ msgstr "Mostrar" #~ msgid "Show all replies" #~ msgstr "Mostrar todas as respostas" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "Mostrar texto alternativo" @@ -5736,17 +5869,17 @@ msgstr "Mostra posts de {0} no seu feed" #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:100 #: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Login/LoginForm.tsx:177 #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.tsx:72 #: src/view/com/auth/SplashScreen.web.tsx:112 #: src/view/com/auth/SplashScreen.web.tsx:121 -#: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 #: src/view/shell/bottom-bar/BottomBar.tsx:315 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/bottom-bar/BottomBar.tsx:318 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:210 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5774,12 +5907,12 @@ msgstr "Faça login no Bluesky ou crie uma nova conta" msgid "Sign out" msgstr "Sair" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 #: src/view/shell/bottom-bar/BottomBar.tsx:305 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBar.tsx:306 +#: src/view/shell/bottom-bar/BottomBar.tsx:308 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:200 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5795,7 +5928,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:391 +#: src/view/screens/Settings/index.tsx:392 msgid "Signed in as" msgstr "Entrou como" @@ -5804,21 +5937,21 @@ msgstr "Entrou como" msgid "Signed in as @{0}" msgstr "autenticado como @{0}" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:264 #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Pular" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:261 msgid "Skip this flow" msgstr "Pular" @@ -5827,6 +5960,10 @@ msgstr "Pular" msgid "Software Dev" msgstr "Desenvolvimento de software" +#: src/components/FeedInterstitials.tsx:378 +msgid "Some other feeds you might like" +msgstr "" + #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" @@ -5851,8 +5988,8 @@ msgstr "" msgid "Something went wrong, please try again." msgstr "Algo deu errado. Por favor, tente novamente." -#: src/App.native.tsx:96 -#: src/App.web.tsx:78 +#: src/App.native.tsx:98 +#: src/App.web.tsx:80 msgid "Sorry! Your session expired. Please log in again." msgstr "Opa! Sua sessão expirou. Por favor, entre novamente." @@ -5882,7 +6019,7 @@ msgid "Spam; excessive mentions or replies" msgstr "Spam; menções ou respostas excessivas" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:98 msgid "Sports" msgstr "Esportes" @@ -5902,17 +6039,22 @@ msgstr "" msgid "Start chatting" msgstr "" +#: src/tours/Tooltip.tsx:99 +msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +msgstr "" + #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:328 +#: src/Navigation.tsx:333 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:65 +#: src/components/StarterPack/StarterPackCard.tsx:70 msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:614 +#: src/screens/StarterPack/StarterPackScreen.tsx:692 msgid "Starter pack is invalid" msgstr "" @@ -5928,7 +6070,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Página de status" -#: src/view/screens/Settings/index.tsx:963 +#: src/view/screens/Settings/index.tsx:964 msgid "Status Page" msgstr "Página de status" @@ -5936,16 +6078,16 @@ msgstr "Página de status" #~ msgid "Step" #~ msgstr "Passo" -#: src/screens/Signup/index.tsx:192 +#: src/screens/Signup/index.tsx:125 msgid "Step {0} of {1}" msgstr "Passo {0} de {1}" -#: src/view/screens/Settings/index.tsx:304 +#: src/view/screens/Settings/index.tsx:305 msgid "Storage cleared, you need to restart the app now." msgstr "Armazenamento limpo, você precisa reiniciar o app agora." -#: src/Navigation.tsx:226 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:229 +#: src/view/screens/Settings/index.tsx:864 msgid "Storybook" msgstr "Storybook" @@ -5989,6 +6131,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "Sugestões de Seguidores" +#: src/components/FeedInterstitials.tsx:246 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Sugeridos para você" @@ -5997,7 +6140,7 @@ msgstr "Sugeridos para você" msgid "Suggestive" msgstr "Sugestivo" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:244 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6008,6 +6151,10 @@ msgstr "Suporte" msgid "Switch Account" msgstr "Alterar Conta" +#: src/tours/HomeTour.tsx:48 +msgid "Switch between feeds to control your experience." +msgstr "" + #: src/view/screens/Settings/index.tsx:160 msgid "Switch to {0}" msgstr "Trocar para {0}" @@ -6016,11 +6163,11 @@ msgstr "Trocar para {0}" msgid "Switches the account you are logged in to" msgstr "Troca a conta que você está autenticado" -#: src/view/screens/Settings/index.tsx:445 +#: src/view/screens/Settings/index.tsx:446 msgid "System" msgstr "Sistema" -#: src/view/screens/Settings/index.tsx:851 +#: src/view/screens/Settings/index.tsx:852 msgid "System log" msgstr "Log do sistema" @@ -6036,12 +6183,24 @@ msgstr "Menu da tag: {displayTag}" msgid "Tall" msgstr "Alto" +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "" + #: src/view/com/util/images/AutoSizedImage.tsx:70 msgid "Tap to view fully" msgstr "Toque para ver tudo" +#: src/state/shell/progress-guide.tsx:171 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "" + #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:99 msgid "Tech" msgstr "Tecnologia" @@ -6053,13 +6212,13 @@ msgstr "" msgid "Tell us a little more" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:86 +#: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Termos" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:254 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/Settings/index.tsx:952 #: src/view/screens/TermsOfService.tsx:29 #: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" @@ -6090,12 +6249,14 @@ msgstr "Obrigado. Sua denúncia foi enviada." msgid "That contains the following:" msgstr "Contém o seguinte:" -#: src/screens/Signup/index.tsx:100 +#: src/screens/Signup/StepHandle.tsx:50 msgid "That handle is already taken." msgstr "Este identificador de usuário já está sendo usado." -#: src/screens/StarterPack/StarterPackScreen.tsx:105 -#: src/screens/StarterPack/StarterPackScreen.tsx:106 +#: src/screens/StarterPack/StarterPackScreen.tsx:96 +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:136 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6118,7 +6279,12 @@ msgstr "As Diretrizes da Comunidade foram movidas para <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "A Política de Direitos Autorais foi movida para <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:177 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6147,7 +6313,7 @@ msgstr "O post pode ter sido excluído." msgid "The Privacy Policy has been moved to <0/>" msgstr "A Política de Privacidade foi movida para <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:624 +#: src/screens/StarterPack/StarterPackScreen.tsx:702 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6205,11 +6371,11 @@ 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:126 +#: src/view/com/notifications/Feed.tsx:125 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Tivemos um problema ao carregar notificações. Toque aqui para tentar de novo." -#: src/view/com/posts/Feed.tsx:299 +#: src/view/com/posts/Feed.tsx:459 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Tivemos um problema ao carregar posts. Toque aqui para tentar de novo." @@ -6405,7 +6571,7 @@ msgid "This post has been deleted." msgstr "Este post foi excluído." #: src/view/com/util/forms/PostDropdownBtn.tsx:458 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:317 +#: 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." @@ -6466,12 +6632,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:594 +#: src/view/screens/Settings/index.tsx:595 msgid "Thread preferences" msgstr "Preferências das Threads" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/Settings/index.tsx:605 msgid "Thread Preferences" msgstr "Preferências das Threads" @@ -6483,7 +6649,7 @@ msgstr "" msgid "Threaded Mode" msgstr "Visualização de Threads" -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:287 msgid "Threads Preferences" msgstr "Preferências das Threads" @@ -6534,11 +6700,11 @@ msgctxt "action" msgid "Try again" msgstr "Tentar novamente" -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:100 msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:745 +#: src/view/screens/Settings/index.tsx:746 msgid "Two-factor authentication" msgstr "Autenticação de dois fatores (2FA)" @@ -6560,14 +6726,14 @@ msgstr "Dessilenciar lista" #: src/screens/Login/ForgotPasswordForm.tsx:74 #: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:79 +#: src/screens/Signup/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Não foi possível entrar em contato com seu serviço. Por favor, verifique sua conexão à internet." -#: src/screens/StarterPack/StarterPackScreen.tsx:548 +#: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Unable to delete" msgstr "" @@ -6832,7 +6998,7 @@ msgstr "Lista de usuários atualizada" msgid "User Lists" msgstr "Listas de Usuários" -#: src/screens/Login/LoginForm.tsx:177 +#: src/screens/Login/LoginForm.tsx:197 msgid "Username or email address" msgstr "Nome de usuário ou endereço de e-mail" @@ -6871,15 +7037,15 @@ msgstr "Conteúdo:" msgid "Verify DNS Record" msgstr "Verificar registro DNS" -#: src/view/screens/Settings/index.tsx:982 +#: src/view/screens/Settings/index.tsx:983 msgid "Verify email" msgstr "Verificar e-mail" -#: src/view/screens/Settings/index.tsx:1007 +#: src/view/screens/Settings/index.tsx:1008 msgid "Verify my email" msgstr "Verificar meu e-mail" -#: src/view/screens/Settings/index.tsx:1016 +#: src/view/screens/Settings/index.tsx:1017 msgid "Verify My Email" msgstr "Verificar Meu Email" @@ -6900,7 +7066,7 @@ msgstr "Verificar Seu E-mail" #~ msgid "Version {0}" #~ msgstr "Versão {0}" -#: src/view/screens/Settings/index.tsx:935 +#: src/view/screens/Settings/index.tsx:936 msgid "Version {appVersion} {bundleInfo}" msgstr "Versão {appVersion} {bundleInfo}" @@ -6913,7 +7079,7 @@ msgstr "Games" msgid "View {0}'s avatar" msgstr "Ver o avatar de {0}" -#: src/view/com/notifications/FeedItem.tsx:234 +#: src/view/com/notifications/FeedItem.tsx:245 msgid "View {0}'s profile" msgstr "" @@ -6962,7 +7128,7 @@ msgid "View users who like this feed" msgstr "Ver usuários que curtiram este feed" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -6997,7 +7163,7 @@ msgstr "Não foi possível carregar esta conversa" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Estimamos que sua conta estará pronta em mais ou menos {estimatedTime}." -#: src/screens/Onboarding/StepFinished.tsx:231 +#: src/screens/Onboarding/StepFinished.tsx:239 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Esperamos que você se divirta. Lembre-se, o Bluesky é:" @@ -7021,7 +7187,7 @@ msgstr "Não foi possível carregar sua data de nascimento. Por favor, tente nov msgid "We were unable to load your configured labelers at this time." msgstr "Não foi possível carregar seus rotuladores." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:157 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Não conseguimos conectar. Por favor, tente novamente para continuar configurando a sua conta. Se continuar falhando, você pode pular este fluxo." @@ -7029,7 +7195,7 @@ msgstr "Não conseguimos conectar. Por favor, tente novamente para continuar con msgid "We will let you know when your account is ready." msgstr "Avisaremos quando sua conta estiver pronta." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:162 msgid "We'll use this to help customize your experience." msgstr "Usaremos isto para customizar a sua experiência." @@ -7037,7 +7203,7 @@ msgstr "Usaremos isto para customizar a sua experiência." msgid "We're having network issues, try again" msgstr "" -#: src/screens/Signup/index.tsx:155 +#: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" msgstr "Estamos muito felizes em recebê-lo!" @@ -7082,7 +7248,7 @@ msgstr "" msgid "Welcome, friend!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" msgstr "Do que você gosta?" @@ -7173,7 +7339,7 @@ msgid "Write your reply" msgstr "Escreva sua resposta" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:101 msgid "Writers" msgstr "Escritores" @@ -7192,7 +7358,7 @@ msgstr "Sim" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:560 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 msgid "Yes, delete this starter pack" msgstr "" @@ -7204,7 +7370,7 @@ msgstr "" msgid "Yesterday, {time}" msgstr "Ontem, {time}" -#: src/components/StarterPack/StarterPackCard.tsx:68 +#: src/components/StarterPack/StarterPackCard.tsx:73 msgid "you" msgstr "" @@ -7421,23 +7587,23 @@ msgstr "" msgid "You: {short}" msgstr "" -#: src/screens/Signup/index.tsx:169 +#: src/screens/Signup/index.tsx:102 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:174 +#: 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:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "You'll stay updated with these feeds" msgstr "" @@ -7456,7 +7622,7 @@ msgstr "Você está na fila" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:228 +#: src/screens/Onboarding/StepFinished.tsx:236 msgid "You're ready to go!" msgstr "Tudo pronto!" @@ -7469,7 +7635,7 @@ msgstr "Você escolheu esconder uma palavra ou tag deste post." msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Você chegou ao fim do seu feed! Encontre novas contas para seguir." -#: src/screens/Signup/index.tsx:202 +#: src/screens/Signup/index.tsx:135 msgid "Your account" msgstr "Sua conta" @@ -7481,7 +7647,7 @@ msgstr "Sua conta foi excluída" msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "O repositório da sua conta, contendo todos os seus dados públicos, pode ser baixado como um arquivo \"CAR\". Este arquivo não inclui imagens ou dados privados, estes devem ser exportados separadamente." -#: src/screens/Signup/StepInfo/index.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" msgstr "Sua data de nascimento" @@ -7498,7 +7664,8 @@ msgstr "Sua escolha será salva, mas você pode trocá-la nas configurações de #~ msgstr "Seu feed inicial é o \"Seguindo\"" #: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Seu e-mail parece ser inválido." @@ -7511,11 +7678,15 @@ msgstr "Seu e-mail foi atualizado mas não foi verificado. Como próximo passo, msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "Seu e-mail ainda não foi verificado. Esta é uma etapa importante de segurança que recomendamos." +#: src/state/shell/progress-guide.tsx:161 +msgid "Your first like!" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Seu feed inicial está vazio! Siga mais usuários para acompanhar o que está acontecendo." -#: src/screens/Signup/StepHandle.tsx:73 +#: src/screens/Signup/StepHandle.tsx:122 msgid "Your full handle will be" msgstr "Seu identificador completo será" @@ -7535,7 +7706,7 @@ msgstr "Sua senha foi alterada com sucesso!" msgid "Your post has been published" msgstr "Seu post foi publicado" -#: src/screens/Onboarding/StepFinished.tsx:243 +#: src/screens/Onboarding/StepFinished.tsx:251 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." @@ -7555,6 +7726,6 @@ msgstr "Sua resposta foi publicada" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "Sua denúncia será enviada para o serviço de moderação do Bluesky" -#: src/screens/Signup/index.tsx:204 +#: src/screens/Signup/index.tsx:137 msgid "Your user handle" msgstr "Seu identificador de usuário" diff --git a/src/locale/locales/tr/messages.po b/src/locale/locales/tr/messages.po index c084dd1295..c20162cdd9 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:283 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -63,7 +63,7 @@ msgstr "" msgid "{0, plural, one {following} other {following}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:259 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" @@ -71,7 +71,7 @@ msgstr "" msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:216 +#: src/components/FeedCard.tsx:206 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -80,7 +80,7 @@ msgstr "" msgid "{0, plural, one {post} other {posts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:217 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" @@ -88,15 +88,15 @@ msgstr "" msgid "{0, plural, one {repost} other {reposts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:262 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:378 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" msgstr "" @@ -152,7 +152,7 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:503 +#: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} takip ediliyor" @@ -270,7 +270,7 @@ msgstr "" msgid "⚠Invalid Handle" msgstr "⚠Geçersiz Kullanıcı Adı" -#: src/screens/Login/LoginForm.tsx:247 +#: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" msgstr "" @@ -278,6 +278,10 @@ msgstr "" #~ msgid "A content warning has been applied to this {0}." #~ msgstr "Bu {0} için bir içerik uyarısı uygulandı." +#: 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 "Uygulamanın yeni bir sürümü mevcut. Devam etmek için güncelleyin." @@ -292,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:518 +#: src/view/screens/Settings/index.tsx:519 msgid "Accessibility" msgstr "Erişilebilirlik" -#: src/view/screens/Settings/index.tsx:509 +#: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "" @@ -309,9 +313,9 @@ msgstr "" #~ msgid "account" #~ msgstr "" -#: src/screens/Login/LoginForm.tsx:170 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:190 +#: src/view/screens/Settings/index.tsx:346 +#: src/view/screens/Settings/index.tsx:753 msgid "Account" msgstr "Hesap" @@ -382,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:422 -#: src/view/screens/Settings/index.tsx:431 +#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:432 msgid "Add account" msgstr "Hesap ekle" @@ -451,7 +455,7 @@ msgstr "" msgid "Add the following DNS record to your domain:" msgstr "Alan adınıza aşağıdaki DNS kaydını ekleyin:" -#: src/components/FeedCard.tsx:305 +#: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" msgstr "" @@ -499,15 +503,19 @@ msgid "Adult content is disabled." msgstr "" #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Advanced" msgstr "Gelişmiş" -#: src/screens/StarterPack/StarterPackScreen.tsx:301 +#: src/state/shell/progress-guide.tsx:176 +msgid "Algorithm training complete!" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:360 msgid "All accounts have been followed!" msgstr "" -#: src/view/screens/Feeds.tsx:721 +#: src/view/screens/Feeds.tsx:734 msgid "All the feeds you've saved, right in one place." msgstr "" @@ -537,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:177 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 msgid "ALT" msgstr "ALT" @@ -547,7 +555,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Alternatif metin" -#: src/view/com/util/post-embeds/GifEmbed.tsx:183 +#: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" msgstr "" @@ -585,7 +593,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:303 +#: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" msgstr "" @@ -595,6 +603,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/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -602,12 +612,12 @@ msgstr "" msgid "An issue occurred, please try again." msgstr "Bir sorun oluştu, lütfen tekrar deneyin." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" msgstr "" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:280 +#: src/view/com/notifications/FeedItem.tsx:291 msgid "and" msgstr "ve" @@ -616,7 +626,7 @@ msgstr "ve" msgid "Animals" msgstr "Hayvanlar" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" msgstr "" @@ -640,13 +650,13 @@ 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:697 +#: src/view/screens/Settings/index.tsx:698 msgid "App password settings" msgstr "Uygulama şifresi ayarları" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:269 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/view/screens/Settings/index.tsx:707 msgid "App Passwords" msgstr "Uygulama Şifreleri" @@ -687,7 +697,7 @@ msgstr "Bu karara itiraz et" #~ msgid "Appeal this decision." #~ msgstr "Bu karara itiraz et." -#: src/view/screens/Settings/index.tsx:439 +#: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "Görünüm" @@ -696,7 +706,7 @@ msgstr "Görünüm" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -724,7 +734,7 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "" -#: src/components/FeedCard.tsx:322 +#: src/components/FeedCard.tsx:306 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -753,7 +763,7 @@ msgstr "Sanat" msgid "Artistic or non-erotic nudity." msgstr "Sanatsal veya erotik olmayan çıplaklık." -#: src/screens/Signup/StepHandle.tsx:119 +#: src/screens/Signup/StepHandle.tsx:170 msgid "At least 3 characters" msgstr "" @@ -764,14 +774,15 @@ msgstr "" #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:278 -#: src/screens/Login/LoginForm.tsx:284 +#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:304 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/index.tsx:231 +#: 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" @@ -786,7 +797,7 @@ msgstr "Geri" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "{interestsText} ilginize dayalı" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "Temel" @@ -794,7 +805,7 @@ msgstr "Temel" msgid "Birthday" msgstr "Doğum günü" -#: src/view/screens/Settings/index.tsx:377 +#: src/view/screens/Settings/index.tsx:378 msgid "Birthday:" msgstr "Doğum günü:" @@ -842,7 +853,7 @@ msgstr "Engellendi" msgid "Blocked accounts" msgstr "Engellenen hesaplar" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:145 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Engellenen Hesaplar" @@ -884,6 +895,10 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "" +#: 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." @@ -928,6 +943,24 @@ msgstr "" msgid "Books" msgstr "Kitaplar" +#: src/components/FeedInterstitials.tsx:281 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:411 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:266 +#: src/components/FeedInterstitials.tsx:396 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:289 +#: src/components/FeedInterstitials.tsx:420 +msgid "Browse more suggestions on the Explore page" +msgstr "" + #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" @@ -1058,17 +1091,17 @@ msgstr "" msgid "Change" msgstr "" -#: src/view/screens/Settings/index.tsx:371 +#: src/view/screens/Settings/index.tsx:372 msgctxt "action" msgid "Change" msgstr "Değiştir" -#: src/view/screens/Settings/index.tsx:718 +#: src/view/screens/Settings/index.tsx:719 msgid "Change handle" msgstr "Kullanıcı adını değiştir" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change Handle" msgstr "Kullanıcı Adını Değiştir" @@ -1076,12 +1109,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:763 +#: src/view/screens/Settings/index.tsx:764 msgid "Change password" msgstr "Şifre değiştir" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Change Password" msgstr "Şifre Değiştir" @@ -1097,9 +1130,9 @@ msgstr "Gönderi dilini {0} olarak değiştir" msgid "Change Your Email" msgstr "E-postanızı Değiştirin" -#: src/Navigation.tsx:310 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:313 +#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" msgstr "" @@ -1109,14 +1142,14 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:318 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" msgstr "" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" msgstr "" @@ -1141,7 +1174,7 @@ msgstr "Durumumu kontrol et" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "Bazı önerilen kullanıcılara göz atın. Benzer kullanıcıları görmek için onları takip edin." -#: src/screens/Login/LoginForm.tsx:271 +#: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." msgstr "" @@ -1153,10 +1186,18 @@ msgstr "Aşağıya gireceğiniz onay kodu içeren bir e-posta için gelen kutunu #~ msgid "Choose \"Everybody\" or \"Nobody\"" #~ msgstr "\"Herkes\" veya \"Hiç kimse\" seçin" +#: src/screens/Onboarding/StepInterests/index.tsx:190 +msgid "Choose 3 or more:" +msgstr "" + #: src/view/screens/Settings.tsx:691 #~ msgid "Choose a new Bluesky username or create" #~ msgstr "Yeni bir Bluesky kullanıcı adı seçin veya oluşturun" +#: src/screens/Onboarding/StepInterests/index.tsx:325 +msgid "Choose at least {0} more" +msgstr "" + #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" msgstr "" @@ -1173,7 +1214,7 @@ msgstr "" msgid "Choose Service" msgstr "Hizmet Seç" -#: src/screens/Onboarding/StepFinished.tsx:273 +#: src/screens/Onboarding/StepFinished.tsx:281 msgid "Choose the algorithms that power your custom feeds." msgstr "Özel beslemelerinizi destekleyen algoritmaları seçin." @@ -1195,23 +1236,23 @@ msgstr "" #~ msgid "Choose your main feeds" #~ msgstr "Ana beslemelerinizi seçin" -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" msgstr "Şifrenizi seçin" -#: src/view/screens/Settings/index.tsx:910 +#: src/view/screens/Settings/index.tsx:911 msgid "Clear all legacy storage data" msgstr "Tüm eski depolama verilerini temizle" -#: src/view/screens/Settings/index.tsx:913 +#: src/view/screens/Settings/index.tsx:914 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:922 +#: src/view/screens/Settings/index.tsx:923 msgid "Clear all storage data" msgstr "Tüm depolama verilerini temizle" -#: src/view/screens/Settings/index.tsx:925 +#: src/view/screens/Settings/index.tsx:926 msgid "Clear all storage data (restart after this)" msgstr "Tüm depolama verilerini temizle (bundan sonra yeniden başlat)" @@ -1220,11 +1261,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:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" msgstr "" @@ -1273,7 +1314,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:189 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "Close" msgstr "Kapat" @@ -1336,11 +1377,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:226 +#: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:437 msgid "Collapses list of users for a given notification" msgstr "Belirli bir bildirim için kullanıcı listesini daraltır" @@ -1354,16 +1395,16 @@ msgstr "Komedi" msgid "Comics" msgstr "Çizgi romanlar" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:259 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Topluluk Kuralları" -#: src/screens/Onboarding/StepFinished.tsx:286 +#: src/screens/Onboarding/StepFinished.tsx:294 msgid "Complete onboarding and start using your account" msgstr "Onboarding'i tamamlayın ve hesabınızı kullanmaya başlayın" -#: src/screens/Signup/index.tsx:206 +#: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" msgstr "" @@ -1429,7 +1470,7 @@ msgstr "" msgid "Confirm your birthdate" msgstr "" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:272 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 @@ -1443,11 +1484,11 @@ msgstr "Onay kodu" #~ msgid "Confirms signing up {email} to the waitlist" #~ msgstr "{email} adresinin bekleme listesine kaydını onaylar" -#: src/screens/Login/LoginForm.tsx:305 +#: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." msgstr "Bağlanıyor..." -#: src/screens/Signup/index.tsx:276 +#: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "Destek ile iletişime geçin" @@ -1496,7 +1537,7 @@ msgstr "İçerik uyarıları" msgid "Context menu backdrop, click to close the menu." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:258 +#: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Devam et" @@ -1509,9 +1550,9 @@ msgstr "" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:255 +#: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/index.tsx:251 +#: src/screens/Signup/BackNextButtons.tsx:59 msgid "Continue to next step" msgstr "Sonraki adıma devam et" @@ -1536,7 +1577,7 @@ msgstr "Yemek pişirme" msgid "Copied" msgstr "Kopyalandı" -#: src/view/screens/Settings/index.tsx:263 +#: src/view/screens/Settings/index.tsx:264 msgid "Copied build version to clipboard" msgstr "Sürüm numarası panoya kopyalandı" @@ -1545,7 +1586,7 @@ msgstr "Sürüm numarası panoya kopyalandı" #: 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/post-ctrls/PostCtrls.tsx:350 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Panoya kopyalandı" @@ -1606,7 +1647,7 @@ msgstr "Gönderi metnini kopyala" msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Telif Hakkı Politikası" @@ -1648,7 +1689,7 @@ msgstr "" msgid "Create a new account" msgstr "Yeni bir hesap oluştur" -#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" msgstr "Yeni bir Bluesky hesabı oluştur" @@ -1658,7 +1699,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:338 msgid "Create a starter pack" msgstr "" @@ -1666,7 +1707,7 @@ msgstr "" msgid "Create a starter pack for me" msgstr "" -#: src/screens/Signup/index.tsx:154 +#: src/screens/Signup/index.tsx:88 msgid "Create Account" msgstr "Hesap Oluştur" @@ -1730,7 +1771,7 @@ msgstr "" msgid "Custom domain" msgstr "Özel alan adı" -#: src/view/screens/Feeds.tsx:747 +#: src/view/screens/Feeds.tsx:760 #: src/view/screens/Search/Explore.tsx:390 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." @@ -1739,8 +1780,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:458 -#: src/view/screens/Settings/index.tsx:484 +#: src/view/screens/Settings/index.tsx:459 +#: src/view/screens/Settings/index.tsx:485 msgid "Dark" msgstr "Karanlık" @@ -1748,24 +1789,24 @@ msgstr "Karanlık" msgid "Dark mode" msgstr "Karanlık mod" -#: src/view/screens/Settings/index.tsx:471 +#: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" msgstr "Karanlık Tema" -#: src/screens/Signup/StepInfo/index.tsx:134 +#: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" msgstr "" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:818 +#: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:873 +#: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" msgstr "" @@ -1774,16 +1815,16 @@ msgid "Debug panel" msgstr "Hata ayıklama paneli" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:484 -#: src/screens/StarterPack/StarterPackScreen.tsx:563 -#: src/screens/StarterPack/StarterPackScreen.tsx:643 +#: 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/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "" -#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:829 msgid "Delete account" msgstr "Hesabı sil" @@ -1803,8 +1844,8 @@ msgstr "Uygulama şifresini sil" msgid "Delete app password?" msgstr "" -#: src/view/screens/Settings/index.tsx:890 -#: src/view/screens/Settings/index.tsx:893 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" msgstr "" @@ -1828,7 +1869,7 @@ msgstr "" msgid "Delete my account" msgstr "Hesabımı sil" -#: src/view/screens/Settings/index.tsx:840 +#: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" msgstr "Hesabımı Sil…" @@ -1837,12 +1878,12 @@ msgstr "Hesabımı Sil…" msgid "Delete post" msgstr "Gönderiyi sil" -#: src/screens/StarterPack/StarterPackScreen.tsx:478 -#: src/screens/StarterPack/StarterPackScreen.tsx:634 +#: src/screens/StarterPack/StarterPackScreen.tsx:556 +#: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" msgstr "" @@ -1862,7 +1903,7 @@ msgstr "Silindi" msgid "Deleted post." msgstr "Silinen gönderi." -#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" msgstr "" @@ -1885,7 +1926,7 @@ msgstr "" msgid "Did you want to say anything?" msgstr "Bir şey söylemek istediniz mi?" -#: src/view/screens/Settings/index.tsx:477 +#: src/view/screens/Settings/index.tsx:478 msgid "Dim" msgstr "Karart" @@ -1939,6 +1980,10 @@ msgstr "" msgid "Discourage apps from showing my account to logged-out users" msgstr "Uygulamaların hesabımı oturum açmamış kullanıcılara göstermesini engelle" +#: src/tours/HomeTour.tsx:70 +msgid "Discover learns which posts you like as you browse." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -1948,10 +1993,14 @@ msgstr "Yeni özel beslemeler keşfet" msgid "Discover new feeds" msgstr "Yeni beslemeler keşfet" -#: src/view/screens/Feeds.tsx:744 +#: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" msgstr "" +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "" + #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" msgstr "" @@ -1972,7 +2021,7 @@ msgstr "" msgid "Does not include nudity." msgstr "" -#: src/screens/Signup/StepHandle.tsx:105 +#: src/screens/Signup/StepHandle.tsx:156 msgid "Doesn't begin or end with a hyphen" msgstr "" @@ -2025,7 +2074,7 @@ msgstr "Tamam{extraText}" #~ msgid "Double tap to sign in" #~ msgstr "Oturum açmak için çift dokunun" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" msgstr "" @@ -2034,7 +2083,7 @@ msgstr "" msgid "Download CAR file" msgstr "" -#: src/view/com/composer/text-input/TextInput.web.tsx:272 +#: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" msgstr "Resim eklemek için bırakın" @@ -2082,11 +2131,11 @@ msgstr "örn: Reklamlarla tekrar tekrar yanıt veren kullanıcılar." msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Her kod bir kez çalışır. Düzenli aralıklarla daha fazla davet kodu alacaksınız." -#: src/screens/StarterPack/StarterPackScreen.tsx:473 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "" @@ -2117,9 +2166,9 @@ msgstr "Liste ayrıntılarını düzenle" msgid "Edit Moderation List" msgstr "Düzenleme Listesini Düzenle" -#: src/Navigation.tsx:271 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 +#: src/Navigation.tsx:274 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Beslemelerimi Düzenle" @@ -2147,7 +2196,7 @@ msgstr "Profil Düzenle" #~ msgid "Edit Saved Feeds" #~ msgstr "Kayıtlı Beslemeleri Düzenle" -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" msgstr "" @@ -2167,7 +2216,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:335 +#: src/Navigation.tsx:343 msgid "Edit your starter pack" msgstr "" @@ -2180,7 +2229,7 @@ msgstr "Eğitim" msgid "Either choose \"Everybody\" or \"Nobody\"" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "E-posta" @@ -2206,7 +2255,7 @@ msgstr "E-posta Güncellendi" msgid "Email verified" msgstr "E-posta doğrulandı" -#: src/view/screens/Settings/index.tsx:349 +#: src/view/screens/Settings/index.tsx:350 msgid "Email:" msgstr "E-posta:" @@ -2276,6 +2325,10 @@ msgstr "Beslemenin sonu" #~ 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 "" + #: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "Bu Uygulama Şifresi için bir ad girin" @@ -2314,7 +2367,7 @@ msgstr "Doğum tarihinizi girin" #~ msgstr "E-posta adresinizi girin" #: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:92 +#: src/screens/Signup/StepInfo/index.tsx:152 msgid "Enter your email address" msgstr "E-posta adresinizi girin" @@ -2338,11 +2391,11 @@ msgstr "Kullanıcı adınızı ve şifrenizi girin" msgid "Error occurred while saving file" msgstr "" -#: src/screens/Signup/StepCaptcha/index.tsx:51 +#: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:197 +#: src/screens/Onboarding/StepInterests/index.tsx:216 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Hata:" @@ -2401,7 +2454,7 @@ msgstr "Arama sorgusu girişinden çıkar" msgid "Expand alt text" msgstr "Alternatif metni genişlet" -#: src/view/com/notifications/FeedItem.tsx:227 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" msgstr "" @@ -2418,12 +2471,12 @@ msgstr "" msgid "Explicit sexual images." msgstr "" -#: src/view/screens/Settings/index.tsx:786 +#: src/view/screens/Settings/index.tsx:787 msgid "Export my data" msgstr "" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:797 +#: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" msgstr "" @@ -2437,13 +2490,13 @@ msgstr "Harici Medya" msgid "External media may allow websites to collect information about you and your device. No information is sent or requested until you press the \"play\" button." msgstr "Harici medya, web sitelerinin siz ve cihazınız hakkında bilgi toplamasına izin verebilir. Bilgi, \"oynat\" düğmesine basana kadar gönderilmez veya istenmez." -#: src/Navigation.tsx:290 +#: src/Navigation.tsx:293 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/view/screens/Settings/index.tsx:680 msgid "External Media Preferences" msgstr "Harici Medya Tercihleri" -#: src/view/screens/Settings/index.tsx:670 +#: src/view/screens/Settings/index.tsx:671 msgid "External media settings" msgstr "Harici medya ayarları" @@ -2469,7 +2522,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "Gönderi silinemedi, lütfen tekrar deneyin" -#: src/screens/StarterPack/StarterPackScreen.tsx:597 +#: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" msgstr "" @@ -2526,7 +2579,7 @@ msgstr "" msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:285 +#: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" msgstr "" @@ -2535,11 +2588,11 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:211 +#: src/Navigation.tsx:214 msgid "Feed" msgstr "Besleme" -#: src/components/FeedCard.tsx:161 +#: src/components/FeedCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "{0} tarafından besleme" @@ -2556,17 +2609,18 @@ msgstr "{0} tarafından besleme" msgid "Feed toggle" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Geribildirim" -#: src/Navigation.tsx:320 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 +#: src/Navigation.tsx:323 +#: 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:373 +#: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" @@ -2584,7 +2638,7 @@ msgstr "Beslemeler, kullanıcıların biraz kodlama uzmanlığı ile oluşturdu #~ msgid "Feeds can be topical as well!" #~ msgstr "Beslemeler aynı zamanda konusal olabilir!" -#: src/components/FeedCard.tsx:282 +#: src/components/FeedCard.tsx:266 msgid "Feeds updated!" msgstr "" @@ -2600,7 +2654,7 @@ msgstr "" msgid "Filter from feeds" msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 msgid "Finalizing" msgstr "Tamamlanıyor" @@ -2610,6 +2664,10 @@ msgstr "Tamamlanıyor" msgid "Find accounts to follow" msgstr "Takip edilecek hesaplar bul" +#: src/tours/HomeTour.tsx:88 +msgid "Find more feeds and accounts to follow in the Explore page." +msgstr "" + #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "" @@ -2642,11 +2700,15 @@ msgstr "Tartışma konularını ayarlayın." msgid "Finish" msgstr "" +#: src/tours/Tooltip.tsx:149 +msgid "Finish tour and begin using the application" +msgstr "" + #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "Fitness" -#: src/screens/Onboarding/StepFinished.tsx:269 +#: src/screens/Onboarding/StepFinished.tsx:277 msgid "Flexible" msgstr "Esnek" @@ -2659,6 +2721,8 @@ msgstr "Yatay çevir" msgid "Flip vertically" msgstr "Dikey çevir" +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:341 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2681,13 +2745,17 @@ msgstr "{0} takip et" msgid "Follow {name}" msgstr "" +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "" + #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:345 -#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:405 +#: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" msgstr "" @@ -2715,7 +2783,7 @@ msgstr "" #~ msgid "Followed by" #~ msgstr "" -#: src/view/com/profile/ProfileCard.tsx:227 +#: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" msgstr "{0} tarafından takip ediliyor" @@ -2743,16 +2811,20 @@ msgstr "Takip edilen kullanıcılar" msgid "Followed users only" msgstr "Yalnızca takip edilen kullanıcılar" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:197 msgid "followed you" msgstr "sizi takip etti" +#: src/view/com/notifications/FeedItem.tsx:195 +msgid "followed you back" +msgstr "" + #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "Takipçiler" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" msgstr "" @@ -2761,17 +2833,20 @@ msgstr "" msgid "Followers you know" msgstr "" +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:335 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:630 +#: src/view/screens/Feeds.tsx:631 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Takip edilenler" +#: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "{0} takip ediliyor" @@ -2780,21 +2855,25 @@ msgstr "{0} takip ediliyor" msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:573 +#: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" msgstr "" -#: src/Navigation.tsx:277 +#: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "Following Feed Preferences" msgstr "" +#: src/tours/HomeTour.tsx:59 +msgid "Following shows the latest posts from people you follow." +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "Sizi takip ediyor" -#: src/view/com/profile/ProfileCard.tsx:152 +#: src/components/Pills.tsx:165 msgid "Follows You" msgstr "Sizi Takip Ediyor" @@ -2824,11 +2903,11 @@ msgstr "Güvenlik nedeniyle, bunu tekrar göremezsiniz. Bu şifreyi kaybederseni msgid "Forgot Password" msgstr "Şifremi Unuttum" -#: src/screens/Login/LoginForm.tsx:227 +#: src/screens/Login/LoginForm.tsx:246 msgid "Forgot password?" msgstr "" -#: src/screens/Login/LoginForm.tsx:238 +#: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" msgstr "" @@ -2862,6 +2941,10 @@ msgstr "" msgid "Get Started" msgstr "Başlayın" +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "" + #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" msgstr "" @@ -2876,31 +2959,35 @@ msgstr "" #: src/components/moderation/ScreenHider.tsx:151 #: src/components/moderation/ScreenHider.tsx:160 -#: src/view/com/auth/LoggedOut.tsx:78 -#: src/view/com/auth/LoggedOut.tsx:79 +#: src/view/com/auth/LoggedOut.tsx:80 +#: src/view/com/auth/LoggedOut.tsx:81 #: src/view/screens/NotFound.tsx:55 #: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Geri git" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:656 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 msgid "Go Back" msgstr "Geri Git" +#: 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/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:225 +#: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" msgstr "Önceki adıma geri dön" @@ -2934,6 +3021,10 @@ msgstr "Sonrakine git" msgid "Go to profile" msgstr "" +#: src/tours/Tooltip.tsx:138 +msgid "Go to the next step of the tour" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "" @@ -2942,6 +3033,10 @@ msgstr "" msgid "Graphic Media" msgstr "" +#: src/state/shell/progress-guide.tsx:166 +msgid "Half way there!" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" msgstr "Kullanıcı adı" @@ -2954,19 +3049,19 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:308 msgid "Hashtag" msgstr "" -#: src/components/RichText.tsx:216 +#: src/components/RichText.tsx:218 msgid "Hashtag: #{tag}" msgstr "" -#: src/screens/Signup/index.tsx:272 +#: src/screens/Signup/index.tsx:167 msgid "Having trouble?" msgstr "Sorun mu yaşıyorsunuz?" -#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/desktop/RightNav.tsx:99 #: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Yardım" @@ -3002,7 +3097,7 @@ msgstr "İşte uygulama şifreniz." msgid "Hide" msgstr "Gizle" -#: src/view/com/notifications/FeedItem.tsx:433 +#: src/view/com/notifications/FeedItem.tsx:444 msgctxt "action" msgid "Hide" msgstr "Gizle" @@ -3021,7 +3116,7 @@ msgstr "İçeriği gizle" msgid "Hide this post?" msgstr "Bu gönderiyi gizle?" -#: src/view/com/notifications/FeedItem.tsx:424 +#: src/view/com/notifications/FeedItem.tsx:435 msgid "Hide user list" msgstr "Kullanıcı listesini gizle" @@ -3057,10 +3152,10 @@ msgstr "" msgid "Hmmmm, we couldn't load that moderation service." msgstr "" -#: src/Navigation.tsx:511 -#: src/Navigation.tsx:531 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: src/Navigation.tsx:519 +#: src/Navigation.tsx:539 +#: 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 msgid "Home" @@ -3077,8 +3172,8 @@ msgid "Host:" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:160 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:180 +#: src/screens/Signup/StepInfo/index.tsx:106 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "Barındırma sağlayıcısı" @@ -3194,15 +3289,15 @@ msgstr "Hesap silme için şifre girin" #~ msgid "Input phone number for SMS verification" #~ msgstr "SMS doğrulaması için telefon numarası girin" -#: src/screens/Login/LoginForm.tsx:266 +#: src/screens/Login/LoginForm.tsx:286 msgid "Input the code which has been emailed to you" msgstr "" #: src/screens/Login/LoginForm.tsx:221 -msgid "Input the password tied to {identifier}" -msgstr "{identifier} ile ilişkili şifreyi girin" +#~ msgid "Input the password tied to {identifier}" +#~ msgstr "{identifier} ile ilişkili şifreyi girin" -#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Login/LoginForm.tsx:215 msgid "Input the username or email address you used at signup" msgstr "Kaydolurken kullandığınız kullanıcı adını veya e-posta adresini girin" @@ -3214,7 +3309,7 @@ msgstr "Kaydolurken kullandığınız kullanıcı adını veya e-posta adresini #~ msgid "Input your email to get on the Bluesky waitlist" #~ msgstr "Bluesky bekleme listesine girmek için e-postanızı girin" -#: src/screens/Login/LoginForm.tsx:220 +#: src/screens/Login/LoginForm.tsx:241 msgid "Input your password" msgstr "Şifrenizi girin" @@ -3222,7 +3317,7 @@ msgstr "Şifrenizi girin" msgid "Input your preferred hosting provider" msgstr "" -#: src/screens/Signup/StepHandle.tsx:63 +#: src/screens/Signup/StepHandle.tsx:111 msgid "Input your user handle" msgstr "Kullanıcı adınızı girin" @@ -3230,7 +3325,7 @@ msgstr "Kullanıcı adınızı girin" msgid "Introducing Direct Messages" msgstr "" -#: src/screens/Login/LoginForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:140 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "" @@ -3239,7 +3334,7 @@ msgstr "" msgid "Invalid or unsupported post record" msgstr "Geçersiz veya desteklenmeyen gönderi kaydı" -#: src/screens/Login/LoginForm.tsx:140 +#: src/screens/Login/LoginForm.tsx:145 msgid "Invalid username or password" msgstr "Geçersiz kullanıcı adı veya şifre" @@ -3251,11 +3346,11 @@ msgstr "Geçersiz kullanıcı adı veya şifre" msgid "Invite a Friend" msgstr "Arkadaşını Davet Et" -#: src/screens/Signup/StepInfo/index.tsx:58 +#: src/screens/Signup/StepInfo/index.tsx:124 msgid "Invite code" msgstr "Davet kodu" -#: src/screens/Signup/state.ts:275 +#: src/screens/Signup/state.ts:251 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Davet kodu kabul edilmedi. Doğru girdiğinizden emin olun ve tekrar deneyin." @@ -3295,8 +3390,10 @@ msgstr "" msgid "Jobs" msgstr "İşler" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackScreen.tsx:432 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" msgstr "" @@ -3358,16 +3455,16 @@ msgstr "" msgid "Language selection" msgstr "Dil seçimi" -#: src/view/screens/Settings/index.tsx:530 +#: src/view/screens/Settings/index.tsx:531 msgid "Language settings" msgstr "Dil ayarları" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:155 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Dil Ayarları" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Languages" msgstr "Diller" @@ -3435,7 +3532,7 @@ msgstr "Bluesky'dan ayrılıyor" msgid "left to go." msgstr "kaldı." -#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:309 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Eski depolama temizlendi, şimdi uygulamayı yeniden başlatmanız gerekiyor." @@ -3448,7 +3545,8 @@ msgstr "" msgid "Let's get your password reset!" msgstr "Şifrenizi sıfırlamaya başlayalım!" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 +#: src/tours/Tooltip.tsx:151 msgid "Let's go!" msgstr "Hadi gidelim!" @@ -3456,7 +3554,7 @@ msgstr "Hadi gidelim!" #~ msgid "Library" #~ msgstr "Kütüphane" -#: src/view/screens/Settings/index.tsx:452 +#: src/view/screens/Settings/index.tsx:453 msgid "Light" msgstr "Açık" @@ -3464,14 +3562,23 @@ msgstr "Açık" #~ msgid "Like" #~ msgstr "Beğen" +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:167 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 #: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Bu beslemeyi beğen" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:216 -#: src/Navigation.tsx:221 +#: src/Navigation.tsx:219 +#: src/Navigation.tsx:224 msgid "Liked by" msgstr "Beğenenler" @@ -3495,11 +3602,11 @@ msgstr "Beğenenler" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "{likeCount} {0} tarafından beğenildi" -#: src/view/com/notifications/FeedItem.tsx:190 +#: src/view/com/notifications/FeedItem.tsx:201 msgid "liked your custom feed" msgstr "özel beslemenizi beğendi" -#: src/view/com/notifications/FeedItem.tsx:182 +#: src/view/com/notifications/FeedItem.tsx:185 msgid "liked your post" msgstr "gönderinizi beğendi" @@ -3511,7 +3618,7 @@ msgstr "Beğeniler" msgid "Likes on this post" msgstr "Bu gönderideki beğeniler" -#: src/Navigation.tsx:185 +#: src/Navigation.tsx:188 msgid "List" msgstr "Liste" @@ -3523,7 +3630,7 @@ msgstr "Liste Avatarı" msgid "List blocked" msgstr "Liste engellendi" -#: src/components/FeedCard.tsx:155 +#: src/components/ListCard.tsx:113 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "{0} tarafından liste" @@ -3548,10 +3655,10 @@ msgstr "Liste engeli kaldırıldı" msgid "List unmuted" msgstr "Liste sessizden çıkarıldı" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:125 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/desktop/LeftNav.tsx:385 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 msgid "Lists" @@ -3597,7 +3704,7 @@ msgstr "Yükleniyor..." #~ msgid "Local dev server" #~ msgstr "Yerel geliştirme sunucusu" -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:239 msgid "Log" msgstr "Log" @@ -3621,7 +3728,7 @@ msgstr "Çıkış yapan görünürlüğü" msgid "Login to account that is not listed" msgstr "Listelenmeyen hesaba giriş yap" -#: src/components/RichText.tsx:217 +#: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" msgstr "" @@ -3706,7 +3813,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:526 +#: src/Navigation.tsx:534 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3721,9 +3828,9 @@ msgstr "" msgid "Misleading Account" msgstr "" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:130 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Moderation" msgstr "Moderasyon" @@ -3731,7 +3838,7 @@ msgstr "Moderasyon" msgid "Moderation details" msgstr "" -#: src/components/FeedCard.tsx:157 +#: src/components/ListCard.tsx:109 #: src/view/com/lists/ListCard.tsx:95 #: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" @@ -3759,16 +3866,16 @@ msgstr "Moderasyon listesi güncellendi" msgid "Moderation lists" msgstr "Moderasyon listeleri" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Moderasyon Listeleri" -#: src/view/screens/Settings/index.tsx:555 +#: src/view/screens/Settings/index.tsx:556 msgid "Moderation settings" msgstr "Moderasyon ayarları" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:234 msgid "Moderation states" msgstr "" @@ -3805,6 +3912,10 @@ msgstr "En çok beğenilen yanıtlar önce" msgid "Movies" msgstr "" +#: src/screens/Onboarding/state.ts:91 +msgid "Music" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "" @@ -3882,7 +3993,7 @@ msgstr "Sessize alındı" msgid "Muted accounts" msgstr "Sessize alınan hesaplar" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Sessize Alınan Hesaplar" @@ -3908,19 +4019,19 @@ msgstr "Sessizlik özeldir. Sessize alınan hesaplar sizinle etkileşime geçebi msgid "My Birthday" msgstr "Doğum Günüm" -#: src/view/screens/Feeds.tsx:718 +#: src/view/screens/Feeds.tsx:731 msgid "My Feeds" msgstr "Beslemelerim" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Profilim" -#: src/view/screens/Settings/index.tsx:616 +#: src/view/screens/Settings/index.tsx:617 msgid "My saved feeds" msgstr "" -#: src/view/screens/Settings/index.tsx:622 +#: src/view/screens/Settings/index.tsx:623 msgid "My Saved Feeds" msgstr "Kayıtlı Beslemelerim" @@ -3941,16 +4052,20 @@ msgid "Name or Description Violates Community Standards" msgstr "" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:92 msgid "Nature" msgstr "Doğa" +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "" + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:332 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Sonraki ekrana yönlendirir" @@ -3973,7 +4088,7 @@ msgstr "" #~ msgid "Never lose access to your followers and data." #~ msgstr "Takipçilerinize ve verilerinize asla erişimi kaybetmeyin." -#: src/screens/Onboarding/StepFinished.tsx:257 +#: src/screens/Onboarding/StepFinished.tsx:265 msgid "Never lose access to your followers or data." msgstr "Takipçilerinize veya verilerinize asla erişimi kaybetmeyin." @@ -4017,17 +4132,17 @@ msgctxt "action" msgid "New post" msgstr "Yeni gönderi" -#: src/view/screens/Feeds.tsx:580 +#: 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/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/shell/desktop/LeftNav.tsx:278 msgid "New post" msgstr "Yeni gönderi" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:284 msgctxt "action" msgid "New Post" msgstr "Yeni Gönderi" @@ -4045,21 +4160,22 @@ msgid "Newest replies first" msgstr "En yeni yanıtlar önce" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:93 msgid "News" msgstr "Haberler" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:311 -#: src/screens/Login/LoginForm.tsx:318 +#: src/screens/Login/LoginForm.tsx:331 +#: src/screens/Login/LoginForm.tsx:338 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:258 +#: src/screens/Signup/BackNextButtons.tsx:66 #: src/screens/StarterPack/Wizard/index.tsx:184 #: src/screens/StarterPack/Wizard/index.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:359 #: src/screens/StarterPack/Wizard/index.tsx:366 +#: src/tours/Tooltip.tsx:139 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -4101,11 +4217,12 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" +#: src/components/ProfileCard.tsx:321 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "{0} artık takip edilmiyor" -#: src/screens/Signup/StepHandle.tsx:115 +#: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" msgstr "" @@ -4117,7 +4234,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:118 +#: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "Henüz bildirim yok!" @@ -4145,7 +4262,7 @@ msgstr "" msgid "No results found" msgstr "" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" msgstr "\"{query}\" için sonuç bulunamadı" @@ -4195,7 +4312,7 @@ msgstr "" #~ msgid "Not Applicable." #~ msgstr "Uygulanamaz." -#: src/Navigation.tsx:117 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Bulunamadı" @@ -4207,7 +4324,7 @@ msgstr "Şu anda değil" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:315 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "" @@ -4227,11 +4344,11 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:529 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 +#: 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 msgid "Notifications" @@ -4267,7 +4384,7 @@ msgstr "" msgid "Oh no!" msgstr "Oh hayır!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:152 msgid "Oh no! Something went wrong." msgstr "Oh hayır! Bir şeyler yanlış gitti." @@ -4291,10 +4408,14 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:256 +#: src/view/screens/Settings/index.tsx:257 msgid "Onboarding reset" msgstr "Onboarding sıfırlama" +#: src/tours/Tooltip.tsx:118 +msgid "Onboarding tour step {0}: {1}" +msgstr "" + #: src/view/com/composer/Composer.tsx:522 msgid "One or more images is missing alt text." msgstr "Bir veya daha fazla resimde alternatif metin eksik." @@ -4311,7 +4432,7 @@ msgstr "" #~ msgid "Only {0} can reply." #~ msgstr "Yalnızca {0} yanıtlayabilir." -#: src/screens/Signup/StepHandle.tsx:98 +#: src/screens/Signup/StepHandle.tsx:149 msgid "Only contains letters, numbers, and hyphens" msgstr "" @@ -4327,7 +4448,7 @@ msgstr "" msgid "Oops!" msgstr "Hata!" -#: src/screens/Onboarding/StepFinished.tsx:253 +#: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" msgstr "Aç" @@ -4353,7 +4474,7 @@ msgstr "Emoji seçiciyi aç" msgid "Open feed options menu" msgstr "" -#: src/view/screens/Settings/index.tsx:736 +#: src/view/screens/Settings/index.tsx:737 msgid "Open links with in-app browser" msgstr "Uygulama içi tarayıcıda bağlantıları aç" @@ -4373,16 +4494,16 @@ msgstr "Navigasyonu aç" msgid "Open post options menu" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:451 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:861 +#: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" msgstr "Storybook sayfasını aç" -#: src/view/screens/Settings/index.tsx:848 +#: src/view/screens/Settings/index.tsx:849 msgid "Open system log" msgstr "" @@ -4394,7 +4515,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:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Opens accessibility settings" msgstr "" @@ -4410,7 +4531,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:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Opens chat settings" msgstr "" @@ -4418,7 +4539,7 @@ msgstr "" msgid "Opens composer" msgstr "Besteciyi açar" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Opens configurable language settings" msgstr "Yapılandırılabilir dil ayarlarını açar" @@ -4430,7 +4551,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:671 +#: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" msgstr "Harici gömülü ayarları açar" @@ -4464,11 +4585,11 @@ msgstr "" msgid "Opens list of invite codes" msgstr "Davet kodu listesini açar" -#: src/view/screens/Settings/index.tsx:808 +#: src/view/screens/Settings/index.tsx:809 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:830 +#: src/view/screens/Settings/index.tsx:831 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "" @@ -4476,19 +4597,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:765 +#: src/view/screens/Settings/index.tsx:766 msgid "Opens modal for changing your Bluesky password" msgstr "" -#: src/view/screens/Settings/index.tsx:720 +#: src/view/screens/Settings/index.tsx:721 msgid "Opens modal for choosing a new Bluesky handle" msgstr "" -#: src/view/screens/Settings/index.tsx:788 +#: src/view/screens/Settings/index.tsx:789 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Opens modal for email verification" msgstr "" @@ -4496,11 +4617,11 @@ 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:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Opens moderation settings" msgstr "Moderasyon ayarlarını açar" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:247 msgid "Opens password reset form" msgstr "Şifre sıfırlama formunu açar" @@ -4509,11 +4630,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:617 +#: src/view/screens/Settings/index.tsx:618 msgid "Opens screen with all saved feeds" msgstr "Tüm kayıtlı beslemeleri içeren ekrana açar" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "Opens the app password settings" msgstr "" @@ -4521,7 +4642,7 @@ msgstr "" #~ msgid "Opens the app password settings page" #~ msgstr "Uygulama şifre ayarları sayfasını açar" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Opens the Following feed preferences" msgstr "" @@ -4537,20 +4658,20 @@ msgstr "" #~ msgid "Opens the message settings page" #~ 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 "Opens the storybook page" msgstr "Storybook sayfasını açar" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" msgstr "Sistem log sayfasını açar" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Opens the threads preferences" msgstr "Konu tercihlerini açar" -#: src/view/com/notifications/FeedItem.tsx:513 +#: src/view/com/notifications/FeedItem.tsx:524 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "" @@ -4605,8 +4726,8 @@ msgstr "Sayfa bulunamadı" msgid "Page Not Found" msgstr "Sayfa Bulunamadı" -#: src/screens/Login/LoginForm.tsx:204 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Signup/StepInfo/index.tsx:162 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4628,15 +4749,16 @@ msgstr "Şifre güncellendi!" msgid "Pause" msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:170 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "" -#: src/Navigation.tsx:172 +#: src/Navigation.tsx:175 msgid "People followed by @{0}" msgstr "@{0} tarafından takip edilenler" -#: src/Navigation.tsx:165 +#: src/Navigation.tsx:168 msgid "People following @{0}" msgstr "@{0} tarafından takip edilenler" @@ -4653,7 +4775,7 @@ msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:94 msgid "Pets" msgstr "Evcil Hayvanlar" @@ -4661,7 +4783,7 @@ msgstr "Evcil Hayvanlar" #~ msgid "Phone number" #~ msgstr "Telefon numarası" -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:95 msgid "Photography" msgstr "" @@ -4712,15 +4834,16 @@ msgstr "Videoyu Oynat" msgid "Plays the GIF" msgstr "GIF'i oynatır" -#: src/screens/Signup/state.ts:234 +#: src/screens/Signup/state.ts:210 msgid "Please choose your handle." msgstr "Kullanıcı adınızı seçin." -#: src/screens/Signup/state.ts:227 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:81 msgid "Please choose your password." msgstr "Şifrenizi seçin." -#: src/screens/Signup/state.ts:248 +#: src/screens/Signup/state.ts:224 msgid "Please complete the verification captcha." msgstr "" @@ -4752,10 +4875,15 @@ msgstr "" #~ msgid "Please enter the verification code sent to {phoneNumberFormatted}." #~ msgstr "{phoneNumberFormatted} numarasına gönderilen doğrulama kodunu girin." -#: src/screens/Signup/state.ts:213 +#: src/screens/Signup/state.ts:189 +#: src/screens/Signup/StepInfo/index.tsx:69 msgid "Please enter your email." msgstr "E-postanızı girin." +#: src/screens/Signup/StepInfo/index.tsx:63 +msgid "Please enter your invite code." +msgstr "" + #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" msgstr "Lütfen şifrenizi de girin:" @@ -4787,7 +4915,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Bağlantı kartınızın yüklenmesini bekleyin" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:96 msgid "Politics" msgstr "Politika" @@ -4810,9 +4938,9 @@ msgstr "Gönderi" msgid "Post by {0}" msgstr "{0} tarafından gönderi" -#: src/Navigation.tsx:191 -#: src/Navigation.tsx:198 -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:194 +#: src/Navigation.tsx:201 +#: src/Navigation.tsx:208 msgid "Post by @{0}" msgstr "@{0} tarafından gönderi" @@ -4851,6 +4979,7 @@ msgstr "Gönderi bulunamadı" msgid "posts" msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:172 #: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Gönderiler" @@ -4878,7 +5007,7 @@ msgstr "" #: src/components/Error.tsx:85 #: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/index.tsx:238 +#: src/screens/Signup/BackNextButtons.tsx:46 msgid "Press to retry" msgstr "" @@ -4903,15 +5032,15 @@ msgstr "Birincil Dil" msgid "Prioritize Your Follows" msgstr "Takipçilerinizi Önceliklendirin" -#: src/view/screens/Settings/index.tsx:654 -#: src/view/shell/desktop/RightNav.tsx:77 +#: src/view/screens/Settings/index.tsx:655 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Gizlilik" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 +#: src/view/screens/Settings/index.tsx:958 #: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Gizlilik Politikası" @@ -4929,8 +5058,8 @@ msgstr "İşleniyor..." msgid "profile" msgstr "" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 +#: 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 @@ -4941,11 +5070,11 @@ msgstr "Profil" msgid "Profile updated" msgstr "Profil güncellendi" -#: src/view/screens/Settings/index.tsx:1021 +#: src/view/screens/Settings/index.tsx:1022 msgid "Protect your account by verifying your email." msgstr "E-postanızı doğrulayarak hesabınızı koruyun." -#: src/screens/Onboarding/StepFinished.tsx:239 +#: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" msgstr "Herkese Açık" @@ -4977,6 +5106,10 @@ msgstr "" msgid "QR code saved to your camera roll!" msgstr "" +#: src/tours/Tooltip.tsx:111 +msgid "Quick tip" +msgstr "" + #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:79 @@ -5035,7 +5168,7 @@ msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:325 +#: src/components/FeedCard.tsx:309 #: src/components/StarterPack/Wizard/WizardListCard.tsx:95 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 @@ -5088,7 +5221,7 @@ msgstr "" msgid "Remove from my feeds" msgstr "Beslemelerimden kaldır" -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:304 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "" @@ -5252,8 +5385,8 @@ msgstr "" msgid "Report post" msgstr "Gönderiyi raporla" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 -#: src/screens/StarterPack/StarterPackScreen.tsx:507 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 msgid "Report starter pack" msgstr "" @@ -5299,7 +5432,7 @@ msgstr "Yeniden gönder" msgid "Repost" msgstr "Yeniden gönder" -#: src/screens/StarterPack/StarterPackScreen.tsx:446 +#: src/screens/StarterPack/StarterPackScreen.tsx:524 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -5322,7 +5455,7 @@ msgstr "{0} tarafından yeniden gönderildi" msgid "Reposted by <0><1/>" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:184 +#: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "gönderinizi yeniden gönderdi" @@ -5352,7 +5485,7 @@ msgstr "Göndermeden önce alternatif metin gerektir" msgid "Require email code to log into your account" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" msgstr "Bu sağlayıcı için gereklidir" @@ -5373,8 +5506,8 @@ msgstr "Sıfırlama Kodu" #~ msgid "Reset onboarding" #~ msgstr "Onboarding sıfırla" -#: src/view/screens/Settings/index.tsx:900 -#: src/view/screens/Settings/index.tsx:903 +#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" msgstr "Onboarding durumunu sıfırla" @@ -5386,20 +5519,20 @@ msgstr "Şifreyi sıfırla" #~ msgid "Reset preferences" #~ msgstr "Tercihleri sıfırla" -#: src/view/screens/Settings/index.tsx:880 -#: src/view/screens/Settings/index.tsx:883 +#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:884 msgid "Reset preferences state" msgstr "Tercih durumunu sıfırla" -#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" msgstr "Onboarding durumunu sıfırlar" -#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" msgstr "Tercih durumunu sıfırlar" -#: src/screens/Login/LoginForm.tsx:292 +#: src/screens/Login/LoginForm.tsx:312 msgid "Retries login" msgstr "Giriş tekrar denemesi" @@ -5412,12 +5545,12 @@ msgstr "Son hataya neden olan son eylemi tekrarlar" #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:291 -#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:311 +#: src/screens/Login/LoginForm.tsx:318 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Signup/BackNextButtons.tsx:52 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" @@ -5428,7 +5561,7 @@ msgstr "Tekrar dene" #~ msgstr "Tekrar dene." #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:650 +#: src/screens/StarterPack/StarterPackScreen.tsx:728 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Önceki sayfaya dön" @@ -5528,13 +5661,13 @@ msgstr "" #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:372 -#: src/view/com/notifications/FeedItem.tsx:397 +#: src/view/com/notifications/FeedItem.tsx:383 +#: src/view/com/notifications/FeedItem.tsx:408 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:97 msgid "Science" msgstr "Bilim" @@ -5543,16 +5676,16 @@ msgid "Scroll to top" msgstr "Başa kaydır" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:516 -#: src/view/com/auth/LoggedOut.tsx:119 +#: src/Navigation.tsx:524 +#: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 #: src/view/screens/Search/Search.tsx:791 #: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 +#: 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 @@ -5584,8 +5717,8 @@ msgstr "" #~ msgid "Search for someone to start a conversation with." #~ msgstr "" -#: src/view/com/auth/LoggedOut.tsx:101 -#: src/view/com/auth/LoggedOut.tsx:102 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:107 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "Kullanıcıları ara" @@ -5727,11 +5860,11 @@ msgstr "Abone olduğunuz beslemelerin hangi dilleri içermesini istediğinizi se msgid "Select your app language for the default text to display in the app." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:135 +#: src/screens/Signup/StepInfo/index.tsx:192 msgid "Select your date of birth" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:225 msgid "Select your interests from the options below" msgstr "Aşağıdaki seçeneklerden ilgi alanlarınızı seçin" @@ -5890,23 +6023,23 @@ msgstr "Hesabınızı ayarlayın" msgid "Sets Bluesky username" msgstr "Bluesky kullanıcı adını ayarlar" -#: src/view/screens/Settings/index.tsx:461 +#: src/view/screens/Settings/index.tsx:462 msgid "Sets color theme to dark" msgstr "" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Sets color theme to light" msgstr "" -#: src/view/screens/Settings/index.tsx:448 +#: src/view/screens/Settings/index.tsx:449 msgid "Sets color theme to system setting" msgstr "" -#: src/view/screens/Settings/index.tsx:487 +#: src/view/screens/Settings/index.tsx:488 msgid "Sets dark theme to the dark theme" msgstr "" -#: src/view/screens/Settings/index.tsx:480 +#: src/view/screens/Settings/index.tsx:481 msgid "Sets dark theme to the dim theme" msgstr "" @@ -5935,9 +6068,9 @@ msgstr "" #~ msgid "Sets server for the Bluesky client" #~ msgstr "Bluesky istemcisi için sunucuyu ayarlar" -#: src/Navigation.tsx:147 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:395 +#: src/Navigation.tsx:150 +#: src/view/screens/Settings/index.tsx:333 +#: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:559 #: src/view/shell/Drawer.tsx:560 msgid "Settings" @@ -5952,13 +6085,13 @@ msgid "Sexually Suggestive" msgstr "" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:340 -#: src/screens/StarterPack/StarterPackScreen.tsx:493 +#: 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/post-ctrls/PostCtrls.tsx:304 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Paylaş" @@ -5978,7 +6111,7 @@ msgstr "" #: src/view/com/profile/ProfileMenu.tsx:377 #: src/view/com/util/forms/PostDropdownBtn.tsx:461 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:320 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "" @@ -5989,7 +6122,7 @@ msgstr "Beslemeyi paylaş" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -6007,7 +6140,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:333 +#: src/screens/StarterPack/StarterPackScreen.tsx:393 msgid "Share this starter pack" msgstr "" @@ -6026,7 +6159,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:381 +#: src/view/screens/Settings/index.tsx:382 msgid "Show" msgstr "Göster" @@ -6034,7 +6167,7 @@ msgstr "Göster" #~ msgid "Show all replies" #~ msgstr "Tüm yanıtları göster" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "" @@ -6161,17 +6294,17 @@ msgstr "Beslemenizde {0} adresinden gönderileri gösterir" #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:100 #: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Login/LoginForm.tsx:177 #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.tsx:72 #: src/view/com/auth/SplashScreen.web.tsx:112 #: src/view/com/auth/SplashScreen.web.tsx:121 -#: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 #: src/view/shell/bottom-bar/BottomBar.tsx:315 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/bottom-bar/BottomBar.tsx:318 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:210 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -6209,12 +6342,12 @@ msgstr "" msgid "Sign out" msgstr "Çıkış yap" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 #: src/view/shell/bottom-bar/BottomBar.tsx:305 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBar.tsx:306 +#: src/view/shell/bottom-bar/BottomBar.tsx:308 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:200 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -6230,7 +6363,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:391 +#: src/view/screens/Settings/index.tsx:392 msgid "Signed in as" msgstr "Olarak giriş yapıldı" @@ -6239,7 +6372,7 @@ msgstr "Olarak giriş yapıldı" msgid "Signed in as @{0}" msgstr "@{0} olarak giriş yapıldı" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "signed up with your starter pack" msgstr "" @@ -6247,17 +6380,17 @@ msgstr "" #~ msgid "Signs {0} out of Bluesky" #~ msgstr "{0} adresini Bluesky'den çıkarır" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:264 #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Atla" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:261 msgid "Skip this flow" msgstr "Bu akışı atla" @@ -6270,6 +6403,10 @@ msgstr "Bu akışı atla" msgid "Software Dev" msgstr "Yazılım Geliştirme" +#: src/components/FeedInterstitials.tsx:378 +msgid "Some other feeds you might like" +msgstr "" + #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" @@ -6302,8 +6439,8 @@ msgstr "" #~ 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:96 -#: src/App.web.tsx:78 +#: src/App.native.tsx:98 +#: src/App.web.tsx:80 msgid "Sorry! Your session expired. Please log in again." msgstr "Üzgünüz! Oturumunuzun süresi doldu. Lütfen tekrar giriş yapın." @@ -6333,7 +6470,7 @@ msgid "Spam; excessive mentions or replies" msgstr "" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:98 msgid "Sports" msgstr "Spor" @@ -6357,17 +6494,22 @@ msgstr "" msgid "Start chatting" msgstr "" +#: src/tours/Tooltip.tsx:99 +msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +msgstr "" + #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:328 +#: src/Navigation.tsx:333 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:65 +#: src/components/StarterPack/StarterPackCard.tsx:70 msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:614 +#: src/screens/StarterPack/StarterPackScreen.tsx:692 msgid "Starter pack is invalid" msgstr "" @@ -6383,7 +6525,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Durum sayfası" -#: src/view/screens/Settings/index.tsx:963 +#: src/view/screens/Settings/index.tsx:964 msgid "Status Page" msgstr "" @@ -6391,7 +6533,7 @@ msgstr "" #~ msgid "Step" #~ msgstr "" -#: src/screens/Signup/index.tsx:192 +#: src/screens/Signup/index.tsx:125 msgid "Step {0} of {1}" msgstr "" @@ -6399,12 +6541,12 @@ msgstr "" #~ msgid "Step {0} of {numSteps}" #~ msgstr "{numSteps} adımdan {0}. adım" -#: src/view/screens/Settings/index.tsx:304 +#: src/view/screens/Settings/index.tsx:305 msgid "Storage cleared, you need to restart the app now." msgstr "Depolama temizlendi, şimdi uygulamayı yeniden başlatmanız gerekiyor." -#: src/Navigation.tsx:226 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:229 +#: src/view/screens/Settings/index.tsx:864 msgid "Storybook" msgstr "Storybook" @@ -6448,6 +6590,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "Önerilen Takipçiler" +#: src/components/FeedInterstitials.tsx:246 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Sana önerilenler" @@ -6456,7 +6599,7 @@ msgstr "Sana önerilenler" msgid "Suggestive" msgstr "Tehlikeli" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:244 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6471,6 +6614,10 @@ msgstr "Destek" msgid "Switch Account" msgstr "Hesap Değiştir" +#: src/tours/HomeTour.tsx:48 +msgid "Switch between feeds to control your experience." +msgstr "" + #: src/view/screens/Settings/index.tsx:160 msgid "Switch to {0}" msgstr "{0} adresine geç" @@ -6479,11 +6626,11 @@ msgstr "{0} adresine geç" msgid "Switches the account you are logged in to" msgstr "Giriş yaptığınız hesabı değiştirir" -#: src/view/screens/Settings/index.tsx:445 +#: src/view/screens/Settings/index.tsx:446 msgid "System" msgstr "Sistem" -#: src/view/screens/Settings/index.tsx:851 +#: src/view/screens/Settings/index.tsx:852 msgid "System log" msgstr "Sistem günlüğü" @@ -6499,12 +6646,24 @@ msgstr "" msgid "Tall" msgstr "Uzun" +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "" + #: src/view/com/util/images/AutoSizedImage.tsx:70 msgid "Tap to view fully" msgstr "Tamamen görüntülemek için dokunun" +#: src/state/shell/progress-guide.tsx:171 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "" + #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:99 msgid "Tech" msgstr "Teknoloji" @@ -6516,13 +6675,13 @@ msgstr "" msgid "Tell us a little more" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:86 +#: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Şartlar" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:254 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/Settings/index.tsx:952 #: src/view/screens/TermsOfService.tsx:29 #: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" @@ -6553,12 +6712,14 @@ msgstr "" msgid "That contains the following:" msgstr "" -#: src/screens/Signup/index.tsx:100 +#: src/screens/Signup/StepHandle.tsx:50 msgid "That handle is already taken." msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:105 -#: src/screens/StarterPack/StarterPackScreen.tsx:106 +#: src/screens/StarterPack/StarterPackScreen.tsx:96 +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:136 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6581,7 +6742,12 @@ msgstr "Topluluk Kuralları <0/> konumuna taşındı" msgid "The Copyright Policy has been moved to <0/>" msgstr "Telif Hakkı Politikası <0/> konumuna taşındı" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:177 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6610,7 +6776,7 @@ msgstr "Gönderi silinmiş olabilir." msgid "The Privacy Policy has been moved to <0/>" msgstr "Gizlilik Politikası <0/> konumuna taşındı" -#: src/screens/StarterPack/StarterPackScreen.tsx:624 +#: src/screens/StarterPack/StarterPackScreen.tsx:702 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6668,11 +6834,11 @@ 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:126 +#: src/view/com/notifications/Feed.tsx:125 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Bildirimleri almakta bir sorun oluştu. Tekrar denemek için buraya dokunun." -#: src/view/com/posts/Feed.tsx:299 +#: src/view/com/posts/Feed.tsx:459 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Gönderileri almakta bir sorun oluştu. Tekrar denemek için buraya dokunun." @@ -6872,7 +7038,7 @@ msgid "This post has been deleted." msgstr "Bu gönderi silindi." #: src/view/com/util/forms/PostDropdownBtn.tsx:458 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:317 +#: 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 "" @@ -6945,12 +7111,12 @@ msgstr "" #~ msgid "This will hide this post from your feeds." #~ msgstr "Bu, bu gönderiyi beslemelerinizden gizleyecektir." -#: src/view/screens/Settings/index.tsx:594 +#: src/view/screens/Settings/index.tsx:595 msgid "Thread preferences" msgstr "" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/Settings/index.tsx:605 msgid "Thread Preferences" msgstr "Konu Tercihleri" @@ -6962,7 +7128,7 @@ msgstr "" msgid "Threaded Mode" msgstr "Konu Tabanlı Mod" -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:287 msgid "Threads Preferences" msgstr "Konu Tercihleri" @@ -7013,11 +7179,11 @@ msgctxt "action" msgid "Try again" msgstr "Tekrar dene" -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:100 msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:745 +#: src/view/screens/Settings/index.tsx:746 msgid "Two-factor authentication" msgstr "" @@ -7039,14 +7205,14 @@ msgstr "Listeyi sessizden çıkar" #: src/screens/Login/ForgotPasswordForm.tsx:74 #: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:79 +#: src/screens/Signup/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Hizmetinize ulaşılamıyor. Lütfen internet bağlantınızı kontrol edin." -#: src/screens/StarterPack/StarterPackScreen.tsx:548 +#: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Unable to delete" msgstr "" @@ -7331,7 +7497,7 @@ msgstr "Kullanıcı listesi güncellendi" msgid "User Lists" msgstr "Kullanıcı Listeleri" -#: src/screens/Login/LoginForm.tsx:177 +#: src/screens/Login/LoginForm.tsx:197 msgid "Username or email address" msgstr "Kullanıcı adı veya e-posta adresi" @@ -7374,15 +7540,15 @@ msgstr "" msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:982 +#: src/view/screens/Settings/index.tsx:983 msgid "Verify email" msgstr "E-postayı doğrula" -#: src/view/screens/Settings/index.tsx:1007 +#: src/view/screens/Settings/index.tsx:1008 msgid "Verify my email" msgstr "E-postamı doğrula" -#: src/view/screens/Settings/index.tsx:1016 +#: src/view/screens/Settings/index.tsx:1017 msgid "Verify My Email" msgstr "E-postamı Doğrula" @@ -7403,7 +7569,7 @@ msgstr "E-postanızı Doğrulayın" #~ msgid "Version {0}" #~ msgstr "" -#: src/view/screens/Settings/index.tsx:935 +#: src/view/screens/Settings/index.tsx:936 msgid "Version {appVersion} {bundleInfo}" msgstr "" @@ -7416,7 +7582,7 @@ msgstr "Video Oyunları" msgid "View {0}'s avatar" msgstr "{0}'ın avatarını görüntüle" -#: src/view/com/notifications/FeedItem.tsx:234 +#: src/view/com/notifications/FeedItem.tsx:245 msgid "View {0}'s profile" msgstr "" @@ -7465,7 +7631,7 @@ msgid "View users who like this feed" msgstr "" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -7504,7 +7670,7 @@ msgstr "" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Hesabınızın hazır olmasına {estimatedTime} tahmin ediyoruz." -#: src/screens/Onboarding/StepFinished.tsx:231 +#: src/screens/Onboarding/StepFinished.tsx:239 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Harika vakit geçirmenizi umuyoruz. Unutmayın, Bluesky:" @@ -7528,7 +7694,7 @@ msgstr "" msgid "We were unable to load your configured labelers at this time." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:157 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Bağlantı kuramadık. Hesabınızı kurmaya devam etmek için tekrar deneyin. Başarısız olmaya devam ederse bu akışı atlayabilirsiniz." @@ -7540,7 +7706,7 @@ msgstr "Hesabınız hazır olduğunda size bildireceğiz." #~ msgid "We'll look into your appeal promptly." #~ msgstr "İtirazınıza hızlı bir şekilde bakacağız." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:162 msgid "We'll use this to help customize your experience." msgstr "Bu, deneyiminizi özelleştirmenize yardımcı olmak için kullanılacak." @@ -7548,7 +7714,7 @@ msgstr "Bu, deneyiminizi özelleştirmenize yardımcı olmak için kullanılacak msgid "We're having network issues, try again" msgstr "" -#: src/screens/Signup/index.tsx:155 +#: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" msgstr "Sizi aramızda görmekten çok mutluyuz!" @@ -7593,7 +7759,7 @@ msgstr "" msgid "Welcome, friend!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" msgstr "İlgi alanlarınız nelerdir?" @@ -7688,7 +7854,7 @@ msgid "Write your reply" msgstr "Yanıtınızı yazın" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:101 msgid "Writers" msgstr "Yazarlar" @@ -7711,7 +7877,7 @@ msgstr "Evet" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:560 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 msgid "Yes, delete this starter pack" msgstr "" @@ -7723,7 +7889,7 @@ msgstr "" msgid "Yesterday, {time}" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:68 +#: src/components/StarterPack/StarterPackCard.tsx:73 msgid "you" msgstr "" @@ -7956,23 +8122,23 @@ msgstr "" msgid "You: {short}" msgstr "" -#: src/screens/Signup/index.tsx:169 +#: src/screens/Signup/index.tsx:102 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:174 +#: 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:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "You'll stay updated with these feeds" msgstr "" @@ -7991,7 +8157,7 @@ msgstr "Sıradasınız" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:228 +#: src/screens/Onboarding/StepFinished.tsx:236 msgid "You're ready to go!" msgstr "Hazırsınız!" @@ -8004,7 +8170,7 @@ msgstr "" msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Beslemenizin sonuna ulaştınız! Takip edebileceğiniz daha fazla hesap bulun." -#: src/screens/Signup/index.tsx:202 +#: src/screens/Signup/index.tsx:135 msgid "Your account" msgstr "Hesabınız" @@ -8016,7 +8182,7 @@ msgstr "Hesabınız silindi" msgid "Your account repository, containing all public data records, can be downloaded as a \"CAR\" file. This file does not include media embeds, such as images, or your private data, which must be fetched separately." msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" msgstr "Doğum tarihiniz" @@ -8033,7 +8199,8 @@ msgstr "Seçiminiz kaydedilecek, ancak daha sonra ayarlarda değiştirilebilir." #~ msgstr "Varsayılan beslemeniz \"Takip Edilenler\"" #: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "E-postanız geçersiz gibi görünüyor." @@ -8050,11 +8217,15 @@ msgstr "E-postanız güncellendi ancak doğrulanmadı. Bir sonraki adım olarak, msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "E-postanız henüz doğrulanmadı. Bu, önerdiğimiz önemli bir güvenlik adımıdır." +#: src/state/shell/progress-guide.tsx:161 +msgid "Your first like!" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Takip ettiğiniz besleme boş! Neler olduğunu görmek için daha fazla kullanıcı takip edin." -#: src/screens/Signup/StepHandle.tsx:73 +#: src/screens/Signup/StepHandle.tsx:122 msgid "Your full handle will be" msgstr "Tam kullanıcı adınız" @@ -8079,7 +8250,7 @@ msgstr "Şifreniz başarıyla değiştirildi!" msgid "Your post has been published" msgstr "Gönderiniz yayınlandı" -#: src/screens/Onboarding/StepFinished.tsx:243 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Gönderileriniz, beğenileriniz ve engellemeleriniz herkese açıktır. Sessizlikleriniz özeldir." @@ -8099,6 +8270,6 @@ msgstr "Yanıtınız yayınlandı" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" -#: src/screens/Signup/index.tsx:204 +#: src/screens/Signup/index.tsx:137 msgid "Your user handle" msgstr "Kullanıcı adınız" diff --git a/src/locale/locales/uk/messages.po b/src/locale/locales/uk/messages.po index b1dcdfb99f..d56121f229 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:283 +#: src/view/com/notifications/FeedItem.tsx:294 msgid "{0, plural, one {{formattedCount} other} other {{formattedCount} others}}" msgstr "" @@ -64,7 +64,7 @@ msgstr "" msgid "{0, plural, one {following} other {following}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:259 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:266 msgid "{0, plural, one {Like (# like)} other {Like (# likes)}}" msgstr "" @@ -72,7 +72,7 @@ msgstr "" msgid "{0, plural, one {like} other {likes}}" msgstr "" -#: src/components/FeedCard.tsx:216 +#: src/components/FeedCard.tsx:206 #: src/view/com/feeds/FeedSourceCard.tsx:301 msgid "{0, plural, one {Liked by # user} other {Liked by # users}}" msgstr "" @@ -81,7 +81,7 @@ msgstr "" msgid "{0, plural, one {post} other {posts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:217 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:224 msgid "{0, plural, one {Reply (# reply)} other {Reply (# replies)}}" msgstr "" @@ -89,15 +89,15 @@ msgstr "" msgid "{0, plural, one {repost} other {reposts}}" msgstr "" -#: src/view/com/util/post-ctrls/PostCtrls.tsx:255 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:262 msgid "{0, plural, one {Unlike (# like)} other {Unlike (# likes)}}" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:222 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:249 msgid "{0} joined this week" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:378 +#: src/screens/StarterPack/StarterPackScreen.tsx:456 msgid "{0} people have used this starter pack!" msgstr "" @@ -153,7 +153,7 @@ msgstr "" msgid "{estimatedTimeMins, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/ProfileHoverCard/index.web.tsx:503 +#: src/components/ProfileHoverCard/index.web.tsx:504 #: src/screens/Profile/Header/Metrics.tsx:50 msgid "{following} following" msgstr "{following} підписок" @@ -259,10 +259,14 @@ msgstr "" msgid "⚠Invalid Handle" msgstr "⚠Недопустимий псевдонім" -#: src/screens/Login/LoginForm.tsx:247 +#: src/screens/Login/LoginForm.tsx:266 msgid "2FA Confirmation" msgstr "" +#: src/tours/Tooltip.tsx:70 +msgid "A help tooltip" +msgstr "" + #: src/view/com/util/ViewHeader.tsx:93 #: src/view/screens/Search/Search.tsx:684 msgid "Access navigation links and settings" @@ -273,15 +277,15 @@ msgid "Access profile and other navigation links" msgstr "Відкрити профіль та іншу навігацію" #: src/view/com/modals/EditImage.tsx:300 -#: src/view/screens/Settings/index.tsx:518 +#: src/view/screens/Settings/index.tsx:519 msgid "Accessibility" msgstr "Доступність" -#: src/view/screens/Settings/index.tsx:509 +#: src/view/screens/Settings/index.tsx:510 msgid "Accessibility settings" msgstr "" -#: src/Navigation.tsx:298 +#: src/Navigation.tsx:301 #: src/view/screens/AccessibilitySettings.tsx:69 msgid "Accessibility Settings" msgstr "" @@ -290,9 +294,9 @@ msgstr "" #~ msgid "account" #~ msgstr "обліковий запис" -#: src/screens/Login/LoginForm.tsx:170 -#: src/view/screens/Settings/index.tsx:345 -#: src/view/screens/Settings/index.tsx:752 +#: src/screens/Login/LoginForm.tsx:190 +#: src/view/screens/Settings/index.tsx:346 +#: src/view/screens/Settings/index.tsx:753 msgid "Account" msgstr "Обліковий запис" @@ -363,8 +367,8 @@ msgstr "Додати користувача до списку" #: src/components/dialogs/SwitchAccount.tsx:56 #: src/screens/Deactivated.tsx:199 -#: src/view/screens/Settings/index.tsx:422 -#: src/view/screens/Settings/index.tsx:431 +#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:432 msgid "Add account" msgstr "Додати обліковий запис" @@ -423,7 +427,7 @@ msgstr "" msgid "Add the following DNS record to your domain:" msgstr "Додайте наступний DNS-запис до вашого домену:" -#: src/components/FeedCard.tsx:305 +#: src/components/FeedCard.tsx:289 msgid "Add this feed to your feeds" msgstr "" @@ -467,15 +471,19 @@ msgid "Adult content is disabled." msgstr "Контент для дорослих вимкнено." #: src/screens/Moderation/index.tsx:399 -#: src/view/screens/Settings/index.tsx:686 +#: src/view/screens/Settings/index.tsx:687 msgid "Advanced" msgstr "Розширені" -#: src/screens/StarterPack/StarterPackScreen.tsx:301 +#: src/state/shell/progress-guide.tsx:176 +msgid "Algorithm training complete!" +msgstr "" + +#: src/screens/StarterPack/StarterPackScreen.tsx:360 msgid "All accounts have been followed!" msgstr "" -#: src/view/screens/Feeds.tsx:721 +#: src/view/screens/Feeds.tsx:734 msgid "All the feeds you've saved, right in one place." msgstr "Усі збережені стрічки в одному місці." @@ -505,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:177 +#: src/view/com/util/post-embeds/GifEmbed.tsx:174 msgid "ALT" msgstr "ALT" @@ -515,7 +523,7 @@ msgstr "ALT" msgid "Alt text" msgstr "Альтернативний текст" -#: src/view/com/util/post-embeds/GifEmbed.tsx:183 +#: src/view/com/util/post-embeds/GifEmbed.tsx:180 msgid "Alt Text" msgstr "" @@ -553,7 +561,7 @@ msgstr "" #~ msgid "An error occurred while trying to delete the message. Please try again." #~ msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:303 +#: src/screens/StarterPack/StarterPackScreen.tsx:362 msgid "An error occurred while trying to follow all" msgstr "" @@ -563,6 +571,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/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -570,12 +580,12 @@ msgstr "Проблема не включена до цих варіантів" msgid "An issue occurred, please try again." msgstr "Виникла проблема, будь ласка, спробуйте ще раз." -#: src/screens/Onboarding/StepInterests/index.tsx:199 +#: src/screens/Onboarding/StepInterests/index.tsx:218 msgid "an unknown error occurred" msgstr "" #: src/components/WhoCanReply.tsx:316 -#: src/view/com/notifications/FeedItem.tsx:280 +#: src/view/com/notifications/FeedItem.tsx:291 msgid "and" msgstr "та" @@ -584,7 +594,7 @@ msgstr "та" msgid "Animals" msgstr "Тварини" -#: src/view/com/util/post-embeds/GifEmbed.tsx:149 +#: src/view/com/util/post-embeds/GifEmbed.tsx:146 msgid "Animated GIF" msgstr "" @@ -608,13 +618,13 @@ msgstr "Назва пароля може містити лише латинсь msgid "App Password names must be at least 4 characters long." msgstr "Назва пароля застосунку мусить бути хоча б 4 символи в довжину." -#: src/view/screens/Settings/index.tsx:697 +#: src/view/screens/Settings/index.tsx:698 msgid "App password settings" msgstr "Налаштування пароля застосунків" -#: src/Navigation.tsx:266 +#: src/Navigation.tsx:269 #: src/view/screens/AppPasswords.tsx:192 -#: src/view/screens/Settings/index.tsx:706 +#: src/view/screens/Settings/index.tsx:707 msgid "App Passwords" msgstr "Паролі для застосунків" @@ -643,7 +653,7 @@ msgstr "" msgid "Appeal this decision" msgstr "" -#: src/view/screens/Settings/index.tsx:439 +#: src/view/screens/Settings/index.tsx:440 msgid "Appearance" msgstr "Оформлення" @@ -652,7 +662,7 @@ msgstr "Оформлення" msgid "Apply default recommended feeds" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:532 +#: src/screens/StarterPack/StarterPackScreen.tsx:610 msgid "Are you sure you want delete this starter pack?" msgstr "" @@ -680,7 +690,7 @@ msgstr "" msgid "Are you sure you want to remove {0} from your feeds?" msgstr "Ви впевнені, що бажаєте видалити {0} зі стрічки?" -#: src/components/FeedCard.tsx:322 +#: src/components/FeedCard.tsx:306 msgid "Are you sure you want to remove this from your feeds?" msgstr "" @@ -705,7 +715,7 @@ msgstr "Мистецтво" msgid "Artistic or non-erotic nudity." msgstr "Художня або нееротична оголеність." -#: src/screens/Signup/StepHandle.tsx:119 +#: src/screens/Signup/StepHandle.tsx:170 msgid "At least 3 characters" msgstr "Не менше 3-х символів" @@ -716,14 +726,15 @@ msgstr "Не менше 3-х символів" #: src/screens/Login/ChooseAccountForm.tsx:103 #: src/screens/Login/ForgotPasswordForm.tsx:129 #: src/screens/Login/ForgotPasswordForm.tsx:135 -#: src/screens/Login/LoginForm.tsx:278 -#: src/screens/Login/LoginForm.tsx:284 +#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:304 #: src/screens/Login/SetNewPasswordForm.tsx:160 #: src/screens/Login/SetNewPasswordForm.tsx:166 #: src/screens/Messages/Conversation/ChatDisabled.tsx:133 #: src/screens/Messages/Conversation/ChatDisabled.tsx:134 #: src/screens/Profile/Header/Shell.tsx:102 -#: src/screens/Signup/index.tsx:231 +#: 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" @@ -733,7 +744,7 @@ msgstr "Назад" #~ msgid "Based on your interest in {interestsText}" #~ msgstr "Ґрунтуючись на вашому інтересі до {interestsText}" -#: src/view/screens/Settings/index.tsx:496 +#: src/view/screens/Settings/index.tsx:497 msgid "Basics" msgstr "Основні" @@ -741,7 +752,7 @@ msgstr "Основні" msgid "Birthday" msgstr "Дата народження" -#: src/view/screens/Settings/index.tsx:377 +#: src/view/screens/Settings/index.tsx:378 msgid "Birthday:" msgstr "Дата народження:" @@ -785,7 +796,7 @@ msgstr "Заблоковано" msgid "Blocked accounts" msgstr "Заблоковані облікові записи" -#: src/Navigation.tsx:142 +#: src/Navigation.tsx:145 #: src/view/screens/ModerationBlockedAccounts.tsx:109 msgid "Blocked Accounts" msgstr "Заблоковані облікові записи" @@ -827,6 +838,10 @@ msgstr "Bluesky" msgid "Bluesky is an open network where you can choose your hosting provider. Custom hosting is now available in beta for developers." msgstr "Bluesky є відкритою мережею, де ви можете обрати свого хостинг-провайдера. Власний хостинг тепер доступний в бета-версії для розробників." +#: 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." @@ -863,6 +878,24 @@ msgstr "Розмити зображення і фільтрувати їх зі msgid "Books" msgstr "Книги" +#: src/components/FeedInterstitials.tsx:281 +msgid "Browse more accounts on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:411 +msgid "Browse more feeds on the Explore page" +msgstr "" + +#: src/components/FeedInterstitials.tsx:266 +#: src/components/FeedInterstitials.tsx:396 +msgid "Browse more suggestions" +msgstr "" + +#: src/components/FeedInterstitials.tsx:289 +#: src/components/FeedInterstitials.tsx:420 +msgid "Browse more suggestions on the Explore page" +msgstr "" + #: src/screens/Home/NoFeedsPinned.tsx:103 #: src/screens/Home/NoFeedsPinned.tsx:109 msgid "Browse other feeds" @@ -981,17 +1014,17 @@ msgstr "Скасовує відкриття посилання" msgid "Change" msgstr "Змінити" -#: src/view/screens/Settings/index.tsx:371 +#: src/view/screens/Settings/index.tsx:372 msgctxt "action" msgid "Change" msgstr "Змінити" -#: src/view/screens/Settings/index.tsx:718 +#: src/view/screens/Settings/index.tsx:719 msgid "Change handle" msgstr "Змінити псевдонім" #: src/view/com/modals/ChangeHandle.tsx:156 -#: src/view/screens/Settings/index.tsx:729 +#: src/view/screens/Settings/index.tsx:730 msgid "Change Handle" msgstr "Змінити псевдонім" @@ -999,12 +1032,12 @@ msgstr "Змінити псевдонім" msgid "Change my email" msgstr "Змінити адресу електронної пошти" -#: src/view/screens/Settings/index.tsx:763 +#: src/view/screens/Settings/index.tsx:764 msgid "Change password" msgstr "Змінити пароль" #: src/view/com/modals/ChangePassword.tsx:142 -#: src/view/screens/Settings/index.tsx:774 +#: src/view/screens/Settings/index.tsx:775 msgid "Change Password" msgstr "Зміна пароля" @@ -1016,9 +1049,9 @@ msgstr "Змінити мову поста на {0}" msgid "Change Your Email" msgstr "Змінити адресу електронної пошти" -#: src/Navigation.tsx:310 -#: src/view/shell/bottom-bar/BottomBar.tsx:201 -#: src/view/shell/desktop/LeftNav.tsx:301 +#: src/Navigation.tsx:313 +#: src/view/shell/bottom-bar/BottomBar.tsx:204 +#: src/view/shell/desktop/LeftNav.tsx:302 msgid "Chat" msgstr "" @@ -1028,14 +1061,14 @@ msgstr "" #: src/components/dms/ConvoMenu.tsx:112 #: src/components/dms/MessageMenu.tsx:81 -#: src/Navigation.tsx:315 +#: src/Navigation.tsx:318 #: src/screens/Messages/List/index.tsx:88 -#: src/view/screens/Settings/index.tsx:638 +#: src/view/screens/Settings/index.tsx:639 msgid "Chat settings" msgstr "" #: src/screens/Messages/Settings.tsx:59 -#: src/view/screens/Settings/index.tsx:647 +#: src/view/screens/Settings/index.tsx:648 msgid "Chat Settings" msgstr "" @@ -1060,7 +1093,7 @@ msgstr "Перевірити мій статус" #~ msgid "Check out some recommended users. Follow them to see similar users." #~ msgstr "Ознайомтеся з деякими рекомендованими користувачами. Слідкуйте за ними, щоб побачити дописи від подібних користувачів." -#: src/screens/Login/LoginForm.tsx:271 +#: src/screens/Login/LoginForm.tsx:291 msgid "Check your email for a login code and enter it here." msgstr "" @@ -1072,6 +1105,14 @@ msgstr "Перевірте свою поштову скриньку на ная #~ msgid "Choose \"Everybody\" or \"Nobody\"" #~ msgstr "Виберіть \"Усі\" або \"Ніхто\"" +#: src/screens/Onboarding/StepInterests/index.tsx:190 +msgid "Choose 3 or more:" +msgstr "" + +#: src/screens/Onboarding/StepInterests/index.tsx:325 +msgid "Choose at least {0} more" +msgstr "" + #: src/screens/StarterPack/Wizard/index.tsx:191 msgid "Choose Feeds" msgstr "" @@ -1088,7 +1129,7 @@ msgstr "" msgid "Choose Service" msgstr "Оберіть хостинг-провайдера" -#: src/screens/Onboarding/StepFinished.tsx:273 +#: src/screens/Onboarding/StepFinished.tsx:281 msgid "Choose the algorithms that power your custom feeds." msgstr "Оберіть алгоритми, що наповнюватимуть ваші стрічки." @@ -1110,23 +1151,23 @@ msgstr "" #~ msgid "Choose your main feeds" #~ msgstr "Виберіть ваші основні стрічки" -#: src/screens/Signup/StepInfo/index.tsx:114 +#: src/screens/Signup/StepInfo/index.tsx:171 msgid "Choose your password" msgstr "Вкажіть пароль" -#: src/view/screens/Settings/index.tsx:910 +#: src/view/screens/Settings/index.tsx:911 msgid "Clear all legacy storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:913 +#: src/view/screens/Settings/index.tsx:914 msgid "Clear all legacy storage data (restart after this)" msgstr "" -#: src/view/screens/Settings/index.tsx:922 +#: src/view/screens/Settings/index.tsx:923 msgid "Clear all storage data" msgstr "" -#: src/view/screens/Settings/index.tsx:925 +#: src/view/screens/Settings/index.tsx:926 msgid "Clear all storage data (restart after this)" msgstr "" @@ -1135,11 +1176,11 @@ msgstr "" msgid "Clear search query" msgstr "Очистити пошуковий запит" -#: src/view/screens/Settings/index.tsx:911 +#: src/view/screens/Settings/index.tsx:912 msgid "Clears all legacy storage data" msgstr "Видаляє всі застарілі дані зі сховища" -#: src/view/screens/Settings/index.tsx:923 +#: src/view/screens/Settings/index.tsx:924 msgid "Clears all storage data" msgstr "Видаляє всі дані зі сховища" @@ -1188,7 +1229,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:189 +#: src/view/com/util/post-embeds/GifEmbed.tsx:186 msgid "Close" msgstr "Закрити" @@ -1251,11 +1292,11 @@ msgstr "Закриває редактор постів і видаляє чер msgid "Closes viewer for header image" msgstr "Закриває перегляд зображення" -#: src/view/com/notifications/FeedItem.tsx:226 +#: src/view/com/notifications/FeedItem.tsx:237 msgid "Collapse list of users" msgstr "" -#: src/view/com/notifications/FeedItem.tsx:426 +#: src/view/com/notifications/FeedItem.tsx:437 msgid "Collapses list of users for a given notification" msgstr "Згортає список користувачів для даного сповіщення" @@ -1269,16 +1310,16 @@ msgstr "Комедія" msgid "Comics" msgstr "Комікси" -#: src/Navigation.tsx:256 +#: src/Navigation.tsx:259 #: src/view/screens/CommunityGuidelines.tsx:32 msgid "Community Guidelines" msgstr "Правила спільноти" -#: src/screens/Onboarding/StepFinished.tsx:286 +#: src/screens/Onboarding/StepFinished.tsx:294 msgid "Complete onboarding and start using your account" msgstr "Завершіть ознайомлення та розпочніть користуватися вашим обліковим записом" -#: src/screens/Signup/index.tsx:206 +#: src/screens/Signup/index.tsx:139 msgid "Complete the challenge" msgstr "Виконайте завдання" @@ -1335,7 +1376,7 @@ msgstr "Підтвердіть ваш вік:" msgid "Confirm your birthdate" msgstr "Підтвердіть вашу дату народження" -#: src/screens/Login/LoginForm.tsx:253 +#: src/screens/Login/LoginForm.tsx:272 #: src/view/com/modals/ChangeEmail.tsx:152 #: src/view/com/modals/DeleteAccount.tsx:238 #: src/view/com/modals/DeleteAccount.tsx:244 @@ -1345,11 +1386,11 @@ msgstr "Підтвердіть вашу дату народження" msgid "Confirmation code" msgstr "Код підтвердження" -#: src/screens/Login/LoginForm.tsx:305 +#: src/screens/Login/LoginForm.tsx:325 msgid "Connecting..." msgstr "З’єднання..." -#: src/screens/Signup/index.tsx:276 +#: src/screens/Signup/index.tsx:171 msgid "Contact support" msgstr "Служба підтримки" @@ -1390,7 +1431,7 @@ msgstr "Попередження про вміст" msgid "Context menu backdrop, click to close the menu." msgstr "Тло контекстного меню натисніть, щоб закрити меню." -#: src/screens/Onboarding/StepInterests/index.tsx:258 +#: src/screens/Onboarding/StepInterests/index.tsx:277 #: src/screens/Onboarding/StepProfile/index.tsx:269 msgid "Continue" msgstr "Далі" @@ -1403,9 +1444,9 @@ msgstr "Продовжити як {0} (поточний користувач)" msgid "Continue thread..." msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:255 +#: src/screens/Onboarding/StepInterests/index.tsx:274 #: src/screens/Onboarding/StepProfile/index.tsx:266 -#: src/screens/Signup/index.tsx:251 +#: src/screens/Signup/BackNextButtons.tsx:59 msgid "Continue to next step" msgstr "Перейти до наступного кроку" @@ -1430,7 +1471,7 @@ msgstr "Кухарство" msgid "Copied" msgstr "Скопійовано" -#: src/view/screens/Settings/index.tsx:263 +#: src/view/screens/Settings/index.tsx:264 msgid "Copied build version to clipboard" msgstr "Версію збірки скопійовано до буфера обміну" @@ -1439,7 +1480,7 @@ msgstr "Версію збірки скопійовано до буфера об #: 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/post-ctrls/PostCtrls.tsx:350 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:357 msgid "Copied to clipboard" msgstr "Скопійовано" @@ -1496,7 +1537,7 @@ msgstr "Копіювати текст повідомлення" msgid "Copy QR code" msgstr "" -#: src/Navigation.tsx:261 +#: src/Navigation.tsx:264 #: src/view/screens/CopyrightPolicy.tsx:29 msgid "Copyright Policy" msgstr "Політика захисту авторського права" @@ -1534,7 +1575,7 @@ msgstr "" msgid "Create a new account" msgstr "Створити новий обліковий запис" -#: src/view/screens/Settings/index.tsx:423 +#: src/view/screens/Settings/index.tsx:424 msgid "Create a new Bluesky account" msgstr "Створити новий обліковий запис Bluesky" @@ -1544,7 +1585,7 @@ msgstr "" #: src/components/StarterPack/ProfileStarterPacks.tsx:165 #: src/components/StarterPack/ProfileStarterPacks.tsx:259 -#: src/Navigation.tsx:330 +#: src/Navigation.tsx:338 msgid "Create a starter pack" msgstr "" @@ -1552,7 +1593,7 @@ msgstr "" msgid "Create a starter pack for me" msgstr "" -#: src/screens/Signup/index.tsx:154 +#: src/screens/Signup/index.tsx:88 msgid "Create Account" msgstr "Створити обліковий запис" @@ -1608,7 +1649,7 @@ msgstr "Користувацький" msgid "Custom domain" msgstr "Власний домен" -#: src/view/screens/Feeds.tsx:747 +#: src/view/screens/Feeds.tsx:760 #: src/view/screens/Search/Explore.tsx:390 msgid "Custom feeds built by the community bring you new experiences and help you find the content you love." msgstr "Кастомні стрічки, створені спільнотою, подарують вам нові враження та допоможуть знайти контент, який ви любите." @@ -1617,8 +1658,8 @@ msgstr "Кастомні стрічки, створені спільнотою, msgid "Customize media from external sites." msgstr "Налаштування медіа зі сторонніх вебсайтів." -#: src/view/screens/Settings/index.tsx:458 -#: src/view/screens/Settings/index.tsx:484 +#: src/view/screens/Settings/index.tsx:459 +#: src/view/screens/Settings/index.tsx:485 msgid "Dark" msgstr "Темна" @@ -1626,24 +1667,24 @@ msgstr "Темна" msgid "Dark mode" msgstr "Темний режим" -#: src/view/screens/Settings/index.tsx:471 +#: src/view/screens/Settings/index.tsx:472 msgid "Dark Theme" msgstr "Темна тема" -#: src/screens/Signup/StepInfo/index.tsx:134 +#: src/screens/Signup/StepInfo/index.tsx:191 msgid "Date of birth" msgstr "Дата народження" #: src/screens/Settings/components/DeactivateAccountDialog.tsx:73 -#: src/view/screens/Settings/index.tsx:806 +#: src/view/screens/Settings/index.tsx:807 msgid "Deactivate account" msgstr "" -#: src/view/screens/Settings/index.tsx:818 +#: src/view/screens/Settings/index.tsx:819 msgid "Deactivate my account" msgstr "" -#: src/view/screens/Settings/index.tsx:873 +#: src/view/screens/Settings/index.tsx:874 msgid "Debug Moderation" msgstr "Налагодження модерації" @@ -1652,16 +1693,16 @@ msgid "Debug panel" msgstr "Панель налагодження" #: src/components/dms/MessageMenu.tsx:151 -#: src/screens/StarterPack/StarterPackScreen.tsx:484 -#: src/screens/StarterPack/StarterPackScreen.tsx:563 -#: src/screens/StarterPack/StarterPackScreen.tsx:643 +#: 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/screens/AppPasswords.tsx:285 #: src/view/screens/ProfileList.tsx:667 msgid "Delete" msgstr "Видалити" -#: src/view/screens/Settings/index.tsx:828 +#: src/view/screens/Settings/index.tsx:829 msgid "Delete account" msgstr "Видалити обліковий запис" @@ -1681,8 +1722,8 @@ msgstr "Видалити пароль для застосунку" msgid "Delete app password?" msgstr "Видалити пароль для застосунку?" -#: src/view/screens/Settings/index.tsx:890 -#: src/view/screens/Settings/index.tsx:893 +#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:894 msgid "Delete chat declaration record" msgstr "" @@ -1706,7 +1747,7 @@ msgstr "" msgid "Delete my account" msgstr "Видалити мій обліковий запис" -#: src/view/screens/Settings/index.tsx:840 +#: src/view/screens/Settings/index.tsx:841 msgid "Delete My Account…" msgstr "Видалити мій обліковий запис..." @@ -1715,12 +1756,12 @@ msgstr "Видалити мій обліковий запис..." msgid "Delete post" msgstr "Видалити пост" -#: src/screens/StarterPack/StarterPackScreen.tsx:478 -#: src/screens/StarterPack/StarterPackScreen.tsx:634 +#: src/screens/StarterPack/StarterPackScreen.tsx:556 +#: src/screens/StarterPack/StarterPackScreen.tsx:712 msgid "Delete starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:529 +#: src/screens/StarterPack/StarterPackScreen.tsx:607 msgid "Delete starter pack?" msgstr "" @@ -1740,7 +1781,7 @@ msgstr "Видалено" msgid "Deleted post." msgstr "Видалений пост." -#: src/view/screens/Settings/index.tsx:891 +#: src/view/screens/Settings/index.tsx:892 msgid "Deletes the chat declaration record" msgstr "" @@ -1759,7 +1800,7 @@ msgstr "" msgid "Did you want to say anything?" msgstr "Порожній пост. Ви хотіли щось написати?" -#: src/view/screens/Settings/index.tsx:477 +#: src/view/screens/Settings/index.tsx:478 msgid "Dim" msgstr "Тьмяний" @@ -1809,6 +1850,10 @@ msgstr "Відхилити чернетку?" msgid "Discourage apps from showing my account to logged-out users" msgstr "Попросити застосунки не показувати мій обліковий запис без входу" +#: src/tours/HomeTour.tsx:70 +msgid "Discover learns which posts you like as you browse." +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:70 #: src/view/com/posts/FollowingEndOfFeed.tsx:71 msgid "Discover new custom feeds" @@ -1818,10 +1863,14 @@ msgstr "Відкрийте для себе нові стрічки" msgid "Discover new feeds" msgstr "" -#: src/view/screens/Feeds.tsx:744 +#: src/view/screens/Feeds.tsx:757 msgid "Discover New Feeds" msgstr "Відкрийте для себе нові стрічки" +#: src/components/ProgressGuide/List.tsx:40 +msgid "Dismiss getting started guide" +msgstr "" + #: src/view/screens/AccessibilitySettings.tsx:95 msgid "Display larger alt text badges" msgstr "" @@ -1842,7 +1891,7 @@ msgstr "Панель DNS" msgid "Does not include nudity." msgstr "Не містить оголеності." -#: src/screens/Signup/StepHandle.tsx:105 +#: src/screens/Signup/StepHandle.tsx:156 msgid "Doesn't begin or end with a hyphen" msgstr "Не починається або закінчується дефісом" @@ -1887,7 +1936,7 @@ msgstr "Готово" msgid "Done{extraText}" msgstr "Готово{extraText}" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:318 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:345 msgid "Download Bluesky" msgstr "" @@ -1896,7 +1945,7 @@ msgstr "" msgid "Download CAR file" msgstr "Завантажити CAR файл" -#: src/view/com/composer/text-input/TextInput.web.tsx:272 +#: src/view/com/composer/text-input/TextInput.web.tsx:271 msgid "Drop to add images" msgstr "Перетягніть і відпустіть, щоб додати зображення" @@ -1944,11 +1993,11 @@ msgstr "напр. Користувачі, що неодноразово відп msgid "Each code works once. You'll receive more invite codes periodically." msgstr "Кожен код запрошення працює лише один раз. Час від часу ви будете отримувати нові коди." -#: src/screens/StarterPack/StarterPackScreen.tsx:473 +#: src/screens/StarterPack/StarterPackScreen.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:551 #: src/screens/StarterPack/Wizard/index.tsx:558 -#: src/view/screens/Feeds.tsx:385 -#: src/view/screens/Feeds.tsx:453 +#: src/view/screens/Feeds.tsx:386 +#: src/view/screens/Feeds.tsx:454 msgid "Edit" msgstr "" @@ -1979,9 +2028,9 @@ msgstr "Редагувати опис списку" msgid "Edit Moderation List" msgstr "Редагування списку" -#: src/Navigation.tsx:271 -#: src/view/screens/Feeds.tsx:383 -#: src/view/screens/Feeds.tsx:451 +#: src/Navigation.tsx:274 +#: src/view/screens/Feeds.tsx:384 +#: src/view/screens/Feeds.tsx:452 #: src/view/screens/SavedFeeds.tsx:93 msgid "Edit My Feeds" msgstr "Редагувати мої стрічки" @@ -2009,7 +2058,7 @@ msgstr "Редагувати профіль" #~ msgid "Edit Saved Feeds" #~ msgstr "Редагувати збережені стрічки" -#: src/screens/StarterPack/StarterPackScreen.tsx:465 +#: src/screens/StarterPack/StarterPackScreen.tsx:543 msgid "Edit starter pack" msgstr "" @@ -2029,7 +2078,7 @@ msgstr "Редагувати ваш псевдонім для показу" msgid "Edit your profile description" msgstr "Редагувати опис вашого профілю" -#: src/Navigation.tsx:335 +#: src/Navigation.tsx:343 msgid "Edit your starter pack" msgstr "" @@ -2042,7 +2091,7 @@ msgstr "Освіта" msgid "Either choose \"Everybody\" or \"Nobody\"" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:80 +#: src/screens/Signup/StepInfo/index.tsx:143 #: src/view/com/modals/ChangeEmail.tsx:136 msgid "Email" msgstr "Ел. адреса" @@ -2068,7 +2117,7 @@ msgstr "Ел. адресу оновлено" msgid "Email verified" msgstr "Електронну адресу перевірено" -#: src/view/screens/Settings/index.tsx:349 +#: src/view/screens/Settings/index.tsx:350 msgid "Email:" msgstr "Ел. адреса:" @@ -2134,6 +2183,10 @@ msgstr "Кінець стрічки" #~ 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 "" + #: src/view/com/modals/AddAppPasswords.tsx:160 msgid "Enter a name for this App Password" msgstr "Введіть ім'я для цього пароля застосунку" @@ -2168,7 +2221,7 @@ msgid "Enter your birth date" msgstr "Введіть вашу дату народження" #: src/screens/Login/ForgotPasswordForm.tsx:105 -#: src/screens/Signup/StepInfo/index.tsx:92 +#: src/screens/Signup/StepInfo/index.tsx:152 msgid "Enter your email address" msgstr "Введіть адресу електронної пошти" @@ -2188,11 +2241,11 @@ msgstr "Введіть псевдонім та пароль" msgid "Error occurred while saving file" msgstr "" -#: src/screens/Signup/StepCaptcha/index.tsx:51 +#: src/screens/Signup/StepCaptcha/index.tsx:54 msgid "Error receiving captcha response." msgstr "Помилка отримання відповіді Captcha." -#: src/screens/Onboarding/StepInterests/index.tsx:197 +#: src/screens/Onboarding/StepInterests/index.tsx:216 #: src/view/screens/Search/Search.tsx:116 msgid "Error:" msgstr "Помилка:" @@ -2247,7 +2300,7 @@ msgstr "Вихід із пошуку" msgid "Expand alt text" msgstr "Розгорнути опис" -#: src/view/com/notifications/FeedItem.tsx:227 +#: src/view/com/notifications/FeedItem.tsx:238 msgid "Expand list of users" msgstr "" @@ -2264,12 +2317,12 @@ msgstr "Відверто або потенційно проблемний вмі msgid "Explicit sexual images." msgstr "Відверті сексуальні зображення." -#: src/view/screens/Settings/index.tsx:786 +#: src/view/screens/Settings/index.tsx:787 msgid "Export my data" msgstr "Експорт моїх даних" #: src/view/screens/Settings/ExportCarDialog.tsx:62 -#: src/view/screens/Settings/index.tsx:797 +#: src/view/screens/Settings/index.tsx:798 msgid "Export My Data" msgstr "Експорт моїх даних" @@ -2283,13 +2336,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:290 +#: src/Navigation.tsx:293 #: src/view/screens/PreferencesExternalEmbeds.tsx:53 -#: src/view/screens/Settings/index.tsx:679 +#: src/view/screens/Settings/index.tsx:680 msgid "External Media Preferences" msgstr "Налаштування зовнішніх медіа" -#: src/view/screens/Settings/index.tsx:670 +#: src/view/screens/Settings/index.tsx:671 msgid "External media settings" msgstr "Налаштування зовнішніх медіа" @@ -2315,7 +2368,7 @@ msgstr "" msgid "Failed to delete post, please try again" msgstr "Не вдалося видалити пост, спробуйте ще раз" -#: src/screens/StarterPack/StarterPackScreen.tsx:597 +#: src/screens/StarterPack/StarterPackScreen.tsx:675 msgid "Failed to delete starter pack" msgstr "" @@ -2372,7 +2425,7 @@ msgstr "" msgid "Failed to toggle thread mute, please try again" msgstr "" -#: src/components/FeedCard.tsx:285 +#: src/components/FeedCard.tsx:269 msgid "Failed to update feeds" msgstr "" @@ -2381,11 +2434,11 @@ msgstr "" msgid "Failed to update settings" msgstr "" -#: src/Navigation.tsx:211 +#: src/Navigation.tsx:214 msgid "Feed" msgstr "Стрічка" -#: src/components/FeedCard.tsx:161 +#: src/components/FeedCard.tsx:127 #: src/view/com/feeds/FeedSourceCard.tsx:251 msgid "Feed by {0}" msgstr "Стрічка від {0}" @@ -2398,17 +2451,18 @@ msgstr "Стрічка від {0}" msgid "Feed toggle" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:66 +#: src/view/shell/desktop/RightNav.tsx:70 #: src/view/shell/Drawer.tsx:345 msgid "Feedback" msgstr "Зворотний зв'язок" -#: src/Navigation.tsx:320 -#: src/view/screens/Feeds.tsx:445 -#: src/view/screens/Feeds.tsx:550 +#: src/Navigation.tsx:323 +#: 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:373 +#: src/view/shell/desktop/LeftNav.tsx:379 #: src/view/shell/Drawer.tsx:493 #: src/view/shell/Drawer.tsx:494 msgid "Feeds" @@ -2426,7 +2480,7 @@ msgstr "Стрічки – це алгоритми, створені корис #~ msgid "Feeds can be topical as well!" #~ msgstr "Стрічки також можуть бути тематичними!" -#: src/components/FeedCard.tsx:282 +#: src/components/FeedCard.tsx:266 msgid "Feeds updated!" msgstr "" @@ -2442,7 +2496,7 @@ msgstr "" msgid "Filter from feeds" msgstr "Фільтрувати зі стрічок" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 msgid "Finalizing" msgstr "Завершення" @@ -2452,6 +2506,10 @@ msgstr "Завершення" msgid "Find accounts to follow" msgstr "Знайдіть облікові записи для стеження" +#: src/tours/HomeTour.tsx:88 +msgid "Find more feeds and accounts to follow in the Explore page." +msgstr "" + #: src/view/screens/Search/Search.tsx:439 msgid "Find posts and users on Bluesky" msgstr "" @@ -2480,11 +2538,15 @@ msgstr "Налаштуйте відображення обговорень." msgid "Finish" msgstr "" +#: src/tours/Tooltip.tsx:149 +msgid "Finish tour and begin using the application" +msgstr "" + #: src/screens/Onboarding/index.tsx:35 msgid "Fitness" msgstr "Фітнес" -#: src/screens/Onboarding/StepFinished.tsx:269 +#: src/screens/Onboarding/StepFinished.tsx:277 msgid "Flexible" msgstr "Гнучкий" @@ -2497,6 +2559,8 @@ msgstr "Віддзеркалити горизонтально" msgid "Flip vertically" msgstr "Віддзеркалити вертикально" +#. User is not following this account, click to follow +#: src/components/ProfileCard.tsx:341 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2519,13 +2583,17 @@ msgstr "Підписатися на {0}" msgid "Follow {name}" msgstr "" +#: src/components/ProgressGuide/List.tsx:54 +msgid "Follow 7 accounts" +msgstr "" + #: src/view/com/profile/ProfileMenu.tsx:246 #: src/view/com/profile/ProfileMenu.tsx:257 msgid "Follow Account" msgstr "Підписатися на обліковий запис" -#: src/screens/StarterPack/StarterPackScreen.tsx:345 -#: src/screens/StarterPack/StarterPackScreen.tsx:352 +#: src/screens/StarterPack/StarterPackScreen.tsx:405 +#: src/screens/StarterPack/StarterPackScreen.tsx:412 msgid "Follow all" msgstr "" @@ -2553,7 +2621,7 @@ msgstr "" #~ msgid "Followed by" #~ msgstr "" -#: src/view/com/profile/ProfileCard.tsx:227 +#: src/view/com/profile/ProfileCard.tsx:190 msgid "Followed by {0}" msgstr "Підписані {0}" @@ -2581,16 +2649,20 @@ msgstr "Ваші підписки" msgid "Followed users only" msgstr "Тільки ваші підписки" -#: src/view/com/notifications/FeedItem.tsx:187 +#: src/view/com/notifications/FeedItem.tsx:197 msgid "followed you" msgstr "підписка на вас" +#: src/view/com/notifications/FeedItem.tsx:195 +msgid "followed you back" +msgstr "" + #: src/view/com/profile/ProfileFollowers.tsx:104 #: src/view/screens/ProfileFollowers.tsx:25 msgid "Followers" msgstr "Підписники" -#: src/Navigation.tsx:179 +#: src/Navigation.tsx:182 msgid "Followers of @{0} that you know" msgstr "" @@ -2599,17 +2671,20 @@ msgstr "" msgid "Followers you know" msgstr "" +#. User is following this account, click to unfollow +#: src/components/ProfileCard.tsx:335 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 #: src/view/com/post-thread/PostThreadFollowBtn.tsx:149 #: src/view/com/profile/ProfileFollows.tsx:104 -#: src/view/screens/Feeds.tsx:630 +#: src/view/screens/Feeds.tsx:631 #: src/view/screens/ProfileFollows.tsx:25 #: src/view/screens/SavedFeeds.tsx:415 msgid "Following" msgstr "Підписані" +#: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "Підписання на \"{0}\"" @@ -2618,21 +2693,25 @@ msgstr "Підписання на \"{0}\"" msgid "Following {name}" msgstr "" -#: src/view/screens/Settings/index.tsx:573 +#: src/view/screens/Settings/index.tsx:574 msgid "Following feed preferences" msgstr "Налаштування стрічки підписок" -#: src/Navigation.tsx:277 +#: src/Navigation.tsx:280 #: src/view/screens/PreferencesFollowingFeed.tsx:103 -#: src/view/screens/Settings/index.tsx:582 +#: src/view/screens/Settings/index.tsx:583 msgid "Following Feed Preferences" msgstr "Налаштування стрічки підписок" +#: src/tours/HomeTour.tsx:59 +msgid "Following shows the latest posts from people you follow." +msgstr "" + #: src/screens/Profile/Header/Handle.tsx:31 msgid "Follows you" msgstr "Підписаний(-на) на вас" -#: src/view/com/profile/ProfileCard.tsx:152 +#: src/components/Pills.tsx:165 msgid "Follows You" msgstr "Підписаний(-на) на вас" @@ -2654,11 +2733,11 @@ msgstr "З міркувань безпеки цей пароль відобра msgid "Forgot Password" msgstr "Забули пароль" -#: src/screens/Login/LoginForm.tsx:227 +#: src/screens/Login/LoginForm.tsx:246 msgid "Forgot password?" msgstr "Забули пароль?" -#: src/screens/Login/LoginForm.tsx:238 +#: src/screens/Login/LoginForm.tsx:257 msgid "Forgot?" msgstr "Забули пароль?" @@ -2692,6 +2771,10 @@ msgstr "" msgid "Get Started" msgstr "Почати" +#: src/components/ProgressGuide/List.tsx:33 +msgid "Getting started" +msgstr "" + #: src/view/com/util/images/ImageHorzList.tsx:35 msgid "GIF" msgstr "" @@ -2706,31 +2789,35 @@ msgstr "Грубі порушення закону чи умов викорис #: src/components/moderation/ScreenHider.tsx:151 #: src/components/moderation/ScreenHider.tsx:160 -#: src/view/com/auth/LoggedOut.tsx:78 -#: src/view/com/auth/LoggedOut.tsx:79 +#: src/view/com/auth/LoggedOut.tsx:80 +#: src/view/com/auth/LoggedOut.tsx:81 #: src/view/screens/NotFound.tsx:55 #: src/view/screens/ProfileFeed.tsx:112 #: src/view/screens/ProfileList.tsx:970 -#: src/view/shell/desktop/LeftNav.tsx:133 +#: src/view/shell/desktop/LeftNav.tsx:134 msgid "Go back" msgstr "Назад" #: src/components/Error.tsx:103 #: src/screens/Profile/ErrorState.tsx:62 #: src/screens/Profile/ErrorState.tsx:66 -#: src/screens/StarterPack/StarterPackScreen.tsx:656 +#: src/screens/StarterPack/StarterPackScreen.tsx:734 #: src/view/screens/NotFound.tsx:54 #: src/view/screens/ProfileFeed.tsx:117 #: src/view/screens/ProfileList.tsx:975 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/screens/Onboarding/Layout.tsx:102 #: src/screens/Onboarding/Layout.tsx:191 -#: src/screens/Signup/index.tsx:225 +#: src/screens/Signup/BackNextButtons.tsx:34 msgid "Go back to previous step" msgstr "Повернутися до попереднього кроку" @@ -2764,6 +2851,10 @@ msgstr "Далі" msgid "Go to profile" msgstr "" +#: src/tours/Tooltip.tsx:138 +msgid "Go to the next step of the tour" +msgstr "" + #: src/components/dms/ConvoMenu.tsx:164 msgid "Go to user's profile" msgstr "" @@ -2772,6 +2863,10 @@ msgstr "" msgid "Graphic Media" msgstr "Графічний медіаконтент" +#: src/state/shell/progress-guide.tsx:166 +msgid "Half way there!" +msgstr "" + #: src/view/com/modals/ChangeHandle.tsx:260 msgid "Handle" msgstr "Псевдонім" @@ -2784,19 +2879,19 @@ msgstr "" msgid "Harassment, trolling, or intolerance" msgstr "Домагання, тролінг або нетерпимість" -#: src/Navigation.tsx:305 +#: src/Navigation.tsx:308 msgid "Hashtag" msgstr "Хештег" -#: src/components/RichText.tsx:216 +#: src/components/RichText.tsx:218 msgid "Hashtag: #{tag}" msgstr "Хештег: #{tag}" -#: src/screens/Signup/index.tsx:272 +#: src/screens/Signup/index.tsx:167 msgid "Having trouble?" msgstr "Виникли проблеми?" -#: src/view/shell/desktop/RightNav.tsx:95 +#: src/view/shell/desktop/RightNav.tsx:99 #: src/view/shell/Drawer.tsx:355 msgid "Help" msgstr "Довідка" @@ -2832,7 +2927,7 @@ msgstr "Це ваш пароль для застосунків." msgid "Hide" msgstr "Приховати" -#: src/view/com/notifications/FeedItem.tsx:433 +#: src/view/com/notifications/FeedItem.tsx:444 msgctxt "action" msgid "Hide" msgstr "Сховати" @@ -2851,7 +2946,7 @@ msgstr "Приховати вміст" msgid "Hide this post?" msgstr "Сховати цей пост?" -#: src/view/com/notifications/FeedItem.tsx:424 +#: src/view/com/notifications/FeedItem.tsx:435 msgid "Hide user list" msgstr "Сховати список користувачів" @@ -2883,10 +2978,10 @@ msgstr "Здається, у нас виникли проблеми з зава msgid "Hmmmm, we couldn't load that moderation service." msgstr "Хм, ми не змогли завантажити цей сервіс модерації." -#: src/Navigation.tsx:511 -#: src/Navigation.tsx:531 -#: src/view/shell/bottom-bar/BottomBar.tsx:159 -#: src/view/shell/desktop/LeftNav.tsx:341 +#: src/Navigation.tsx:519 +#: src/Navigation.tsx:539 +#: 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 msgid "Home" @@ -2897,8 +2992,8 @@ msgid "Host:" msgstr "Host:" #: src/screens/Login/ForgotPasswordForm.tsx:89 -#: src/screens/Login/LoginForm.tsx:160 -#: src/screens/Signup/StepInfo/index.tsx:40 +#: src/screens/Login/LoginForm.tsx:180 +#: src/screens/Signup/StepInfo/index.tsx:106 #: src/view/com/modals/ChangeHandle.tsx:275 msgid "Hosting provider" msgstr "Хостинг-провайдер" @@ -2998,19 +3093,19 @@ msgstr "Введіть новий пароль" msgid "Input password for account deletion" msgstr "Введіть пароль для видалення облікового запису" -#: src/screens/Login/LoginForm.tsx:266 +#: src/screens/Login/LoginForm.tsx:286 msgid "Input the code which has been emailed to you" msgstr "" #: src/screens/Login/LoginForm.tsx:221 -msgid "Input the password tied to {identifier}" -msgstr "Введіть пароль, прив'язаний до {identifier}" +#~ msgid "Input the password tied to {identifier}" +#~ msgstr "Введіть пароль, прив'язаний до {identifier}" -#: src/screens/Login/LoginForm.tsx:194 +#: src/screens/Login/LoginForm.tsx:215 msgid "Input the username or email address you used at signup" msgstr "Введіть псевдонім або ел. адресу, які ви використовували для реєстрації" -#: src/screens/Login/LoginForm.tsx:220 +#: src/screens/Login/LoginForm.tsx:241 msgid "Input your password" msgstr "Введіть ваш пароль" @@ -3018,7 +3113,7 @@ msgstr "Введіть ваш пароль" msgid "Input your preferred hosting provider" msgstr "Введіть бажаного хостинг-провайдера" -#: src/screens/Signup/StepHandle.tsx:63 +#: src/screens/Signup/StepHandle.tsx:111 msgid "Input your user handle" msgstr "Введіть ваш псевдонім" @@ -3026,7 +3121,7 @@ msgstr "Введіть ваш псевдонім" msgid "Introducing Direct Messages" msgstr "" -#: src/screens/Login/LoginForm.tsx:135 +#: src/screens/Login/LoginForm.tsx:140 #: src/view/screens/Settings/DisableEmail2FADialog.tsx:70 msgid "Invalid 2FA confirmation code." msgstr "" @@ -3035,7 +3130,7 @@ msgstr "" msgid "Invalid or unsupported post record" msgstr "Невірний або непідтримуваний пост" -#: src/screens/Login/LoginForm.tsx:140 +#: src/screens/Login/LoginForm.tsx:145 msgid "Invalid username or password" msgstr "Невірне ім'я користувача або пароль" @@ -3043,11 +3138,11 @@ msgstr "Невірне ім'я користувача або пароль" msgid "Invite a Friend" msgstr "Запросити друга" -#: src/screens/Signup/StepInfo/index.tsx:58 +#: src/screens/Signup/StepInfo/index.tsx:124 msgid "Invite code" msgstr "Код запрошення" -#: src/screens/Signup/state.ts:275 +#: src/screens/Signup/state.ts:251 msgid "Invite code not accepted. Check that you input it correctly and try again." msgstr "Код запрошення не прийнято. Переконайтеся в його правильності та повторіть спробу." @@ -3083,8 +3178,10 @@ msgstr "" msgid "Jobs" msgstr "Вакансії" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:200 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:206 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:227 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:233 +#: src/screens/StarterPack/StarterPackScreen.tsx:432 +#: src/screens/StarterPack/StarterPackScreen.tsx:443 msgid "Join Bluesky" msgstr "" @@ -3133,16 +3230,16 @@ msgstr "Мітки на вашому контенті" msgid "Language selection" msgstr "Вибір мови" -#: src/view/screens/Settings/index.tsx:530 +#: src/view/screens/Settings/index.tsx:531 msgid "Language settings" msgstr "Налаштування мови" -#: src/Navigation.tsx:152 +#: src/Navigation.tsx:155 #: src/view/screens/LanguageSettings.tsx:90 msgid "Language Settings" msgstr "Налаштування мов" -#: src/view/screens/Settings/index.tsx:539 +#: src/view/screens/Settings/index.tsx:540 msgid "Languages" msgstr "Мови" @@ -3202,7 +3299,7 @@ msgstr "Ви залишаєте Bluesky" msgid "left to go." msgstr "ще залишилося." -#: src/view/screens/Settings/index.tsx:308 +#: src/view/screens/Settings/index.tsx:309 msgid "Legacy storage cleared, you need to restart the app now." msgstr "Старе сховище очищено, тепер вам потрібно перезапустити застосунок." @@ -3215,11 +3312,12 @@ msgstr "" msgid "Let's get your password reset!" msgstr "Давайте відновимо ваш пароль!" -#: src/screens/Onboarding/StepFinished.tsx:289 +#: src/screens/Onboarding/StepFinished.tsx:297 +#: src/tours/Tooltip.tsx:151 msgid "Let's go!" msgstr "Злітаємо!" -#: src/view/screens/Settings/index.tsx:452 +#: src/view/screens/Settings/index.tsx:453 msgid "Light" msgstr "Світла" @@ -3227,14 +3325,23 @@ msgstr "Світла" #~ msgid "Like" #~ msgstr "Вподобати" +#: src/components/ProgressGuide/List.tsx:48 +msgid "Like 10 posts" +msgstr "" + +#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:167 +msgid "Like 10 posts to train the Discover feed" +msgstr "" + #: src/screens/Profile/Header/ProfileHeaderLabeler.tsx:267 #: src/view/screens/ProfileFeed.tsx:573 msgid "Like this feed" msgstr "Вподобати цю стрічку" #: src/components/LikesDialog.tsx:87 -#: src/Navigation.tsx:216 -#: src/Navigation.tsx:221 +#: src/Navigation.tsx:219 +#: src/Navigation.tsx:224 msgid "Liked by" msgstr "Сподобалося" @@ -3258,11 +3365,11 @@ msgstr "Сподобався користувачу" #~ msgid "Liked by {likeCount} {0}" #~ msgstr "Вподобано {likeCount} {0}" -#: src/view/com/notifications/FeedItem.tsx:190 +#: src/view/com/notifications/FeedItem.tsx:201 msgid "liked your custom feed" msgstr "вподобав(-ла) вашу стрічку" -#: src/view/com/notifications/FeedItem.tsx:182 +#: src/view/com/notifications/FeedItem.tsx:185 msgid "liked your post" msgstr "сподобався ваш пост" @@ -3274,7 +3381,7 @@ msgstr "Вподобання" msgid "Likes on this post" msgstr "Вподобайки цього поста" -#: src/Navigation.tsx:185 +#: src/Navigation.tsx:188 msgid "List" msgstr "Список" @@ -3286,7 +3393,7 @@ msgstr "Аватар списку" msgid "List blocked" msgstr "Список заблоковано" -#: src/components/FeedCard.tsx:155 +#: src/components/ListCard.tsx:113 #: src/view/com/feeds/FeedSourceCard.tsx:253 msgid "List by {0}" msgstr "Список від {0}" @@ -3311,10 +3418,10 @@ msgstr "Список розблоковано" msgid "List unmuted" msgstr "Список більше не ігнорується" -#: src/Navigation.tsx:122 +#: src/Navigation.tsx:125 #: src/view/screens/Profile.tsx:208 #: src/view/screens/Profile.tsx:215 -#: src/view/shell/desktop/LeftNav.tsx:379 +#: src/view/shell/desktop/LeftNav.tsx:385 #: src/view/shell/Drawer.tsx:509 #: src/view/shell/Drawer.tsx:510 msgid "Lists" @@ -3351,7 +3458,7 @@ msgstr "Завантажити нові пости" msgid "Loading..." msgstr "Завантаження..." -#: src/Navigation.tsx:236 +#: src/Navigation.tsx:239 msgid "Log" msgstr "Звіт" @@ -3375,7 +3482,7 @@ msgstr "Видимість для користувачів без обліков msgid "Login to account that is not listed" msgstr "Увійти до облікового запису, якого немає в списку" -#: src/components/RichText.tsx:217 +#: src/components/RichText.tsx:219 msgid "Long press to open tag menu for #{tag}" msgstr "" @@ -3460,7 +3567,7 @@ msgstr "" msgid "Message settings" msgstr "" -#: src/Navigation.tsx:526 +#: src/Navigation.tsx:534 #: src/screens/Messages/List/index.tsx:164 #: src/screens/Messages/List/index.tsx:246 #: src/screens/Messages/List/index.tsx:317 @@ -3475,9 +3582,9 @@ msgstr "" msgid "Misleading Account" msgstr "Оманливий обліковий запис" -#: src/Navigation.tsx:127 +#: src/Navigation.tsx:130 #: src/screens/Moderation/index.tsx:105 -#: src/view/screens/Settings/index.tsx:561 +#: src/view/screens/Settings/index.tsx:562 msgid "Moderation" msgstr "Модерація" @@ -3485,7 +3592,7 @@ msgstr "Модерація" msgid "Moderation details" msgstr "Деталі модерації" -#: src/components/FeedCard.tsx:157 +#: src/components/ListCard.tsx:109 #: src/view/com/lists/ListCard.tsx:95 #: src/view/com/modals/UserAddRemoveLists.tsx:217 msgid "Moderation list by {0}" @@ -3513,16 +3620,16 @@ msgstr "Список модерації оновлено" msgid "Moderation lists" msgstr "Списки для модерації" -#: src/Navigation.tsx:132 +#: src/Navigation.tsx:135 #: src/view/screens/ModerationModlists.tsx:58 msgid "Moderation Lists" msgstr "Списки для модерації" -#: src/view/screens/Settings/index.tsx:555 +#: src/view/screens/Settings/index.tsx:556 msgid "Moderation settings" msgstr "Налаштування модерації" -#: src/Navigation.tsx:231 +#: src/Navigation.tsx:234 msgid "Moderation states" msgstr "Статус модерації" @@ -3555,6 +3662,10 @@ msgstr "За кількістю вподобань" msgid "Movies" msgstr "" +#: src/screens/Onboarding/state.ts:91 +msgid "Music" +msgstr "" + #: src/components/TagMenu/index.tsx:249 msgid "Mute" msgstr "Ігнорувати" @@ -3628,7 +3739,7 @@ msgstr "Ігнорується" msgid "Muted accounts" msgstr "Ігноровані облікові записи" -#: src/Navigation.tsx:137 +#: src/Navigation.tsx:140 #: src/view/screens/ModerationMutedAccounts.tsx:109 msgid "Muted Accounts" msgstr "Ігноровані облікові записи" @@ -3654,19 +3765,19 @@ msgstr "Ігнорування є приватним. Ігноровані ко msgid "My Birthday" msgstr "Мій день народження" -#: src/view/screens/Feeds.tsx:718 +#: src/view/screens/Feeds.tsx:731 msgid "My Feeds" msgstr "Мої стрічки" -#: src/view/shell/desktop/LeftNav.tsx:84 +#: src/view/shell/desktop/LeftNav.tsx:85 msgid "My Profile" msgstr "Мій профіль" -#: src/view/screens/Settings/index.tsx:616 +#: src/view/screens/Settings/index.tsx:617 msgid "My saved feeds" msgstr "Мої збережені стрічки" -#: src/view/screens/Settings/index.tsx:622 +#: src/view/screens/Settings/index.tsx:623 msgid "My Saved Feeds" msgstr "Мої збережені стрічки" @@ -3687,16 +3798,20 @@ msgid "Name or Description Violates Community Standards" msgstr "Ім'я чи Опис порушують стандарти спільноти" #: src/screens/Onboarding/index.tsx:22 -#: src/screens/Onboarding/state.ts:91 +#: src/screens/Onboarding/state.ts:92 msgid "Nature" msgstr "Природа" +#: src/components/StarterPack/StarterPackCard.tsx:118 +msgid "Navigate to {0}" +msgstr "" + #: src/view/com/util/post-embeds/ExternalLinkEmbed.tsx:73 msgid "Navigate to starter pack" msgstr "" #: src/screens/Login/ForgotPasswordForm.tsx:173 -#: src/screens/Login/LoginForm.tsx:312 +#: src/screens/Login/LoginForm.tsx:332 #: src/view/com/modals/ChangePassword.tsx:169 msgid "Navigates to the next screen" msgstr "Переходить до наступного екрана" @@ -3714,7 +3829,7 @@ msgstr "Хочете повідомити про порушення авторс #~ msgid "Never lose access to your followers and data." #~ msgstr "Ніколи не втрачайте доступ до ваших даних та підписників." -#: src/screens/Onboarding/StepFinished.tsx:257 +#: src/screens/Onboarding/StepFinished.tsx:265 msgid "Never lose access to your followers or data." msgstr "Ніколи не втрачайте доступ до ваших підписників та даних." @@ -3758,17 +3873,17 @@ msgctxt "action" msgid "New post" msgstr "Новий пост" -#: src/view/screens/Feeds.tsx:580 +#: 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/ProfileList.tsx:201 #: src/view/screens/ProfileList.tsx:229 -#: src/view/shell/desktop/LeftNav.tsx:277 +#: src/view/shell/desktop/LeftNav.tsx:278 msgid "New post" msgstr "Новий пост" -#: src/view/shell/desktop/LeftNav.tsx:283 +#: src/view/shell/desktop/LeftNav.tsx:284 msgctxt "action" msgid "New Post" msgstr "Новий пост" @@ -3786,21 +3901,22 @@ msgid "Newest replies first" msgstr "Спочатку найновіші" #: src/screens/Onboarding/index.tsx:20 -#: src/screens/Onboarding/state.ts:92 +#: src/screens/Onboarding/state.ts:93 msgid "News" msgstr "Новини" #: src/screens/Login/ForgotPasswordForm.tsx:143 #: src/screens/Login/ForgotPasswordForm.tsx:150 -#: src/screens/Login/LoginForm.tsx:311 -#: src/screens/Login/LoginForm.tsx:318 +#: src/screens/Login/LoginForm.tsx:331 +#: src/screens/Login/LoginForm.tsx:338 #: src/screens/Login/SetNewPasswordForm.tsx:174 #: src/screens/Login/SetNewPasswordForm.tsx:180 -#: src/screens/Signup/index.tsx:258 +#: src/screens/Signup/BackNextButtons.tsx:66 #: src/screens/StarterPack/Wizard/index.tsx:184 #: src/screens/StarterPack/Wizard/index.tsx:188 #: src/screens/StarterPack/Wizard/index.tsx:359 #: src/screens/StarterPack/Wizard/index.tsx:366 +#: src/tours/Tooltip.tsx:139 #: src/view/com/modals/ChangePassword.tsx:254 #: src/view/com/modals/ChangePassword.tsx:256 msgid "Next" @@ -3842,11 +3958,12 @@ msgstr "" msgid "No feeds found. Try searching for something else." msgstr "" +#: src/components/ProfileCard.tsx:321 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "Ви більше не підписані на {0}" -#: src/screens/Signup/StepHandle.tsx:115 +#: src/screens/Signup/StepHandle.tsx:166 msgid "No longer than 253 characters" msgstr "Не може бути довшим за 253 символи" @@ -3858,7 +3975,7 @@ msgstr "" msgid "No more conversations to show" msgstr "" -#: src/view/com/notifications/Feed.tsx:118 +#: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "Ще ніяких сповіщень!" @@ -3886,7 +4003,7 @@ msgstr "" msgid "No results found" msgstr "Нічого не знайдено" -#: src/view/screens/Feeds.tsx:511 +#: src/view/screens/Feeds.tsx:512 msgid "No results found for \"{query}\"" msgstr "Нічого не знайдено за запитом «{query}»" @@ -3936,7 +4053,7 @@ msgstr "Несексуальна оголеність" #~ msgid "Not Applicable." #~ msgstr "Не застосовно." -#: src/Navigation.tsx:117 +#: src/Navigation.tsx:120 #: src/view/screens/Profile.tsx:108 msgid "Not Found" msgstr "Не знайдено" @@ -3948,7 +4065,7 @@ msgstr "Пізніше" #: src/view/com/profile/ProfileMenu.tsx:372 #: src/view/com/util/forms/PostDropdownBtn.tsx:456 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:315 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:322 msgid "Note about sharing" msgstr "Примітка щодо поширення" @@ -3968,11 +4085,11 @@ msgstr "" msgid "Notification Sounds" msgstr "" -#: src/Navigation.tsx:521 +#: src/Navigation.tsx:529 #: src/view/screens/Notifications.tsx:132 #: src/view/screens/Notifications.tsx:169 -#: src/view/shell/bottom-bar/BottomBar.tsx:227 -#: src/view/shell/desktop/LeftNav.tsx:356 +#: 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 msgid "Notifications" @@ -4008,7 +4125,7 @@ msgstr "Вимкнено" msgid "Oh no!" msgstr "О, ні!" -#: src/screens/Onboarding/StepInterests/index.tsx:138 +#: src/screens/Onboarding/StepInterests/index.tsx:152 msgid "Oh no! Something went wrong." msgstr "Ой! Щось пішло не так." @@ -4032,10 +4149,14 @@ msgstr "" msgid "on {str}" msgstr "" -#: src/view/screens/Settings/index.tsx:256 +#: src/view/screens/Settings/index.tsx:257 msgid "Onboarding reset" msgstr "Скинути ознайомлення" +#: src/tours/Tooltip.tsx:118 +msgid "Onboarding tour step {0}: {1}" +msgstr "" + #: src/view/com/composer/Composer.tsx:522 msgid "One or more images is missing alt text." msgstr "Для одного або кількох зображень відсутній опис." @@ -4052,7 +4173,7 @@ msgstr "" #~ msgid "Only {0} can reply." #~ msgstr "Тільки {0} можуть відповідати." -#: src/screens/Signup/StepHandle.tsx:98 +#: src/screens/Signup/StepHandle.tsx:149 msgid "Only contains letters, numbers, and hyphens" msgstr "Тільки літери, цифри та дефіс" @@ -4068,7 +4189,7 @@ msgstr "Ой, щось пішло не так!" msgid "Oops!" msgstr "Ой!" -#: src/screens/Onboarding/StepFinished.tsx:253 +#: src/screens/Onboarding/StepFinished.tsx:261 msgid "Open" msgstr "Відкрити" @@ -4094,7 +4215,7 @@ msgstr "Емоджі" msgid "Open feed options menu" msgstr "Відкрити меню налаштувань стрічки" -#: src/view/screens/Settings/index.tsx:736 +#: src/view/screens/Settings/index.tsx:737 msgid "Open links with in-app browser" msgstr "Вбудований браузер" @@ -4114,16 +4235,16 @@ msgstr "Відкрити навігацію" msgid "Open post options menu" msgstr "Відкрити меню налаштувань посту" -#: src/screens/StarterPack/StarterPackScreen.tsx:451 +#: src/screens/StarterPack/StarterPackScreen.tsx:529 msgid "Open starter pack menu" msgstr "" -#: src/view/screens/Settings/index.tsx:860 -#: src/view/screens/Settings/index.tsx:870 +#: src/view/screens/Settings/index.tsx:861 +#: src/view/screens/Settings/index.tsx:871 msgid "Open storybook page" msgstr "Відкрити storybook сторінку" -#: src/view/screens/Settings/index.tsx:848 +#: src/view/screens/Settings/index.tsx:849 msgid "Open system log" msgstr "Відкрити системний журнал" @@ -4135,7 +4256,7 @@ msgstr "Відкриває меню з {numItems} опціями" msgid "Opens a dialog to choose who can reply to this thread" msgstr "" -#: src/view/screens/Settings/index.tsx:510 +#: src/view/screens/Settings/index.tsx:511 msgid "Opens accessibility settings" msgstr "" @@ -4151,7 +4272,7 @@ msgstr "Відкриває додаткову інформацію про зап msgid "Opens camera on device" msgstr "Відкриває камеру на пристрої" -#: src/view/screens/Settings/index.tsx:639 +#: src/view/screens/Settings/index.tsx:640 msgid "Opens chat settings" msgstr "" @@ -4159,7 +4280,7 @@ msgstr "" msgid "Opens composer" msgstr "Відкрити редактор" -#: src/view/screens/Settings/index.tsx:531 +#: src/view/screens/Settings/index.tsx:532 msgid "Opens configurable language settings" msgstr "Відкриває налаштування мов" @@ -4167,7 +4288,7 @@ msgstr "Відкриває налаштування мов" msgid "Opens device photo gallery" msgstr "Відкриває фотогалерею пристрою" -#: src/view/screens/Settings/index.tsx:671 +#: src/view/screens/Settings/index.tsx:672 msgid "Opens external embeds settings" msgstr "Відкриває налаштування зовнішніх вбудувань" @@ -4189,27 +4310,27 @@ msgstr "" msgid "Opens list of invite codes" msgstr "Відкриває список кодів запрошення" -#: src/view/screens/Settings/index.tsx:808 +#: src/view/screens/Settings/index.tsx:809 msgid "Opens modal for account deactivation confirmation" msgstr "" -#: src/view/screens/Settings/index.tsx:830 +#: src/view/screens/Settings/index.tsx:831 msgid "Opens modal for account deletion confirmation. Requires email code" msgstr "Відкриває модальне вікно для підтвердження видалення облікового запису. Потребує код з електронної пошти" -#: src/view/screens/Settings/index.tsx:765 +#: src/view/screens/Settings/index.tsx:766 msgid "Opens modal for changing your Bluesky password" msgstr "Відкриває модальне вікно для зміни паролю в Bluesky" -#: src/view/screens/Settings/index.tsx:720 +#: src/view/screens/Settings/index.tsx:721 msgid "Opens modal for choosing a new Bluesky handle" msgstr "Відкриває модальне вікно для вибору псевдоніму в Bluesky" -#: src/view/screens/Settings/index.tsx:788 +#: src/view/screens/Settings/index.tsx:789 msgid "Opens modal for downloading your Bluesky account data (repository)" msgstr "Відкриває модальне вікно для завантаження даних з вашого облікового запису Bluesky (репозиторій)" -#: src/view/screens/Settings/index.tsx:1008 +#: src/view/screens/Settings/index.tsx:1009 msgid "Opens modal for email verification" msgstr "Відкриває модальне вікно для перевірки електронної пошти" @@ -4217,11 +4338,11 @@ msgstr "Відкриває модальне вікно для перевірки msgid "Opens modal for using custom domain" msgstr "Відкриває діалог налаштування власного домену як псевдоніму" -#: src/view/screens/Settings/index.tsx:556 +#: src/view/screens/Settings/index.tsx:557 msgid "Opens moderation settings" msgstr "Відкриває налаштування модерації" -#: src/screens/Login/LoginForm.tsx:228 +#: src/screens/Login/LoginForm.tsx:247 msgid "Opens password reset form" msgstr "Відкриває форму скидання пароля" @@ -4230,15 +4351,15 @@ msgstr "Відкриває форму скидання пароля" #~ msgid "Opens screen to edit Saved Feeds" #~ msgstr "Відкриває сторінку з усіма збереженими стрічками" -#: src/view/screens/Settings/index.tsx:617 +#: src/view/screens/Settings/index.tsx:618 msgid "Opens screen with all saved feeds" msgstr "Відкриває сторінку з усіма збереженими каналами" -#: src/view/screens/Settings/index.tsx:698 +#: src/view/screens/Settings/index.tsx:699 msgid "Opens the app password settings" msgstr "Відкриває налаштування паролів для застосунків" -#: src/view/screens/Settings/index.tsx:574 +#: src/view/screens/Settings/index.tsx:575 msgid "Opens the Following feed preferences" msgstr "Відкриває налаштування стрічки підписок" @@ -4250,20 +4371,20 @@ msgstr "Відкриває посилання" #~ msgid "Opens the message settings page" #~ 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 "Opens the storybook page" msgstr "" -#: src/view/screens/Settings/index.tsx:849 +#: src/view/screens/Settings/index.tsx:850 msgid "Opens the system log page" msgstr "Відкриває системний журнал" -#: src/view/screens/Settings/index.tsx:595 +#: src/view/screens/Settings/index.tsx:596 msgid "Opens the threads preferences" msgstr "Відкриває налаштування гілок" -#: src/view/com/notifications/FeedItem.tsx:513 +#: src/view/com/notifications/FeedItem.tsx:524 #: src/view/com/util/UserAvatar.tsx:422 msgid "Opens this profile" msgstr "" @@ -4314,8 +4435,8 @@ msgstr "Сторінку не знайдено" msgid "Page Not Found" msgstr "Сторінку не знайдено" -#: src/screens/Login/LoginForm.tsx:204 -#: src/screens/Signup/StepInfo/index.tsx:102 +#: src/screens/Login/LoginForm.tsx:225 +#: src/screens/Signup/StepInfo/index.tsx:162 #: src/view/com/modals/DeleteAccount.tsx:257 #: src/view/com/modals/DeleteAccount.tsx:264 msgid "Password" @@ -4337,15 +4458,16 @@ msgstr "Пароль змінено!" msgid "Pause" msgstr "" +#: src/screens/StarterPack/StarterPackScreen.tsx:170 #: src/view/screens/Search/Search.tsx:369 msgid "People" msgstr "Люди" -#: src/Navigation.tsx:172 +#: src/Navigation.tsx:175 msgid "People followed by @{0}" msgstr "Люди, на яких підписаний(-на) @{0}" -#: src/Navigation.tsx:165 +#: src/Navigation.tsx:168 msgid "People following @{0}" msgstr "Люди, які підписані на @{0}" @@ -4362,11 +4484,11 @@ msgid "Person toggle" msgstr "" #: src/screens/Onboarding/index.tsx:28 -#: src/screens/Onboarding/state.ts:93 +#: src/screens/Onboarding/state.ts:94 msgid "Pets" msgstr "Домашні улюбленці" -#: src/screens/Onboarding/state.ts:94 +#: src/screens/Onboarding/state.ts:95 msgid "Photography" msgstr "" @@ -4417,15 +4539,16 @@ msgstr "Відтворити відео" msgid "Plays the GIF" msgstr "Відтворює GIF" -#: src/screens/Signup/state.ts:234 +#: src/screens/Signup/state.ts:210 msgid "Please choose your handle." msgstr "Будь ласка, оберіть псевдонім." -#: src/screens/Signup/state.ts:227 +#: src/screens/Signup/state.ts:203 +#: src/screens/Signup/StepInfo/index.tsx:81 msgid "Please choose your password." msgstr "Будь ласка, оберіть ваш пароль." -#: src/screens/Signup/state.ts:248 +#: src/screens/Signup/state.ts:224 msgid "Please complete the verification captcha." msgstr "Будь ласка, завершіть перевірку Captcha." @@ -4445,10 +4568,15 @@ msgstr "Будь ласка, введіть унікальну назву для msgid "Please enter a valid word, tag, or phrase to mute" msgstr "Будь ласка, введіть допустиме слово, тег або фразу для ігнорування" -#: src/screens/Signup/state.ts:213 +#: src/screens/Signup/state.ts:189 +#: src/screens/Signup/StepInfo/index.tsx:69 msgid "Please enter your email." msgstr "Будь ласка, введіть адресу ел. пошти." +#: src/screens/Signup/StepInfo/index.tsx:63 +msgid "Please enter your invite code." +msgstr "" + #: src/view/com/modals/DeleteAccount.tsx:253 msgid "Please enter your password as well:" msgstr "Будь ласка, також введіть ваш пароль:" @@ -4475,7 +4603,7 @@ msgid "Please wait for your link card to finish loading" msgstr "Будь ласка, зачекайте доки завершиться створення попереднього перегляду для посилання" #: src/screens/Onboarding/index.tsx:34 -#: src/screens/Onboarding/state.ts:95 +#: src/screens/Onboarding/state.ts:96 msgid "Politics" msgstr "Політика" @@ -4498,9 +4626,9 @@ msgstr "Пост" msgid "Post by {0}" msgstr "Пост від {0}" -#: src/Navigation.tsx:191 -#: src/Navigation.tsx:198 -#: src/Navigation.tsx:205 +#: src/Navigation.tsx:194 +#: src/Navigation.tsx:201 +#: src/Navigation.tsx:208 msgid "Post by @{0}" msgstr "Пост від @{0}" @@ -4539,6 +4667,7 @@ msgstr "Пост не знайдено" msgid "posts" msgstr "пости" +#: src/screens/StarterPack/StarterPackScreen.tsx:172 #: src/view/screens/Profile.tsx:209 msgid "Posts" msgstr "Пости" @@ -4566,7 +4695,7 @@ msgstr "Змінити хостинг-провайдера" #: src/components/Error.tsx:85 #: src/components/Lists.tsx:93 #: src/screens/Messages/Conversation/MessageListError.tsx:24 -#: src/screens/Signup/index.tsx:238 +#: src/screens/Signup/BackNextButtons.tsx:46 msgid "Press to retry" msgstr "Натисніть, щоб повторити спробу" @@ -4591,15 +4720,15 @@ msgstr "Основна мова" msgid "Prioritize Your Follows" msgstr "Пріоритезувати ваші підписки" -#: src/view/screens/Settings/index.tsx:654 -#: src/view/shell/desktop/RightNav.tsx:77 +#: src/view/screens/Settings/index.tsx:655 +#: src/view/shell/desktop/RightNav.tsx:81 msgid "Privacy" msgstr "Конфіденційність" -#: src/Navigation.tsx:246 +#: src/Navigation.tsx:249 #: src/screens/Signup/StepInfo/Policies.tsx:56 #: src/view/screens/PrivacyPolicy.tsx:29 -#: src/view/screens/Settings/index.tsx:957 +#: src/view/screens/Settings/index.tsx:958 #: src/view/shell/Drawer.tsx:285 msgid "Privacy Policy" msgstr "Політика конфіденційності" @@ -4617,8 +4746,8 @@ msgstr "Обробка..." msgid "profile" msgstr "профіль" -#: src/view/shell/bottom-bar/BottomBar.tsx:272 -#: src/view/shell/desktop/LeftNav.tsx:387 +#: 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 @@ -4629,11 +4758,11 @@ msgstr "Профіль" msgid "Profile updated" msgstr "Профіль оновлено" -#: src/view/screens/Settings/index.tsx:1021 +#: src/view/screens/Settings/index.tsx:1022 msgid "Protect your account by verifying your email." msgstr "Захистіть свій обліковий запис, підтвердивши свою електронну адресу." -#: src/screens/Onboarding/StepFinished.tsx:239 +#: src/screens/Onboarding/StepFinished.tsx:247 msgid "Public" msgstr "Публічний" @@ -4665,6 +4794,10 @@ msgstr "" msgid "QR code saved to your camera roll!" msgstr "" +#: src/tours/Tooltip.tsx:111 +msgid "Quick tip" +msgstr "" + #: src/view/com/util/post-ctrls/RepostButton.tsx:116 #: src/view/com/util/post-ctrls/RepostButton.tsx:128 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:79 @@ -4723,7 +4856,7 @@ msgid "Reload conversations" msgstr "" #: src/components/dialogs/MutedWords.tsx:286 -#: src/components/FeedCard.tsx:325 +#: src/components/FeedCard.tsx:309 #: src/components/StarterPack/Wizard/WizardListCard.tsx:95 #: src/components/StarterPack/Wizard/WizardListCard.tsx:102 #: src/view/com/feeds/FeedSourceCard.tsx:317 @@ -4772,7 +4905,7 @@ msgstr "Видалити стрічку?" msgid "Remove from my feeds" msgstr "Вилучити з моїх стрічок" -#: src/components/FeedCard.tsx:320 +#: src/components/FeedCard.tsx:304 #: src/view/com/feeds/FeedSourceCard.tsx:312 msgid "Remove from my feeds?" msgstr "Видалити з моїх стрічок?" @@ -4924,8 +5057,8 @@ msgstr "" msgid "Report post" msgstr "Поскаржитись на пост" -#: src/screens/StarterPack/StarterPackScreen.tsx:504 -#: src/screens/StarterPack/StarterPackScreen.tsx:507 +#: src/screens/StarterPack/StarterPackScreen.tsx:582 +#: src/screens/StarterPack/StarterPackScreen.tsx:585 msgid "Report starter pack" msgstr "" @@ -4971,7 +5104,7 @@ msgstr "Репост" msgid "Repost" msgstr "Репостити" -#: src/screens/StarterPack/StarterPackScreen.tsx:446 +#: src/screens/StarterPack/StarterPackScreen.tsx:524 #: src/view/com/util/post-ctrls/RepostButton.tsx:86 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:47 #: src/view/com/util/post-ctrls/RepostButton.web.tsx:93 @@ -4994,7 +5127,7 @@ msgstr "{0} зробив(-ла) репост" msgid "Reposted by <0><1/>" msgstr "Зроблено репост від <0><1/>" -#: src/view/com/notifications/FeedItem.tsx:184 +#: src/view/com/notifications/FeedItem.tsx:187 msgid "reposted your post" msgstr "зробив(-ла) репост вашого допису" @@ -5020,7 +5153,7 @@ msgstr "Вимагати опис зображень перед публікац msgid "Require email code to log into your account" msgstr "" -#: src/screens/Signup/StepInfo/index.tsx:69 +#: src/screens/Signup/StepInfo/index.tsx:132 msgid "Required for this provider" msgstr "Вимагається цим хостинг-провайдером" @@ -5037,8 +5170,8 @@ msgstr "Код підтвердження" msgid "Reset Code" msgstr "Код скидання" -#: src/view/screens/Settings/index.tsx:900 -#: src/view/screens/Settings/index.tsx:903 +#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:904 msgid "Reset onboarding state" msgstr "" @@ -5046,20 +5179,20 @@ msgstr "" msgid "Reset password" msgstr "Скинути пароль" -#: src/view/screens/Settings/index.tsx:880 -#: src/view/screens/Settings/index.tsx:883 +#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:884 msgid "Reset preferences state" msgstr "" -#: src/view/screens/Settings/index.tsx:901 +#: src/view/screens/Settings/index.tsx:902 msgid "Resets the onboarding state" msgstr "" -#: src/view/screens/Settings/index.tsx:881 +#: src/view/screens/Settings/index.tsx:882 msgid "Resets the preferences state" msgstr "" -#: src/screens/Login/LoginForm.tsx:292 +#: src/screens/Login/LoginForm.tsx:312 msgid "Retries login" msgstr "Повторити спробу" @@ -5072,12 +5205,12 @@ msgstr "Повторити останню дію, яка спричинила п #: src/components/Error.tsx:90 #: src/components/Lists.tsx:104 #: src/components/StarterPack/ProfileStarterPacks.tsx:318 -#: src/screens/Login/LoginForm.tsx:291 -#: src/screens/Login/LoginForm.tsx:298 +#: src/screens/Login/LoginForm.tsx:311 +#: src/screens/Login/LoginForm.tsx:318 #: src/screens/Messages/Conversation/MessageListError.tsx:25 -#: src/screens/Onboarding/StepInterests/index.tsx:231 -#: src/screens/Onboarding/StepInterests/index.tsx:234 -#: src/screens/Signup/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:250 +#: src/screens/Onboarding/StepInterests/index.tsx:253 +#: src/screens/Signup/BackNextButtons.tsx:52 #: src/view/com/util/error/ErrorMessage.tsx:55 #: src/view/com/util/error/ErrorScreen.tsx:72 msgid "Retry" @@ -5088,7 +5221,7 @@ msgstr "Повторити спробу" #~ msgstr "" #: src/components/Error.tsx:98 -#: src/screens/StarterPack/StarterPackScreen.tsx:650 +#: src/screens/StarterPack/StarterPackScreen.tsx:728 #: src/view/screens/ProfileList.tsx:971 msgid "Return to previous page" msgstr "Повернутися до попередньої сторінки" @@ -5184,13 +5317,13 @@ msgstr "Зберігає налаштування обрізання зобра #: src/components/dms/ChatEmptyPill.tsx:33 #: src/components/NewskieDialog.tsx:105 -#: src/view/com/notifications/FeedItem.tsx:372 -#: src/view/com/notifications/FeedItem.tsx:397 +#: src/view/com/notifications/FeedItem.tsx:383 +#: src/view/com/notifications/FeedItem.tsx:408 msgid "Say hello!" msgstr "" #: src/screens/Onboarding/index.tsx:33 -#: src/screens/Onboarding/state.ts:96 +#: src/screens/Onboarding/state.ts:97 msgid "Science" msgstr "Наука" @@ -5199,16 +5332,16 @@ msgid "Scroll to top" msgstr "Прогорнути вгору" #: src/components/dms/dialogs/SearchablePeopleList.tsx:504 -#: src/Navigation.tsx:516 -#: src/view/com/auth/LoggedOut.tsx:119 +#: src/Navigation.tsx:524 +#: src/view/com/auth/LoggedOut.tsx:124 #: src/view/com/modals/ListAddRemoveUsers.tsx:75 #: src/view/com/util/forms/SearchInput.tsx:67 #: src/view/com/util/forms/SearchInput.tsx:79 #: src/view/screens/Search/Search.tsx:421 #: src/view/screens/Search/Search.tsx:791 #: src/view/screens/Search/Search.tsx:813 -#: src/view/shell/bottom-bar/BottomBar.tsx:179 -#: src/view/shell/desktop/LeftNav.tsx:349 +#: 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 @@ -5240,8 +5373,8 @@ msgstr "" #~ msgid "Search for someone to start a conversation with." #~ msgstr "" -#: src/view/com/auth/LoggedOut.tsx:101 -#: src/view/com/auth/LoggedOut.tsx:102 +#: src/view/com/auth/LoggedOut.tsx:106 +#: src/view/com/auth/LoggedOut.tsx:107 #: src/view/com/modals/ListAddRemoveUsers.tsx:70 msgid "Search for users" msgstr "Пошук користувачів" @@ -5370,11 +5503,11 @@ msgstr "Оберіть мови постів, які ви хочете бачи msgid "Select your app language for the default text to display in the app." msgstr "Оберіть мову застосунку для відображення тексту за замовчуванням." -#: src/screens/Signup/StepInfo/index.tsx:135 +#: src/screens/Signup/StepInfo/index.tsx:192 msgid "Select your date of birth" msgstr "Оберіть дату народження" -#: src/screens/Onboarding/StepInterests/index.tsx:206 +#: src/screens/Onboarding/StepInterests/index.tsx:225 msgid "Select your interests from the options below" msgstr "Виберіть ваші інтереси із нижченаведених варіантів" @@ -5487,23 +5620,23 @@ msgstr "Налаштуйте ваш обліковий запис" msgid "Sets Bluesky username" msgstr "Встановлює псевдонім Bluesky" -#: src/view/screens/Settings/index.tsx:461 +#: src/view/screens/Settings/index.tsx:462 msgid "Sets color theme to dark" msgstr "Встановлює темну тему" -#: src/view/screens/Settings/index.tsx:454 +#: src/view/screens/Settings/index.tsx:455 msgid "Sets color theme to light" msgstr "Встановлює світлу тему" -#: src/view/screens/Settings/index.tsx:448 +#: src/view/screens/Settings/index.tsx:449 msgid "Sets color theme to system setting" msgstr "Встановлює тему відповідно до системних налаштувань" -#: src/view/screens/Settings/index.tsx:487 +#: src/view/screens/Settings/index.tsx:488 msgid "Sets dark theme to the dark theme" msgstr "Встановлює чорний колір для темної теми" -#: src/view/screens/Settings/index.tsx:480 +#: src/view/screens/Settings/index.tsx:481 msgid "Sets dark theme to the dim theme" msgstr "Встановлює тьмяний колір для темної теми" @@ -5523,9 +5656,9 @@ msgstr "Встановлює співвідношення сторін зобр msgid "Sets image aspect ratio to wide" msgstr "Встановлює співвідношення сторін зображення до ширини" -#: src/Navigation.tsx:147 -#: src/view/screens/Settings/index.tsx:332 -#: src/view/shell/desktop/LeftNav.tsx:395 +#: src/Navigation.tsx:150 +#: src/view/screens/Settings/index.tsx:333 +#: src/view/shell/desktop/LeftNav.tsx:401 #: src/view/shell/Drawer.tsx:559 #: src/view/shell/Drawer.tsx:560 msgid "Settings" @@ -5540,13 +5673,13 @@ msgid "Sexually Suggestive" msgstr "З сексуальним підтекстом" #: src/components/StarterPack/QrCodeDialog.tsx:174 -#: src/screens/StarterPack/StarterPackScreen.tsx:340 -#: src/screens/StarterPack/StarterPackScreen.tsx:493 +#: 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/post-ctrls/PostCtrls.tsx:304 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:311 #: src/view/screens/ProfileList.tsx:428 msgid "Share" msgstr "Поширити" @@ -5566,7 +5699,7 @@ msgstr "" #: src/view/com/profile/ProfileMenu.tsx:377 #: src/view/com/util/forms/PostDropdownBtn.tsx:461 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:320 +#: src/view/com/util/post-ctrls/PostCtrls.tsx:327 msgid "Share anyway" msgstr "Все одно поширити" @@ -5577,7 +5710,7 @@ msgstr "Поширити стрічку" #: src/components/StarterPack/ShareDialog.tsx:123 #: src/components/StarterPack/ShareDialog.tsx:130 -#: src/screens/StarterPack/StarterPackScreen.tsx:497 +#: src/screens/StarterPack/StarterPackScreen.tsx:575 msgid "Share link" msgstr "" @@ -5595,7 +5728,7 @@ msgstr "" msgid "Share QR code" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:333 +#: src/screens/StarterPack/StarterPackScreen.tsx:393 msgid "Share this starter pack" msgstr "" @@ -5614,7 +5747,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:381 +#: src/view/screens/Settings/index.tsx:382 msgid "Show" msgstr "Показувати" @@ -5622,7 +5755,7 @@ msgstr "Показувати" #~ msgid "Show all replies" #~ msgstr "Показати всі відповіді" -#: src/view/com/util/post-embeds/GifEmbed.tsx:169 +#: src/view/com/util/post-embeds/GifEmbed.tsx:166 msgid "Show alt text" msgstr "" @@ -5741,17 +5874,17 @@ msgstr "Показує дописи з {0} у вашій стрічці" #: src/components/dialogs/Signin.tsx:99 #: src/screens/Login/index.tsx:100 #: src/screens/Login/index.tsx:119 -#: src/screens/Login/LoginForm.tsx:157 +#: src/screens/Login/LoginForm.tsx:177 #: src/view/com/auth/SplashScreen.tsx:63 #: src/view/com/auth/SplashScreen.tsx:72 #: src/view/com/auth/SplashScreen.web.tsx:112 #: src/view/com/auth/SplashScreen.web.tsx:121 -#: src/view/shell/bottom-bar/BottomBar.tsx:312 -#: src/view/shell/bottom-bar/BottomBar.tsx:313 #: src/view/shell/bottom-bar/BottomBar.tsx:315 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:204 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:205 +#: src/view/shell/bottom-bar/BottomBar.tsx:316 +#: src/view/shell/bottom-bar/BottomBar.tsx:318 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:207 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:208 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:210 #: src/view/shell/NavSignupCard.tsx:69 #: src/view/shell/NavSignupCard.tsx:70 #: src/view/shell/NavSignupCard.tsx:72 @@ -5779,12 +5912,12 @@ msgstr "Увійдіть у Bluesky або створіть новий облі msgid "Sign out" msgstr "Вийти" -#: src/view/shell/bottom-bar/BottomBar.tsx:302 -#: src/view/shell/bottom-bar/BottomBar.tsx:303 #: src/view/shell/bottom-bar/BottomBar.tsx:305 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:194 -#: src/view/shell/bottom-bar/BottomBarWeb.tsx:195 +#: src/view/shell/bottom-bar/BottomBar.tsx:306 +#: src/view/shell/bottom-bar/BottomBar.tsx:308 #: src/view/shell/bottom-bar/BottomBarWeb.tsx:197 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:198 +#: src/view/shell/bottom-bar/BottomBarWeb.tsx:200 #: src/view/shell/NavSignupCard.tsx:60 #: src/view/shell/NavSignupCard.tsx:61 #: src/view/shell/NavSignupCard.tsx:63 @@ -5800,7 +5933,7 @@ msgstr "Зареєструйтеся або увійдіть, щоб приєд msgid "Sign-in Required" msgstr "Необхідно увійти для перегляду" -#: src/view/screens/Settings/index.tsx:391 +#: src/view/screens/Settings/index.tsx:392 msgid "Signed in as" msgstr "Ви увійшли як" @@ -5809,21 +5942,21 @@ msgstr "Ви увійшли як" msgid "Signed in as @{0}" msgstr "Ви увійшли як @{0}" -#: src/view/com/notifications/FeedItem.tsx:197 +#: src/view/com/notifications/FeedItem.tsx:208 msgid "signed up with your starter pack" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:300 -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:307 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:327 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:334 msgid "Signup without a starter pack" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:245 +#: src/screens/Onboarding/StepInterests/index.tsx:264 #: src/screens/StarterPack/Wizard/index.tsx:192 msgid "Skip" msgstr "Пропустити" -#: src/screens/Onboarding/StepInterests/index.tsx:242 +#: src/screens/Onboarding/StepInterests/index.tsx:261 msgid "Skip this flow" msgstr "Пропустити цей процес" @@ -5832,6 +5965,10 @@ msgstr "Пропустити цей процес" msgid "Software Dev" msgstr "Розробка П/З" +#: src/components/FeedInterstitials.tsx:378 +msgid "Some other feeds you might like" +msgstr "" + #: src/components/WhoCanReply.tsx:72 #: src/view/com/composer/threadgate/ThreadgateBtn.tsx:47 msgid "Some people can reply" @@ -5856,8 +5993,8 @@ msgstr "" msgid "Something went wrong, please try again." msgstr "Щось пішло не так. Будь ласка, спробуйте ще раз." -#: src/App.native.tsx:96 -#: src/App.web.tsx:78 +#: src/App.native.tsx:98 +#: src/App.web.tsx:80 msgid "Sorry! Your session expired. Please log in again." msgstr "Даруйте! Ваш сеанс вичерпався. Будь ласка, увійдіть знову." @@ -5887,7 +6024,7 @@ msgid "Spam; excessive mentions or replies" msgstr "Спам; надмірні згадки або відповіді" #: src/screens/Onboarding/index.tsx:27 -#: src/screens/Onboarding/state.ts:97 +#: src/screens/Onboarding/state.ts:98 msgid "Sports" msgstr "Спорт" @@ -5907,17 +6044,22 @@ msgstr "" msgid "Start chatting" msgstr "" +#: src/tours/Tooltip.tsx:99 +msgid "Start of onboarding tour window. Do not move backward. Instead, go forward for more options, or press to skip." +msgstr "" + #: src/lib/generate-starterpack.ts:68 -#: src/Navigation.tsx:325 +#: src/Navigation.tsx:328 +#: src/Navigation.tsx:333 #: src/screens/StarterPack/Wizard/index.tsx:183 msgid "Starter Pack" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:65 +#: src/components/StarterPack/StarterPackCard.tsx:70 msgid "Starter pack by {0}" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:614 +#: src/screens/StarterPack/StarterPackScreen.tsx:692 msgid "Starter pack is invalid" msgstr "" @@ -5933,7 +6075,7 @@ msgstr "" #~ msgid "Status page" #~ msgstr "Сторінка стану" -#: src/view/screens/Settings/index.tsx:963 +#: src/view/screens/Settings/index.tsx:964 msgid "Status Page" msgstr "" @@ -5941,16 +6083,16 @@ msgstr "" #~ msgid "Step" #~ msgstr "Крок" -#: src/screens/Signup/index.tsx:192 +#: src/screens/Signup/index.tsx:125 msgid "Step {0} of {1}" msgstr "" -#: src/view/screens/Settings/index.tsx:304 +#: src/view/screens/Settings/index.tsx:305 msgid "Storage cleared, you need to restart the app now." msgstr "Сховище очищено, тепер вам треба перезапустити застосунок." -#: src/Navigation.tsx:226 -#: src/view/screens/Settings/index.tsx:863 +#: src/Navigation.tsx:229 +#: src/view/screens/Settings/index.tsx:864 msgid "Storybook" msgstr "" @@ -5994,6 +6136,7 @@ msgstr "" #~ msgid "Suggested Follows" #~ msgstr "Пропоновані підписки" +#: src/components/FeedInterstitials.tsx:246 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "Пропозиції для вас" @@ -6002,7 +6145,7 @@ msgstr "Пропозиції для вас" msgid "Suggestive" msgstr "Непристойний" -#: src/Navigation.tsx:241 +#: src/Navigation.tsx:244 #: src/view/screens/Support.tsx:30 #: src/view/screens/Support.tsx:33 msgid "Support" @@ -6013,6 +6156,10 @@ msgstr "Підтримка" msgid "Switch Account" msgstr "Перемикнути обліковий запис" +#: src/tours/HomeTour.tsx:48 +msgid "Switch between feeds to control your experience." +msgstr "" + #: src/view/screens/Settings/index.tsx:160 msgid "Switch to {0}" msgstr "Переключитися на {0}" @@ -6021,11 +6168,11 @@ msgstr "Переключитися на {0}" msgid "Switches the account you are logged in to" msgstr "Переключає обліковий запис" -#: src/view/screens/Settings/index.tsx:445 +#: src/view/screens/Settings/index.tsx:446 msgid "System" msgstr "Системне" -#: src/view/screens/Settings/index.tsx:851 +#: src/view/screens/Settings/index.tsx:852 msgid "System log" msgstr "Системний журнал" @@ -6041,12 +6188,24 @@ msgstr "Меню тегів: {displayTag}" msgid "Tall" msgstr "Високе" +#: src/components/ProgressGuide/Toast.tsx:150 +msgid "Tap to dismiss" +msgstr "" + #: src/view/com/util/images/AutoSizedImage.tsx:70 msgid "Tap to view fully" msgstr "Торкніться, щоб переглянути повністю" +#: src/state/shell/progress-guide.tsx:171 +msgid "Task complete - 10 likes!" +msgstr "" + +#: src/components/ProgressGuide/List.tsx:49 +msgid "Teach our algorithm what you like" +msgstr "" + #: src/screens/Onboarding/index.tsx:36 -#: src/screens/Onboarding/state.ts:98 +#: src/screens/Onboarding/state.ts:99 msgid "Tech" msgstr "Технології" @@ -6058,13 +6217,13 @@ msgstr "" msgid "Tell us a little more" msgstr "" -#: src/view/shell/desktop/RightNav.tsx:86 +#: src/view/shell/desktop/RightNav.tsx:90 msgid "Terms" msgstr "Умови" -#: src/Navigation.tsx:251 +#: src/Navigation.tsx:254 #: src/screens/Signup/StepInfo/Policies.tsx:49 -#: src/view/screens/Settings/index.tsx:951 +#: src/view/screens/Settings/index.tsx:952 #: src/view/screens/TermsOfService.tsx:29 #: src/view/shell/Drawer.tsx:279 msgid "Terms of Service" @@ -6095,12 +6254,14 @@ msgstr "Дякуємо. Вашу скаргу було надіслано." msgid "That contains the following:" msgstr "Що містить наступне:" -#: src/screens/Signup/index.tsx:100 +#: src/screens/Signup/StepHandle.tsx:50 msgid "That handle is already taken." msgstr "Цей псевдонім вже зайнятий." -#: src/screens/StarterPack/StarterPackScreen.tsx:105 -#: src/screens/StarterPack/StarterPackScreen.tsx:106 +#: src/screens/StarterPack/StarterPackScreen.tsx:96 +#: src/screens/StarterPack/StarterPackScreen.tsx:97 +#: src/screens/StarterPack/StarterPackScreen.tsx:136 +#: src/screens/StarterPack/StarterPackScreen.tsx:137 #: src/screens/StarterPack/Wizard/index.tsx:106 #: src/screens/StarterPack/Wizard/index.tsx:114 msgid "That starter pack could not be found." @@ -6123,7 +6284,12 @@ msgstr "Правила Спільноти переміщено до <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "Політику захисту авторського права переміщено до <0/>" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:321 +#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:177 +msgid "The Discover feed now knows what you like" +msgstr "" + +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:348 msgid "The experience is better in the app. Download Bluesky now and we'll pick back up where you left off." msgstr "" @@ -6152,7 +6318,7 @@ msgstr "Можливо цей пост було видалено." msgid "The Privacy Policy has been moved to <0/>" msgstr "Політика конфіденційності була переміщена до <0/>" -#: src/screens/StarterPack/StarterPackScreen.tsx:624 +#: src/screens/StarterPack/StarterPackScreen.tsx:702 msgid "The starter pack that you are trying to view is invalid. You may delete this starter pack instead." msgstr "" @@ -6210,11 +6376,11 @@ msgstr "При з'єднанні з сервером виникла пробле msgid "There was an issue contacting your server" msgstr "При з'єднанні з вашим сервером виникла проблема" -#: src/view/com/notifications/Feed.tsx:126 +#: src/view/com/notifications/Feed.tsx:125 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "Виникла проблема з завантаженням сповіщень. Натисніть тут, щоб повторити спробу." -#: src/view/com/posts/Feed.tsx:299 +#: src/view/com/posts/Feed.tsx:459 msgid "There was an issue fetching posts. Tap here to try again." msgstr "Виникла проблема з завантаженням постів. Натисніть тут, щоб повторити спробу." @@ -6410,7 +6576,7 @@ msgid "This post has been deleted." msgstr "Цей пост було видалено." #: src/view/com/util/forms/PostDropdownBtn.tsx:458 -#: src/view/com/util/post-ctrls/PostCtrls.tsx:317 +#: 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 "Цей пост видно лише користувачам, які увійшли до системи. Воно не буде видимим для людей, які не ввійшли до системи." @@ -6471,12 +6637,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:594 +#: src/view/screens/Settings/index.tsx:595 msgid "Thread preferences" msgstr "Налаштування гілок" #: src/view/screens/PreferencesThreads.tsx:53 -#: src/view/screens/Settings/index.tsx:604 +#: src/view/screens/Settings/index.tsx:605 msgid "Thread Preferences" msgstr "Налаштування гілок" @@ -6488,7 +6654,7 @@ msgstr "" msgid "Threaded Mode" msgstr "Режим гілок" -#: src/Navigation.tsx:284 +#: src/Navigation.tsx:287 msgid "Threads Preferences" msgstr "Налаштування обговорень" @@ -6539,11 +6705,11 @@ msgctxt "action" msgid "Try again" msgstr "Спробувати ще раз" -#: src/screens/Onboarding/state.ts:99 +#: src/screens/Onboarding/state.ts:100 msgid "TV" msgstr "" -#: src/view/screens/Settings/index.tsx:745 +#: src/view/screens/Settings/index.tsx:746 msgid "Two-factor authentication" msgstr "" @@ -6565,14 +6731,14 @@ msgstr "Перестати ігнорувати" #: src/screens/Login/ForgotPasswordForm.tsx:74 #: src/screens/Login/index.tsx:78 -#: src/screens/Login/LoginForm.tsx:145 +#: src/screens/Login/LoginForm.tsx:150 #: src/screens/Login/SetNewPasswordForm.tsx:77 -#: src/screens/Signup/index.tsx:79 +#: src/screens/Signup/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:71 msgid "Unable to contact your service. Please check your Internet connection." msgstr "Не вдалося зв'язатися з вашим хостинг-провайдером. Перевірте ваше підключення до Інтернету." -#: src/screens/StarterPack/StarterPackScreen.tsx:548 +#: src/screens/StarterPack/StarterPackScreen.tsx:626 msgid "Unable to delete" msgstr "" @@ -6837,7 +7003,7 @@ msgstr "Список користувачів оновлено" msgid "User Lists" msgstr "Списки користувачів" -#: src/screens/Login/LoginForm.tsx:177 +#: src/screens/Login/LoginForm.tsx:197 msgid "Username or email address" msgstr "Ім'я користувача або електронна адреса" @@ -6876,15 +7042,15 @@ msgstr "Значення:" msgid "Verify DNS Record" msgstr "" -#: src/view/screens/Settings/index.tsx:982 +#: src/view/screens/Settings/index.tsx:983 msgid "Verify email" msgstr "Підтвердити електронну адресу" -#: src/view/screens/Settings/index.tsx:1007 +#: src/view/screens/Settings/index.tsx:1008 msgid "Verify my email" msgstr "Підтвердити мою електронну адресу" -#: src/view/screens/Settings/index.tsx:1016 +#: src/view/screens/Settings/index.tsx:1017 msgid "Verify My Email" msgstr "Підтвердити мою електронну адресу" @@ -6905,7 +7071,7 @@ msgstr "Підтвердьте адресу вашої електронної п #~ msgid "Version {0}" #~ msgstr "Версія {0}" -#: src/view/screens/Settings/index.tsx:935 +#: src/view/screens/Settings/index.tsx:936 msgid "Version {appVersion} {bundleInfo}" msgstr "" @@ -6918,7 +7084,7 @@ msgstr "Відеоігри" msgid "View {0}'s avatar" msgstr "Переглянути аватар {0}" -#: src/view/com/notifications/FeedItem.tsx:234 +#: src/view/com/notifications/FeedItem.tsx:245 msgid "View {0}'s profile" msgstr "" @@ -6967,7 +7133,7 @@ msgid "View users who like this feed" msgstr "Переглянути користувачів, які вподобали цю стрічку" #: src/view/com/home/HomeHeaderLayout.web.tsx:79 -#: src/view/com/home/HomeHeaderLayoutMobile.tsx:84 +#: src/view/com/home/HomeHeaderLayoutMobile.tsx:86 msgid "View your feeds and explore more" msgstr "" @@ -7002,7 +7168,7 @@ msgstr "" msgid "We estimate {estimatedTime} until your account is ready." msgstr "Ми оцінюємо {estimatedTime} до готовності вашого облікового запису." -#: src/screens/Onboarding/StepFinished.tsx:231 +#: src/screens/Onboarding/StepFinished.tsx:239 msgid "We hope you have a wonderful time. Remember, Bluesky is:" msgstr "Ми сподіваємося, що ви проведете чудово свій час. Пам'ятайте, Bluesky — це:" @@ -7026,7 +7192,7 @@ msgstr "Не вдалося завантажити ваші налаштуван msgid "We were unable to load your configured labelers at this time." msgstr "Наразі ми не змогли завантажити список ваших маркувальників." -#: src/screens/Onboarding/StepInterests/index.tsx:143 +#: src/screens/Onboarding/StepInterests/index.tsx:157 msgid "We weren't able to connect. Please try again to continue setting up your account. If it continues to fail, you can skip this flow." msgstr "Ми не змогли під'єднатися. Будь ласка, спробуйте ще раз, щоб продовжити налаштування свого облікового запису. Якщо помилка повторюється, то ви можете пропустити цей процес." @@ -7034,7 +7200,7 @@ msgstr "Ми не змогли під'єднатися. Будь ласка, с msgid "We will let you know when your account is ready." msgstr "Ми повідомимо вас, коли ваш обліковий запис буде готовий." -#: src/screens/Onboarding/StepInterests/index.tsx:148 +#: src/screens/Onboarding/StepInterests/index.tsx:162 msgid "We'll use this to help customize your experience." msgstr "Ми скористаємося цим, щоб підлаштувати Ваш досвід." @@ -7042,7 +7208,7 @@ msgstr "Ми скористаємося цим, щоб підлаштувати msgid "We're having network issues, try again" msgstr "" -#: src/screens/Signup/index.tsx:155 +#: src/screens/Signup/index.tsx:89 msgid "We're so excited to have you join us!" msgstr "Ми дуже раді, що ви приєдналися!" @@ -7087,7 +7253,7 @@ msgstr "" msgid "Welcome, friend!" msgstr "" -#: src/screens/Onboarding/StepInterests/index.tsx:140 +#: src/screens/Onboarding/StepInterests/index.tsx:154 msgid "What are your interests?" msgstr "Чим ви цікавитесь?" @@ -7178,7 +7344,7 @@ msgid "Write your reply" msgstr "Написати відповідь" #: src/screens/Onboarding/index.tsx:25 -#: src/screens/Onboarding/state.ts:100 +#: src/screens/Onboarding/state.ts:101 msgid "Writers" msgstr "Письменники" @@ -7197,7 +7363,7 @@ msgstr "Так" msgid "Yes, deactivate" msgstr "" -#: src/screens/StarterPack/StarterPackScreen.tsx:560 +#: src/screens/StarterPack/StarterPackScreen.tsx:638 msgid "Yes, delete this starter pack" msgstr "" @@ -7209,7 +7375,7 @@ msgstr "" msgid "Yesterday, {time}" msgstr "" -#: src/components/StarterPack/StarterPackCard.tsx:68 +#: src/components/StarterPack/StarterPackCard.tsx:73 msgid "you" msgstr "" @@ -7426,23 +7592,23 @@ msgstr "" msgid "You: {short}" msgstr "" -#: src/screens/Signup/index.tsx:169 +#: src/screens/Signup/index.tsx:102 msgid "You'll follow the suggested users and feeds once you finish creating your account!" msgstr "" -#: src/screens/Signup/index.tsx:174 +#: 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:233 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:260 msgid "You'll follow these people and {0} others" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:231 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:258 msgid "You'll follow these people right away" msgstr "" -#: src/screens/StarterPack/StarterPackLandingScreen.tsx:271 +#: src/screens/StarterPack/StarterPackLandingScreen.tsx:298 msgid "You'll stay updated with these feeds" msgstr "" @@ -7461,7 +7627,7 @@ msgstr "Ви в черзі" msgid "You're logged in with an App Password. Please log in with your main password to continue deactivating your account." msgstr "" -#: src/screens/Onboarding/StepFinished.tsx:228 +#: src/screens/Onboarding/StepFinished.tsx:236 msgid "You're ready to go!" msgstr "Все готово!" @@ -7474,7 +7640,7 @@ msgstr "Ви обрали приховувати слово або тег в ц msgid "You've reached the end of your feed! Find some more accounts to follow." msgstr "Ваша домашня стрічка закінчилась! Підпишіться на більше користувачів щоб отримувати більше постів." -#: src/screens/Signup/index.tsx:202 +#: src/screens/Signup/index.tsx:135 msgid "Your account" msgstr "Ваш акаунт" @@ -7486,7 +7652,7 @@ msgstr "Ваш обліковий запис видалено" 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\" файл. Цей файл не містить медіафайлів, таких як зображення, або особисті дані, які необхідно отримати окремо." -#: src/screens/Signup/StepInfo/index.tsx:123 +#: src/screens/Signup/StepInfo/index.tsx:180 msgid "Your birth date" msgstr "Ваша дата народження" @@ -7503,7 +7669,8 @@ msgstr "Ваш вибір буде запам'ятовано, ви у будь- #~ msgstr "Ваша стрічка за замовчуванням \"Following\"" #: src/screens/Login/ForgotPasswordForm.tsx:57 -#: src/screens/Signup/state.ts:220 +#: src/screens/Signup/state.ts:196 +#: src/screens/Signup/StepInfo/index.tsx:75 #: src/view/com/modals/ChangePassword.tsx:55 msgid "Your email appears to be invalid." msgstr "Не вдалося розпізнати адресу електронної пошти." @@ -7516,11 +7683,15 @@ msgstr "Вашу адресу електронної пошти було змі msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "Ваша електронна пошта ще не підтверджена. Це важливий крок для безпеки вашого облікового запису, який ми рекомендуємо вам зробити." +#: src/state/shell/progress-guide.tsx:161 +msgid "Your first like!" +msgstr "" + #: src/view/com/posts/FollowingEmptyState.tsx:43 msgid "Your following feed is empty! Follow more users to see what's happening." msgstr "Ваша домашня стрічка порожня! Підпишіться на більше користувачів щоб отримувати більше постів." -#: src/screens/Signup/StepHandle.tsx:73 +#: src/screens/Signup/StepHandle.tsx:122 msgid "Your full handle will be" msgstr "Ваш повний псевдонім буде" @@ -7540,7 +7711,7 @@ msgstr "Ваш пароль успішно змінено!" msgid "Your post has been published" msgstr "Пост опубліковано" -#: src/screens/Onboarding/StepFinished.tsx:243 +#: src/screens/Onboarding/StepFinished.tsx:251 msgid "Your posts, likes, and blocks are public. Mutes are private." msgstr "Ваші повідомлення, вподобання і блоки є публічними. Ігнорування - приватні." @@ -7560,6 +7731,6 @@ msgstr "Відповідь опубліковано" msgid "Your report will be sent to the Bluesky Moderation Service" msgstr "" -#: src/screens/Signup/index.tsx:204 +#: src/screens/Signup/index.tsx:137 msgid "Your user handle" msgstr "Ваш псевдонім" diff --git a/src/locale/locales/zh-CN/messages.po b/src/locale/locales/zh-CN/messages.po index 1310e56ff3..d763c003ef 100644 --- a/src/locale/locales/zh-CN/messages.po +++ b/src/locale/locales/zh-CN/messages.po @@ -397,7 +397,7 @@ msgstr "成人内容显示已被禁用。" msgid "Advanced" msgstr "详细设置" -#: src/state/shell/progress-guide.tsx:177 +#: src/state/shell/progress-guide.tsx:176 msgid "Algorithm training complete!" msgstr "算法训练完成!" @@ -480,8 +480,8 @@ msgstr "不在这些选项中的问题" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:294 -#: src/components/ProfileCard.tsx:306 +#: src/components/ProfileCard.tsx:309 +#: src/components/ProfileCard.tsx:329 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -756,21 +756,21 @@ msgstr "模糊化图片并从资讯源中过滤" msgid "Books" msgstr "书籍" -#: src/components/FeedInterstitials.tsx:209 +#: src/components/FeedInterstitials.tsx:281 msgid "Browse more accounts on the Explore page" msgstr "在探索页面浏览更多账户" -#: src/components/FeedInterstitials.tsx:335 +#: src/components/FeedInterstitials.tsx:411 msgid "Browse more feeds on the Explore page" msgstr "在探索页面浏览更多资讯源" -#: src/components/FeedInterstitials.tsx:198 -#: src/components/FeedInterstitials.tsx:324 +#: src/components/FeedInterstitials.tsx:266 +#: src/components/FeedInterstitials.tsx:396 msgid "Browse more suggestions" msgstr "浏览更多建议" -#: src/components/FeedInterstitials.tsx:217 -#: src/components/FeedInterstitials.tsx:344 +#: src/components/FeedInterstitials.tsx:289 +#: src/components/FeedInterstitials.tsx:420 msgid "Browse more suggestions on the Explore page" msgstr "在探索页面浏览更多建议" @@ -2294,7 +2294,7 @@ msgid "Flip vertically" msgstr "垂直翻转" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:318 +#: src/components/ProfileCard.tsx:341 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2390,7 +2390,7 @@ msgid "Followers you know" msgstr "由你所认识的关注者" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:312 +#: src/components/ProfileCard.tsx:335 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2402,6 +2402,7 @@ msgstr "由你所认识的关注者" msgid "Following" msgstr "正在关注" +#: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "已关注 {0}" @@ -2575,7 +2576,7 @@ msgstr "前往用户个人资料" msgid "Graphic Media" msgstr "图形媒体" -#: src/state/shell/progress-guide.tsx:167 +#: src/state/shell/progress-guide.tsx:166 msgid "Half way there!" msgstr "已经完成一半了!" @@ -3009,8 +3010,8 @@ msgstr "亮色" msgid "Like 10 posts" msgstr "喜欢 10 条帖文" -#: src/state/shell/progress-guide.tsx:163 -#: src/state/shell/progress-guide.tsx:168 +#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:167 msgid "Like 10 posts to train the Discover feed" msgstr "喜欢 10 条帖文,以训练 \"Discover\" 算法推送" @@ -3601,6 +3602,7 @@ msgstr "未找到精选 GIF,Tensor 可能存在问题。" msgid "No feeds found. Try searching for something else." msgstr "未找到资讯源,尝试搜索点别的。" +#: src/components/ProfileCard.tsx:321 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "不再关注 {0}" @@ -3617,7 +3619,7 @@ msgstr "目前还没有任何私信" msgid "No more conversations to show" msgstr "没有更多对话可显示" -#: src/view/com/notifications/Feed.tsx:118 +#: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "还没有通知!" @@ -5450,7 +5452,7 @@ msgstr "跳过这段流程" msgid "Software Dev" msgstr "程序开发" -#: src/components/FeedInterstitials.tsx:306 +#: src/components/FeedInterstitials.tsx:378 msgid "Some other feeds you might like" msgstr "其他你可能喜欢的资讯源" @@ -5596,7 +5598,7 @@ msgstr "订阅这个列表" msgid "Suggested accounts" msgstr "建议的账号" -#: src/components/FeedInterstitials.tsx:178 +#: src/components/FeedInterstitials.tsx:246 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "为你推荐" @@ -5656,7 +5658,7 @@ msgstr "点按关闭" msgid "Tap to view fully" msgstr "点击查看完整内容" -#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:171 msgid "Task complete - 10 likes!" msgstr "任务完成:10 个喜欢!" @@ -5740,8 +5742,8 @@ msgstr "社群准则已迁移至 <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "版权许可已迁移至 <0/>" -#: src/state/shell/progress-guide.tsx:173 -#: src/state/shell/progress-guide.tsx:178 +#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:177 msgid "The Discover feed now knows what you like" msgstr "现在 \"Discover\" 资讯源已了解你的喜好" @@ -5824,11 +5826,11 @@ msgstr "连接服务器时出现问题" msgid "There was an issue contacting your server" msgstr "连接服务器时出现问题" -#: src/view/com/notifications/Feed.tsx:126 +#: src/view/com/notifications/Feed.tsx:125 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "刷新通知时出现问题,点击重试。" -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:459 msgid "There was an issue fetching posts. Tap here to try again." msgstr "刷新帖文时出现问题,点击重试。" @@ -7045,7 +7047,7 @@ msgstr "你的电子邮箱已更新但尚未验证。作为下一步,请验证 msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "你的电子邮箱尚未验证。这是一个重要的安全步骤,我们建议你完成验证。" -#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:161 msgid "Your first like!" msgstr "你的第一个喜欢!" diff --git a/src/locale/locales/zh-TW/messages.po b/src/locale/locales/zh-TW/messages.po index 28fa8dff8d..24bf2b348d 100644 --- a/src/locale/locales/zh-TW/messages.po +++ b/src/locale/locales/zh-TW/messages.po @@ -397,7 +397,7 @@ msgstr "成人內容已停用。" msgid "Advanced" msgstr "進階設定" -#: src/state/shell/progress-guide.tsx:177 +#: src/state/shell/progress-guide.tsx:176 msgid "Algorithm training complete!" msgstr "演算法訓練完成!" @@ -480,8 +480,8 @@ msgstr "問題不在上述選項" #: src/components/hooks/useFollowMethods.ts:35 #: src/components/hooks/useFollowMethods.ts:50 -#: src/components/ProfileCard.tsx:294 -#: src/components/ProfileCard.tsx:306 +#: src/components/ProfileCard.tsx:309 +#: src/components/ProfileCard.tsx:329 #: src/view/com/profile/FollowButton.tsx:36 #: src/view/com/profile/FollowButton.tsx:46 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:188 @@ -756,21 +756,21 @@ msgstr "模糊圖片並從動態中過濾" msgid "Books" msgstr "書籍" -#: src/components/FeedInterstitials.tsx:209 +#: src/components/FeedInterstitials.tsx:281 msgid "Browse more accounts on the Explore page" msgstr "在探索頁面瀏覽更多帳號" -#: src/components/FeedInterstitials.tsx:335 +#: src/components/FeedInterstitials.tsx:411 msgid "Browse more feeds on the Explore page" msgstr "在探索頁面瀏覽更多動態源" -#: src/components/FeedInterstitials.tsx:198 -#: src/components/FeedInterstitials.tsx:324 +#: src/components/FeedInterstitials.tsx:266 +#: src/components/FeedInterstitials.tsx:396 msgid "Browse more suggestions" msgstr "瀏覽更多建議" -#: src/components/FeedInterstitials.tsx:217 -#: src/components/FeedInterstitials.tsx:344 +#: src/components/FeedInterstitials.tsx:289 +#: src/components/FeedInterstitials.tsx:420 msgid "Browse more suggestions on the Explore page" msgstr "在探索頁面瀏覽更多建議" @@ -2294,7 +2294,7 @@ msgid "Flip vertically" msgstr "垂直翻轉" #. User is not following this account, click to follow -#: src/components/ProfileCard.tsx:318 +#: src/components/ProfileCard.tsx:341 #: src/components/ProfileHoverCard/index.web.tsx:446 #: src/components/ProfileHoverCard/index.web.tsx:457 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:252 @@ -2390,7 +2390,7 @@ msgid "Followers you know" msgstr "您也認識的跟隨者" #. User is following this account, click to unfollow -#: src/components/ProfileCard.tsx:312 +#: src/components/ProfileCard.tsx:335 #: src/components/ProfileHoverCard/index.web.tsx:445 #: src/components/ProfileHoverCard/index.web.tsx:456 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:250 @@ -2402,6 +2402,7 @@ msgstr "您也認識的跟隨者" msgid "Following" msgstr "跟隨中" +#: src/components/ProfileCard.tsx:301 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:98 msgid "Following {0}" msgstr "已跟隨 {0}" @@ -2575,7 +2576,7 @@ msgstr "前往用戶的個人檔案" msgid "Graphic Media" msgstr "不適宜的圖像媒體" -#: src/state/shell/progress-guide.tsx:167 +#: src/state/shell/progress-guide.tsx:166 msgid "Half way there!" msgstr "已經完成一半了!" @@ -3009,8 +3010,8 @@ msgstr "亮色" msgid "Like 10 posts" msgstr "喜歡 10 個貼文" -#: src/state/shell/progress-guide.tsx:163 -#: src/state/shell/progress-guide.tsx:168 +#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:167 msgid "Like 10 posts to train the Discover feed" msgstr "喜歡 10 個貼文以訓練「Discover」動態源" @@ -3601,6 +3602,7 @@ msgstr "未找到精選 GIF,Tenor 可能發生問題。" msgid "No feeds found. Try searching for something else." msgstr "沒有找到動態。嘗試其他搜尋。" +#: src/components/ProfileCard.tsx:321 #: src/screens/Profile/Header/ProfileHeaderStandard.tsx:120 msgid "No longer following {0}" msgstr "不再跟隨 {0}" @@ -3617,7 +3619,7 @@ msgstr "還沒有訊息" msgid "No more conversations to show" msgstr "已經沒有對話啦!" -#: src/view/com/notifications/Feed.tsx:118 +#: src/view/com/notifications/Feed.tsx:117 msgid "No notifications yet!" msgstr "還沒有通知!" @@ -5450,7 +5452,7 @@ msgstr "跳過此流程" msgid "Software Dev" msgstr "軟體開發" -#: src/components/FeedInterstitials.tsx:306 +#: src/components/FeedInterstitials.tsx:378 msgid "Some other feeds you might like" msgstr "其他你可能喜歡的動態源" @@ -5596,7 +5598,7 @@ msgstr "訂閱這個列表" msgid "Suggested accounts" msgstr "推薦的帳號" -#: src/components/FeedInterstitials.tsx:178 +#: src/components/FeedInterstitials.tsx:246 #: src/view/com/profile/ProfileHeaderSuggestedFollows.tsx:65 msgid "Suggested for you" msgstr "為您推薦" @@ -5656,7 +5658,7 @@ msgstr "點擊以跳過" msgid "Tap to view fully" msgstr "點擊查看完整內容" -#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:171 msgid "Task complete - 10 likes!" msgstr "任務完成 - 10 個喜歡!" @@ -5740,8 +5742,8 @@ msgstr "社群準則已移動到 <0/>" msgid "The Copyright Policy has been moved to <0/>" msgstr "版權政策已移動到 <0/>" -#: src/state/shell/progress-guide.tsx:173 -#: src/state/shell/progress-guide.tsx:178 +#: src/state/shell/progress-guide.tsx:172 +#: src/state/shell/progress-guide.tsx:177 msgid "The Discover feed now knows what you like" msgstr "「Discover」動態源現在知道您喜歡什麼" @@ -5824,11 +5826,11 @@ msgstr "連線伺服器時出現問題" msgid "There was an issue contacting your server" msgstr "連線伺服器時出現問題" -#: src/view/com/notifications/Feed.tsx:126 +#: src/view/com/notifications/Feed.tsx:125 msgid "There was an issue fetching notifications. Tap here to try again." msgstr "取得通知時發生問題,點擊這裡重試。" -#: src/view/com/posts/Feed.tsx:476 +#: src/view/com/posts/Feed.tsx:459 msgid "There was an issue fetching posts. Tap here to try again." msgstr "取得貼文時發生問題,點擊這裡重試。" @@ -7045,7 +7047,7 @@ msgstr "您的電子郵件地址已更新但尚未驗證。作為下一步,請 msgid "Your email has not yet been verified. This is an important security step which we recommend." msgstr "您的電子郵件地址尚未驗證。這是一個我們建議的重要安全步驟。" -#: src/state/shell/progress-guide.tsx:162 +#: src/state/shell/progress-guide.tsx:161 msgid "Your first like!" msgstr "你的第一個喜歡!" From 09bc4e95d807a71cb624a6eade01d3081f50554d Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Fri, 5 Jul 2024 12:37:06 -0700 Subject: [PATCH 089/153] Update stats --- src/lib/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/constants.ts b/src/lib/constants.ts index 0efaed44dd..7516c2c285 100644 --- a/src/lib/constants.ts +++ b/src/lib/constants.ts @@ -20,7 +20,7 @@ export const BSKY_DOWNLOAD_URL = 'https://bsky.app/download' // code and update this number with each release until we can get the // server route done. // -prf -export const JOINED_THIS_WEEK = 37115 // as of June24 2024 +export const JOINED_THIS_WEEK = 21797 // as of Jul5 2024 const BASE_FEEDBACK_FORM_URL = `${HELP_DESK_URL}/requests/new` export function FEEDBACK_FORM_URL({ From 56b688744ef3492a1e93d8a6ee04a116ceb7253a Mon Sep 17 00:00:00 2001 From: Hailey Date: Fri, 5 Jul 2024 14:44:06 -0700 Subject: [PATCH 090/153] fix slop (#4739) --- src/view/com/posts/AviFollowButton.tsx | 51 ++++++++++++++++---------- 1 file changed, 32 insertions(+), 19 deletions(-) diff --git a/src/view/com/posts/AviFollowButton.tsx b/src/view/com/posts/AviFollowButton.tsx index 0497c80bca..f7141ee421 100644 --- a/src/view/com/posts/AviFollowButton.tsx +++ b/src/view/com/posts/AviFollowButton.tsx @@ -90,30 +90,43 @@ export function AviFollowButton({ hitSlop={createHitslop(3)} style={[ a.rounded_full, - select(t.name, { - light: t.atoms.bg_contrast_100, - dim: t.atoms.bg_contrast_100, - dark: t.atoms.bg_contrast_200, - }), a.absolute, { - bottom: -1, - right: -1, - borderWidth: 1, - borderColor: t.atoms.bg.backgroundColor, + height: 30, + width: 30, + bottom: -7, + right: -7, }, ]}> - + + + + + )} From 8f06ba70bb02a9dc3f09285719bd1585cc43aaeb Mon Sep 17 00:00:00 2001 From: Samuel Newman Date: Sat, 6 Jul 2024 01:50:03 +0100 Subject: [PATCH 091/153] Video compression in composer (#4638) Co-authored-by: Samuel Newman <10959775+mozzius@users.noreply.github.com> Co-authored-by: Hailey --- app.config.js | 2 + .../videoClip_stroke2_corner0_rounded.svg | 1 + package.json | 2 + src/components/icons/VideoClip.tsx | 5 ++ src/lib/hooks/usePermissions.ts | 29 ++++++++ src/lib/hooks/usePermissions.web.ts | 8 +++ src/lib/media/video/compress.ts | 30 +++++++++ src/lib/media/video/compress.web.ts | 28 ++++++++ src/lib/media/video/errors.ts | 6 ++ src/lib/statsig/gates.ts | 1 + src/view/com/composer/Composer.tsx | 42 ++++++++++-- src/view/com/composer/ExternalEmbed.tsx | 28 +------- .../com/composer/ExternalEmbedRemoveBtn.tsx | 34 ++++++++++ .../composer/char-progress/CharProgress.tsx | 7 +- .../com/composer/videos/SelectVideoBtn.tsx | 67 +++++++++++++++++++ src/view/com/composer/videos/VideoPreview.tsx | 39 +++++++++++ .../com/composer/videos/VideoPreview.web.tsx | 27 ++++++++ .../videos/VideoTranscodeBackdrop.tsx | 37 ++++++++++ .../videos/VideoTranscodeBackdrop.web.tsx | 7 ++ .../videos/VideoTranscodeProgress.tsx | 53 +++++++++++++++ src/view/com/composer/videos/state.ts | 51 ++++++++++++++ .../util/post-embeds/ExternalLinkEmbed.tsx | 2 +- yarn.lock | 10 +++ 23 files changed, 483 insertions(+), 33 deletions(-) create mode 100644 assets/icons/videoClip_stroke2_corner0_rounded.svg create mode 100644 src/components/icons/VideoClip.tsx create mode 100644 src/lib/media/video/compress.ts create mode 100644 src/lib/media/video/compress.web.ts create mode 100644 src/lib/media/video/errors.ts create mode 100644 src/view/com/composer/ExternalEmbedRemoveBtn.tsx create mode 100644 src/view/com/composer/videos/SelectVideoBtn.tsx create mode 100644 src/view/com/composer/videos/VideoPreview.tsx create mode 100644 src/view/com/composer/videos/VideoPreview.web.tsx create mode 100644 src/view/com/composer/videos/VideoTranscodeBackdrop.tsx create mode 100644 src/view/com/composer/videos/VideoTranscodeBackdrop.web.tsx create mode 100644 src/view/com/composer/videos/VideoTranscodeProgress.tsx create mode 100644 src/view/com/composer/videos/state.ts diff --git a/app.config.js b/app.config.js index 4a44912289..1467f762fd 100644 --- a/app.config.js +++ b/app.config.js @@ -211,6 +211,8 @@ module.exports = function (config) { sounds: PLATFORM === 'ios' ? ['assets/dm.aiff'] : ['assets/dm.mp3'], }, ], + 'expo-video', + 'react-native-compressor', './plugins/starterPackAppClipExtension/withStarterPackAppClip.js', './plugins/withAndroidManifestPlugin.js', './plugins/withAndroidManifestFCMIconPlugin.js', diff --git a/assets/icons/videoClip_stroke2_corner0_rounded.svg b/assets/icons/videoClip_stroke2_corner0_rounded.svg new file mode 100644 index 0000000000..fd4c08d478 --- /dev/null +++ b/assets/icons/videoClip_stroke2_corner0_rounded.svg @@ -0,0 +1 @@ + diff --git a/package.json b/package.json index 5f9f03457a..0ea23a2749 100644 --- a/package.json +++ b/package.json @@ -136,6 +136,7 @@ "expo-system-ui": "~3.0.4", "expo-task-manager": "~11.8.1", "expo-updates": "~0.25.14", + "expo-video": "^1.1.10", "expo-web-browser": "~13.0.3", "fast-text-encoding": "^1.0.6", "history": "^5.3.0", @@ -166,6 +167,7 @@ "react-dom": "^18.2.0", "react-keyed-flatten-children": "^3.0.0", "react-native": "0.74.1", + "react-native-compressor": "^1.8.24", "react-native-date-picker": "^4.4.2", "react-native-drawer-layout": "^4.0.0-alpha.3", "react-native-fs": "^2.20.0", diff --git a/src/components/icons/VideoClip.tsx b/src/components/icons/VideoClip.tsx new file mode 100644 index 0000000000..c2c13c4913 --- /dev/null +++ b/src/components/icons/VideoClip.tsx @@ -0,0 +1,5 @@ +import {createSinglePathSVG} from './TEMPLATE' + +export const VideoClip_Stroke2_Corner0_Rounded = createSinglePathSVG({ + path: 'M3 4a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4Zm2 1v2h2V5H5Zm4 0v6h6V5H9Zm8 0v2h2V5h-2Zm2 4h-2v2h2V9Zm0 4h-2v2.444h2V13Zm0 4.444h-2V19h2v-1.556ZM15 19v-6H9v6h6Zm-8 0v-2H5v2h2Zm-2-4h2v-2H5v2Zm0-4h2V9H5v2Z', +}) diff --git a/src/lib/hooks/usePermissions.ts b/src/lib/hooks/usePermissions.ts index 9f1f8fb6f7..d248e19759 100644 --- a/src/lib/hooks/usePermissions.ts +++ b/src/lib/hooks/usePermissions.ts @@ -48,6 +48,35 @@ export function usePhotoLibraryPermission() { return {requestPhotoAccessIfNeeded} } +export function useVideoLibraryPermission() { + const [res, requestPermission] = MediaLibrary.usePermissions({ + granularPermissions: ['video'], + }) + const requestVideoAccessIfNeeded = async () => { + // On the, we use to produce a filepicker + // This does not need any permission granting. + if (isWeb) { + return true + } + + if (res?.granted) { + return true + } else if (!res || res.status === 'undetermined' || res?.canAskAgain) { + const {canAskAgain, granted, status} = await requestPermission() + + if (!canAskAgain && status === 'undetermined') { + openPermissionAlert('video library') + } + + return granted + } else { + openPermissionAlert('video library') + return false + } + } + return {requestVideoAccessIfNeeded} +} + export function useCameraPermission() { const [res, requestPermission] = Camera.useCameraPermissions() diff --git a/src/lib/hooks/usePermissions.web.ts b/src/lib/hooks/usePermissions.web.ts index c550a7d6df..b65bbc4141 100644 --- a/src/lib/hooks/usePermissions.web.ts +++ b/src/lib/hooks/usePermissions.web.ts @@ -14,3 +14,11 @@ export function useCameraPermission() { return {requestCameraAccessIfNeeded} } + +export function useVideoLibraryPermission() { + const requestVideoAccessIfNeeded = async () => { + return true + } + + return {requestVideoAccessIfNeeded} +} diff --git a/src/lib/media/video/compress.ts b/src/lib/media/video/compress.ts new file mode 100644 index 0000000000..60e5e94a00 --- /dev/null +++ b/src/lib/media/video/compress.ts @@ -0,0 +1,30 @@ +import {getVideoMetaData, Video} from 'react-native-compressor' + +export type CompressedVideo = { + uri: string + size: number +} + +export async function compressVideo( + file: string, + opts?: { + getCancellationId?: (id: string) => void + onProgress?: (progress: number) => void + }, +): Promise { + const {onProgress, getCancellationId} = opts || {} + + const compressed = await Video.compress( + file, + { + getCancellationId, + compressionMethod: 'manual', + bitrate: 3_000_000, // 3mbps + maxSize: 1920, + }, + onProgress, + ) + + const info = await getVideoMetaData(compressed) + return {uri: compressed, size: info.size} +} diff --git a/src/lib/media/video/compress.web.ts b/src/lib/media/video/compress.web.ts new file mode 100644 index 0000000000..968f2b157a --- /dev/null +++ b/src/lib/media/video/compress.web.ts @@ -0,0 +1,28 @@ +import {VideoTooLargeError} from 'lib/media/video/errors' + +const MAX_VIDEO_SIZE = 1024 * 1024 * 100 // 100MB + +export type CompressedVideo = { + uri: string + size: number +} + +// doesn't actually compress, but throws if >100MB +export async function compressVideo( + file: string, + _callbacks?: { + onProgress: (progress: number) => void + }, +): Promise { + const blob = await fetch(file).then(res => res.blob()) + const video = URL.createObjectURL(blob) + + if (blob.size > MAX_VIDEO_SIZE) { + throw new VideoTooLargeError() + } + + return { + size: blob.size, + uri: video, + } +} diff --git a/src/lib/media/video/errors.ts b/src/lib/media/video/errors.ts new file mode 100644 index 0000000000..701a7e2355 --- /dev/null +++ b/src/lib/media/video/errors.ts @@ -0,0 +1,6 @@ +export class VideoTooLargeError extends Error { + constructor() { + super('Videos cannot be larger than 100MB') + this.name = 'VideoTooLargeError' + } +} diff --git a/src/lib/statsig/gates.ts b/src/lib/statsig/gates.ts index 6a4081185f..378b273494 100644 --- a/src/lib/statsig/gates.ts +++ b/src/lib/statsig/gates.ts @@ -11,3 +11,4 @@ export type Gate = | 'suggested_feeds_interstitial' | 'suggested_follows_interstitial' | 'ungroup_follow_backs' + | 'videos' diff --git a/src/view/com/composer/Composer.tsx b/src/view/com/composer/Composer.tsx index 9e2f77d4df..c8a77385ea 100644 --- a/src/view/com/composer/Composer.tsx +++ b/src/view/com/composer/Composer.tsx @@ -1,4 +1,5 @@ import React, { + Suspense, useCallback, useEffect, useImperativeHandle, @@ -42,7 +43,7 @@ import { } from '#/lib/gif-alt-text' import {useAnimatedScrollHandler} from '#/lib/hooks/useAnimatedScrollHandler_FIXED' import {LikelyType} from '#/lib/link-meta/link-meta' -import {logEvent} from '#/lib/statsig/statsig' +import {logEvent, useGate} from '#/lib/statsig/statsig' import {logger} from '#/logger' import {emitPostCreated} from '#/state/events' import {useModalControls} from '#/state/modals' @@ -96,6 +97,10 @@ import {SuggestedLanguage} from './select-language/SuggestedLanguage' import {TextInput, TextInputRef} from './text-input/TextInput' import {ThreadgateBtn} from './threadgate/ThreadgateBtn' import {useExternalLinkFetch} from './useExternalLinkFetch' +import {SelectVideoBtn} from './videos/SelectVideoBtn' +import {useVideoState} from './videos/state' +import {VideoPreview} from './videos/VideoPreview' +import {VideoTranscodeProgress} from './videos/VideoTranscodeProgress' import hairlineWidth = StyleSheet.hairlineWidth type CancelRef = { @@ -115,6 +120,7 @@ export const ComposePost = observer(function ComposePost({ }: Props & { cancelRef?: React.RefObject }) { + const gate = useGate() const {currentAccount} = useSession() const agent = useAgent() const {data: currentProfile} = useProfileQuery({did: currentAccount!.did}) @@ -156,6 +162,14 @@ export const ComposePost = observer(function ComposePost({ const [quote, setQuote] = useState( initQuote, ) + const { + video, + onSelectVideo, + videoPending, + videoProcessingData, + clearVideo, + videoProcessingProgress, + } = useVideoState({setError}) const {extLink, setExtLink} = useExternalLinkFetch({setQuote}) const [extGif, setExtGif] = useState() const [labels, setLabels] = useState([]) @@ -375,8 +389,9 @@ export const ComposePost = observer(function ComposePost({ ? _(msg`Write your reply`) : _(msg`What's up?`) - const canSelectImages = gallery.size < 4 && !extLink - const hasMedia = gallery.size > 0 || Boolean(extLink) + const canSelectImages = + gallery.size < 4 && !extLink && !video && !videoPending + const hasMedia = gallery.size > 0 || Boolean(extLink) || Boolean(video) const onEmojiButtonPress = useCallback(() => { openPicker?.(textInput.current?.getCursorPosition()) @@ -600,7 +615,20 @@ export const ComposePost = observer(function ComposePost({ setQuote(undefined)} /> )} - ) : undefined} + ) : null} + {videoPending && videoProcessingData ? ( + + ) : ( + video && ( + // remove suspense when we get rid of lazy + + + + ) + )} @@ -619,6 +647,12 @@ export const ComposePost = observer(function ComposePost({ ]}> + {gate('videos') && ( + + )} { const t = useTheme() - const {_} = useLingui() const linkInfo = React.useMemo( () => @@ -70,25 +66,7 @@ export const ExternalEmbed = ({ ) : null} - - - + ) } diff --git a/src/view/com/composer/ExternalEmbedRemoveBtn.tsx b/src/view/com/composer/ExternalEmbedRemoveBtn.tsx new file mode 100644 index 0000000000..7742900a83 --- /dev/null +++ b/src/view/com/composer/ExternalEmbedRemoveBtn.tsx @@ -0,0 +1,34 @@ +import React from 'react' +import {TouchableOpacity} from 'react-native' +import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {s} from 'lib/styles' + +export function ExternalEmbedRemoveBtn({onRemove}: {onRemove: () => void}) { + const {_} = useLingui() + + return ( + + + + ) +} diff --git a/src/view/com/composer/char-progress/CharProgress.tsx b/src/view/com/composer/char-progress/CharProgress.tsx index a3fa78a59a..a205fe0963 100644 --- a/src/view/com/composer/char-progress/CharProgress.tsx +++ b/src/view/com/composer/char-progress/CharProgress.tsx @@ -1,13 +1,14 @@ import React from 'react' import {View} from 'react-native' -import {Text} from '../../util/text/Text' // @ts-ignore no type definition -prf import ProgressCircle from 'react-native-progress/Circle' // @ts-ignore no type definition -prf import ProgressPie from 'react-native-progress/Pie' -import {s} from 'lib/styles' -import {usePalette} from 'lib/hooks/usePalette' + import {MAX_GRAPHEME_LENGTH} from 'lib/constants' +import {usePalette} from 'lib/hooks/usePalette' +import {s} from 'lib/styles' +import {Text} from '../../util/text/Text' const DANGER_LENGTH = MAX_GRAPHEME_LENGTH diff --git a/src/view/com/composer/videos/SelectVideoBtn.tsx b/src/view/com/composer/videos/SelectVideoBtn.tsx new file mode 100644 index 0000000000..9c528a92e2 --- /dev/null +++ b/src/view/com/composer/videos/SelectVideoBtn.tsx @@ -0,0 +1,67 @@ +import React, {useCallback} from 'react' +import { + ImagePickerAsset, + launchImageLibraryAsync, + MediaTypeOptions, + UIImagePickerPreferredAssetRepresentationMode, +} from 'expo-image-picker' +import {msg} from '@lingui/macro' +import {useLingui} from '@lingui/react' + +import {useVideoLibraryPermission} from '#/lib/hooks/usePermissions' +import {isNative} from '#/platform/detection' +import {atoms as a, useTheme} from '#/alf' +import {Button} from '#/components/Button' +import {VideoClip_Stroke2_Corner0_Rounded as VideoClipIcon} from '#/components/icons/VideoClip' + +const VIDEO_MAX_DURATION = 90 + +type Props = { + onSelectVideo: (video: ImagePickerAsset) => void + disabled?: boolean +} + +export function SelectVideoBtn({onSelectVideo, disabled}: Props) { + const {_} = useLingui() + const t = useTheme() + const {requestVideoAccessIfNeeded} = useVideoLibraryPermission() + + const onPressSelectVideo = useCallback(async () => { + if (isNative && !(await requestVideoAccessIfNeeded())) { + return + } + + const response = await launchImageLibraryAsync({ + exif: false, + mediaTypes: MediaTypeOptions.Videos, + videoMaxDuration: VIDEO_MAX_DURATION, + quality: 1, + legacy: true, + preferredAssetRepresentationMode: + UIImagePickerPreferredAssetRepresentationMode.Current, + }) + if (response.assets && response.assets.length > 0) { + onSelectVideo(response.assets[0]) + } + }, [onSelectVideo, requestVideoAccessIfNeeded]) + + return ( + <> + + + ) +} diff --git a/src/view/com/composer/videos/VideoPreview.tsx b/src/view/com/composer/videos/VideoPreview.tsx new file mode 100644 index 0000000000..b04cdf1c8b --- /dev/null +++ b/src/view/com/composer/videos/VideoPreview.tsx @@ -0,0 +1,39 @@ +/* eslint-disable @typescript-eslint/no-shadow */ +import React from 'react' +import {View} from 'react-native' +import {useVideoPlayer, VideoView} from 'expo-video' + +import {CompressedVideo} from '#/lib/media/video/compress' +import {ExternalEmbedRemoveBtn} from 'view/com/composer/ExternalEmbedRemoveBtn' +import {atoms as a} from '#/alf' + +export function VideoPreview({ + video, + clear, +}: { + video: CompressedVideo + clear: () => void +}) { + const player = useVideoPlayer(video.uri, player => { + player.loop = true + player.play() + }) + + return ( + + + + + ) +} diff --git a/src/view/com/composer/videos/VideoPreview.web.tsx b/src/view/com/composer/videos/VideoPreview.web.tsx new file mode 100644 index 0000000000..223dbd4244 --- /dev/null +++ b/src/view/com/composer/videos/VideoPreview.web.tsx @@ -0,0 +1,27 @@ +import React from 'react' +import {View} from 'react-native' + +import {CompressedVideo} from '#/lib/media/video/compress' +import {ExternalEmbedRemoveBtn} from 'view/com/composer/ExternalEmbedRemoveBtn' +import {atoms as a} from '#/alf' + +export function VideoPreview({ + video, + clear, +}: { + video: CompressedVideo + clear: () => void +}) { + return ( + + + + ) +} diff --git a/src/view/com/composer/videos/VideoTranscodeBackdrop.tsx b/src/view/com/composer/videos/VideoTranscodeBackdrop.tsx new file mode 100644 index 0000000000..1f41736420 --- /dev/null +++ b/src/view/com/composer/videos/VideoTranscodeBackdrop.tsx @@ -0,0 +1,37 @@ +import React, {useEffect} from 'react' +import {clearCache, createVideoThumbnail} from 'react-native-compressor' +import Animated, {FadeIn} from 'react-native-reanimated' +import {Image} from 'expo-image' +import {useQuery} from '@tanstack/react-query' + +import {atoms as a} from '#/alf' + +export function VideoTranscodeBackdrop({uri}: {uri: string}) { + const {data: thumbnail} = useQuery({ + queryKey: ['thumbnail', uri], + queryFn: async () => { + return await createVideoThumbnail(uri) + }, + }) + + useEffect(() => { + return () => { + clearCache() + } + }, []) + + return ( + + {thumbnail && ( + + )} + + ) +} diff --git a/src/view/com/composer/videos/VideoTranscodeBackdrop.web.tsx b/src/view/com/composer/videos/VideoTranscodeBackdrop.web.tsx new file mode 100644 index 0000000000..9b580fdf2a --- /dev/null +++ b/src/view/com/composer/videos/VideoTranscodeBackdrop.web.tsx @@ -0,0 +1,7 @@ +import React from 'react' + +export function VideoTranscodeBackdrop({uri}: {uri: string}) { + return ( + ) } 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 134/153] 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 135/153] 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 136/153] 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 137/153] 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 138/153] 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 139/153] 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 140/153] 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 141/153] 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 142/153] [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